diff --git a/crates/adapters/sp1/src/host.rs b/crates/adapters/sp1/src/host.rs index d94b411d86..6bb41344f4 100644 --- a/crates/adapters/sp1/src/host.rs +++ b/crates/adapters/sp1/src/host.rs @@ -124,10 +124,22 @@ impl SP1AggregationHost { stdin.write(&witness); let agg_proof = self.inner.host.run_helper(stdin)?; - let serialized = bincode::serialize(&agg_proof)?; + // Downstream consumers (`sov_prover_incentives::process_proof` on + // native, `SP1Verifier::verify` inside the STF guest) decode the same + // `SovSP1AggregatedProof` wrapper. Native uses `serialized_sp1_proof` + // for real verification; the guest consumes `public_values`. Emitting + // the wrapper keeps the two sides in lock-step on the witness hint + // stream. The full proof is also retained in `prev_agg_proof` for the + // next aggregation round's deferred-proof witness. + let public_values = agg_proof.public_values.to_vec(); + let serialized_sp1_proof = bincode::serialize(&agg_proof)?; *prev_agg_proof = Some(agg_proof); - Ok(serialized) + let wrapper = crate::SovSP1AggregatedProof { + serialized_sp1_proof, + public_values, + }; + Ok(bincode::serialize(&wrapper)?) } } @@ -136,6 +148,13 @@ impl SP1AggregationHost { pub struct SP1Host { prover: EnvProver, pk: Arc, + /// Verifying key of the *outer* (aggregation) program. Required whenever + /// the STF guest driven by this host may call `V::verify` on a proof blob + /// at runtime — which happens inside `sov_prover_incentives::process_proof`. + /// Without it, `add_hint_deferred_and_run` refuses to inject deferred + /// proofs. Left `None` for hosts that only prove programs which never call + /// `V::verify`. + outer_vk: Option>, } /// Instantiate a new SP1 Host. @@ -151,9 +170,23 @@ impl SP1Host { Ok(Self { prover, pk: Arc::new(pk), + outer_vk: None, }) } + /// Configure the aggregation-program verifying key used to validate + /// deferred proofs emitted by the STF guest's `V::verify` calls. + /// + /// Under `SP1_PROVER=mock` this is not required (the SP1 executor runs + /// with `deferred_proof_verification(false)`, turning the verify syscall + /// into a no-op). Under real backends, failing to set it and then trying + /// to prove an STF slot that contains a proof blob will panic inside the + /// SP1 executor on an unmatched `syscall_verify_sp1_proof`. + pub fn with_outer_vk(mut self, vk: SP1VerifyingKey) -> Self { + self.outer_vk = Some(Arc::new(vk)); + self + } + /// Create a new `Sp1Guest` that reads the provided hints pub fn simulate_with_hints(stdin: SP1Stdin) -> SP1Guest { SP1Guest::with_hints(stdin.buffer) @@ -163,20 +196,29 @@ impl SP1Host { Ok(&self.pk) } + /// Prepares a compressed SP1 proof for deferred verification: registers the + /// compressed proof with `stdin` and returns the serialized + /// [`SovSP1AggregatedProof`] wrapper that downstream guest-side + /// `SP1Verifier::verify` expects. fn add_proof_helper( &self, stdin: &mut SP1Stdin, proof: &[u8], vk: &sp1_sdk::SP1VerifyingKey, ) -> anyhow::Result> { - let proof = crate::decode_sp1_proof(proof)?; + let decoded = crate::decode_sp1_proof(proof)?; - let SP1Proof::Compressed(recursion_proof) = &proof.proof else { + let SP1Proof::Compressed(recursion_proof) = &decoded.proof else { anyhow::bail!("Expected a compressed SP1 proof"); }; stdin.write_proof((**recursion_proof).clone(), vk.vk.clone()); - Ok(proof.public_values.to_vec()) + + let wrapper = crate::SovSP1AggregatedProof { + serialized_sp1_proof: proof.to_vec(), + public_values: decoded.public_values.to_vec(), + }; + Ok(bincode::serialize(&wrapper)?) } fn run_helper(&self, stdin: SP1Stdin) -> anyhow::Result { @@ -230,6 +272,44 @@ impl ZkvmHost for SP1Host { Ok(bincode::serialize(&output)?) } + fn add_hint_deferred_and_run( + &mut self, + item: &T, + deferred_proofs: &[Vec], + ) -> anyhow::Result> { + if deferred_proofs.is_empty() { + return self.add_hint_and_run(item); + } + + let outer_vk = self.outer_vk.clone().ok_or_else(|| { + anyhow::anyhow!( + "SP1Host: outer_vk must be set via `with_outer_vk` before proving an STF \ + slot that contains proof blobs; the aggregation vk is required to inject \ + deferred proofs that the STF guest's `V::verify` calls can satisfy" + ) + })?; + + let mut stdin = SP1Stdin::new(); + for raw_agg_proof in deferred_proofs { + // `raw_agg_proof` is the bytes the STF guest hands to + // `SP1Verifier::verify` — i.e. the `SovSP1AggregatedProof` wrapper. + // Unwrap to get the underlying SP1ProofWithPublicValues bytes that + // `add_proof_helper` expects, which will register the compressed + // proof as a deferred verification against `outer_vk`. + let wrapper: crate::SovSP1AggregatedProof = bincode::deserialize(raw_agg_proof) + .map_err(|e| { + anyhow::anyhow!( + "SP1Host: failed to decode `SovSP1AggregatedProof` wrapper from proof \ + blob: {e}" + ) + })?; + self.add_proof_helper(&mut stdin, &wrapper.serialized_sp1_proof, &outer_vk)?; + } + stdin.write(item); + let output = self.run_helper(stdin)?; + Ok(bincode::serialize(&output)?) + } + fn code_commitment(&self) -> anyhow::Result<<::Verifier as sov_rollup_interface::zk::ZkVerifier>::CodeCommitment>{ Ok(crate::SP1MethodId(self.pk.verifying_key().hash_u32())) } diff --git a/crates/adapters/sp1/src/lib.rs b/crates/adapters/sp1/src/lib.rs index 5ebc97e910..af001c7e03 100644 --- a/crates/adapters/sp1/src/lib.rs +++ b/crates/adapters/sp1/src/lib.rs @@ -74,6 +74,33 @@ impl CryptoSpec for SP1CryptoSpec { } } +/// Envelope that both the native and guest `SP1Verifier::verify` decode. +/// +/// The two impls previously had divergent contracts — native expected full +/// `bincode(SP1ProofWithPublicValues)` bytes (and extracted `public_values` +/// internally), while the guest expected bare public_values bytes. Because +/// the single `process_proof` call site in `sov-prover-incentives` always +/// passed the raw proof bytes, the guest would `bincode::deserialize` the +/// full proof as the target public-values type and fail, silently taking the +/// slashing branch and desynchronizing the witness hint stream with native. +/// +/// Both sides now decode this wrapper. Native uses `serialized_sp1_proof` +/// for real cryptographic verification; both sides deserialize `T` out of +/// `public_values` (and the guest additionally SHA-256s them to issue the +/// `verify_sp1_proof` deferred-verification syscall). +#[derive(serde::Serialize, serde::Deserialize, Debug, Clone)] +pub struct SovSP1AggregatedProof { + /// `bincode::serialize(&SP1ProofWithPublicValues)` — only consumed on + /// native to run real cryptographic verification. The guest never + /// touches this field. + pub serialized_sp1_proof: Vec, + /// Pre-extracted public values (`SP1PublicValues::to_vec()`). Used on + /// both sides to recover the committed `T` via `bincode::deserialize`, + /// and on the guest to compute the SHA-256 digest passed to + /// `sp1_zkvm::lib::verify::verify_sp1_proof`. + pub public_values: Vec, +} + /// A verifier for SP1 proofs. #[derive(Default, Clone)] pub struct SP1Verifier; @@ -85,14 +112,15 @@ impl ZkVerifier for SP1Verifier { type Error = anyhow::Error; fn verify( - serialized_proof: &[u8], + serialized_wrapper: &[u8], code_commitment: &Self::CodeCommitment, ) -> Result { use core::borrow::Borrow; use slop_algebra::AbstractField; use slop_algebra::PrimeField32; - let proof = decode_sp1_proof(serialized_proof)?; + let wrapper: SovSP1AggregatedProof = bincode::deserialize(serialized_wrapper)?; + let proof = decode_sp1_proof(&wrapper.serialized_sp1_proof)?; let is_mock = std::env::var("SP1_PROVER").ok().as_deref() == Some("mock"); if !is_mock { @@ -122,6 +150,11 @@ impl ZkVerifier for SP1Verifier { } } + // Decode `T` from the public_values embedded *inside* the decoded SP1 + // proof — those are the bytes cryptographically bound by the proof + // above. The `wrapper.public_values` field is only a convenience for + // the guest (which cannot decode the full proof) and is not trusted + // here. Ok(bincode::deserialize(proof.public_values.as_slice())?) } } @@ -153,13 +186,14 @@ impl ZkVerifier for SP1Verifier { type Error = anyhow::Error; fn verify( - public_values: &[u8], + serialized_wrapper: &[u8], vkey_hash: &Self::CodeCommitment, ) -> Result { use sha2::Digest; - let public_values_digest: [u8; 32] = sha2::Sha256::digest(public_values).into(); + let wrapper: SovSP1AggregatedProof = bincode::deserialize(serialized_wrapper)?; + let public_values_digest: [u8; 32] = sha2::Sha256::digest(&wrapper.public_values).into(); sp1_zkvm::lib::verify::verify_sp1_proof(&vkey_hash.0, &public_values_digest); - Ok(bincode::deserialize(public_values)?) + Ok(bincode::deserialize(wrapper.public_values.as_slice())?) } } diff --git a/crates/full-node/sov-stf-runner/src/processes/prover_service/parallel/prover.rs b/crates/full-node/sov-stf-runner/src/processes/prover_service/parallel/prover.rs index c8b8422126..23cb924670 100644 --- a/crates/full-node/sov-stf-runner/src/processes/prover_service/parallel/prover.rs +++ b/crates/full-node/sov-stf-runner/src/processes/prover_service/parallel/prover.rs @@ -100,6 +100,8 @@ where if start_prover { prover_state.set_to_proving(block_header_hash.clone()); + let deferred_proofs = state_transition_info.deferred_proofs().to_vec(); + let data = StateTransitionWitnessWithAddress { stf_witness: state_transition_info.data, prover_address: self.prover_address.clone(), @@ -107,7 +109,8 @@ where self.pool.spawn(move || { tracing::info_span!("guest_execution").in_scope(|| { - let proof = make_inner_proof::(inner_vm, &data); + let proof = + make_inner_proof::(inner_vm, &data, &deferred_proofs); let mut prover_state = prover_state_clone.write().expect("Lock was poisoned"); @@ -217,13 +220,18 @@ where fn make_inner_proof( mut vm: InnerVm::Host, hint: &impl Serialize, + deferred_proofs: &[Vec], ) -> anyhow::Result where InnerVm: Zkvm + 'static, { let proving_start = std::time::Instant::now(); - info!("Generating proof with {}", std::any::type_name::()); - let result = vm.add_hint_and_run(hint); + info!( + deferred_proof_count = deferred_proofs.len(), + "Generating proof with {}", + std::any::type_name::() + ); + let result = vm.add_hint_deferred_and_run(hint, deferred_proofs); sov_metrics::track_metrics(|tracker| { let proving_time = proving_start.elapsed(); let is_success = result.is_ok(); diff --git a/crates/full-node/sov-stf-runner/src/processes/stf_info_manager.rs b/crates/full-node/sov-stf-runner/src/processes/stf_info_manager.rs index 907f6f7df3..9930272a98 100644 --- a/crates/full-node/sov-stf-runner/src/processes/stf_info_manager.rs +++ b/crates/full-node/sov-stf-runner/src/processes/stf_info_manager.rs @@ -25,6 +25,13 @@ pub struct StateTransitionInfo { pub(crate) data: StateTransitionWitness, /// Rollup height. pub(crate) slot_number: SlotNumber, + /// Raw bytes of any aggregated proof blobs in this slot that the STF + /// guest will feed into `V::verify`. The prover registers each entry + /// as a deferred proof via `ZkvmHost::add_hint_deferred_and_run`. Empty + /// for slots that don't contain proof blobs, and ignored by backends + /// without recursive verification. + #[serde(default)] + pub(crate) deferred_proofs: Vec>, } impl StateTransitionInfo { @@ -33,7 +40,23 @@ impl StateTransitionInfo data: StateTransitionWitness, slot_number: SlotNumber, ) -> Self { - Self { data, slot_number } + Self { + data, + slot_number, + deferred_proofs: Vec::new(), + } + } + + /// Attach raw deferred-proof bytes extracted from this slot's proof blobs. + /// See [`StateTransitionInfo::deferred_proofs`] for the expected format. + pub fn with_deferred_proofs(mut self, deferred_proofs: Vec>) -> Self { + self.deferred_proofs = deferred_proofs; + self + } + + /// Access the raw deferred-proof bytes attached to this slot. + pub(crate) fn deferred_proofs(&self) -> &[Vec] { + &self.deferred_proofs } pub(crate) fn da_block_header(&self) -> &Da::BlockHeader { diff --git a/crates/full-node/sov-stf-runner/src/state_manager/mod.rs b/crates/full-node/sov-stf-runner/src/state_manager/mod.rs index 07a63895a8..d089872893 100644 --- a/crates/full-node/sov-stf-runner/src/state_manager/mod.rs +++ b/crates/full-node/sov-stf-runner/src/state_manager/mod.rs @@ -421,9 +421,39 @@ where if let Some(stf_info_sender) = &self.stf_info_sender { tracing::trace!("Going to materialize StateTransitionInfo"); + // Extract the raw aggregated-proof bytes carried by each proof + // blob in this slot, so the downstream prover can register them + // as deferred proofs for the STF guest's `V::verify` calls. The + // bytes on the wire here are the `SerializeProofWithDetails` + // borsh encoding; the SP1 host only needs the `raw_aggregated_proof` + // field (which is a `SovSP1AggregatedProof` wrapper) to call + // `SP1Stdin::write_proof`. The prover-agnostic version here just + // stores the full blob payload; backend-specific unwrapping + // happens inside `ZkvmHost::add_hint_deferred_and_run`. Backends + // that don't need deferred proofs accept and ignore an empty + // slice (the default trait impl). + // + // TODO(#deferred-proofs): decode `SerializeProofWithDetails` here + // so that the SP1 host receives already-extracted + // `raw_aggregated_proof` bytes. Until that's wired, the SP1 host + // treats each entry as the full blob payload and will fail to + // unwrap — which is fine under `SP1_PROVER=mock` (the SP1 + // executor runs with `deferred_proof_verification(false)`, so no + // deferred proofs are actually needed) but would need the real + // unwrap before enabling a non-mock backend. + let deferred_proofs: Vec> = transition_witness + .relevant_blobs + .proof_blobs + .iter() + .map(|blob| { + use sov_rollup_interface::da::BlobReaderTrait; + blob.verified_data().to_vec() + }) + .collect(); let stf_info = StateTransitionInfo { data: transition_witness, slot_number, + deferred_proofs, }; let stf_info_schema = stf_info_sender .materialize_stf_info(&stf_info, &self.ledger_db) diff --git a/crates/module-system/module-implementations/sov-prover-incentives/src/capabilities.rs b/crates/module-system/module-implementations/sov-prover-incentives/src/capabilities.rs index 1cf5652165..3d0048d08f 100644 --- a/crates/module-system/module-implementations/sov-prover-incentives/src/capabilities.rs +++ b/crates/module-system/module-implementations/sov-prover-incentives/src/capabilities.rs @@ -189,12 +189,15 @@ impl ProverIncentives { Paycheck::Penalized => { self.penalize_prover(old_balance, prover_address, state)?; // The state won't be reverted. + tracing::debug!("Aggrgeated proof sucesfullt verified but prover was penalized"); Err(ProcessProofError::ProverPenalizedNoRevert( "Prover penalized".to_string(), )) } Paycheck::Rewarded(total_reward) => { self.reward_prover(total_reward, prover_address, state)?; + + tracing::debug!("Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number {}. Final slot number {}", public_outputs.initial_slot_number, public_outputs.final_slot_number); Ok(public_outputs) } } diff --git a/crates/rollup-interface/src/state_machine/zk/mod.rs b/crates/rollup-interface/src/state_machine/zk/mod.rs index 7223d48d6b..d407da6df3 100644 --- a/crates/rollup-interface/src/state_machine/zk/mod.rs +++ b/crates/rollup-interface/src/state_machine/zk/mod.rs @@ -108,6 +108,30 @@ pub trait ZkvmHost: Clone + Send + Sync + 'static { /// Provide a single non-deterministic advice item to the guest and /// synchronously generate a SNARK of correct execution over that hint. fn add_hint_and_run(&mut self, item: &T) -> anyhow::Result>; + + /// Prove `item` with zero or more proofs pre-registered as deferred + /// verifications. Each entry of `deferred_proofs` is the raw proof-blob + /// payload the STF guest will hand to `V::verify` at runtime (for SP1 + /// this is a `SovSP1AggregatedProof` wrapper). + /// + /// Backends without recursive verification (e.g. mock, risc0) can accept + /// an empty `deferred_proofs` and fall through to `add_hint_and_run`; + /// they should refuse non-empty input. SP1 overrides this to register + /// each proof via `sp1_sdk::SP1Stdin::write_proof` so the guest's + /// `syscall_verify_sp1_proof` can satisfy its deferred-verification + /// requirement in non-mock mode. + fn add_hint_deferred_and_run( + &mut self, + item: &T, + deferred_proofs: &[Vec], + ) -> anyhow::Result> { + anyhow::ensure!( + deferred_proofs.is_empty(), + "this ZkvmHost does not support deferred proofs; override \ + `add_hint_deferred_and_run` or pass an empty slice" + ); + self.add_hint_and_run(item) + } } /// A commitment to a zkVM program binary. Every concrete [`ZkVerifier::CodeCommitment`] diff --git a/examples/demo-rollup/configs/mock_rollup_config.toml b/examples/demo-rollup/configs/mock_rollup_config.toml index 3aaba626dd..cf5b09fda4 100644 --- a/examples/demo-rollup/configs/mock_rollup_config.toml +++ b/examples/demo-rollup/configs/mock_rollup_config.toml @@ -10,7 +10,7 @@ finalization_blocks = 0 # Defines how many blocks progress to finalization. Set # failure_behavior = "none" # Configures failure injection for testing. Options: "none", or structured variants for testing [da.block_producing.periodic] -block_time_ms = 1000 +block_time_ms = 3000 # Alternative block producing modes: # [da.block_producing.manual] # Manual block production mode @@ -78,7 +78,7 @@ tokio_runtime_metrics_interval_millis = 500 # max_pending_metrics = 1000 [proof_manager] -aggregated_proof_block_jump = 1 +aggregated_proof_block_jump = 10 prover_address = "sov1lzkjgdaz08su3yevqu6ceywufl35se9f33kztu5cu2spja5hyyf" max_number_of_transitions_in_db = 100 max_number_of_transitions_in_memory = 30 diff --git a/examples/demo-rollup/provers/sp1/guest-mock/Cargo.lock b/examples/demo-rollup/provers/sp1/guest-mock/Cargo.lock index 81588ddcf7..0dc0cbbefa 100644 --- a/examples/demo-rollup/provers/sp1/guest-mock/Cargo.lock +++ b/examples/demo-rollup/provers/sp1/guest-mock/Cargo.lock @@ -5926,7 +5926,6 @@ dependencies = [ "sov-kernels", "sov-metrics", "sov-mock-da", - "sov-mock-zkvm", "sov-modules-api", "sov-modules-stf-blueprint", "sov-sp1-adapter", diff --git a/examples/demo-rollup/provers/sp1/guest-mock/Cargo.toml b/examples/demo-rollup/provers/sp1/guest-mock/Cargo.toml index 4d5dcf6954..d16c07d538 100644 --- a/examples/demo-rollup/provers/sp1/guest-mock/Cargo.toml +++ b/examples/demo-rollup/provers/sp1/guest-mock/Cargo.toml @@ -13,7 +13,6 @@ sp1-zkvm = { version = "6.1.0" } sov-mock-da = { path = "../../../../../crates/adapters/mock-da" } demo-stf = { path = "../../../stf" } sov-sp1-adapter = { path = "../../../../../crates/adapters/sp1" } -sov-mock-zkvm = { path = "../../../../../crates/adapters/mock-zkvm" } sov-modules-api = { path = "../../../../../crates/module-system/sov-modules-api" } sov-address = { path = "../../../../../crates/module-system/sov-address" } sov-state = { path = "../../../../../crates/module-system/sov-state" } diff --git a/examples/demo-rollup/provers/sp1/guest-mock/src/main.rs b/examples/demo-rollup/provers/sp1/guest-mock/src/main.rs index 41edad8727..e40c020d8b 100644 --- a/examples/demo-rollup/provers/sp1/guest-mock/src/main.rs +++ b/examples/demo-rollup/provers/sp1/guest-mock/src/main.rs @@ -5,7 +5,6 @@ sp1_zkvm::entrypoint!(main); use demo_stf::runtime::Runtime; use demo_stf::{MultiAddressEvmSolana, StfVerifier}; use sov_mock_da::{MockDaSpec, MockDaVerifier}; -pub use sov_mock_zkvm::MockZkvm; use sov_modules_api::configurable_spec::ConfigurableSpec; use sov_modules_api::execution_mode::Zk; use sov_modules_stf_blueprint::StfBlueprint; @@ -25,7 +24,7 @@ pub fn main() { ConfigurableSpec< MockDaSpec, SP1, - MockZkvm, + SP1, MultiAddressEvmSolana, Zk, sov_sp1_adapter::SP1CryptoSpec, diff --git a/examples/demo-rollup/rollup.log b/examples/demo-rollup/rollup.log index 523ac6e89d..68178d5ac6 100644 --- a/examples/demo-rollup/rollup.log +++ b/examples/demo-rollup/rollup.log @@ -1,21581 +1,8330 @@ -2026-04-20T10:40:04.023575Z  INFO sov_modules_rollup_blueprint::native_only::logging: Logging initialized; you can restart the node with a custom `RUST_LOG` env. var. to customize log filtering RUST_LOG="debug,sov_paymaster=info,h2=info,tower=info,tower_http=info,reqwest=info,tungstenite=info,hyper=info,jmt=info,rustls=info,jsonrpsee-server=info,jsonrpsee-client=info,risc0_circuit_rv32im=info,risc0_zkp::verify=info,risc0_zkvm=warn,sqlx=warn,tiny_http=warn" commit="e1e5b80599e6016e4baf74c33c743ef3285c619e" -2026-04-20T10:40:04.023636Z  INFO sov_modules_rollup_blueprint::native_only::logging: The Tokio debugging console will not be available; must compile with `cfg(tokio_unstable)` to enable it tokio_console_info_url="https://github.com/tokio-rs/console" -2026-04-20T10:40:04.023648Z  INFO sov_modules_rollup_blueprint::native_only::logging: Open Telemetry exporter is not enabled -2026-04-20T10:40:04.023881Z  WARN sov_demo_rollup: Given RollupProverConfig might cause slow rollup progression if not compiled in release mode. prover_config=prove -2026-04-20T10:40:04.023905Z  INFO sov_demo_rollup: Running demo rollup with prover config prover_config=prove -2026-04-20T10:40:04.023924Z DEBUG sov_demo_rollup: Starting rollup on mock DA with SP1 zkVM config_path="configs/mock_rollup_config.toml" -2026-04-20T10:40:04.023983Z  INFO sov_full_node_configs::runner: Parsing rollup configuration file path="configs/mock_rollup_config.toml" size_in_bytes=8797 line_count=141 -2026-04-20T10:40:04.025022Z DEBUG init_blueprint: sov_metrics::influxdb::tracker: Metrics tracker initialized config=MonitoringConfig { telegraf_address: TelegrafSocketConfig { transport: Udp, addr: 127.0.0.1:8094 }, max_datagram_size: None, max_pending_metrics: None, tokio_runtime_metrics_interval_millis: 500 } -2026-04-20T10:40:04.025074Z  INFO init_blueprint: sov_modules_rollup_blueprint::native_only: Instantiating a new rollup operating_mode=Zk -2026-04-20T10:40:04.025925Z DEBUG init_blueprint: sov_mock_da::storable::entity: Setting up database -2026-04-20T10:40:04.030655Z DEBUG init_blueprint: sov_mock_da::storable::layer: Initializing `StorableMockDaLayer` last_finalized_height=0 blocks_to_finality=0 -2026-04-20T10:40:04.030720Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::local_service: Spawning a task for periodic producing interval=6s -2026-04-20T10:40:04.030788Z DEBUG init_blueprint: sov_db::state_db_nomt: Opening NOMT options=RollupDbConfig { path: "demo_data", ledger_db_path: None, state_cache_size: Some(4294967296), user_commit_concurrency: Some(4), user_hashtable_buckets: Some(15000000), user_preallocate_ht: Some(false), user_page_cache_size: None, user_leaf_cache_size: None, user_page_cache_upper_levels: None, kernel_commit_concurrency: Some(2), kernel_hashtable_buckets: None, kernel_preallocate_ht: None, kernel_page_cache_size: None, kernel_leaf_cache_size: None, kernel_page_cache_upper_levels: None, pruner_block_interval: Some(100), pruner_versions_to_keep: Some(20), pruner_max_batch_size: None } -2026-04-20T10:40:04.030778Z  INFO sov_stf_runner::da::finalized_headers_cache: Starting background fetcher task interval=Interval { delay: Sleep { inner: Inner, entry: Traditional(TimerEntry { driver: MultiThread(multi_thread::Handle { ... }), inner: None, deadline: Instant { tv_sec: 7842376, tv_nsec: 655464933 }, registered: false }) }, period: 50ms, missed_tick_behavior: Burst } -2026-04-20T10:40:04.078481Z  INFO init_blueprint:open_with_cfds: rockbound: Opened RocksDB rocksdb_name="state" path=demo_data/state-db -2026-04-20T10:40:04.087223Z  INFO init_blueprint:open_with_cfds: rockbound: Opened RocksDB rocksdb_name="state" path=demo_data/archival-state-db/state-db -2026-04-20T10:40:04.097664Z  INFO init_blueprint:open_with_default_cfs:open_with_cfds: rockbound: Opened RocksDB rocksdb_name="ledger-db" path=demo_data/ledger -2026-04-20T10:40:04.101948Z  INFO init_blueprint:open_with_default_cfs:open_with_cfds: rockbound: Opened RocksDB rocksdb_name="accessory-db" path=demo_data/accessory -2026-04-20T10:40:04.101988Z  INFO init_blueprint: sov_db::storage_manager::nomt_based::groups: State roots on startup before validation root_hash_from_live_db="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" root_hash_from_archival_db="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" root_hash_from_ledger_db="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" root_hash_nomt_user="0000000000000000000000000000000000000000000000000000000000000000" root_hash_nomt_kernel="0000000000000000000000000000000000000000000000000000000000000000" -2026-04-20T10:40:04.101999Z  INFO init_blueprint: sov_db::storage_manager::nomt_based::groups: State roots on startup after validation root_hash_from_live_db="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" root_hash_from_archival_db="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" root_hash_from_ledger_db="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" root_hash_nomt_user="0000000000000000000000000000000000000000000000000000000000000000" root_hash_nomt_kernel="0000000000000000000000000000000000000000000000000000000000000000" -2026-04-20T10:40:04.102029Z DEBUG init_blueprint: sov_db::storage_manager::nomt_based: Creating new storage from finalized data as block header is not in the saved chain block_header=sov_mock_da::types::MockBlockHeader prev_hash=0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff hash=0x0000000000000001000000000000000000000000000000000000000000000000 height=0 -2026-04-20T10:40:04.102047Z  INFO init_blueprint: sov_modules_rollup_blueprint::native_only: Recovering the state root prev_root=None is_genesis=true -2026-04-20T10:40:04.102125Z  INFO init_blueprint: sov_modules_rollup_blueprint::native_only: Rollup state is empty, performing genesis initialization. Requesting genesis DA block rollup_genesis_height=0 -2026-04-20T10:40:04.103241Z  INFO init_blueprint: sov_stf_runner::runner: No history detected. Initializing chain on the block header... header=sov_mock_da::types::MockBlockHeader prev_hash=0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff hash=0x0000000000000001000000000000000000000000000000000000000000000000 height=0 -2026-04-20T10:40:04.103434Z DEBUG init_blueprint: sov_bank::genesis: Gas token token_id=token_1nyl0e0yweragfsatygt24zmd8jrr2vqtvdfptzjhxkguz2xxx3vs0y07u7 token_name=Some("sov-token") -2026-04-20T10:40:04.103450Z DEBUG init_blueprint: sov_bank::genesis: Genesis of the token token_config=TokenConfig { token_name: "sov-token", token_decimals: Some(6), token_id: TokenIdBech32("token_1nyl0e0yweragfsatygt24zmd8jrr2vqtvdfptzjhxkguz2xxx3vs0y07u7"), address_and_balances: [(Standard(AddressBech32("sov1lzkjgdaz08su3yevqu6ceywufl35se9f33kztu5cu2spja5hyyf")), 5000000000000), (Standard(AddressBech32("sov1x3jtvq0zwhj2ucsc4hqugskvralrulxvf53vwtkred93s85ar2a")), 5000000000000000), (Standard(AddressBech32("sov10d6chuh8vu86ltmt7qq4ec8lt25qyvr0cl3lg4mzs5llcfnx69m")), 5000000000000), (Standard(AddressBech32("sov1v870parxhssv5wyz634wqlt9yflrrnawlwzjhj8409q4yevcj3s")), 5000000000000), (Evm(EthereumAddress(0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266)), 5000000000000000), (Evm(EthereumAddress(0x3fe0233e6cf3c9753fcb7449987ec49c88adde71)), 5000000000000), (Evm(EthereumAddress(0x4fa6c577ee74b4f3c5309af1b6313dd6d525e694)), 5000000000000), (Evm(EthereumAddress(0xa80749ad39a047603cbc5d0f46a03a1c6b2db6c9)), 5000000000000), (Evm(EthereumAddress(0x70997970c51812dc3a010c7d01b50e0d17dc79c8)), 5000000000000000), (Evm(EthereumAddress(0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc)), 5000000000000000), (Evm(EthereumAddress(0x90f79bf6eb2c4f870365e785982e1f101e93b906)), 5000000000000000)], admins: [Standard(AddressBech32("sov1lzkjgdaz08su3yevqu6ceywufl35se9f33kztu5cu2spja5hyyf"))], supply_cap: None } token_id=token_1nyl0e0yweragfsatygt24zmd8jrr2vqtvdfptzjhxkguz2xxx3vs0y07u7 -2026-04-20T10:40:04.103505Z DEBUG init_blueprint: sov_bank::genesis: Token has been created token_name=sov-token token_id=token_1nyl0e0yweragfsatygt24zmd8jrr2vqtvdfptzjhxkguz2xxx3vs0y07u7 -2026-04-20T10:40:04.103516Z  INFO init_blueprint: sov_sequencer_registry::genesis: Starting sequencer registry genesis... sequencer_rollup_address=sov1lzkjgdaz08su3yevqu6ceywufl35se9f33kztu5cu2spja5hyyf sequencer_da_address=0x0000000000000000000000000000000000000000000000000000000000000000 sequencer_bond=2000000000000 is_preferred_sequencer=true -2026-04-20T10:40:04.103563Z  INFO init_blueprint: sov_chain_state::genesis: Starting chain state genesis... current_time=Time { millis: 0 } operating_mode=Zk genesis_da_height=0 inner_code_commitment=SP1MethodId([0, 0, 0, 0, 0, 0, 0, 0]) outer_code_commitment=SP1MethodId([0, 0, 0, 0, 0, 0, 0, 0]) admin=None -2026-04-20T10:40:04.104600Z DEBUG init_blueprint:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 next_version=0 sesssion_starting_time=85.42µs -2026-04-20T10:40:04.106349Z DEBUG init_blueprint:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de5fca783863c0d6daa77dbef2931fcbb3cf062a37617fa408eeaedb193497140f next_version=0 time=2.143596ms accesses_build_time=306.968µs finishing_session_time=1.732569ms -2026-04-20T10:40:04.122886Z  INFO init_blueprint: sov_db::storage_manager::nomt_based::groups: Starting pruner task iteration versions_to_keep=20 -2026-04-20T10:40:04.122955Z DEBUG init_blueprint: sov_db::storage_manager::nomt_based: Creating new storage from finalized data as block header is not in the saved chain block_header=sov_mock_da::types::MockBlockHeader prev_hash=0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff hash=0x0000000000000001000000000000000000000000000000000000000000000000 height=0 -2026-04-20T10:40:04.122991Z DEBUG init_blueprint: sov_stf_runner::runner: last_slot_processed_before_shutdown=0 -2026-04-20T10:40:04.122982Z  WARN sov_db::storage_manager::nomt_based::groups: Pruning temporarily disabled -2026-04-20T10:40:04.122999Z DEBUG init_blueprint: sov_stf_runner::runner: Initializing new instance of DaSyncState da_height_processed=0 genesis_da_height=0 target_da_height=0 stop_at_rollup_height=None initial_sync_status=Syncing { synced_da_height: 0, target_da_height: 0 } -2026-04-20T10:40:04.123181Z DEBUG init_blueprint: sov_modules_rollup_blueprint::native_only: Rollup state initialization is completed prev_root_hash="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de5fca783863c0d6daa77dbef2931fcbb3cf062a37617fa408eeaedb193497140f" raw_genesis_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de5fca783863c0d6daa77dbef2931fcbb3cf062a37617fa408eeaedb193497140f" state_update_info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 0, latest_finalized_slot_number: 0, sync_status: Synced { synced_da_height: 0 }, .. } -2026-04-20T10:40:04.123239Z  INFO init_blueprint: sov_stf_runner::runner: Initializing StateTransitionRunner config=RunnerConfig { da_polling_interval_ms: 50, http_config: HttpServerConfig { bind_host: "127.0.0.1", bind_port: 12346, public_address: None, cors: Permissive }, concurrent_sync_tasks: 5, pre_fetched_blocks_capacity: 20, save_tx_bodies: false } -2026-04-20T10:40:04.123251Z DEBUG init_blueprint: sov_stf_runner::runner: Initializing StfRunner last_processed_da_header=sov_mock_da::types::MockBlockHeader prev_hash=0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff hash=0x0000000000000001000000000000000000000000000000000000000000000000 height=0 first_unprocessed_height_at_startup=1 proof_manager_config=Some(ProofManagerConfig { aggregated_proof_block_jump: 1, prover_address: Standard(AddressBech32("sov1lzkjgdaz08su3yevqu6ceywufl35se9f33kztu5cu2spja5hyyf")), max_number_of_transitions_in_db: 100, max_number_of_transitions_in_memory: 30, eager_proof_submission: true }) -2026-04-20T10:40:04.123273Z  INFO init_blueprint: sov_stf_runner::da::bulk_finalized_blocks_fetcher: Initializing FinalizedBlocksBulkFetcher start_height=1 bulk_size=5 channel_capacity=20 -2026-04-20T10:40:04.123281Z  INFO init_blueprint: sov_stf_runner::da::bulk_finalized_blocks_fetcher: Initializing BlockFetcher start_height=1 last_height=0 bulk_size=5 -2026-04-20T10:40:04.123335Z DEBUG init_blueprint: sov_sequencer::preferred::initialization: Instantiating the preferred sequencer latest_state_update=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 0, latest_finalized_slot_number: 0, sync_status: Synced { synced_da_height: 0 }, .. } da_address=0x0000000000000000000000000000000000000000000000000000000000000000 -2026-04-20T10:40:04.123336Z  INFO sov_stf_runner::da::bulk_finalized_blocks_fetcher: BlockFetcher synced all finalized headers start=1 last_finalized_at_start=0 first_fetched_height=None last_fetched_height=None completion_time=6.26µs -2026-04-20T10:40:04.123372Z DEBUG sov_stf_runner::da::bulk_finalized_blocks_fetcher: BlockFetcher task has completed -2026-04-20T10:40:04.128643Z  INFO init_blueprint:open:open_with_cfds: rockbound: Opened RocksDB rocksdb_name="preferred_sequencer" path=demo_data/preferred_sequencer -2026-04-20T10:40:04.132943Z  INFO init_blueprint:open:open_with_cfds: rockbound: Opened RocksDB rocksdb_name="blob_sender" path=demo_data/blob_sender -2026-04-20T10:40:04.132981Z  INFO init_blueprint:state_root_compute_background_task: sov_sequencer::preferred::state_root_compute: Starting sequencer state root computation background task -2026-04-20T10:40:04.157863Z  INFO sp1_sdk::blocking::mock: initializing mock prover -2026-04-20T10:40:05.960381Z DEBUG acquire setup: sp1_hypercube::prover::permits: permit acquired for 946.344245ms -2026-04-20T10:40:06.033585Z  INFO sp1_sdk::blocking::mock: initializing mock prover -2026-04-20T10:40:07.119976Z DEBUG acquire setup: sp1_hypercube::prover::permits: permit acquired for 669.165215ms -2026-04-20T10:40:07.170632Z  INFO sov_stf_runner::processes::zk_manager: Spawning an aggregated proof posting background task -2026-04-20T10:40:07.190250Z  INFO sov_stf_runner::http: Starting HTTP server rest_address=127.0.0.1:12346 -2026-04-20T10:40:07.190297Z DEBUG sov_stf_runner::runner: Interval for polling sync DA height interval_ms=50 -2026-04-20T10:40:07.190301Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:40:10.034278Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=1 prev_hash=0x0000000000000001000000000000000000000000000000000000000000000000 hash=0xf7148387ded4fdc186377d30f98da5333c8214439c4d76858ecab607881669c9 producing_time=1.985477ms -2026-04-20T10:40:10.041397Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=1 current_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de5fca783863c0d6daa77dbef2931fcbb3cf062a37617fa408eeaedb193497140f" batch_blobs=[] proof_blobs=[] -2026-04-20T10:40:10.041769Z DEBUG StfBlueprint::apply_slot{context=Node da_height=1}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de5fca783863c0d6daa77dbef2931fcbb3cf062a37617fa408eeaedb193497140f next_version=1 sesssion_starting_time=47.92µs -2026-04-20T10:40:10.042532Z DEBUG StfBlueprint::apply_slot{context=Node da_height=1}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de4648383781d6f7467abf28d15bcdceed404607631c93cea426d7b590d850488a next_version=1 time=823.555µs accesses_build_time=11.49µs finishing_session_time=701.145µs -2026-04-20T10:40:10.042650Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de5fca783863c0d6daa77dbef2931fcbb3cf062a37617fa408eeaedb193497140f" next_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de4648383781d6f7467abf28d15bcdceed404607631c93cea426d7b590d850488a" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:40:10.043004Z DEBUG sov_stf_runner::runner: Block execution complete time=2.852709824s -2026-04-20T10:40:10.043040Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:40:10.043255Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 1, latest_finalized_slot_number: 0, sync_status: Syncing { synced_da_height: 0, target_da_height: 1 }, .. } -2026-04-20T10:40:10.043350Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Proceeding with `replay_soft_confirmations_on_top_of_node_state` initial_status=InitialStatus { is_startup: true, is_resync: false, is_recover: false } -2026-04-20T10:40:10.043432Z DEBUG sov_sequencer::preferred::transaction_subscriptions: Cleaning and overwriting transaction cache up to 0 -2026-04-20T10:40:10.043461Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Populating pinned cache for replay. This may take a few moments. inner_status=InitialStatus { is_startup: true, is_resync: false, is_recover: false } -2026-04-20T10:40:10.043474Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Pinned cache populated. Starting transaction replay. -2026-04-20T10:40:10.043717Z DEBUG sov_sequencer::preferred::block_executor: Replacing state for block executor old=019daa79-d426-7682-aeb1-78812b048ddc new=019daa79-eb3b-75b2-a24b-6e749401e06e -2026-04-20T10:40:16.036545Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=2 prev_hash=0xf7148387ded4fdc186377d30f98da5333c8214439c4d76858ecab607881669c9 hash=0xa01e3ddb38244782f3fd8c8df725c121dd3fe5d6d7afc03541f6aae84d196f39 producing_time=1.6527ms -2026-04-20T10:40:16.044383Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=2 current_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de4648383781d6f7467abf28d15bcdceed404607631c93cea426d7b590d850488a" batch_blobs=[] proof_blobs=[] -2026-04-20T10:40:16.044717Z DEBUG StfBlueprint::apply_slot{context=Node da_height=2}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de4648383781d6f7467abf28d15bcdceed404607631c93cea426d7b590d850488a next_version=2 sesssion_starting_time=48.98µs -2026-04-20T10:40:16.045443Z DEBUG StfBlueprint::apply_slot{context=Node da_height=2}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de434d3aed4271fe99cba16ce90812f3d8dbdf3ac51d3142ad7db10693907be14d next_version=2 time=789.534µs accesses_build_time=13.539µs finishing_session_time=687.785µs -2026-04-20T10:40:16.045544Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de5fca783863c0d6daa77dbef2931fcbb3cf062a37617fa408eeaedb193497140f" next_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de434d3aed4271fe99cba16ce90812f3d8dbdf3ac51d3142ad7db10693907be14d" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:40:16.046040Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 2, latest_finalized_slot_number: 1, sync_status: Syncing { synced_da_height: 1, target_da_height: 2 }, .. } -2026-04-20T10:40:16.046109Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=0 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 2, latest_finalized_slot_number: 1, sync_status: Syncing { synced_da_height: 1, target_da_height: 2 }, .. } -2026-04-20T10:40:16.046175Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=0 -2026-04-20T10:40:16.053102Z  INFO sov_db::storage_manager::nomt_based::groups: Pruner task has completed historical_state.hit_size_limit=false accessory_state.hit_size_limit=false -2026-04-20T10:40:16.053438Z DEBUG sov_stf_runner::runner: Block execution complete time=6.010400388s -2026-04-20T10:40:16.053465Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:40:22.039903Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=3 prev_hash=0xa01e3ddb38244782f3fd8c8df725c121dd3fe5d6d7afc03541f6aae84d196f39 hash=0x2db0c2500c7df469e48a2e531485f3da076649af68cf75ab2af4ed7bbf770392 producing_time=1.479981ms -2026-04-20T10:40:22.045638Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=3 current_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de434d3aed4271fe99cba16ce90812f3d8dbdf3ac51d3142ad7db10693907be14d" batch_blobs=[] proof_blobs=[] -2026-04-20T10:40:22.045929Z DEBUG StfBlueprint::apply_slot{context=Node da_height=3}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de434d3aed4271fe99cba16ce90812f3d8dbdf3ac51d3142ad7db10693907be14d next_version=3 sesssion_starting_time=49.8µs -2026-04-20T10:40:22.046521Z DEBUG StfBlueprint::apply_slot{context=Node da_height=3}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de7a4c1361b72405b7c05c6ec05a10b571d57d6994b53d92bad1cf9b783a81fa87 next_version=3 time=655.606µs accesses_build_time=12.32µs finishing_session_time=560.796µs -2026-04-20T10:40:22.046616Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de4648383781d6f7467abf28d15bcdceed404607631c93cea426d7b590d850488a" next_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de7a4c1361b72405b7c05c6ec05a10b571d57d6994b53d92bad1cf9b783a81fa87" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:40:22.047155Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 3, latest_finalized_slot_number: 2, sync_status: Syncing { synced_da_height: 2, target_da_height: 3 }, .. } -2026-04-20T10:40:22.047241Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=0 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 3, latest_finalized_slot_number: 2, sync_status: Syncing { synced_da_height: 2, target_da_height: 3 }, .. } -2026-04-20T10:40:22.047337Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=0 -2026-04-20T10:40:22.057312Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00384784s -2026-04-20T10:40:22.057368Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:40:28.042210Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=4 prev_hash=0x2db0c2500c7df469e48a2e531485f3da076649af68cf75ab2af4ed7bbf770392 hash=0xb7eb4f83e0b895e8d10166a5fb0673dd826069a7e3989fd04e1ba7f4df4deb73 producing_time=1.55818ms -2026-04-20T10:40:28.048963Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=4 current_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de7a4c1361b72405b7c05c6ec05a10b571d57d6994b53d92bad1cf9b783a81fa87" batch_blobs=[] proof_blobs=[] -2026-04-20T10:40:28.049254Z DEBUG StfBlueprint::apply_slot{context=Node da_height=4}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de7a4c1361b72405b7c05c6ec05a10b571d57d6994b53d92bad1cf9b783a81fa87 next_version=4 sesssion_starting_time=48.529µs -2026-04-20T10:40:28.049942Z DEBUG StfBlueprint::apply_slot{context=Node da_height=4}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de182a832a0e1832e885e11c6d14bff449531ff7e82a11b453870781ef720726c4 next_version=4 time=749.385µs accesses_build_time=11.93µs finishing_session_time=656.206µs -2026-04-20T10:40:28.050043Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de434d3aed4271fe99cba16ce90812f3d8dbdf3ac51d3142ad7db10693907be14d" next_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de182a832a0e1832e885e11c6d14bff449531ff7e82a11b453870781ef720726c4" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:40:28.050575Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 4, latest_finalized_slot_number: 3, sync_status: Synced { synced_da_height: 3 }, .. } -2026-04-20T10:40:28.050661Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=0 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 4, latest_finalized_slot_number: 3, sync_status: Synced { synced_da_height: 3 }, .. } -2026-04-20T10:40:28.050724Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=0 -2026-04-20T10:40:28.050995Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:40:28.051083Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=0 -2026-04-20T10:40:28.051282Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=1 -2026-04-20T10:40:28.051525Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:40:28.051762Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=1 sequence_number=0 -2026-04-20T10:40:28.051804Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=0 blob_id=2147876293386409292842740517812766291 visible_slot_number_after_increase=1 visible_slots_to_advance=1 -2026-04-20T10:40:28.051847Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[10, 10], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:40:28.054047Z DEBUG manage_blob_submission_inside_task{blob_id=2147876293386409292842740517812766291 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x9ce6c494fe82468ce25c30c30ad97a6db11e5d22bcac40b97df0a7237f7c6eac sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=5 include_at=5 bytes=13 time=863.484µs -2026-04-20T10:40:28.056225Z DEBUG compute_state_update{scope="sequencer" rollup_height=1 slot_number=1}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:40:28.056268Z DEBUG sov_stf_runner::runner: Block execution complete time=5.998902123s -2026-04-20T10:40:28.056300Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:40:28.056413Z DEBUG compute_state_update{scope="sequencer" rollup_height=1 slot_number=1}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de182a832a0e1832e885e11c6d14bff449531ff7e82a11b453870781ef720726c4 next_version=5 sesssion_starting_time=4.043044ms -2026-04-20T10:40:28.057028Z DEBUG compute_state_update{scope="sequencer" rollup_height=1 slot_number=1}: sov_state::nomt::prover_storage: computed next state root state_root=12afbfd453eaa8ea20d8bcf5015ef348aada8234746f28e5077d31b6f015c9516ca22f7fc59e62b0d0a69b02a95bbf780a4118bd24df6bf8c0d94f36074a8192 next_version=5 time=4.67463ms accesses_build_time=16.13µs finishing_session_time=576.676µs -2026-04-20T10:40:34.044867Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=5 prev_hash=0xb7eb4f83e0b895e8d10166a5fb0673dd826069a7e3989fd04e1ba7f4df4deb73 hash=0x0bb6869d1686cd4f83a3d71d1f81c262d2ed1889e31add51d211e6bed293b0fc producing_time=1.52586ms -2026-04-20T10:40:34.047542Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=5 current_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de182a832a0e1832e885e11c6d14bff449531ff7e82a11b453870781ef720726c4" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9ce6c494fe82468ce25c30c30ad97a6db11e5d22bcac40b97df0a7237f7c6eac"] proof_blobs=[] -2026-04-20T10:40:34.047778Z DEBUG StfBlueprint::apply_slot{context=Node da_height=5}: sov_chain_state: Setting next visible slot number next_visible_slot_number=1 -2026-04-20T10:40:34.047924Z DEBUG StfBlueprint::apply_slot{context=Node da_height=5}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x9ce6c494fe82468ce25c30c30ad97a6db11e5d22bcac40b97df0a7237f7c6eac}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[10, 10], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:40:34.048107Z DEBUG StfBlueprint::apply_slot{context=Node da_height=5}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de182a832a0e1832e885e11c6d14bff449531ff7e82a11b453870781ef720726c4 next_version=5 sesssion_starting_time=50.61µs -2026-04-20T10:40:34.048954Z DEBUG StfBlueprint::apply_slot{context=Node da_height=5}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=12afbfd453eaa8ea20d8bcf5015ef348aada8234746f28e5077d31b6f015c951465da3fab04bcfb81c93a87abacb2520865a7a904dcac1cc5bc459f21593e7ae next_version=5 time=926.614µs accesses_build_time=28.23µs finishing_session_time=818.725µs -2026-04-20T10:40:34.049096Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de7a4c1361b72405b7c05c6ec05a10b571d57d6994b53d92bad1cf9b783a81fa87" next_state_root="12afbfd453eaa8ea20d8bcf5015ef348aada8234746f28e5077d31b6f015c951465da3fab04bcfb81c93a87abacb2520865a7a904dcac1cc5bc459f21593e7ae" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:40:34.049594Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 5, latest_finalized_slot_number: 4, sync_status: Synced { synced_da_height: 4 }, .. } -2026-04-20T10:40:34.049684Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=1 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 5, latest_finalized_slot_number: 4, sync_status: Synced { synced_da_height: 4 }, .. } -2026-04-20T10:40:34.049766Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=1 -2026-04-20T10:40:34.049970Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:40:34.050031Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=0 -2026-04-20T10:40:34.050123Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=2 -2026-04-20T10:40:34.050246Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:40:34.050416Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=2 sequence_number=1 -2026-04-20T10:40:34.050431Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=1 blob_id=2147876300638688266126907011951582060 visible_slot_number_after_increase=2 visible_slots_to_advance=1 -2026-04-20T10:40:34.050488Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[9, 9], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:40:34.052559Z DEBUG manage_blob_submission_inside_task{blob_id=2147876300638688266126907011951582060 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x849cacf44ed69c96f5f28a1b31f13a8e7b2499539b4471650f5f792bd38a3b68 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=6 include_at=6 bytes=13 time=993.424µs -2026-04-20T10:40:34.055057Z DEBUG sov_stf_runner::runner: Block execution complete time=5.998759884s -2026-04-20T10:40:34.055078Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:40:34.055049Z DEBUG compute_state_update{scope="sequencer" rollup_height=2 slot_number=2}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:40:34.055218Z DEBUG compute_state_update{scope="sequencer" rollup_height=2 slot_number=2}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=12afbfd453eaa8ea20d8bcf5015ef348aada8234746f28e5077d31b6f015c951465da3fab04bcfb81c93a87abacb2520865a7a904dcac1cc5bc459f21593e7ae next_version=6 sesssion_starting_time=4.305512ms -2026-04-20T10:40:34.055837Z DEBUG compute_state_update{scope="sequencer" rollup_height=2 slot_number=2}: sov_state::nomt::prover_storage: computed next state root state_root=6a91f63044ddb550bdbff272e6a061d37c02576cd01758142641930d3d13d75957ff0cc9f64e8151b8d79d3716a8531688df4f27e0b8da5e3341c7a37e904fd9 next_version=6 time=4.942878ms accesses_build_time=16.66µs finishing_session_time=570.736µs -2026-04-20T10:40:40.047369Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=6 prev_hash=0x0bb6869d1686cd4f83a3d71d1f81c262d2ed1889e31add51d211e6bed293b0fc hash=0x372f67e3818fdf0afafcb4c95d95904041820779beaff92dbc850804501da3a9 producing_time=1.53304ms -2026-04-20T10:40:40.056082Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=6 current_state_root="12afbfd453eaa8ea20d8bcf5015ef348aada8234746f28e5077d31b6f015c951465da3fab04bcfb81c93a87abacb2520865a7a904dcac1cc5bc459f21593e7ae" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x849cacf44ed69c96f5f28a1b31f13a8e7b2499539b4471650f5f792bd38a3b68"] proof_blobs=[] -2026-04-20T10:40:40.056356Z DEBUG StfBlueprint::apply_slot{context=Node da_height=6}: sov_chain_state: Setting next visible slot number next_visible_slot_number=2 -2026-04-20T10:40:40.056509Z DEBUG StfBlueprint::apply_slot{context=Node da_height=6}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x849cacf44ed69c96f5f28a1b31f13a8e7b2499539b4471650f5f792bd38a3b68}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[9, 9], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:40:40.056694Z DEBUG StfBlueprint::apply_slot{context=Node da_height=6}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=12afbfd453eaa8ea20d8bcf5015ef348aada8234746f28e5077d31b6f015c951465da3fab04bcfb81c93a87abacb2520865a7a904dcac1cc5bc459f21593e7ae next_version=6 sesssion_starting_time=44.59µs -2026-04-20T10:40:40.057593Z DEBUG StfBlueprint::apply_slot{context=Node da_height=6}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6a91f63044ddb550bdbff272e6a061d37c02576cd01758142641930d3d13d7597e6688d73e810c09c53ab110d78e70aa89c34024fdb57027a86abfbda968c80c next_version=6 time=971.914µs accesses_build_time=27.88µs finishing_session_time=867.474µs -2026-04-20T10:40:40.057776Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de182a832a0e1832e885e11c6d14bff449531ff7e82a11b453870781ef720726c4" next_state_root="6a91f63044ddb550bdbff272e6a061d37c02576cd01758142641930d3d13d7597e6688d73e810c09c53ab110d78e70aa89c34024fdb57027a86abfbda968c80c" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:40:40.058395Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 6, latest_finalized_slot_number: 5, sync_status: Synced { synced_da_height: 5 }, .. } -2026-04-20T10:40:40.058489Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=2 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 6, latest_finalized_slot_number: 5, sync_status: Synced { synced_da_height: 5 }, .. } -2026-04-20T10:40:40.058551Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=2 -2026-04-20T10:40:40.058792Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:40:40.058857Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=0 -2026-04-20T10:40:40.059007Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=3 -2026-04-20T10:40:40.059163Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:40:40.059363Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=3 sequence_number=2 -2026-04-20T10:40:40.059387Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=2 blob_id=2147876307903176050080173790733632679 visible_slot_number_after_increase=3 visible_slots_to_advance=1 -2026-04-20T10:40:40.059435Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[8, 8], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:40:40.061326Z DEBUG manage_blob_submission_inside_task{blob_id=2147876307903176050080173790733632679 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x1bbd12b296d882cd66e508a2aea64790a7919adec58725020ae0eece56468c53 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=7 include_at=7 bytes=13 time=780.475µs -2026-04-20T10:40:40.072472Z DEBUG compute_state_update{scope="sequencer" rollup_height=3 slot_number=3}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:40:40.072521Z DEBUG sov_stf_runner::runner: Block execution complete time=6.017443534s -2026-04-20T10:40:40.072541Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:40:40.072549Z DEBUG compute_state_update{scope="sequencer" rollup_height=3 slot_number=3}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6a91f63044ddb550bdbff272e6a061d37c02576cd01758142641930d3d13d7597e6688d73e810c09c53ab110d78e70aa89c34024fdb57027a86abfbda968c80c next_version=7 sesssion_starting_time=12.633148ms -2026-04-20T10:40:40.072677Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:40:40.072757Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:40:40.073193Z DEBUG compute_state_update{scope="sequencer" rollup_height=3 slot_number=3}: sov_state::nomt::prover_storage: computed next state root state_root=4f26a39c4c45c37c1eebf837e9e153d7ddcdada168ca66a26ee9f81b5f78e8063e7e8655a9c646fca7f5a4a05e0a393fb67585e7df223d31cf23aeac444b2eb6 next_version=7 time=13.290024ms accesses_build_time=12.28µs finishing_session_time=621.786µs -2026-04-20T10:40:40.631217Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4GMHBgPlREu-3COd3BjRsA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:40:40.634149Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:40:40.644899Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 512486 cycles -2026-04-20T10:40:40.647520Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 76, 230, 193, 226, 54, 127, 17, 218, 78, 62, 230, 203, 177, 149, 45, 220, 97, 124, 36, 90, 162, 95, 52, 251, 38, 92, 41, 185, 76, 130, 164, 212, 247, 20, 131, 135, 222, 212, 253, 193, 134, 55, 125, 48, 249, 141, 165, 51, 60, 130, 20, 67, 156, 77, 118, 133, 142, 202, 182, 7, 136, 22, 105, 201, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:40:40.673279Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:40:40.673366Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:40:40.781615Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:40:40.816173Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zNc_2_LlTRCX-ciHrueFWw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:40:40.819311Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:40:40.820110Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1171769 cycles -2026-04-20T10:40:40.820419Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 76, 230, 193, 226, 54, 127, 17, 218, 78, 62, 230, 203, 177, 149, 45, 220, 97, 124, 36, 90, 162, 95, 52, 251, 38, 92, 41, 185, 76, 130, 164, 212, 247, 20, 131, 135, 222, 212, 253, 193, 134, 55, 125, 48, 249, 141, 165, 51, 60, 130, 20, 67, 156, 77, 118, 133, 142, 202, 182, 7, 136, 22, 105, 201, 247, 20, 131, 135, 222, 212, 253, 193, 134, 55, 125, 48, 249, 141, 165, 51, 60, 130, 20, 67, 156, 77, 118, 133, 142, 202, 182, 7, 136, 22, 105, 201, 32, 0, 0, 0, 0, 0, 0, 0, 126, 64, 51, 9, 52, 167, 53, 107, 44, 198, 65, 138, 11, 18, 204, 150, 109, 197, 60, 0, 62, 152, 119, 129, 28, 165, 228, 96, 99, 161, 153, 53, 32, 0, 0, 0, 0, 0, 0, 0, 59, 209, 232, 112, 86, 184, 175, 19, 76, 196, 239, 140, 55, 24, 235, 120, 69, 111, 64, 71, 76, 131, 137, 27, 9, 27, 249, 183, 42, 223, 170, 91, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:40:40.889460Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:40:40.889511Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:40:40.889636Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=967 -2026-04-20T10:40:40.890086Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=3 blob_id=2147876308906566774822105059362076883 -2026-04-20T10:40:46.050057Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=7 prev_hash=0x372f67e3818fdf0afafcb4c95d95904041820779beaff92dbc850804501da3a9 hash=0x5d594544ffe5e6b4cc1059e57fea6f6966445dc438b8e70eea8ee050db785a6f producing_time=1.401751ms -2026-04-20T10:40:46.054827Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=7 current_state_root="6a91f63044ddb550bdbff272e6a061d37c02576cd01758142641930d3d13d7597e6688d73e810c09c53ab110d78e70aa89c34024fdb57027a86abfbda968c80c" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1bbd12b296d882cd66e508a2aea64790a7919adec58725020ae0eece56468c53"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xbe8eccbe0b2a9d62706bebb795c20cef2ee00dc029f0062a01b840a7e6d11733, len=1017"] -2026-04-20T10:40:46.055049Z DEBUG StfBlueprint::apply_slot{context=Node da_height=7}: sov_chain_state: Setting next visible slot number next_visible_slot_number=3 -2026-04-20T10:40:46.055177Z DEBUG StfBlueprint::apply_slot{context=Node da_height=7}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x1bbd12b296d882cd66e508a2aea64790a7919adec58725020ae0eece56468c53}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[8, 8], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:40:46.055371Z DEBUG StfBlueprint::apply_slot{context=Node da_height=7}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6a91f63044ddb550bdbff272e6a061d37c02576cd01758142641930d3d13d7597e6688d73e810c09c53ab110d78e70aa89c34024fdb57027a86abfbda968c80c next_version=7 sesssion_starting_time=62.469µs -2026-04-20T10:40:46.056233Z DEBUG StfBlueprint::apply_slot{context=Node da_height=7}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4f26a39c4c45c37c1eebf837e9e153d7ddcdada168ca66a26ee9f81b5f78e80661bee0166e28d82e82390036610f8fcb636b21c325cf46017e6d4192456594a7 next_version=7 time=960.184µs accesses_build_time=34.33µs finishing_session_time=822.905µs -2026-04-20T10:40:46.056394Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="12afbfd453eaa8ea20d8bcf5015ef348aada8234746f28e5077d31b6f015c951465da3fab04bcfb81c93a87abacb2520865a7a904dcac1cc5bc459f21593e7ae" next_state_root="4f26a39c4c45c37c1eebf837e9e153d7ddcdada168ca66a26ee9f81b5f78e80661bee0166e28d82e82390036610f8fcb636b21c325cf46017e6d4192456594a7" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:40:46.056925Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 7, latest_finalized_slot_number: 6, sync_status: Synced { synced_da_height: 6 }, .. } -2026-04-20T10:40:46.057017Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=3 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 7, latest_finalized_slot_number: 6, sync_status: Synced { synced_da_height: 6 }, .. } -2026-04-20T10:40:46.057082Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=3 -2026-04-20T10:40:46.057271Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:40:46.057360Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=0 -2026-04-20T10:40:46.057494Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=4 -2026-04-20T10:40:46.057609Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -VVVV SP1Verifier -SP! VERIFIER: true -XXX -2026-04-20T10:40:46.057894Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: VERIfiCATION SUCCEEDED -2026-04-20T10:40:46.058056Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=4 sequence_number=4 -2026-04-20T10:40:46.058087Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=4 blob_id=2147876315155482808537628856277196942 visible_slot_number_after_increase=4 visible_slots_to_advance=1 -2026-04-20T10:40:46.058102Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:40:46.059999Z DEBUG manage_blob_submission_inside_task{blob_id=2147876315155482808537628856277196942 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xe110e5634891f9c3c151bc165b9129ea72ea6dd0531c7cc484912ea8d7fbd1bc sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=8 include_at=8 bytes=13 time=817.054µs -2026-04-20T10:40:46.066552Z DEBUG sov_stf_runner::runner: Block execution complete time=5.994013215s -2026-04-20T10:40:46.066569Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:40:46.066576Z DEBUG compute_state_update{scope="sequencer" rollup_height=4 slot_number=4}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:40:46.066660Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:40:46.066724Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:40:46.066732Z DEBUG compute_state_update{scope="sequencer" rollup_height=4 slot_number=4}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4f26a39c4c45c37c1eebf837e9e153d7ddcdada168ca66a26ee9f81b5f78e80661bee0166e28d82e82390036610f8fcb636b21c325cf46017e6d4192456594a7 next_version=8 sesssion_starting_time=8.099328ms -2026-04-20T10:40:46.067856Z DEBUG compute_state_update{scope="sequencer" rollup_height=4 slot_number=4}: sov_state::nomt::prover_storage: computed next state root state_root=25fda794b883704726b26a822a4c96798e8f44e825ad29112b8a44f1f72ef3083208c87dcc30453e598f3591e9577801b3ff3ca4665da240307394d0298c71c5 next_version=8 time=9.243721ms accesses_build_time=21.04µs finishing_session_time=1.096233ms -2026-04-20T10:40:46.637969Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NXSA9B6tR4yVHP_cHJwTxQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:40:46.641329Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:40:46.651941Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 574456 cycles -2026-04-20T10:40:46.654484Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 70, 72, 56, 55, 129, 214, 247, 70, 122, 191, 40, 209, 91, 205, 206, 237, 64, 70, 7, 99, 28, 147, 206, 164, 38, 215, 181, 144, 216, 80, 72, 138, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 67, 77, 58, 237, 66, 113, 254, 153, 203, 161, 108, 233, 8, 18, 243, 216, 219, 223, 58, 197, 29, 49, 66, 173, 125, 177, 6, 147, 144, 123, 225, 77, 160, 30, 61, 219, 56, 36, 71, 130, 243, 253, 140, 141, 247, 37, 193, 33, 221, 63, 229, 214, 215, 175, 192, 53, 65, 246, 170, 232, 77, 25, 111, 57, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:40:46.684309Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:40:46.684383Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:40:46.774133Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:40:46.807719Z DEBUG sp1_core_executor_runner::native: CHILD sp1_6NVaqvfYS2-nA_3IxWLEZQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:40:46.810651Z DEBUG sp1_core_executor_runner::native: CHILD sp1_6NVaqvfYS2-nA_3IxWLEZQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:40:46.811293Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:40:46.812134Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1281629 cycles -2026-04-20T10:40:46.812441Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 70, 72, 56, 55, 129, 214, 247, 70, 122, 191, 40, 209, 91, 205, 206, 237, 64, 70, 7, 99, 28, 147, 206, 164, 38, 215, 181, 144, 216, 80, 72, 138, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 67, 77, 58, 237, 66, 113, 254, 153, 203, 161, 108, 233, 8, 18, 243, 216, 219, 223, 58, 197, 29, 49, 66, 173, 125, 177, 6, 147, 144, 123, 225, 77, 160, 30, 61, 219, 56, 36, 71, 130, 243, 253, 140, 141, 247, 37, 193, 33, 221, 63, 229, 214, 215, 175, 192, 53, 65, 246, 170, 232, 77, 25, 111, 57, 160, 30, 61, 219, 56, 36, 71, 130, 243, 253, 140, 141, 247, 37, 193, 33, 221, 63, 229, 214, 215, 175, 192, 53, 65, 246, 170, 232, 77, 25, 111, 57, 32, 0, 0, 0, 0, 0, 0, 0, 126, 64, 51, 9, 52, 167, 53, 107, 44, 198, 65, 138, 11, 18, 204, 150, 109, 197, 60, 0, 62, 152, 119, 129, 28, 165, 228, 96, 99, 161, 153, 53, 32, 0, 0, 0, 0, 0, 0, 0, 59, 209, 232, 112, 86, 184, 175, 19, 76, 196, 239, 140, 55, 24, 235, 120, 69, 111, 64, 71, 76, 131, 137, 27, 9, 27, 249, 183, 42, 223, 170, 91, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:40:46.885580Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:40:46.885626Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:40:46.885808Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=967 -2026-04-20T10:40:46.886375Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=5 blob_id=2147876316155314895295028238051234772 -2026-04-20T10:40:52.052926Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=8 prev_hash=0x5d594544ffe5e6b4cc1059e57fea6f6966445dc438b8e70eea8ee050db785a6f hash=0xb00a9d954cb5888b118f9a15a3e96f4c84708e4ef51fc173c4518537e79a6738 producing_time=1.45318ms -2026-04-20T10:40:52.058650Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=8 current_state_root="4f26a39c4c45c37c1eebf837e9e153d7ddcdada168ca66a26ee9f81b5f78e80661bee0166e28d82e82390036610f8fcb636b21c325cf46017e6d4192456594a7" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe110e5634891f9c3c151bc165b9129ea72ea6dd0531c7cc484912ea8d7fbd1bc"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xcf2fa672cfd17a00703ce12da99acc9ad20b1146d056632e221630299b5b7e0a, len=1017"] -2026-04-20T10:40:52.058935Z DEBUG StfBlueprint::apply_slot{context=Node da_height=8}: sov_chain_state: Setting next visible slot number next_visible_slot_number=4 -VVVV SP1Verifier -SP! VERIFIER: true -XXX -2026-04-20T10:40:52.059149Z DEBUG StfBlueprint::apply_slot{context=Node da_height=8}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: VERIfiCATION SUCCEEDED -2026-04-20T10:40:52.059245Z DEBUG StfBlueprint::apply_slot{context=Node da_height=8}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xe110e5634891f9c3c151bc165b9129ea72ea6dd0531c7cc484912ea8d7fbd1bc}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:40:52.059443Z DEBUG StfBlueprint::apply_slot{context=Node da_height=8}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4f26a39c4c45c37c1eebf837e9e153d7ddcdada168ca66a26ee9f81b5f78e80661bee0166e28d82e82390036610f8fcb636b21c325cf46017e6d4192456594a7 next_version=8 sesssion_starting_time=47.809µs -2026-04-20T10:40:52.060441Z DEBUG StfBlueprint::apply_slot{context=Node da_height=8}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=25fda794b883704726b26a822a4c96798e8f44e825ad29112b8a44f1f72ef3082a997b7f9ea5f079e5b0d0a7d331c0c88a7f9fb46f1582776aadbe76ff4fdf0b next_version=8 time=1.082703ms accesses_build_time=36.78µs finishing_session_time=964.974µs -2026-04-20T10:40:52.060595Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6a91f63044ddb550bdbff272e6a061d37c02576cd01758142641930d3d13d7597e6688d73e810c09c53ab110d78e70aa89c34024fdb57027a86abfbda968c80c" next_state_root="25fda794b883704726b26a822a4c96798e8f44e825ad29112b8a44f1f72ef3082a997b7f9ea5f079e5b0d0a7d331c0c88a7f9fb46f1582776aadbe76ff4fdf0b" aggregated_proofs=1 proof_receipts=1 -2026-04-20T10:40:52.061136Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 8, latest_finalized_slot_number: 7, sync_status: Synced { synced_da_height: 7 }, .. } -2026-04-20T10:40:52.061234Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=4 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 8, latest_finalized_slot_number: 7, sync_status: Synced { synced_da_height: 7 }, .. } -2026-04-20T10:40:52.061304Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=4 -2026-04-20T10:40:52.061557Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:40:52.061637Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=0 -2026-04-20T10:40:52.061778Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=5 -2026-04-20T10:40:52.061903Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -VVVV SP1Verifier -SP! VERIFIER: true -XXX -2026-04-20T10:40:52.062076Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: VERIfiCATION SUCCEEDED -2026-04-20T10:40:52.062206Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=5 sequence_number=6 -2026-04-20T10:40:52.062230Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=6 blob_id=2147876322413882265973085138961971366 visible_slot_number_after_increase=5 visible_slots_to_advance=1 -2026-04-20T10:40:52.062256Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:40:52.063984Z DEBUG manage_blob_submission_inside_task{blob_id=2147876322413882265973085138961971366 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x414da74fe19fd4f16b946d9131275fb080fe8660f0529de5027939b93abbf3fc sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=9 include_at=9 bytes=13 time=691.766µs -2026-04-20T10:40:52.074724Z DEBUG compute_state_update{scope="sequencer" rollup_height=5 slot_number=5}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:40:52.074759Z DEBUG sov_stf_runner::runner: Block execution complete time=6.008191144s -2026-04-20T10:40:52.074785Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:40:52.074804Z DEBUG compute_state_update{scope="sequencer" rollup_height=5 slot_number=5}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=25fda794b883704726b26a822a4c96798e8f44e825ad29112b8a44f1f72ef3082a997b7f9ea5f079e5b0d0a7d331c0c88a7f9fb46f1582776aadbe76ff4fdf0b next_version=9 sesssion_starting_time=12.141952ms -2026-04-20T10:40:52.074869Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:40:52.074933Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:40:52.075410Z DEBUG compute_state_update{scope="sequencer" rollup_height=5 slot_number=5}: sov_state::nomt::prover_storage: computed next state root state_root=23e3050a14e73f576216e04427ff0a278fbf6f5319bd423d4943c351cf3ccc517222b9b0369be236c5a0563bdaf1677d2b76071db1df1ae98e0c2617f780a721 next_version=9 time=12.763498ms accesses_build_time=14.66µs finishing_session_time=579.646µs -2026-04-20T10:40:52.633423Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mOuxxn1rTpG2KdQh2C3Tkw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:40:52.636837Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:40:52.646976Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 589078 cycles -2026-04-20T10:40:52.649643Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 67, 77, 58, 237, 66, 113, 254, 153, 203, 161, 108, 233, 8, 18, 243, 216, 219, 223, 58, 197, 29, 49, 66, 173, 125, 177, 6, 147, 144, 123, 225, 77, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 103, 130, 44, 51, 31, 229, 102, 106, 227, 125, 175, 147, 174, 12, 217, 129, 48, 216, 193, 165, 163, 20, 40, 160, 247, 87, 114, 38, 46, 156, 111, 28, 45, 176, 194, 80, 12, 125, 244, 105, 228, 138, 46, 83, 20, 133, 243, 218, 7, 102, 73, 175, 104, 207, 117, 171, 42, 244, 237, 123, 191, 119, 3, 146, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:40:52.678091Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:40:52.678137Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:40:52.782596Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:40:52.818306Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AInMqSXzQcWtf9wINhAopA==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:40:52.821236Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AInMqSXzQcWtf9wINhAopA==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:40:52.821822Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:40:52.822612Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1281629 cycles -2026-04-20T10:40:52.822931Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 67, 77, 58, 237, 66, 113, 254, 153, 203, 161, 108, 233, 8, 18, 243, 216, 219, 223, 58, 197, 29, 49, 66, 173, 125, 177, 6, 147, 144, 123, 225, 77, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 103, 130, 44, 51, 31, 229, 102, 106, 227, 125, 175, 147, 174, 12, 217, 129, 48, 216, 193, 165, 163, 20, 40, 160, 247, 87, 114, 38, 46, 156, 111, 28, 45, 176, 194, 80, 12, 125, 244, 105, 228, 138, 46, 83, 20, 133, 243, 218, 7, 102, 73, 175, 104, 207, 117, 171, 42, 244, 237, 123, 191, 119, 3, 146, 45, 176, 194, 80, 12, 125, 244, 105, 228, 138, 46, 83, 20, 133, 243, 218, 7, 102, 73, 175, 104, 207, 117, 171, 42, 244, 237, 123, 191, 119, 3, 146, 32, 0, 0, 0, 0, 0, 0, 0, 126, 64, 51, 9, 52, 167, 53, 107, 44, 198, 65, 138, 11, 18, 204, 150, 109, 197, 60, 0, 62, 152, 119, 129, 28, 165, 228, 96, 99, 161, 153, 53, 32, 0, 0, 0, 0, 0, 0, 0, 59, 209, 232, 112, 86, 184, 175, 19, 76, 196, 239, 140, 55, 24, 235, 120, 69, 111, 64, 71, 76, 131, 137, 27, 9, 27, 249, 183, 42, 223, 170, 91, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:40:52.896504Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:40:52.896551Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:40:52.896728Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=967 -2026-04-20T10:40:52.897304Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=7 blob_id=2147876323422154178549409705755696543 -2026-04-20T10:40:58.055726Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=9 prev_hash=0xb00a9d954cb5888b118f9a15a3e96f4c84708e4ef51fc173c4518537e79a6738 hash=0xca2634c833a09457ee27a2eea66e0591db57fe56d982d723b8b612fc3f873a8a producing_time=1.453991ms -2026-04-20T10:40:58.056374Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=9 current_state_root="25fda794b883704726b26a822a4c96798e8f44e825ad29112b8a44f1f72ef3082a997b7f9ea5f079e5b0d0a7d331c0c88a7f9fb46f1582776aadbe76ff4fdf0b" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x414da74fe19fd4f16b946d9131275fb080fe8660f0529de5027939b93abbf3fc"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x014f67d8f4b6f3ea773a40a7a13cb02f299d9edb1fd35a5d1d36f497e15ca784, len=1017"] -2026-04-20T10:40:58.056662Z DEBUG StfBlueprint::apply_slot{context=Node da_height=9}: sov_chain_state: Setting next visible slot number next_visible_slot_number=5 -VVVV SP1Verifier -SP! VERIFIER: true -XXX -2026-04-20T10:40:58.056871Z DEBUG StfBlueprint::apply_slot{context=Node da_height=9}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: VERIfiCATION SUCCEEDED -2026-04-20T10:40:58.056972Z DEBUG StfBlueprint::apply_slot{context=Node da_height=9}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x414da74fe19fd4f16b946d9131275fb080fe8660f0529de5027939b93abbf3fc}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:40:58.057157Z DEBUG StfBlueprint::apply_slot{context=Node da_height=9}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=25fda794b883704726b26a822a4c96798e8f44e825ad29112b8a44f1f72ef3082a997b7f9ea5f079e5b0d0a7d331c0c88a7f9fb46f1582776aadbe76ff4fdf0b next_version=9 sesssion_starting_time=48.949µs -2026-04-20T10:40:58.058115Z DEBUG StfBlueprint::apply_slot{context=Node da_height=9}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=23e3050a14e73f576216e04427ff0a278fbf6f5319bd423d4943c351cf3ccc51557184974df5d471ab81b4fc2a788f1d2ea1009beedbbd65ec5351fc931dcc9f next_version=9 time=1.046733ms accesses_build_time=38.36µs finishing_session_time=933.434µs -2026-04-20T10:40:58.058265Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4f26a39c4c45c37c1eebf837e9e153d7ddcdada168ca66a26ee9f81b5f78e80661bee0166e28d82e82390036610f8fcb636b21c325cf46017e6d4192456594a7" next_state_root="23e3050a14e73f576216e04427ff0a278fbf6f5319bd423d4943c351cf3ccc51557184974df5d471ab81b4fc2a788f1d2ea1009beedbbd65ec5351fc931dcc9f" aggregated_proofs=1 proof_receipts=1 -2026-04-20T10:40:58.058851Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 9, latest_finalized_slot_number: 8, sync_status: Synced { synced_da_height: 8 }, .. } -2026-04-20T10:40:58.058940Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=5 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 9, latest_finalized_slot_number: 8, sync_status: Synced { synced_da_height: 8 }, .. } -2026-04-20T10:40:58.059019Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=5 -2026-04-20T10:40:58.070161Z DEBUG sov_stf_runner::runner: Block execution complete time=5.995376617s -2026-04-20T10:40:58.070193Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:40:58.070295Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:40:58.070384Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:40:58.630024Z DEBUG sp1_core_executor_runner::native: CHILD sp1_urZMS9IXSI-opCmivxJwtg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:40:58.633733Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:40:58.643393Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 617322 cycles -2026-04-20T10:40:58.646218Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 122, 76, 19, 97, 183, 36, 5, 183, 192, 92, 110, 192, 90, 16, 181, 113, 213, 125, 105, 148, 181, 61, 146, 186, 209, 207, 155, 120, 58, 129, 250, 135, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 76, 224, 83, 103, 215, 145, 5, 225, 82, 236, 179, 248, 166, 126, 46, 102, 23, 27, 34, 67, 85, 22, 60, 1, 93, 25, 24, 40, 104, 208, 129, 120, 183, 235, 79, 131, 224, 184, 149, 232, 209, 1, 102, 165, 251, 6, 115, 221, 130, 96, 105, 167, 227, 152, 159, 208, 78, 27, 167, 244, 223, 77, 235, 115, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:40:58.677872Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:40:58.677932Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:40:58.776693Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:40:58.810580Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zjeQ1b4AQUKQ1_0gLPAV5Q==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:40:58.813488Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zjeQ1b4AQUKQ1_0gLPAV5Q==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:40:58.814124Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:40:58.814896Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1281629 cycles -2026-04-20T10:40:58.815206Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 122, 76, 19, 97, 183, 36, 5, 183, 192, 92, 110, 192, 90, 16, 181, 113, 213, 125, 105, 148, 181, 61, 146, 186, 209, 207, 155, 120, 58, 129, 250, 135, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 76, 224, 83, 103, 215, 145, 5, 225, 82, 236, 179, 248, 166, 126, 46, 102, 23, 27, 34, 67, 85, 22, 60, 1, 93, 25, 24, 40, 104, 208, 129, 120, 183, 235, 79, 131, 224, 184, 149, 232, 209, 1, 102, 165, 251, 6, 115, 221, 130, 96, 105, 167, 227, 152, 159, 208, 78, 27, 167, 244, 223, 77, 235, 115, 183, 235, 79, 131, 224, 184, 149, 232, 209, 1, 102, 165, 251, 6, 115, 221, 130, 96, 105, 167, 227, 152, 159, 208, 78, 27, 167, 244, 223, 77, 235, 115, 32, 0, 0, 0, 0, 0, 0, 0, 126, 64, 51, 9, 52, 167, 53, 107, 44, 198, 65, 138, 11, 18, 204, 150, 109, 197, 60, 0, 62, 152, 119, 129, 28, 165, 228, 96, 99, 161, 153, 53, 32, 0, 0, 0, 0, 0, 0, 0, 59, 209, 232, 112, 86, 184, 175, 19, 76, 196, 239, 140, 55, 24, 235, 120, 69, 111, 64, 71, 76, 131, 137, 27, 9, 27, 249, 183, 42, 223, 170, 91, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:40:58.887234Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:40:58.887283Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:40:58.887462Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=967 -2026-04-20T10:40:58.888138Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=8 blob_id=2147876330664848778505564966689483097 -2026-04-20T10:41:04.057978Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=10 prev_hash=0xca2634c833a09457ee27a2eea66e0591db57fe56d982d723b8b612fc3f873a8a hash=0x868089fe4d0c5683b8632d1837831808164bf7fef5b9bc7ad1c3677a73548369 producing_time=1.446021ms -2026-04-20T10:41:04.061769Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=10 current_state_root="23e3050a14e73f576216e04427ff0a278fbf6f5319bd423d4943c351cf3ccc51557184974df5d471ab81b4fc2a788f1d2ea1009beedbbd65ec5351fc931dcc9f" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0193ef83565c1e0c37b457f54d6a1e24946022b42c0f23f6bebefde982311b01, len=1017"] -2026-04-20T10:41:04.062093Z DEBUG StfBlueprint::apply_slot{context=Node da_height=10}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=23e3050a14e73f576216e04427ff0a278fbf6f5319bd423d4943c351cf3ccc51557184974df5d471ab81b4fc2a788f1d2ea1009beedbbd65ec5351fc931dcc9f next_version=10 sesssion_starting_time=44.63µs -2026-04-20T10:41:04.062883Z DEBUG StfBlueprint::apply_slot{context=Node da_height=10}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=23e3050a14e73f576216e04427ff0a278fbf6f5319bd423d4943c351cf3ccc517209c34517160f5aa9574317f22fc0d455333d353ea414be50d056fbe6a13871 next_version=10 time=850.274µs accesses_build_time=14.67µs finishing_session_time=734.895µs -2026-04-20T10:41:04.062952Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="25fda794b883704726b26a822a4c96798e8f44e825ad29112b8a44f1f72ef3082a997b7f9ea5f079e5b0d0a7d331c0c88a7f9fb46f1582776aadbe76ff4fdf0b" next_state_root="23e3050a14e73f576216e04427ff0a278fbf6f5319bd423d4943c351cf3ccc517209c34517160f5aa9574317f22fc0d455333d353ea414be50d056fbe6a13871" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:41:04.063472Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 10, latest_finalized_slot_number: 9, sync_status: Synced { synced_da_height: 9 }, .. } -2026-04-20T10:41:04.063568Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=5 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 10, latest_finalized_slot_number: 9, sync_status: Synced { synced_da_height: 9 }, .. } -2026-04-20T10:41:04.063633Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=5 -2026-04-20T10:41:04.063852Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:41:04.063923Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=1 -2026-04-20T10:41:04.064054Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=6 -2026-04-20T10:41:04.064261Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -VVVV SP1Verifier -SP! VERIFIER: true -XXX -2026-04-20T10:41:04.064517Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: VERIfiCATION SUCCEEDED -VVVV SP1Verifier -SP! VERIFIER: true -XXX -2026-04-20T10:41:04.064663Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: VERIfiCATION SUCCEEDED -2026-04-20T10:41:04.064813Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=6 sequence_number=9 -2026-04-20T10:41:04.064852Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=9 blob_id=2147876336923416461786273913146040109 visible_slot_number_after_increase=6 visible_slots_to_advance=1 -2026-04-20T10:41:04.064882Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=2 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:41:04.066762Z DEBUG manage_blob_submission_inside_task{blob_id=2147876336923416461786273913146040109 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xc97078b78dcaf3e27828be1d86326e0d3d8a0ea0adaed3b1525e73b2e7201175 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=11 include_at=11 bytes=13 time=804.465µs -2026-04-20T10:41:04.077453Z DEBUG compute_state_update{scope="sequencer" rollup_height=6 slot_number=6}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:41:04.077464Z DEBUG sov_stf_runner::runner: Block execution complete time=6.007272711s -2026-04-20T10:41:04.077534Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:41:04.077601Z DEBUG compute_state_update{scope="sequencer" rollup_height=6 slot_number=6}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=23e3050a14e73f576216e04427ff0a278fbf6f5319bd423d4943c351cf3ccc517209c34517160f5aa9574317f22fc0d455333d353ea414be50d056fbe6a13871 next_version=11 sesssion_starting_time=12.250271ms -2026-04-20T10:41:04.078298Z DEBUG compute_state_update{scope="sequencer" rollup_height=6 slot_number=6}: sov_state::nomt::prover_storage: computed next state root state_root=6b4291d0ad6ad12900955f72f2c57aec71269160294e436de4693ea503d8df8a3e3eab51ad95fcbedaec9b5e00373ab00a773b36ad6439a91aaf7a4da4cbe4fa next_version=11 time=12.966846ms accesses_build_time=18.15µs finishing_session_time=670.156µs -2026-04-20T10:41:10.060096Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=11 prev_hash=0x868089fe4d0c5683b8632d1837831808164bf7fef5b9bc7ad1c3677a73548369 hash=0x939e121791d809c8d8309690b5f96be545fa29d5537145c958b03959ac892c3d producing_time=1.5184ms -2026-04-20T10:41:10.069922Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=11 current_state_root="23e3050a14e73f576216e04427ff0a278fbf6f5319bd423d4943c351cf3ccc517209c34517160f5aa9574317f22fc0d455333d353ea414be50d056fbe6a13871" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc97078b78dcaf3e27828be1d86326e0d3d8a0ea0adaed3b1525e73b2e7201175"] proof_blobs=[] -2026-04-20T10:41:10.070219Z DEBUG StfBlueprint::apply_slot{context=Node da_height=11}: sov_chain_state: Setting next visible slot number next_visible_slot_number=6 -VVVV SP1Verifier -SP! VERIFIER: true -XXX -2026-04-20T10:41:10.070447Z DEBUG StfBlueprint::apply_slot{context=Node da_height=11}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: VERIfiCATION SUCCEEDED -VVVV SP1Verifier -SP! VERIFIER: true -XXX -2026-04-20T10:41:10.070576Z DEBUG StfBlueprint::apply_slot{context=Node da_height=11}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: VERIfiCATION SUCCEEDED -2026-04-20T10:41:10.070642Z DEBUG StfBlueprint::apply_slot{context=Node da_height=11}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xc97078b78dcaf3e27828be1d86326e0d3d8a0ea0adaed3b1525e73b2e7201175}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=2 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:41:10.070830Z DEBUG StfBlueprint::apply_slot{context=Node da_height=11}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=23e3050a14e73f576216e04427ff0a278fbf6f5319bd423d4943c351cf3ccc517209c34517160f5aa9574317f22fc0d455333d353ea414be50d056fbe6a13871 next_version=11 sesssion_starting_time=48.57µs -2026-04-20T10:41:10.071854Z DEBUG StfBlueprint::apply_slot{context=Node da_height=11}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6b4291d0ad6ad12900955f72f2c57aec71269160294e436de4693ea503d8df8a46b4d319bd520c1f621151c19d91caefd666f19df30ea0155ff834dc179ea60d next_version=11 time=1.112242ms accesses_build_time=38.369µs finishing_session_time=997.603µs -2026-04-20T10:41:10.072021Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="23e3050a14e73f576216e04427ff0a278fbf6f5319bd423d4943c351cf3ccc51557184974df5d471ab81b4fc2a788f1d2ea1009beedbbd65ec5351fc931dcc9f" next_state_root="6b4291d0ad6ad12900955f72f2c57aec71269160294e436de4693ea503d8df8a46b4d319bd520c1f621151c19d91caefd666f19df30ea0155ff834dc179ea60d" aggregated_proofs=2 proof_receipts=2 -2026-04-20T10:41:10.072610Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 11, latest_finalized_slot_number: 10, sync_status: Synced { synced_da_height: 10 }, .. } -2026-04-20T10:41:10.072700Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=6 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 11, latest_finalized_slot_number: 10, sync_status: Synced { synced_da_height: 10 }, .. } -2026-04-20T10:41:10.072765Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=6 -2026-04-20T10:41:10.072979Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:41:10.073041Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=2 -2026-04-20T10:41:10.073150Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=7 -2026-04-20T10:41:10.073264Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:41:10.073419Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=7 sequence_number=10 -2026-04-20T10:41:10.073439Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=10 blob_id=2147876344187827806841726059258107263 visible_slot_number_after_increase=7 visible_slots_to_advance=1 -2026-04-20T10:41:10.073481Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:41:10.075339Z DEBUG manage_blob_submission_inside_task{blob_id=2147876344187827806841726059258107263 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xac0e829061f92a39670452b18a921866723c50358a8d5c76f00ed0a3c811fdd2 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=12 include_at=12 bytes=13 time=812.175µs -2026-04-20T10:41:10.079096Z DEBUG compute_state_update{scope="sequencer" rollup_height=7 slot_number=7}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:41:10.079133Z DEBUG sov_stf_runner::runner: Block execution complete time=6.001600838s -2026-04-20T10:41:10.079171Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:41:10.079183Z DEBUG compute_state_update{scope="sequencer" rollup_height=7 slot_number=7}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6b4291d0ad6ad12900955f72f2c57aec71269160294e436de4693ea503d8df8a46b4d319bd520c1f621151c19d91caefd666f19df30ea0155ff834dc179ea60d next_version=12 sesssion_starting_time=5.396935ms -2026-04-20T10:41:10.079311Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:41:10.079681Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:41:10.079746Z DEBUG compute_state_update{scope="sequencer" rollup_height=7 slot_number=7}: sov_state::nomt::prover_storage: computed next state root state_root=222819842d412f9bf491282f9196650a719dc2b0c5a4924b1aab5b91a2b24dc572b6be86792a0c81375a4ca84204df0e9acd7ab96b464c88e4ed26058a05bf11 next_version=12 time=5.971651ms accesses_build_time=11.46µs finishing_session_time=542.586µs -2026-04-20T10:41:10.634094Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YhX_3OTdTAyx9hz8WKwuog==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:41:10.644180Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:41:10.655037Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1439853 cycles -2026-04-20T10:41:10.657776Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 24, 42, 131, 42, 14, 24, 50, 232, 133, 225, 28, 109, 20, 191, 244, 73, 83, 31, 247, 232, 42, 17, 180, 83, 135, 7, 129, 239, 114, 7, 38, 196, 95, 188, 49, 81, 87, 57, 234, 51, 135, 225, 253, 28, 185, 127, 145, 201, 18, 31, 172, 14, 21, 98, 243, 242, 16, 167, 119, 32, 73, 84, 253, 112, 7, 235, 83, 134, 80, 10, 99, 20, 2, 151, 234, 85, 131, 167, 84, 255, 199, 212, 134, 166, 250, 71, 37, 170, 157, 151, 147, 25, 68, 191, 226, 1, 11, 182, 134, 157, 22, 134, 205, 79, 131, 163, 215, 29, 31, 129, 194, 98, 210, 237, 24, 137, 227, 26, 221, 81, 210, 17, 230, 190, 210, 147, 176, 252, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:41:10.734989Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:41:10.735027Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:41:10.787532Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:41:10.820860Z DEBUG sp1_core_executor_runner::native: CHILD sp1_GcpTXcrUThq_uac1ygh7Tw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:41:10.823756Z DEBUG sp1_core_executor_runner::native: CHILD sp1_GcpTXcrUThq_uac1ygh7Tw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:41:10.824399Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:41:10.825223Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1281629 cycles -2026-04-20T10:41:10.825529Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 24, 42, 131, 42, 14, 24, 50, 232, 133, 225, 28, 109, 20, 191, 244, 73, 83, 31, 247, 232, 42, 17, 180, 83, 135, 7, 129, 239, 114, 7, 38, 196, 95, 188, 49, 81, 87, 57, 234, 51, 135, 225, 253, 28, 185, 127, 145, 201, 18, 31, 172, 14, 21, 98, 243, 242, 16, 167, 119, 32, 73, 84, 253, 112, 7, 235, 83, 134, 80, 10, 99, 20, 2, 151, 234, 85, 131, 167, 84, 255, 199, 212, 134, 166, 250, 71, 37, 170, 157, 151, 147, 25, 68, 191, 226, 1, 11, 182, 134, 157, 22, 134, 205, 79, 131, 163, 215, 29, 31, 129, 194, 98, 210, 237, 24, 137, 227, 26, 221, 81, 210, 17, 230, 190, 210, 147, 176, 252, 11, 182, 134, 157, 22, 134, 205, 79, 131, 163, 215, 29, 31, 129, 194, 98, 210, 237, 24, 137, 227, 26, 221, 81, 210, 17, 230, 190, 210, 147, 176, 252, 32, 0, 0, 0, 0, 0, 0, 0, 126, 64, 51, 9, 52, 167, 53, 107, 44, 198, 65, 138, 11, 18, 204, 150, 109, 197, 60, 0, 62, 152, 119, 129, 28, 165, 228, 96, 99, 161, 153, 53, 32, 0, 0, 0, 0, 0, 0, 0, 59, 209, 232, 112, 86, 184, 175, 19, 76, 196, 239, 140, 55, 24, 235, 120, 69, 111, 64, 71, 76, 131, 137, 27, 9, 27, 249, 183, 42, 223, 170, 91, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:41:10.898329Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:41:10.898376Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:41:10.898560Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=967 -2026-04-20T10:41:10.899171Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=11 blob_id=2147876345185199297632147384332370912 -2026-04-20T10:41:16.062247Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=12 prev_hash=0x939e121791d809c8d8309690b5f96be545fa29d5537145c958b03959ac892c3d hash=0x4b6382cc7bd41023955d48035935b6e45ce8bf33521db6a04b6041620387995d producing_time=1.58084ms -2026-04-20T10:41:16.070955Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=12 current_state_root="6b4291d0ad6ad12900955f72f2c57aec71269160294e436de4693ea503d8df8a46b4d319bd520c1f621151c19d91caefd666f19df30ea0155ff834dc179ea60d" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xac0e829061f92a39670452b18a921866723c50358a8d5c76f00ed0a3c811fdd2"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x5861821b5828950d5b535afc519a32c63160dead9a2d2dbb325fff1c44549df8, len=1017"] -2026-04-20T10:41:16.071224Z DEBUG StfBlueprint::apply_slot{context=Node da_height=12}: sov_chain_state: Setting next visible slot number next_visible_slot_number=7 -2026-04-20T10:41:16.071385Z DEBUG StfBlueprint::apply_slot{context=Node da_height=12}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xac0e829061f92a39670452b18a921866723c50358a8d5c76f00ed0a3c811fdd2}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:41:16.071577Z DEBUG StfBlueprint::apply_slot{context=Node da_height=12}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6b4291d0ad6ad12900955f72f2c57aec71269160294e436de4693ea503d8df8a46b4d319bd520c1f621151c19d91caefd666f19df30ea0155ff834dc179ea60d next_version=12 sesssion_starting_time=50.649µs -2026-04-20T10:41:16.072555Z DEBUG StfBlueprint::apply_slot{context=Node da_height=12}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=222819842d412f9bf491282f9196650a719dc2b0c5a4924b1aab5b91a2b24dc5036b68ebbc07259aaae47439898fba839e71b4a188aa90be8c0d6f2b3f859652 next_version=12 time=1.062543ms accesses_build_time=32.94µs finishing_session_time=950.384µs -2026-04-20T10:41:16.072731Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="23e3050a14e73f576216e04427ff0a278fbf6f5319bd423d4943c351cf3ccc517209c34517160f5aa9574317f22fc0d455333d353ea414be50d056fbe6a13871" next_state_root="222819842d412f9bf491282f9196650a719dc2b0c5a4924b1aab5b91a2b24dc5036b68ebbc07259aaae47439898fba839e71b4a188aa90be8c0d6f2b3f859652" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:41:16.073253Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 12, latest_finalized_slot_number: 11, sync_status: Synced { synced_da_height: 11 }, .. } -2026-04-20T10:41:16.073349Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=7 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 12, latest_finalized_slot_number: 11, sync_status: Synced { synced_da_height: 11 }, .. } -2026-04-20T10:41:16.073437Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=7 -2026-04-20T10:41:16.084480Z DEBUG sov_stf_runner::runner: Block execution complete time=6.005309934s -2026-04-20T10:41:16.084522Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:41:16.084628Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:41:16.084708Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:41:16.646055Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hakHnqQoQ0ejg1QAsYfyWQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:41:16.656370Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:41:16.667377Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1483813 cycles -2026-04-20T10:41:16.670004Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [18, 175, 191, 212, 83, 234, 168, 234, 32, 216, 188, 245, 1, 94, 243, 72, 170, 218, 130, 52, 116, 111, 40, 229, 7, 125, 49, 182, 240, 21, 201, 81, 70, 93, 163, 250, 176, 75, 207, 184, 28, 147, 168, 122, 186, 203, 37, 32, 134, 90, 122, 144, 77, 202, 193, 204, 91, 196, 89, 242, 21, 147, 231, 174, 119, 227, 60, 161, 171, 76, 138, 39, 148, 87, 35, 163, 108, 62, 29, 102, 26, 21, 205, 51, 248, 146, 167, 51, 166, 242, 202, 184, 46, 203, 211, 165, 126, 214, 198, 92, 136, 86, 72, 168, 74, 203, 250, 245, 70, 83, 80, 253, 241, 95, 17, 89, 5, 85, 182, 234, 232, 168, 108, 210, 160, 140, 144, 10, 55, 47, 103, 227, 129, 143, 223, 10, 250, 252, 180, 201, 93, 149, 144, 64, 65, 130, 7, 121, 190, 175, 249, 45, 188, 133, 8, 4, 80, 29, 163, 169, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:41:16.749781Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:41:16.749820Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:41:16.793038Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:41:16.828178Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1UcQ-omwRbeLYtWvi72EWQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:41:16.831074Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1UcQ-omwRbeLYtWvi72EWQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:41:16.831631Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:41:16.832447Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1281629 cycles -2026-04-20T10:41:16.832739Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [6, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 18, 175, 191, 212, 83, 234, 168, 234, 32, 216, 188, 245, 1, 94, 243, 72, 170, 218, 130, 52, 116, 111, 40, 229, 7, 125, 49, 182, 240, 21, 201, 81, 70, 93, 163, 250, 176, 75, 207, 184, 28, 147, 168, 122, 186, 203, 37, 32, 134, 90, 122, 144, 77, 202, 193, 204, 91, 196, 89, 242, 21, 147, 231, 174, 119, 227, 60, 161, 171, 76, 138, 39, 148, 87, 35, 163, 108, 62, 29, 102, 26, 21, 205, 51, 248, 146, 167, 51, 166, 242, 202, 184, 46, 203, 211, 165, 126, 214, 198, 92, 136, 86, 72, 168, 74, 203, 250, 245, 70, 83, 80, 253, 241, 95, 17, 89, 5, 85, 182, 234, 232, 168, 108, 210, 160, 140, 144, 10, 55, 47, 103, 227, 129, 143, 223, 10, 250, 252, 180, 201, 93, 149, 144, 64, 65, 130, 7, 121, 190, 175, 249, 45, 188, 133, 8, 4, 80, 29, 163, 169, 55, 47, 103, 227, 129, 143, 223, 10, 250, 252, 180, 201, 93, 149, 144, 64, 65, 130, 7, 121, 190, 175, 249, 45, 188, 133, 8, 4, 80, 29, 163, 169, 32, 0, 0, 0, 0, 0, 0, 0, 126, 64, 51, 9, 52, 167, 53, 107, 44, 198, 65, 138, 11, 18, 204, 150, 109, 197, 60, 0, 62, 152, 119, 129, 28, 165, 228, 96, 99, 161, 153, 53, 32, 0, 0, 0, 0, 0, 0, 0, 59, 209, 232, 112, 86, 184, 175, 19, 76, 196, 239, 140, 55, 24, 235, 120, 69, 111, 64, 71, 76, 131, 137, 27, 9, 27, 249, 183, 42, 223, 170, 91, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:41:16.906065Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:41:16.906113Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:41:16.906281Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=967 -2026-04-20T10:41:16.906891Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=12 blob_id=2147876352448456598385308136933763715 -2026-04-20T10:41:22.064583Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=13 prev_hash=0x4b6382cc7bd41023955d48035935b6e45ce8bf33521db6a04b6041620387995d hash=0x828ece3ecb265068f9dfc37628b6520ff1e6115b53ff2d43fbf963660cb61d95 producing_time=1.50216ms -2026-04-20T10:41:22.066226Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=13 current_state_root="222819842d412f9bf491282f9196650a719dc2b0c5a4924b1aab5b91a2b24dc5036b68ebbc07259aaae47439898fba839e71b4a188aa90be8c0d6f2b3f859652" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xb3e2fac82030d73bed9cfc76791e2e21d532f84da7ba42bc04aa2f769acbfa0e, len=1017"] -2026-04-20T10:41:22.066569Z DEBUG StfBlueprint::apply_slot{context=Node da_height=13}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=222819842d412f9bf491282f9196650a719dc2b0c5a4924b1aab5b91a2b24dc5036b68ebbc07259aaae47439898fba839e71b4a188aa90be8c0d6f2b3f859652 next_version=13 sesssion_starting_time=48.309µs -2026-04-20T10:41:22.067261Z DEBUG StfBlueprint::apply_slot{context=Node da_height=13}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=222819842d412f9bf491282f9196650a719dc2b0c5a4924b1aab5b91a2b24dc5071fc28b7d6762b1b468e300ba63c8283a7c92c02552be4788abef1954fdda90 next_version=13 time=757.415µs accesses_build_time=15.91µs finishing_session_time=636.006µs -2026-04-20T10:41:22.067344Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6b4291d0ad6ad12900955f72f2c57aec71269160294e436de4693ea503d8df8a46b4d319bd520c1f621151c19d91caefd666f19df30ea0155ff834dc179ea60d" next_state_root="222819842d412f9bf491282f9196650a719dc2b0c5a4924b1aab5b91a2b24dc5071fc28b7d6762b1b468e300ba63c8283a7c92c02552be4788abef1954fdda90" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:41:22.067911Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 13, latest_finalized_slot_number: 12, sync_status: Synced { synced_da_height: 12 }, .. } -2026-04-20T10:41:22.067989Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=7 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 13, latest_finalized_slot_number: 12, sync_status: Synced { synced_da_height: 12 }, .. } -2026-04-20T10:41:22.068061Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=7 -2026-04-20T10:41:22.068439Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:41:22.068547Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=3 -2026-04-20T10:41:22.068680Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=8 -2026-04-20T10:41:22.068808Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -VVVV SP1Verifier -SP! VERIFIER: true -XXX -2026-04-20T10:41:22.069022Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: VERIfiCATION SUCCEEDED -VVVV SP1Verifier -SP! VERIFIER: true -XXX -2026-04-20T10:41:22.069186Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: VERIfiCATION SUCCEEDED -2026-04-20T10:41:22.069298Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=8 sequence_number=13 -2026-04-20T10:41:22.069336Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=13 blob_id=2147876358690111936182585708869776257 visible_slot_number_after_increase=8 visible_slots_to_advance=1 -2026-04-20T10:41:22.069362Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=2 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:41:22.071170Z DEBUG manage_blob_submission_inside_task{blob_id=2147876358690111936182585708869776257 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x7d424dd7864c452b54e6774963e52a28d18bbf843d49e1bded4b4191a6005bc8 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=14 include_at=14 bytes=13 time=711.416µs -2026-04-20T10:41:22.079177Z DEBUG compute_state_update{scope="sequencer" rollup_height=8 slot_number=8}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:41:22.079210Z DEBUG sov_stf_runner::runner: Block execution complete time=5.994690843s -2026-04-20T10:41:22.079240Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:41:22.079256Z DEBUG compute_state_update{scope="sequencer" rollup_height=8 slot_number=8}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=222819842d412f9bf491282f9196650a719dc2b0c5a4924b1aab5b91a2b24dc5071fc28b7d6762b1b468e300ba63c8283a7c92c02552be4788abef1954fdda90 next_version=14 sesssion_starting_time=9.44018ms -2026-04-20T10:41:22.079957Z DEBUG compute_state_update{scope="sequencer" rollup_height=8 slot_number=8}: sov_state::nomt::prover_storage: computed next state root state_root=2c332aee258132728d6dcd1c584d7ec35df65d2621f2bfe67ff00602debe5b091428d15ea59ae639e06af8324b886e083980375fc83233cbdcb9db39d784cff9 next_version=14 time=10.157205ms accesses_build_time=14.85µs finishing_session_time=679.575µs -2026-04-20T10:41:28.067706Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=14 prev_hash=0x828ece3ecb265068f9dfc37628b6520ff1e6115b53ff2d43fbf963660cb61d95 hash=0x10c14528ba4ec18670b3a57a8f87d488a8b62e72ff03a0fa9924d0576b783b66 producing_time=1.406371ms -2026-04-20T10:41:28.070466Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=14 current_state_root="222819842d412f9bf491282f9196650a719dc2b0c5a4924b1aab5b91a2b24dc5071fc28b7d6762b1b468e300ba63c8283a7c92c02552be4788abef1954fdda90" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x7d424dd7864c452b54e6774963e52a28d18bbf843d49e1bded4b4191a6005bc8"] proof_blobs=[] -2026-04-20T10:41:28.070740Z DEBUG StfBlueprint::apply_slot{context=Node da_height=14}: sov_chain_state: Setting next visible slot number next_visible_slot_number=8 -VVVV SP1Verifier -SP! VERIFIER: true -XXX -2026-04-20T10:41:28.070951Z DEBUG StfBlueprint::apply_slot{context=Node da_height=14}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: VERIfiCATION SUCCEEDED -VVVV SP1Verifier -SP! VERIFIER: true -XXX -2026-04-20T10:41:28.071080Z DEBUG StfBlueprint::apply_slot{context=Node da_height=14}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: VERIfiCATION SUCCEEDED -2026-04-20T10:41:28.071145Z DEBUG StfBlueprint::apply_slot{context=Node da_height=14}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x7d424dd7864c452b54e6774963e52a28d18bbf843d49e1bded4b4191a6005bc8}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=2 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:41:28.071347Z DEBUG StfBlueprint::apply_slot{context=Node da_height=14}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=222819842d412f9bf491282f9196650a719dc2b0c5a4924b1aab5b91a2b24dc5071fc28b7d6762b1b468e300ba63c8283a7c92c02552be4788abef1954fdda90 next_version=14 sesssion_starting_time=67.1µs -2026-04-20T10:41:28.072324Z DEBUG StfBlueprint::apply_slot{context=Node da_height=14}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2c332aee258132728d6dcd1c584d7ec35df65d2621f2bfe67ff00602debe5b090019863abca1736c89f5154bc0ea325a6650f562aeac143988a4418bb5c79a8d next_version=14 time=1.070253ms accesses_build_time=37.389µs finishing_session_time=932.894µs -2026-04-20T10:41:28.072502Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="222819842d412f9bf491282f9196650a719dc2b0c5a4924b1aab5b91a2b24dc5036b68ebbc07259aaae47439898fba839e71b4a188aa90be8c0d6f2b3f859652" next_state_root="2c332aee258132728d6dcd1c584d7ec35df65d2621f2bfe67ff00602debe5b090019863abca1736c89f5154bc0ea325a6650f562aeac143988a4418bb5c79a8d" aggregated_proofs=2 proof_receipts=2 -2026-04-20T10:41:28.072981Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 14, latest_finalized_slot_number: 13, sync_status: Synced { synced_da_height: 13 }, .. } -2026-04-20T10:41:28.073077Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=8 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 14, latest_finalized_slot_number: 13, sync_status: Synced { synced_da_height: 13 }, .. } -2026-04-20T10:41:28.073141Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=8 -2026-04-20T10:41:28.073402Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:41:28.073483Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=4 -2026-04-20T10:41:28.073592Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=9 -2026-04-20T10:41:28.073739Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:41:28.073884Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=9 sequence_number=14 -2026-04-20T10:41:28.073924Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=14 blob_id=2147876365948529710361534353103645632 visible_slot_number_after_increase=9 visible_slots_to_advance=1 -2026-04-20T10:41:28.073928Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:41:28.075769Z DEBUG manage_blob_submission_inside_task{blob_id=2147876365948529710361534353103645632 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x95656b58edf1085b635f1f7ef742b49b06fe22f0ec9b25edf08340ecc3f0afa6 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=15 include_at=15 bytes=13 time=734.875µs -2026-04-20T10:41:28.079585Z DEBUG compute_state_update{scope="sequencer" rollup_height=9 slot_number=9}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:41:28.079636Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000397331s -2026-04-20T10:41:28.079667Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:41:28.079666Z DEBUG compute_state_update{scope="sequencer" rollup_height=9 slot_number=9}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2c332aee258132728d6dcd1c584d7ec35df65d2621f2bfe67ff00602debe5b090019863abca1736c89f5154bc0ea325a6650f562aeac143988a4418bb5c79a8d next_version=15 sesssion_starting_time=5.354025ms -2026-04-20T10:41:28.079795Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:41:28.079877Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:41:28.080428Z DEBUG compute_state_update{scope="sequencer" rollup_height=9 slot_number=9}: sov_state::nomt::prover_storage: computed next state root state_root=71450eb6f2a7fc2889bd9e5bb2f808420ae8de682f3f5e4a827a3a107e279dfb2dd250424f820b3ce0d405f90e2e9a93857a54dc249a72ac6ecd50c0db4b5be8 next_version=15 time=6.12842ms accesses_build_time=13.42µs finishing_session_time=704.935µs -2026-04-20T10:41:28.636181Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9zgU7lzrTJu-m2TkdVedeQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:41:28.647076Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:41:28.658235Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1571834 cycles -2026-04-20T10:41:28.660885Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [106, 145, 246, 48, 68, 221, 181, 80, 189, 191, 242, 114, 230, 160, 97, 211, 124, 2, 87, 108, 208, 23, 88, 20, 38, 65, 147, 13, 61, 19, 215, 89, 126, 102, 136, 215, 62, 129, 12, 9, 197, 58, 177, 16, 215, 142, 112, 170, 137, 195, 64, 36, 253, 181, 112, 39, 168, 106, 191, 189, 169, 104, 200, 12, 1, 178, 24, 52, 67, 36, 42, 98, 71, 118, 101, 76, 244, 22, 213, 81, 172, 166, 237, 48, 107, 236, 231, 75, 191, 0, 134, 96, 217, 147, 194, 29, 106, 233, 96, 128, 168, 82, 226, 108, 40, 92, 89, 25, 60, 208, 143, 59, 10, 55, 78, 90, 223, 56, 163, 79, 181, 157, 100, 52, 66, 19, 40, 213, 93, 89, 69, 68, 255, 229, 230, 180, 204, 16, 89, 229, 127, 234, 111, 105, 102, 68, 93, 196, 56, 184, 231, 14, 234, 142, 224, 80, 219, 120, 90, 111, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:41:28.742632Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:41:28.742672Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:41:28.788548Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:41:28.822748Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jSr_5XNESV28zL6cadSBZg==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:41:28.825641Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jSr_5XNESV28zL6cadSBZg==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:41:28.826249Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:41:28.827027Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1281629 cycles -2026-04-20T10:41:28.827347Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [7, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 106, 145, 246, 48, 68, 221, 181, 80, 189, 191, 242, 114, 230, 160, 97, 211, 124, 2, 87, 108, 208, 23, 88, 20, 38, 65, 147, 13, 61, 19, 215, 89, 126, 102, 136, 215, 62, 129, 12, 9, 197, 58, 177, 16, 215, 142, 112, 170, 137, 195, 64, 36, 253, 181, 112, 39, 168, 106, 191, 189, 169, 104, 200, 12, 1, 178, 24, 52, 67, 36, 42, 98, 71, 118, 101, 76, 244, 22, 213, 81, 172, 166, 237, 48, 107, 236, 231, 75, 191, 0, 134, 96, 217, 147, 194, 29, 106, 233, 96, 128, 168, 82, 226, 108, 40, 92, 89, 25, 60, 208, 143, 59, 10, 55, 78, 90, 223, 56, 163, 79, 181, 157, 100, 52, 66, 19, 40, 213, 93, 89, 69, 68, 255, 229, 230, 180, 204, 16, 89, 229, 127, 234, 111, 105, 102, 68, 93, 196, 56, 184, 231, 14, 234, 142, 224, 80, 219, 120, 90, 111, 93, 89, 69, 68, 255, 229, 230, 180, 204, 16, 89, 229, 127, 234, 111, 105, 102, 68, 93, 196, 56, 184, 231, 14, 234, 142, 224, 80, 219, 120, 90, 111, 32, 0, 0, 0, 0, 0, 0, 0, 126, 64, 51, 9, 52, 167, 53, 107, 44, 198, 65, 138, 11, 18, 204, 150, 109, 197, 60, 0, 62, 152, 119, 129, 28, 165, 228, 96, 99, 161, 153, 53, 32, 0, 0, 0, 0, 0, 0, 0, 59, 209, 232, 112, 86, 184, 175, 19, 76, 196, 239, 140, 55, 24, 235, 120, 69, 111, 64, 71, 76, 131, 137, 27, 9, 27, 249, 183, 42, 223, 170, 91, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:41:28.900195Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:41:28.900244Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:41:28.900475Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=967 -2026-04-20T10:41:28.901126Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=15 blob_id=2147876366948287787323916702804396764 -2026-04-20T10:41:34.070657Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=15 prev_hash=0x10c14528ba4ec18670b3a57a8f87d488a8b62e72ff03a0fa9924d0576b783b66 hash=0x12a473e923ee94c38afe9aee97297d29fb1fc4a4e1b4088970bbfb4b2877b384 producing_time=1.603ms -2026-04-20T10:41:34.071282Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=15 current_state_root="2c332aee258132728d6dcd1c584d7ec35df65d2621f2bfe67ff00602debe5b090019863abca1736c89f5154bc0ea325a6650f562aeac143988a4418bb5c79a8d" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x95656b58edf1085b635f1f7ef742b49b06fe22f0ec9b25edf08340ecc3f0afa6"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x8ab0807828208f4f86f3b22052ef922fcbdd283b712dec78bf314b6e46d13979, len=1017"] -2026-04-20T10:41:34.071554Z DEBUG StfBlueprint::apply_slot{context=Node da_height=15}: sov_chain_state: Setting next visible slot number next_visible_slot_number=9 -2026-04-20T10:41:34.071695Z DEBUG StfBlueprint::apply_slot{context=Node da_height=15}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x95656b58edf1085b635f1f7ef742b49b06fe22f0ec9b25edf08340ecc3f0afa6}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:41:34.071872Z DEBUG StfBlueprint::apply_slot{context=Node da_height=15}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2c332aee258132728d6dcd1c584d7ec35df65d2621f2bfe67ff00602debe5b090019863abca1736c89f5154bc0ea325a6650f562aeac143988a4418bb5c79a8d next_version=15 sesssion_starting_time=44.74µs -2026-04-20T10:41:34.072783Z DEBUG StfBlueprint::apply_slot{context=Node da_height=15}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=71450eb6f2a7fc2889bd9e5bb2f808420ae8de682f3f5e4a827a3a107e279dfb370edac5dddf81cfa8def5ef74c3ab6f6283973a972d4c41d8ce7ba003182b90 next_version=15 time=989.404µs accesses_build_time=32.72µs finishing_session_time=884.614µs -2026-04-20T10:41:34.072949Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="222819842d412f9bf491282f9196650a719dc2b0c5a4924b1aab5b91a2b24dc5071fc28b7d6762b1b468e300ba63c8283a7c92c02552be4788abef1954fdda90" next_state_root="71450eb6f2a7fc2889bd9e5bb2f808420ae8de682f3f5e4a827a3a107e279dfb370edac5dddf81cfa8def5ef74c3ab6f6283973a972d4c41d8ce7ba003182b90" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:41:34.073630Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 15, latest_finalized_slot_number: 14, sync_status: Synced { synced_da_height: 14 }, .. } -2026-04-20T10:41:34.073738Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=9 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 15, latest_finalized_slot_number: 14, sync_status: Synced { synced_da_height: 14 }, .. } -2026-04-20T10:41:34.073808Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=9 -2026-04-20T10:41:34.087373Z DEBUG sov_stf_runner::runner: Block execution complete time=6.007708155s -2026-04-20T10:41:34.087410Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:41:34.087552Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:41:34.087648Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:41:34.646563Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Ys3EOgFxQiO3Z5f4uHH_fA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:41:34.649270Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Ys3EOgFxQiO3Z5f4uHH_fA==: stderr: -2026-04-20T10:41:34.649298Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Ys3EOgFxQiO3Z5f4uHH_fA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/module-system/sov-state/src/codec/mod.rs:60:14: -2026-04-20T10:41:34.649309Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Ys3EOgFxQiO3Z5f4uHH_fA==: stderr: called `Result::unwrap()` on an `Err` value: "Failed to decode \"sov_mock_zkvm::MockCodeCommitment\" value 0x0000000000000000000000000000000000000000000000000000000000000000, error: RemainingInput" -2026-04-20T10:41:34.649343Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Ys3EOgFxQiO3Z5f4uHH_fA==: stderr: stack backtrace: -2026-04-20T10:41:34.649351Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Ys3EOgFxQiO3Z5f4uHH_fA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:41:34.649358Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Ys3EOgFxQiO3Z5f4uHH_fA==: stderr: called `Result::unwrap()` on an `Err` value: "Failed to decode \"sov_mock_zkvm::MockCodeCommitment\" value 0x0000000000000000000000000000000000000000000000000000000000000000, error: RemainingInput" -2026-04-20T10:41:34.649509Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:41:34.659873Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 759152 cycles -2026-04-20T10:41:34.662509Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:41:34.700897Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:41:34.700959Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:41:34.795957Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:41:34.830238Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PkOa-J_cQoWST0kSZJFHBw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:41:34.833140Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PkOa-J_cQoWST0kSZJFHBw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:41:34.833458Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PkOa-J_cQoWST0kSZJFHBw==: stderr: -2026-04-20T10:41:34.833486Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PkOa-J_cQoWST0kSZJFHBw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:139:33: -2026-04-20T10:41:34.833498Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PkOa-J_cQoWST0kSZJFHBw==: stderr: Failed to verify inner proof: io error: unexpected end of file -2026-04-20T10:41:34.833510Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PkOa-J_cQoWST0kSZJFHBw==: stderr: stack backtrace: -2026-04-20T10:41:34.833518Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PkOa-J_cQoWST0kSZJFHBw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:41:34.833526Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PkOa-J_cQoWST0kSZJFHBw==: stderr: Failed to verify inner proof: io error: unexpected end of file -2026-04-20T10:41:34.833609Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:41:34.834394Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1247805 cycles -2026-04-20T10:41:34.834686Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:41:34.892734Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:41:34.892771Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:41:34.892922Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:41:34.893423Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=16 blob_id=2147876374192218839325586153971119284 -2026-04-20T10:41:40.073072Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=16 prev_hash=0x12a473e923ee94c38afe9aee97297d29fb1fc4a4e1b4088970bbfb4b2877b384 hash=0xd677b8cee742492f7037aa632abf678802922d00df01532d11786c0dc03e7a73 producing_time=1.427791ms -2026-04-20T10:41:40.079805Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=16 current_state_root="71450eb6f2a7fc2889bd9e5bb2f808420ae8de682f3f5e4a827a3a107e279dfb370edac5dddf81cfa8def5ef74c3ab6f6283973a972d4c41d8ce7ba003182b90" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x2ce9f104d7556812f3c8f70718bd348646bfc5f8e3766142209a1640c917d7dc, len=625"] -2026-04-20T10:41:40.080140Z DEBUG StfBlueprint::apply_slot{context=Node da_height=16}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=71450eb6f2a7fc2889bd9e5bb2f808420ae8de682f3f5e4a827a3a107e279dfb370edac5dddf81cfa8def5ef74c3ab6f6283973a972d4c41d8ce7ba003182b90 next_version=16 sesssion_starting_time=44.849µs -2026-04-20T10:41:40.080945Z DEBUG StfBlueprint::apply_slot{context=Node da_height=16}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=71450eb6f2a7fc2889bd9e5bb2f808420ae8de682f3f5e4a827a3a107e279dfb07840d6fa71060b5c377d9935d06cb0607d01daffaeb768811b124a0bdbbfada next_version=16 time=866.814µs accesses_build_time=15.87µs finishing_session_time=753.275µs -2026-04-20T10:41:40.081015Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2c332aee258132728d6dcd1c584d7ec35df65d2621f2bfe67ff00602debe5b090019863abca1736c89f5154bc0ea325a6650f562aeac143988a4418bb5c79a8d" next_state_root="71450eb6f2a7fc2889bd9e5bb2f808420ae8de682f3f5e4a827a3a107e279dfb07840d6fa71060b5c377d9935d06cb0607d01daffaeb768811b124a0bdbbfada" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:41:40.081619Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 16, latest_finalized_slot_number: 15, sync_status: Synced { synced_da_height: 15 }, .. } -2026-04-20T10:41:40.081734Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=9 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 16, latest_finalized_slot_number: 15, sync_status: Synced { synced_da_height: 15 }, .. } -2026-04-20T10:41:40.081797Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=9 -2026-04-20T10:41:40.082033Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:41:40.082107Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=5 -2026-04-20T10:41:40.082272Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=11 -2026-04-20T10:41:40.082537Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -VVVV SP1Verifier -SP! VERIFIER: true -XXX -2026-04-20T10:41:40.082839Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: VERIfiCATION SUCCEEDED -VVVV SP1Verifier -SP! VERIFIER: true -2026-04-20T10:41:40.082994Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: Slashing prover for invalid proof verification_error=io error: unexpected end of file -2026-04-20T10:41:40.083110Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=11 sequence_number=17 -2026-04-20T10:41:40.083136Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=17 blob_id=2147876380467729747247217247248864272 visible_slot_number_after_increase=11 visible_slots_to_advance=2 -2026-04-20T10:41:40.083169Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=2 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:41:40.085109Z DEBUG manage_blob_submission_inside_task{blob_id=2147876380467729747247217247248864272 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xe9528c694ea5e55e1c5c6aec53b84e7832f710d3273a847dab73e6786a24a275 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=17 include_at=17 bytes=13 time=771.235µs -2026-04-20T10:41:40.092653Z DEBUG compute_state_update{scope="sequencer" rollup_height=10 slot_number=11}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:41:40.092689Z DEBUG sov_stf_runner::runner: Block execution complete time=6.005280151s -2026-04-20T10:41:40.092738Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:41:40.092757Z DEBUG compute_state_update{scope="sequencer" rollup_height=10 slot_number=11}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=71450eb6f2a7fc2889bd9e5bb2f808420ae8de682f3f5e4a827a3a107e279dfb07840d6fa71060b5c377d9935d06cb0607d01daffaeb768811b124a0bdbbfada next_version=17 sesssion_starting_time=9.046162ms -2026-04-20T10:41:40.093536Z DEBUG compute_state_update{scope="sequencer" rollup_height=10 slot_number=11}: sov_state::nomt::prover_storage: computed next state root state_root=17e404a41392429312435c9b27011be85624862fd97cca54e2a423e3d54710b955a3433ed569178f756de12558958818bcce4ff951fb688399e6b4e0e9eaef56 next_version=17 time=9.848257ms accesses_build_time=22.12µs finishing_session_time=751.555µs -2026-04-20T10:41:46.075303Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=17 prev_hash=0xd677b8cee742492f7037aa632abf678802922d00df01532d11786c0dc03e7a73 hash=0x9262096e7b7ed7319bf2d80e693df829568c5417c88c4eac35cb5ca93caf079b producing_time=1.369761ms -2026-04-20T10:41:46.084418Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=17 current_state_root="71450eb6f2a7fc2889bd9e5bb2f808420ae8de682f3f5e4a827a3a107e279dfb07840d6fa71060b5c377d9935d06cb0607d01daffaeb768811b124a0bdbbfada" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe9528c694ea5e55e1c5c6aec53b84e7832f710d3273a847dab73e6786a24a275"] proof_blobs=[] -2026-04-20T10:41:46.084703Z DEBUG StfBlueprint::apply_slot{context=Node da_height=17}: sov_chain_state: Setting next visible slot number next_visible_slot_number=11 -VVVV SP1Verifier -SP! VERIFIER: true -XXX -2026-04-20T10:41:46.084918Z DEBUG StfBlueprint::apply_slot{context=Node da_height=17}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: VERIfiCATION SUCCEEDED -VVVV SP1Verifier -SP! VERIFIER: true -2026-04-20T10:41:46.085041Z DEBUG StfBlueprint::apply_slot{context=Node da_height=17}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: Slashing prover for invalid proof verification_error=io error: unexpected end of file -2026-04-20T10:41:46.085099Z DEBUG StfBlueprint::apply_slot{context=Node da_height=17}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xe9528c694ea5e55e1c5c6aec53b84e7832f710d3273a847dab73e6786a24a275}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=2 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:41:46.085287Z DEBUG StfBlueprint::apply_slot{context=Node da_height=17}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=71450eb6f2a7fc2889bd9e5bb2f808420ae8de682f3f5e4a827a3a107e279dfb07840d6fa71060b5c377d9935d06cb0607d01daffaeb768811b124a0bdbbfada next_version=17 sesssion_starting_time=50.45µs -2026-04-20T10:41:46.086331Z DEBUG StfBlueprint::apply_slot{context=Node da_height=17}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=17e404a41392429312435c9b27011be85624862fd97cca54e2a423e3d54710b96189c2dd78e5a8059038567af2f83c7eb2a26dfb06d4cbbd08f868761c95dedf next_version=17 time=1.132942ms accesses_build_time=37.5µs finishing_session_time=1.018073ms -2026-04-20T10:41:46.086500Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(ProverSlashed("Verification failed")) blob_hash="2ce9f104d7556812f3c8f70718bd348646bfc5f8e3766142209a1640c917d7dc" -2026-04-20T10:41:46.086521Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="71450eb6f2a7fc2889bd9e5bb2f808420ae8de682f3f5e4a827a3a107e279dfb370edac5dddf81cfa8def5ef74c3ab6f6283973a972d4c41d8ce7ba003182b90" next_state_root="17e404a41392429312435c9b27011be85624862fd97cca54e2a423e3d54710b96189c2dd78e5a8059038567af2f83c7eb2a26dfb06d4cbbd08f868761c95dedf" aggregated_proofs=1 proof_receipts=2 -2026-04-20T10:41:46.087113Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 17, latest_finalized_slot_number: 17, sync_status: Synced { synced_da_height: 16 }, .. } -2026-04-20T10:41:46.087187Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=10 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 17, latest_finalized_slot_number: 17, sync_status: Synced { synced_da_height: 16 }, .. } -2026-04-20T10:41:46.087249Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=10 -2026-04-20T10:41:46.087503Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:41:46.087580Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=6 -2026-04-20T10:41:46.087676Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=13 -2026-04-20T10:41:46.087822Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:41:46.087983Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=13 sequence_number=18 -2026-04-20T10:41:46.088002Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=18 blob_id=2147876387726141008218110902390954890 visible_slot_number_after_increase=13 visible_slots_to_advance=2 -2026-04-20T10:41:46.088064Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:41:46.089934Z DEBUG manage_blob_submission_inside_task{blob_id=2147876387726141008218110902390954890 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x068adc1f4ad78fc2c2b74bcd1d0060f8dc2f39b2455eb4b68e10a2bc16d39d2a sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=18 include_at=18 bytes=13 time=690.795µs -2026-04-20T10:41:46.103865Z DEBUG compute_state_update{scope="sequencer" rollup_height=11 slot_number=13}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:41:46.103918Z DEBUG compute_state_update{scope="sequencer" rollup_height=11 slot_number=13}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:41:46.103921Z DEBUG sov_stf_runner::runner: Block execution complete time=6.011187383s -2026-04-20T10:41:46.103955Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:41:46.103977Z DEBUG compute_state_update{scope="sequencer" rollup_height=11 slot_number=13}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=17e404a41392429312435c9b27011be85624862fd97cca54e2a423e3d54710b96189c2dd78e5a8059038567af2f83c7eb2a26dfb06d4cbbd08f868761c95dedf next_version=18 sesssion_starting_time=15.438741ms -2026-04-20T10:41:46.104166Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:41:46.104265Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:41:46.104735Z DEBUG compute_state_update{scope="sequencer" rollup_height=11 slot_number=13}: sov_state::nomt::prover_storage: computed next state root state_root=2d03e6a46411d2fe9c20b810329f48730d2aad636f09c794b965c6ae83d74de96665f0fa77fef7997a0364ecfd7463d68b3a90c6bdcd2ae7324676e36817dfc1 next_version=18 time=16.213816ms accesses_build_time=15.52µs finishing_session_time=729.235µs -2026-04-20T10:41:46.667858Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kA52AfzYToS81zZirQxB4A==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:41:46.670529Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kA52AfzYToS81zZirQxB4A==: stderr: -2026-04-20T10:41:46.670543Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kA52AfzYToS81zZirQxB4A==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/module-system/sov-state/src/codec/mod.rs:60:14: -2026-04-20T10:41:46.670553Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kA52AfzYToS81zZirQxB4A==: stderr: called `Result::unwrap()` on an `Err` value: "Failed to decode \"sov_mock_zkvm::MockCodeCommitment\" value 0x0000000000000000000000000000000000000000000000000000000000000000, error: RemainingInput" -2026-04-20T10:41:46.670562Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kA52AfzYToS81zZirQxB4A==: stderr: stack backtrace: -2026-04-20T10:41:46.670568Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kA52AfzYToS81zZirQxB4A==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:41:46.670575Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kA52AfzYToS81zZirQxB4A==: stderr: called `Result::unwrap()` on an `Err` value: "Failed to decode \"sov_mock_zkvm::MockCodeCommitment\" value 0x0000000000000000000000000000000000000000000000000000000000000000, error: RemainingInput" -2026-04-20T10:41:46.670696Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:41:46.681592Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 759079 cycles -2026-04-20T10:41:46.684163Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:41:46.721741Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:41:46.721795Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:41:46.812716Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:41:46.848109Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yr1gxJ3xQXy5wWgbMwScXQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:41:46.850919Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yr1gxJ3xQXy5wWgbMwScXQ==: stderr: -2026-04-20T10:41:46.850934Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yr1gxJ3xQXy5wWgbMwScXQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:41:46.850943Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yr1gxJ3xQXy5wWgbMwScXQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:41:46.850952Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yr1gxJ3xQXy5wWgbMwScXQ==: stderr: stack backtrace: -2026-04-20T10:41:46.850960Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yr1gxJ3xQXy5wWgbMwScXQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:41:46.850968Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yr1gxJ3xQXy5wWgbMwScXQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:41:46.851080Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:41:46.851871Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1137763 cycles -2026-04-20T10:41:46.852208Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:41:46.917347Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:41:46.917398Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:41:46.917561Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:41:46.917714Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:41:46.917790Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:41:46.918075Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=19 blob_id=2147876388729494523401376718544198242 -2026-04-20T10:41:47.465915Z DEBUG sp1_core_executor_runner::native: CHILD sp1_7UzhHhHfRAevoXr_EGR24A==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:41:47.471155Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:41:47.480928Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 846504 cycles -2026-04-20T10:41:47.483590Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [35, 227, 5, 10, 20, 231, 63, 87, 98, 22, 224, 68, 39, 255, 10, 39, 143, 191, 111, 83, 25, 189, 66, 61, 73, 67, 195, 81, 207, 60, 204, 81, 85, 113, 132, 151, 77, 245, 212, 113, 171, 129, 180, 252, 42, 120, 143, 29, 46, 161, 0, 155, 238, 219, 189, 101, 236, 83, 81, 252, 147, 29, 204, 159, 35, 227, 5, 10, 20, 231, 63, 87, 98, 22, 224, 68, 39, 255, 10, 39, 143, 191, 111, 83, 25, 189, 66, 61, 73, 67, 195, 81, 207, 60, 204, 81, 107, 158, 154, 47, 66, 159, 83, 131, 242, 174, 214, 121, 250, 139, 86, 53, 238, 27, 133, 187, 93, 4, 103, 151, 248, 231, 211, 160, 57, 52, 180, 150, 134, 128, 137, 254, 77, 12, 86, 131, 184, 99, 45, 24, 55, 131, 24, 8, 22, 75, 247, 254, 245, 185, 188, 122, 209, 195, 103, 122, 115, 84, 131, 105, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:41:47.531668Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:41:47.531722Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:41:47.625979Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:41:47.659921Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2JN8ds99Qy25L94iB8EznA==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:41:47.662773Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2JN8ds99Qy25L94iB8EznA==: stderr: -2026-04-20T10:41:47.662791Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2JN8ds99Qy25L94iB8EznA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:41:47.662802Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2JN8ds99Qy25L94iB8EznA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:41:47.662815Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2JN8ds99Qy25L94iB8EznA==: stderr: stack backtrace: -2026-04-20T10:41:47.662824Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2JN8ds99Qy25L94iB8EznA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:41:47.662835Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2JN8ds99Qy25L94iB8EznA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:41:47.662969Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:41:47.663747Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:41:47.664096Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:41:47.729351Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:41:47.729394Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:41:47.729604Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:41:47.730185Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=20 blob_id=2147876389711190379811170402687247405 -2026-04-20T10:41:52.078342Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=18 prev_hash=0x9262096e7b7ed7319bf2d80e693df829568c5417c88c4eac35cb5ca93caf079b hash=0xb3c92a45c0c6e16e1c108d53a1b4162bc32019c1d76f2a91c6fa9cd817d53549 producing_time=1.343421ms -2026-04-20T10:41:52.085251Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=18 current_state_root="17e404a41392429312435c9b27011be85624862fd97cca54e2a423e3d54710b96189c2dd78e5a8059038567af2f83c7eb2a26dfb06d4cbbd08f868761c95dedf" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x068adc1f4ad78fc2c2b74bcd1d0060f8dc2f39b2455eb4b68e10a2bc16d39d2a"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x2aa72dd03cdbd81697a4e77c780e5d17751de6614dadc12a2ae8a6d3831dc1e5, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x889a41b737d9c3ac2e4d3806df661e4feb85f783350f9ce80e175c93ad90af60, len=625"] -2026-04-20T10:41:52.085500Z DEBUG StfBlueprint::apply_slot{context=Node da_height=18}: sov_chain_state: Setting next visible slot number next_visible_slot_number=13 -2026-04-20T10:41:52.085641Z DEBUG StfBlueprint::apply_slot{context=Node da_height=18}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x068adc1f4ad78fc2c2b74bcd1d0060f8dc2f39b2455eb4b68e10a2bc16d39d2a}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:41:52.085819Z DEBUG StfBlueprint::apply_slot{context=Node da_height=18}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=17e404a41392429312435c9b27011be85624862fd97cca54e2a423e3d54710b96189c2dd78e5a8059038567af2f83c7eb2a26dfb06d4cbbd08f868761c95dedf next_version=18 sesssion_starting_time=46.36µs -2026-04-20T10:41:52.086682Z DEBUG StfBlueprint::apply_slot{context=Node da_height=18}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2d03e6a46411d2fe9c20b810329f48730d2aad636f09c794b965c6ae83d74de946bcb09481d7d175b6b1f4c237329c46363c5f5d195697b776321e91788efe82 next_version=18 time=943.583µs accesses_build_time=33.459µs finishing_session_time=822.434µs -2026-04-20T10:41:52.086845Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="17e404a41392429312435c9b27011be85624862fd97cca54e2a423e3d54710b96189c2dd78e5a8059038567af2f83c7eb2a26dfb06d4cbbd08f868761c95dedf" next_state_root="2d03e6a46411d2fe9c20b810329f48730d2aad636f09c794b965c6ae83d74de946bcb09481d7d175b6b1f4c237329c46363c5f5d195697b776321e91788efe82" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:41:52.087277Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 18, latest_finalized_slot_number: 18, sync_status: Synced { synced_da_height: 17 }, .. } -2026-04-20T10:41:52.087359Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=11 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 18, latest_finalized_slot_number: 18, sync_status: Synced { synced_da_height: 17 }, .. } -2026-04-20T10:41:52.087437Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=11 -2026-04-20T10:41:52.087679Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:41:52.087762Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=7 -2026-04-20T10:41:52.087854Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=14 -2026-04-20T10:41:52.087970Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:41:52.088223Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=14 sequence_number=21 -2026-04-20T10:41:52.088243Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=21 blob_id=2147876394980867072274789314156377359 visible_slot_number_after_increase=14 visible_slots_to_advance=1 -2026-04-20T10:41:52.088274Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=2 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:41:52.089976Z DEBUG manage_blob_submission_inside_task{blob_id=2147876394980867072274789314156377359 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xf44efe9342e8d77d1d5d0c4388a364cb709f580ebf14277365bb998162b340cf sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=19 include_at=19 bytes=13 time=698.115µs -2026-04-20T10:41:52.098154Z DEBUG compute_state_update{scope="sequencer" rollup_height=12 slot_number=14}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:41:52.098220Z DEBUG sov_stf_runner::runner: Block execution complete time=5.994267112s -2026-04-20T10:41:52.098236Z DEBUG compute_state_update{scope="sequencer" rollup_height=12 slot_number=14}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2d03e6a46411d2fe9c20b810329f48730d2aad636f09c794b965c6ae83d74de946bcb09481d7d175b6b1f4c237329c46363c5f5d195697b776321e91788efe82 next_version=19 sesssion_starting_time=9.537149ms -2026-04-20T10:41:52.098256Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:41:52.098450Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:41:52.098561Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:41:52.098985Z DEBUG compute_state_update{scope="sequencer" rollup_height=12 slot_number=14}: sov_state::nomt::prover_storage: computed next state root state_root=2cbe1924cc7135e0c6cf6abdc36b5f5a1f59c8a4441bed11bc0f194cd7cea14430e8c50a273592e41837236a26392fdeac59e2131a7b896978a39e6c8e0ad794 next_version=19 time=10.299974ms accesses_build_time=12.84µs finishing_session_time=725.725µs -2026-04-20T10:41:52.659406Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CygCfja-RuWl792aAEwkwg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:41:52.662396Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CygCfja-RuWl792aAEwkwg==: stderr: -2026-04-20T10:41:52.662409Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CygCfja-RuWl792aAEwkwg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/module-system/sov-state/src/codec/mod.rs:60:14: -2026-04-20T10:41:52.662419Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CygCfja-RuWl792aAEwkwg==: stderr: called `Result::unwrap()` on an `Err` value: "Failed to decode \"sov_mock_zkvm::MockCodeCommitment\" value 0x0000000000000000000000000000000000000000000000000000000000000000, error: RemainingInput" -2026-04-20T10:41:52.662424Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CygCfja-RuWl792aAEwkwg==: stderr: stack backtrace: -2026-04-20T10:41:52.662437Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CygCfja-RuWl792aAEwkwg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:41:52.662442Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CygCfja-RuWl792aAEwkwg==: stderr: called `Result::unwrap()` on an `Err` value: "Failed to decode \"sov_mock_zkvm::MockCodeCommitment\" value 0x0000000000000000000000000000000000000000000000000000000000000000, error: RemainingInput" -2026-04-20T10:41:52.662521Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:41:52.673188Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 806016 cycles -2026-04-20T10:41:52.675653Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:41:52.684865Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:41:52.684890Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:41:52.704324Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:41:52.741334Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ehW-7lWPR6aUwRtw349oRg==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:41:52.744174Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ehW-7lWPR6aUwRtw349oRg==: stderr: -2026-04-20T10:41:52.744195Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ehW-7lWPR6aUwRtw349oRg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:41:52.744210Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ehW-7lWPR6aUwRtw349oRg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:41:52.744222Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ehW-7lWPR6aUwRtw349oRg==: stderr: stack backtrace: -2026-04-20T10:41:52.744235Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ehW-7lWPR6aUwRtw349oRg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:41:52.744246Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ehW-7lWPR6aUwRtw349oRg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:41:52.744290Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:41:52.745084Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1137763 cycles -2026-04-20T10:41:52.745394Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:41:52.812245Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:41:52.812292Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:41:52.812551Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:41:52.812751Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:41:52.812835Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:41:52.813267Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=22 blob_id=2147876395856128167056959543654027151 -2026-04-20T10:41:53.353172Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qxr2vRkMTJKryMYa22Surg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:41:53.364233Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:41:53.374536Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1608669 cycles -2026-04-20T10:41:53.377231Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [107, 66, 145, 208, 173, 106, 209, 41, 0, 149, 95, 114, 242, 197, 122, 236, 113, 38, 145, 96, 41, 78, 67, 109, 228, 105, 62, 165, 3, 216, 223, 138, 70, 180, 211, 25, 189, 82, 12, 31, 98, 17, 81, 193, 157, 145, 202, 239, 214, 102, 241, 157, 243, 14, 160, 21, 95, 248, 52, 220, 23, 158, 166, 13, 68, 194, 32, 56, 131, 245, 25, 233, 235, 133, 131, 154, 44, 122, 25, 136, 91, 63, 119, 51, 34, 11, 157, 231, 4, 168, 25, 66, 95, 78, 129, 5, 49, 1, 248, 170, 99, 229, 89, 27, 245, 159, 237, 242, 254, 12, 16, 229, 253, 11, 39, 57, 22, 189, 218, 253, 94, 14, 142, 173, 161, 196, 78, 101, 75, 99, 130, 204, 123, 212, 16, 35, 149, 93, 72, 3, 89, 53, 182, 228, 92, 232, 191, 51, 82, 29, 182, 160, 75, 96, 65, 98, 3, 135, 153, 93, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:41:53.460489Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:41:53.460527Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:41:53.520959Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:41:53.554735Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9EyQaACeSX6jUse4uA-UWQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:41:53.557605Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9EyQaACeSX6jUse4uA-UWQ==: stderr: -2026-04-20T10:41:53.557632Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9EyQaACeSX6jUse4uA-UWQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:41:53.557645Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9EyQaACeSX6jUse4uA-UWQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:41:53.557654Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9EyQaACeSX6jUse4uA-UWQ==: stderr: stack backtrace: -2026-04-20T10:41:53.557662Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9EyQaACeSX6jUse4uA-UWQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:41:53.557695Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9EyQaACeSX6jUse4uA-UWQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:41:53.557726Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:41:53.558540Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:41:53.558843Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:41:53.607972Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:41:53.608013Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:41:53.608195Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:41:53.608941Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=23 blob_id=2147876396818477688003903526353978452 -2026-04-20T10:41:58.081807Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=19 prev_hash=0xb3c92a45c0c6e16e1c108d53a1b4162bc32019c1d76f2a91c6fa9cd817d53549 hash=0x825a8aa7e707c56352e211e802c60a559545c1f81a58bf19c9a3d4d799033e60 producing_time=1.40324ms -2026-04-20T10:41:58.089825Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=19 current_state_root="2d03e6a46411d2fe9c20b810329f48730d2aad636f09c794b965c6ae83d74de946bcb09481d7d175b6b1f4c237329c46363c5f5d195697b776321e91788efe82" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf44efe9342e8d77d1d5d0c4388a364cb709f580ebf14277365bb998162b340cf"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xaaa5556e40a23ecebb42dba9334651aca40774ff2dee537b470a68c1e87a1870, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x77b798a101a6804cf4ffb973f391e002170d021601a5f79bc87948080dc8d5fb, len=625"] -2026-04-20T10:41:58.090101Z DEBUG StfBlueprint::apply_slot{context=Node da_height=19}: sov_chain_state: Setting next visible slot number next_visible_slot_number=14 -2026-04-20T10:41:58.090374Z DEBUG StfBlueprint::apply_slot{context=Node da_height=19}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xf44efe9342e8d77d1d5d0c4388a364cb709f580ebf14277365bb998162b340cf}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=2 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:41:58.090583Z DEBUG StfBlueprint::apply_slot{context=Node da_height=19}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2d03e6a46411d2fe9c20b810329f48730d2aad636f09c794b965c6ae83d74de946bcb09481d7d175b6b1f4c237329c46363c5f5d195697b776321e91788efe82 next_version=19 sesssion_starting_time=47.8µs -2026-04-20T10:41:58.091515Z DEBUG StfBlueprint::apply_slot{context=Node da_height=19}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2cbe1924cc7135e0c6cf6abdc36b5f5a1f59c8a4441bed11bc0f194cd7cea144665fab35c120da3c36805c2308bca3e888db59947f7338fcef4eb428c1178e96 next_version=19 time=1.018174ms accesses_build_time=37.61µs finishing_session_time=905.034µs -2026-04-20T10:41:58.091684Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="2aa72dd03cdbd81697a4e77c780e5d17751de6614dadc12a2ae8a6d3831dc1e5" -2026-04-20T10:41:58.091702Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="889a41b737d9c3ac2e4d3806df661e4feb85f783350f9ce80e175c93ad90af60" -2026-04-20T10:41:58.091716Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2d03e6a46411d2fe9c20b810329f48730d2aad636f09c794b965c6ae83d74de946bcb09481d7d175b6b1f4c237329c46363c5f5d195697b776321e91788efe82" next_state_root="2cbe1924cc7135e0c6cf6abdc36b5f5a1f59c8a4441bed11bc0f194cd7cea144665fab35c120da3c36805c2308bca3e888db59947f7338fcef4eb428c1178e96" aggregated_proofs=0 proof_receipts=2 -2026-04-20T10:41:58.092235Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 19, latest_finalized_slot_number: 19, sync_status: Syncing { synced_da_height: 18, target_da_height: 19 }, .. } -2026-04-20T10:41:58.092343Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=12 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 19, latest_finalized_slot_number: 19, sync_status: Syncing { synced_da_height: 18, target_da_height: 19 }, .. } -2026-04-20T10:41:58.092419Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=12 -2026-04-20T10:41:58.103603Z DEBUG sov_stf_runner::runner: Block execution complete time=6.005348341s -2026-04-20T10:41:58.103642Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:41:58.103837Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:41:58.103931Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:41:58.684359Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HEB2LG-SQBq2f58wdkh-SA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:41:58.689751Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:41:58.700287Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 863661 cycles -2026-04-20T10:41:58.702733Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 40, 25, 132, 45, 65, 47, 155, 244, 145, 40, 47, 145, 150, 101, 10, 113, 157, 194, 176, 197, 164, 146, 75, 26, 171, 91, 145, 162, 178, 77, 197, 3, 107, 104, 235, 188, 7, 37, 154, 170, 228, 116, 57, 137, 143, 186, 131, 158, 113, 180, 161, 136, 170, 144, 190, 140, 13, 111, 43, 63, 133, 150, 82, 34, 40, 25, 132, 45, 65, 47, 155, 244, 145, 40, 47, 145, 150, 101, 10, 113, 157, 194, 176, 197, 164, 146, 75, 26, 171, 91, 145, 162, 178, 77, 197, 60, 237, 57, 1, 122, 169, 109, 72, 90, 53, 220, 97, 185, 145, 129, 242, 30, 247, 184, 2, 96, 233, 39, 122, 177, 107, 45, 73, 182, 70, 228, 102, 130, 142, 206, 62, 203, 38, 80, 104, 249, 223, 195, 118, 40, 182, 82, 15, 241, 230, 17, 91, 83, 255, 45, 67, 251, 249, 99, 102, 12, 182, 29, 149, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:41:58.755644Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:41:58.755704Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:41:58.812568Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:41:58.847707Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kALlNT5fSka97eBt6i4Mfg==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:41:58.850583Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kALlNT5fSka97eBt6i4Mfg==: stderr: -2026-04-20T10:41:58.850598Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kALlNT5fSka97eBt6i4Mfg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:41:58.850608Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kALlNT5fSka97eBt6i4Mfg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:41:58.850618Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kALlNT5fSka97eBt6i4Mfg==: stderr: stack backtrace: -2026-04-20T10:41:58.850625Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kALlNT5fSka97eBt6i4Mfg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:41:58.850632Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kALlNT5fSka97eBt6i4Mfg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:41:58.850729Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:41:58.851512Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:41:58.851803Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:41:58.920714Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:41:58.920759Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:41:58.920944Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:41:58.921504Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=24 blob_id=2147876403240268047669739017357411840 -2026-04-20T10:42:04.084372Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=20 prev_hash=0x825a8aa7e707c56352e211e802c60a559545c1f81a58bf19c9a3d4d799033e60 hash=0xeef2a57a2089c86ac03a897860074fbd8e11de8d32091a0c8ae454d2710c1d6c producing_time=1.166163ms -2026-04-20T10:42:04.084922Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=20 current_state_root="2cbe1924cc7135e0c6cf6abdc36b5f5a1f59c8a4441bed11bc0f194cd7cea144665fab35c120da3c36805c2308bca3e888db59947f7338fcef4eb428c1178e96" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd77903fb44ad2f839e5627c192e7da859ddeb6abe0e1506a3f7e6e1b3f8d2205, len=625"] -2026-04-20T10:42:04.085257Z DEBUG StfBlueprint::apply_slot{context=Node da_height=20}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2cbe1924cc7135e0c6cf6abdc36b5f5a1f59c8a4441bed11bc0f194cd7cea144665fab35c120da3c36805c2308bca3e888db59947f7338fcef4eb428c1178e96 next_version=20 sesssion_starting_time=47µs -2026-04-20T10:42:04.085985Z DEBUG StfBlueprint::apply_slot{context=Node da_height=20}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2cbe1924cc7135e0c6cf6abdc36b5f5a1f59c8a4441bed11bc0f194cd7cea1443d05b8d0ad5a866e172f2a6a35e0845b51131da05bb0dc679fb841c81722c692 next_version=20 time=793.784µs accesses_build_time=17.739µs finishing_session_time=692.855µs -2026-04-20T10:42:04.086064Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2cbe1924cc7135e0c6cf6abdc36b5f5a1f59c8a4441bed11bc0f194cd7cea144665fab35c120da3c36805c2308bca3e888db59947f7338fcef4eb428c1178e96" next_state_root="2cbe1924cc7135e0c6cf6abdc36b5f5a1f59c8a4441bed11bc0f194cd7cea1443d05b8d0ad5a866e172f2a6a35e0845b51131da05bb0dc679fb841c81722c692" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:42:04.086523Z DEBUG sov_stf_runner::runner: Block execution complete time=5.982883626s -2026-04-20T10:42:04.086562Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:42:04.086672Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 20, latest_finalized_slot_number: 19, sync_status: Synced { synced_da_height: 19 }, .. } -2026-04-20T10:42:04.086782Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=12 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 20, latest_finalized_slot_number: 19, sync_status: Synced { synced_da_height: 19 }, .. } -2026-04-20T10:42:04.086851Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=12 -2026-04-20T10:42:04.087118Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:42:04.087208Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=8 -2026-04-20T10:42:04.087303Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=15 -2026-04-20T10:42:04.087420Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:42:04.087655Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=15 sequence_number=25 -2026-04-20T10:42:04.087674Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=25 blob_id=2147876409486746435410050331850768871 visible_slot_number_after_increase=15 visible_slots_to_advance=1 -2026-04-20T10:42:04.087702Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:42:04.088097Z DEBUG compute_state_update{scope="sequencer" rollup_height=13 slot_number=15}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2cbe1924cc7135e0c6cf6abdc36b5f5a1f59c8a4441bed11bc0f194cd7cea1443d05b8d0ad5a866e172f2a6a35e0845b51131da05bb0dc679fb841c81722c692 next_version=21 sesssion_starting_time=32.56µs -2026-04-20T10:42:04.088762Z DEBUG compute_state_update{scope="sequencer" rollup_height=13 slot_number=15}: sov_state::nomt::prover_storage: computed next state root state_root=7472b02c42267040cdaf762fe2aa479f592558db8581c5a8d82aa77fd9a295dc78090ee09eaade0d90901adb08f2f519fa855f59b74984c80956993acfa4ade4 next_version=21 time=709.665µs accesses_build_time=10.37µs finishing_session_time=635.396µs -2026-04-20T10:42:04.089570Z DEBUG manage_blob_submission_inside_task{blob_id=2147876409486746435410050331850768871 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x983cc216d5501ea18bfa7043668e3f96aa6d6d1329a45e9a3bcab155cebd7fc3 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=21 include_at=21 bytes=13 time=674.375µs -2026-04-20T10:42:10.087125Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=21 prev_hash=0xeef2a57a2089c86ac03a897860074fbd8e11de8d32091a0c8ae454d2710c1d6c hash=0xa06681d77430ffe54ca16e6967eccc86f7c04ef1ee140ca740c5949ad58a9401 producing_time=855.205µs -2026-04-20T10:42:10.088791Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=21 current_state_root="2cbe1924cc7135e0c6cf6abdc36b5f5a1f59c8a4441bed11bc0f194cd7cea1443d05b8d0ad5a866e172f2a6a35e0845b51131da05bb0dc679fb841c81722c692" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x983cc216d5501ea18bfa7043668e3f96aa6d6d1329a45e9a3bcab155cebd7fc3"] proof_blobs=[] -2026-04-20T10:42:10.089074Z DEBUG StfBlueprint::apply_slot{context=Node da_height=21}: sov_chain_state: Setting next visible slot number next_visible_slot_number=15 -2026-04-20T10:42:10.089342Z DEBUG StfBlueprint::apply_slot{context=Node da_height=21}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x983cc216d5501ea18bfa7043668e3f96aa6d6d1329a45e9a3bcab155cebd7fc3}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:42:10.089532Z DEBUG StfBlueprint::apply_slot{context=Node da_height=21}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2cbe1924cc7135e0c6cf6abdc36b5f5a1f59c8a4441bed11bc0f194cd7cea1443d05b8d0ad5a866e172f2a6a35e0845b51131da05bb0dc679fb841c81722c692 next_version=21 sesssion_starting_time=46.89µs -2026-04-20T10:42:10.090694Z DEBUG StfBlueprint::apply_slot{context=Node da_height=21}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=7472b02c42267040cdaf762fe2aa479f592558db8581c5a8d82aa77fd9a295dc06e26e713322361ad1e9510efd7547e9d30efde590d6f1586458b99279677b53 next_version=21 time=1.243652ms accesses_build_time=33.89µs finishing_session_time=1.132973ms -2026-04-20T10:42:10.090875Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="aaa5556e40a23ecebb42dba9334651aca40774ff2dee537b470a68c1e87a1870" -2026-04-20T10:42:10.090894Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="77b798a101a6804cf4ffb973f391e002170d021601a5f79bc87948080dc8d5fb" -2026-04-20T10:42:10.090905Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="d77903fb44ad2f839e5627c192e7da859ddeb6abe0e1506a3f7e6e1b3f8d2205" -2026-04-20T10:42:10.090918Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2cbe1924cc7135e0c6cf6abdc36b5f5a1f59c8a4441bed11bc0f194cd7cea144665fab35c120da3c36805c2308bca3e888db59947f7338fcef4eb428c1178e96" next_state_root="7472b02c42267040cdaf762fe2aa479f592558db8581c5a8d82aa77fd9a295dc06e26e713322361ad1e9510efd7547e9d30efde590d6f1586458b99279677b53" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:42:10.091439Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 21, latest_finalized_slot_number: 20, sync_status: Syncing { synced_da_height: 20, target_da_height: 21 }, .. } -2026-04-20T10:42:10.091516Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=13 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 21, latest_finalized_slot_number: 20, sync_status: Syncing { synced_da_height: 20, target_da_height: 21 }, .. } -2026-04-20T10:42:10.091576Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=13 -2026-04-20T10:42:10.091814Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:42:10.091882Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=9 -2026-04-20T10:42:10.091979Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=16 -2026-04-20T10:42:10.092115Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:42:10.092268Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=16 sequence_number=26 -2026-04-20T10:42:10.092289Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=26 blob_id=2147876416746398795778993041266012735 visible_slot_number_after_increase=16 visible_slots_to_advance=1 -2026-04-20T10:42:10.092326Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:42:10.094095Z DEBUG manage_blob_submission_inside_task{blob_id=2147876416746398795778993041266012735 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x8f48cf2eb570ef54271c307d164e223b1d0d8f496bf76b796ef0fb1c3d9fc780 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=22 include_at=22 bytes=13 time=743.805µs -2026-04-20T10:42:10.097810Z DEBUG compute_state_update{scope="sequencer" rollup_height=14 slot_number=16}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:42:10.097857Z DEBUG sov_stf_runner::runner: Block execution complete time=6.011298241s -2026-04-20T10:42:10.097879Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:42:10.097887Z DEBUG compute_state_update{scope="sequencer" rollup_height=14 slot_number=16}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7472b02c42267040cdaf762fe2aa479f592558db8581c5a8d82aa77fd9a295dc06e26e713322361ad1e9510efd7547e9d30efde590d6f1586458b99279677b53 next_version=22 sesssion_starting_time=5.127797ms -2026-04-20T10:42:10.098132Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:42:10.098218Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:42:10.098529Z DEBUG compute_state_update{scope="sequencer" rollup_height=14 slot_number=16}: sov_state::nomt::prover_storage: computed next state root state_root=74bf729bd3922c6f04ac1765dae7cdf0e3a94cf77f8753bae60f26e7372a11c25c45079b6caf73a1dc58e53811d91c9336de40394887373d0f20864c7629d793 next_version=22 time=5.785083ms accesses_build_time=14.511µs finishing_session_time=617.576µs -2026-04-20T10:42:10.644296Z DEBUG sp1_core_executor_runner::native: CHILD sp1_t-GtMI4wSVaOJ-mFS23hyg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:42:10.647338Z DEBUG sp1_core_executor_runner::native: CHILD sp1_t-GtMI4wSVaOJ-mFS23hyg==: stderr: -2026-04-20T10:42:10.647378Z DEBUG sp1_core_executor_runner::native: CHILD sp1_t-GtMI4wSVaOJ-mFS23hyg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/module-system/sov-state/src/codec/mod.rs:60:14: -2026-04-20T10:42:10.647389Z DEBUG sp1_core_executor_runner::native: CHILD sp1_t-GtMI4wSVaOJ-mFS23hyg==: stderr: called `Result::unwrap()` on an `Err` value: "Failed to decode \"sov_mock_zkvm::MockCodeCommitment\" value 0x0000000000000000000000000000000000000000000000000000000000000000, error: RemainingInput" -2026-04-20T10:42:10.647398Z DEBUG sp1_core_executor_runner::native: CHILD sp1_t-GtMI4wSVaOJ-mFS23hyg==: stderr: stack backtrace: -2026-04-20T10:42:10.647405Z DEBUG sp1_core_executor_runner::native: CHILD sp1_t-GtMI4wSVaOJ-mFS23hyg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:42:10.647412Z DEBUG sp1_core_executor_runner::native: CHILD sp1_t-GtMI4wSVaOJ-mFS23hyg==: stderr: called `Result::unwrap()` on an `Err` value: "Failed to decode \"sov_mock_zkvm::MockCodeCommitment\" value 0x0000000000000000000000000000000000000000000000000000000000000000, error: RemainingInput" -2026-04-20T10:42:10.647536Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:42:10.658130Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 814932 cycles -2026-04-20T10:42:10.661020Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:42:10.706160Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:42:10.706216Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:42:10.804777Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:42:10.839758Z DEBUG sp1_core_executor_runner::native: CHILD sp1_P-5Ib_TMQUybxFdG_5cxsw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:42:10.842574Z DEBUG sp1_core_executor_runner::native: CHILD sp1_P-5Ib_TMQUybxFdG_5cxsw==: stderr: -2026-04-20T10:42:10.842588Z DEBUG sp1_core_executor_runner::native: CHILD sp1_P-5Ib_TMQUybxFdG_5cxsw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:42:10.842597Z DEBUG sp1_core_executor_runner::native: CHILD sp1_P-5Ib_TMQUybxFdG_5cxsw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:42:10.842606Z DEBUG sp1_core_executor_runner::native: CHILD sp1_P-5Ib_TMQUybxFdG_5cxsw==: stderr: stack backtrace: -2026-04-20T10:42:10.842612Z DEBUG sp1_core_executor_runner::native: CHILD sp1_P-5Ib_TMQUybxFdG_5cxsw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:42:10.842619Z DEBUG sp1_core_executor_runner::native: CHILD sp1_P-5Ib_TMQUybxFdG_5cxsw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:42:10.842725Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:42:10.843530Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1137763 cycles -2026-04-20T10:42:10.843826Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:42:10.909953Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:42:10.910002Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:42:10.910135Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:42:10.910616Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=27 blob_id=2147876417735280083246663049927932668 -2026-04-20T10:42:16.089206Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=22 prev_hash=0xa06681d77430ffe54ca16e6967eccc86f7c04ef1ee140ca740c5949ad58a9401 hash=0x4dcd275c0cf7bcea8e9da1c39f37516a26e81e1ab71766b1c6f3416ccfbea684 producing_time=1.472901ms -2026-04-20T10:42:16.100085Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=22 current_state_root="7472b02c42267040cdaf762fe2aa479f592558db8581c5a8d82aa77fd9a295dc06e26e713322361ad1e9510efd7547e9d30efde590d6f1586458b99279677b53" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x8f48cf2eb570ef54271c307d164e223b1d0d8f496bf76b796ef0fb1c3d9fc780"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x24f07aa0c57f6518823ba76e43d0dc88e323133baa4f4aa1299b884c27dfc386, len=625"] -2026-04-20T10:42:16.100341Z DEBUG StfBlueprint::apply_slot{context=Node da_height=22}: sov_chain_state: Setting next visible slot number next_visible_slot_number=16 -2026-04-20T10:42:16.100482Z DEBUG StfBlueprint::apply_slot{context=Node da_height=22}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x8f48cf2eb570ef54271c307d164e223b1d0d8f496bf76b796ef0fb1c3d9fc780}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:42:16.100687Z DEBUG StfBlueprint::apply_slot{context=Node da_height=22}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7472b02c42267040cdaf762fe2aa479f592558db8581c5a8d82aa77fd9a295dc06e26e713322361ad1e9510efd7547e9d30efde590d6f1586458b99279677b53 next_version=22 sesssion_starting_time=47.56µs -2026-04-20T10:42:16.101710Z DEBUG StfBlueprint::apply_slot{context=Node da_height=22}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=74bf729bd3922c6f04ac1765dae7cdf0e3a94cf77f8753bae60f26e7372a11c27cc0c89deaf14fee6014c1535f310fc503283bca1bdce71dd461877a66ba1b04 next_version=22 time=1.103163ms accesses_build_time=31.37µs finishing_session_time=971.184µs -2026-04-20T10:42:16.101914Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2cbe1924cc7135e0c6cf6abdc36b5f5a1f59c8a4441bed11bc0f194cd7cea1443d05b8d0ad5a866e172f2a6a35e0845b51131da05bb0dc679fb841c81722c692" next_state_root="74bf729bd3922c6f04ac1765dae7cdf0e3a94cf77f8753bae60f26e7372a11c27cc0c89deaf14fee6014c1535f310fc503283bca1bdce71dd461877a66ba1b04" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:42:16.102437Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 22, latest_finalized_slot_number: 21, sync_status: Syncing { synced_da_height: 21, target_da_height: 22 }, .. } -2026-04-20T10:42:16.102530Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=14 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 22, latest_finalized_slot_number: 21, sync_status: Syncing { synced_da_height: 21, target_da_height: 22 }, .. } -2026-04-20T10:42:16.102592Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=14 -2026-04-20T10:42:16.113176Z DEBUG sov_stf_runner::runner: Block execution complete time=6.015298128s -2026-04-20T10:42:16.113206Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:42:16.113447Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:42:16.113537Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:42:16.679197Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kbrRHQ5KRnehoIp1PswMlw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:42:16.690573Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:42:16.701808Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1624523 cycles -2026-04-20T10:42:16.704621Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [44, 51, 42, 238, 37, 129, 50, 114, 141, 109, 205, 28, 88, 77, 126, 195, 93, 246, 93, 38, 33, 242, 191, 230, 127, 240, 6, 2, 222, 190, 91, 9, 0, 25, 134, 58, 188, 161, 115, 108, 137, 245, 21, 75, 192, 234, 50, 90, 102, 80, 245, 98, 174, 172, 20, 57, 136, 164, 65, 139, 181, 199, 154, 141, 78, 233, 201, 63, 47, 94, 100, 50, 174, 43, 122, 103, 180, 171, 219, 130, 215, 193, 111, 18, 227, 155, 198, 139, 0, 158, 162, 154, 103, 90, 4, 218, 77, 79, 109, 133, 107, 55, 80, 253, 85, 119, 7, 83, 149, 219, 216, 48, 116, 21, 241, 181, 76, 124, 10, 1, 207, 165, 0, 124, 208, 208, 214, 147, 18, 164, 115, 233, 35, 238, 148, 195, 138, 254, 154, 238, 151, 41, 125, 41, 251, 31, 196, 164, 225, 180, 8, 137, 112, 187, 251, 75, 40, 119, 179, 132, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:42:16.787520Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:42:16.787557Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:42:16.821403Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:42:16.855914Z DEBUG sp1_core_executor_runner::native: CHILD sp1_cCbUmL1aRQy2_lMCUUKd-g==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:42:16.858784Z DEBUG sp1_core_executor_runner::native: CHILD sp1_cCbUmL1aRQy2_lMCUUKd-g==: stderr: -2026-04-20T10:42:16.858811Z DEBUG sp1_core_executor_runner::native: CHILD sp1_cCbUmL1aRQy2_lMCUUKd-g==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:42:16.858822Z DEBUG sp1_core_executor_runner::native: CHILD sp1_cCbUmL1aRQy2_lMCUUKd-g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:42:16.858830Z DEBUG sp1_core_executor_runner::native: CHILD sp1_cCbUmL1aRQy2_lMCUUKd-g==: stderr: stack backtrace: -2026-04-20T10:42:16.858837Z DEBUG sp1_core_executor_runner::native: CHILD sp1_cCbUmL1aRQy2_lMCUUKd-g==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:42:16.858844Z DEBUG sp1_core_executor_runner::native: CHILD sp1_cCbUmL1aRQy2_lMCUUKd-g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:42:16.858904Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:42:16.859738Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:42:16.860026Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:42:16.928775Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:42:16.928821Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:42:16.929011Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:42:16.929587Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=28 blob_id=2147876425011815493027033744862413946 -2026-04-20T10:42:22.091049Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=23 prev_hash=0x4dcd275c0cf7bcea8e9da1c39f37516a26e81e1ab71766b1c6f3416ccfbea684 hash=0x30a8a395c8507e92d8ed9c1753adeb150895ee6a7625f1e54e41a9f67f2442dd producing_time=1.43853ms -2026-04-20T10:42:22.094640Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=23 current_state_root="74bf729bd3922c6f04ac1765dae7cdf0e3a94cf77f8753bae60f26e7372a11c27cc0c89deaf14fee6014c1535f310fc503283bca1bdce71dd461877a66ba1b04" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xfac44a104b00bca927e9b613a2368aabf6bda0152990a95b4ad9aa6b5a556fb5, len=625"] -2026-04-20T10:42:22.094965Z DEBUG StfBlueprint::apply_slot{context=Node da_height=23}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=74bf729bd3922c6f04ac1765dae7cdf0e3a94cf77f8753bae60f26e7372a11c27cc0c89deaf14fee6014c1535f310fc503283bca1bdce71dd461877a66ba1b04 next_version=23 sesssion_starting_time=47.64µs -2026-04-20T10:42:22.095708Z DEBUG StfBlueprint::apply_slot{context=Node da_height=23}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=74bf729bd3922c6f04ac1765dae7cdf0e3a94cf77f8753bae60f26e7372a11c22c94328950c6179cadd5144247d4e22da9781335d37eae40ce4b67b7714a6df7 next_version=23 time=808.054µs accesses_build_time=15.729µs finishing_session_time=712.115µs -2026-04-20T10:42:22.095782Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="7472b02c42267040cdaf762fe2aa479f592558db8581c5a8d82aa77fd9a295dc06e26e713322361ad1e9510efd7547e9d30efde590d6f1586458b99279677b53" next_state_root="74bf729bd3922c6f04ac1765dae7cdf0e3a94cf77f8753bae60f26e7372a11c22c94328950c6179cadd5144247d4e22da9781335d37eae40ce4b67b7714a6df7" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:42:22.096219Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 23, latest_finalized_slot_number: 22, sync_status: Syncing { synced_da_height: 22, target_da_height: 23 }, .. } -2026-04-20T10:42:22.096287Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=14 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 23, latest_finalized_slot_number: 22, sync_status: Syncing { synced_da_height: 22, target_da_height: 23 }, .. } -2026-04-20T10:42:22.096358Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=14 -2026-04-20T10:42:22.096577Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:42:22.096654Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=10 -2026-04-20T10:42:22.096743Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=18 -2026-04-20T10:42:22.096886Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:42:22.097156Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=18 sequence_number=29 -2026-04-20T10:42:22.097200Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=2 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:42:22.097202Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=29 blob_id=2147876431259550584544142940397550925 visible_slot_number_after_increase=18 visible_slots_to_advance=2 -2026-04-20T10:42:22.099331Z DEBUG manage_blob_submission_inside_task{blob_id=2147876431259550584544142940397550925 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xaa7e94e1cfb49c40d672c25e68ea4b862fa15d2422c0e8f8c0035c00340317fe sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=24 include_at=24 bytes=13 time=793.655µs -2026-04-20T10:42:22.110326Z DEBUG compute_state_update{scope="sequencer" rollup_height=15 slot_number=18}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:42:22.110354Z DEBUG sov_stf_runner::runner: Block execution complete time=5.997149095s -2026-04-20T10:42:22.110375Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:42:22.110403Z DEBUG compute_state_update{scope="sequencer" rollup_height=15 slot_number=18}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=74bf729bd3922c6f04ac1765dae7cdf0e3a94cf77f8753bae60f26e7372a11c22c94328950c6179cadd5144247d4e22da9781335d37eae40ce4b67b7714a6df7 next_version=24 sesssion_starting_time=12.787297ms -2026-04-20T10:42:22.111191Z DEBUG compute_state_update{scope="sequencer" rollup_height=15 slot_number=18}: sov_state::nomt::prover_storage: computed next state root state_root=4ae26a057b90ed330932be3b7b78fbe0debac3fb9ee07d0b03280b973523905b4878731dae5bc7e98a254d9efc156077b40d190475b54a79d798ec48f7b21892 next_version=24 time=13.591642ms accesses_build_time=14.69µs finishing_session_time=764.245µs -2026-04-20T10:42:28.093457Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=24 prev_hash=0x30a8a395c8507e92d8ed9c1753adeb150895ee6a7625f1e54e41a9f67f2442dd hash=0xed3854e35d9aae555b095259d89755e1277cb2d0fe9e0f13e22270baff40bf5f producing_time=1.269022ms -2026-04-20T10:42:28.101145Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=24 current_state_root="74bf729bd3922c6f04ac1765dae7cdf0e3a94cf77f8753bae60f26e7372a11c22c94328950c6179cadd5144247d4e22da9781335d37eae40ce4b67b7714a6df7" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xaa7e94e1cfb49c40d672c25e68ea4b862fa15d2422c0e8f8c0035c00340317fe"] proof_blobs=[] -2026-04-20T10:42:28.101420Z DEBUG StfBlueprint::apply_slot{context=Node da_height=24}: sov_chain_state: Setting next visible slot number next_visible_slot_number=18 -2026-04-20T10:42:28.101647Z DEBUG StfBlueprint::apply_slot{context=Node da_height=24}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xaa7e94e1cfb49c40d672c25e68ea4b862fa15d2422c0e8f8c0035c00340317fe}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=2 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:42:28.101835Z DEBUG StfBlueprint::apply_slot{context=Node da_height=24}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=74bf729bd3922c6f04ac1765dae7cdf0e3a94cf77f8753bae60f26e7372a11c22c94328950c6179cadd5144247d4e22da9781335d37eae40ce4b67b7714a6df7 next_version=24 sesssion_starting_time=48.81µs -2026-04-20T10:42:28.102775Z DEBUG StfBlueprint::apply_slot{context=Node da_height=24}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4ae26a057b90ed330932be3b7b78fbe0debac3fb9ee07d0b03280b973523905b1fb04e1adac143a4023e45cd0eb17fc5af6e8474ec0917db74607ef8cbf79cfe next_version=24 time=1.022744ms accesses_build_time=33.13µs finishing_session_time=910.574µs -2026-04-20T10:42:28.102942Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="24f07aa0c57f6518823ba76e43d0dc88e323133baa4f4aa1299b884c27dfc386" -2026-04-20T10:42:28.102964Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="fac44a104b00bca927e9b613a2368aabf6bda0152990a95b4ad9aa6b5a556fb5" -2026-04-20T10:42:28.103008Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="74bf729bd3922c6f04ac1765dae7cdf0e3a94cf77f8753bae60f26e7372a11c27cc0c89deaf14fee6014c1535f310fc503283bca1bdce71dd461877a66ba1b04" next_state_root="4ae26a057b90ed330932be3b7b78fbe0debac3fb9ee07d0b03280b973523905b1fb04e1adac143a4023e45cd0eb17fc5af6e8474ec0917db74607ef8cbf79cfe" aggregated_proofs=0 proof_receipts=2 -2026-04-20T10:42:28.103595Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 24, latest_finalized_slot_number: 23, sync_status: Synced { synced_da_height: 23 }, .. } -2026-04-20T10:42:28.103698Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=15 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 24, latest_finalized_slot_number: 23, sync_status: Synced { synced_da_height: 23 }, .. } -2026-04-20T10:42:28.103762Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=15 -2026-04-20T10:42:28.104005Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:42:28.104069Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=11 -2026-04-20T10:42:28.104165Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=19 -2026-04-20T10:42:28.104288Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:42:28.104446Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=19 sequence_number=30 -2026-04-20T10:42:28.104465Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=30 blob_id=2147876438521561530346722516836649595 visible_slot_number_after_increase=19 visible_slots_to_advance=1 -2026-04-20T10:42:28.104508Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:42:28.106447Z DEBUG manage_blob_submission_inside_task{blob_id=2147876438521561530346722516836649595 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xf0c11a3063ea0af6c705eac94fdb835cd501da868d34fc0fcfd2fdf185d0a3b9 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=25 include_at=25 bytes=13 time=875.495µs -2026-04-20T10:42:28.113146Z DEBUG compute_state_update{scope="sequencer" rollup_height=16 slot_number=19}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:42:28.113179Z DEBUG sov_stf_runner::runner: Block execution complete time=6.002805138s -2026-04-20T10:42:28.113198Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:42:28.113225Z DEBUG compute_state_update{scope="sequencer" rollup_height=16 slot_number=19}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4ae26a057b90ed330932be3b7b78fbe0debac3fb9ee07d0b03280b973523905b1fb04e1adac143a4023e45cd0eb17fc5af6e8474ec0917db74607ef8cbf79cfe next_version=25 sesssion_starting_time=8.284537ms -2026-04-20T10:42:28.113441Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:42:28.113515Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:42:28.113833Z DEBUG compute_state_update{scope="sequencer" rollup_height=16 slot_number=19}: sov_state::nomt::prover_storage: computed next state root state_root=24633c232742638487664a22e4479b53d2f9399ca26523375b42945721258641385588bd87b0a871ab45f76e7f20b61af885a0717b5a6951686533ae9c3775e6 next_version=25 time=8.910432ms accesses_build_time=16.81µs finishing_session_time=582.246µs -2026-04-20T10:42:28.668864Z DEBUG sp1_core_executor_runner::native: CHILD sp1_WpMvpsjKTumJD1tYeRoIpQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:42:28.674617Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:42:28.685096Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 902969 cycles -2026-04-20T10:42:28.687775Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [113, 69, 14, 182, 242, 167, 252, 40, 137, 189, 158, 91, 178, 248, 8, 66, 10, 232, 222, 104, 47, 63, 94, 74, 130, 122, 58, 16, 126, 39, 157, 251, 55, 14, 218, 197, 221, 223, 129, 207, 168, 222, 245, 239, 116, 195, 171, 111, 98, 131, 151, 58, 151, 45, 76, 65, 216, 206, 123, 160, 3, 24, 43, 144, 113, 69, 14, 182, 242, 167, 252, 40, 137, 189, 158, 91, 178, 248, 8, 66, 10, 232, 222, 104, 47, 63, 94, 74, 130, 122, 58, 16, 126, 39, 157, 251, 35, 164, 152, 163, 255, 247, 149, 39, 196, 187, 179, 227, 150, 64, 43, 14, 117, 15, 252, 134, 15, 22, 12, 96, 62, 206, 232, 70, 150, 120, 148, 248, 214, 119, 184, 206, 231, 66, 73, 47, 112, 55, 170, 99, 42, 191, 103, 136, 2, 146, 45, 0, 223, 1, 83, 45, 17, 120, 108, 13, 192, 62, 122, 115, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:42:28.738738Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:42:28.738797Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:42:28.821273Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:42:28.856592Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Q4nFVKGjTtSFPJoFwOBaeg==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:42:28.859438Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Q4nFVKGjTtSFPJoFwOBaeg==: stderr: -2026-04-20T10:42:28.859454Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Q4nFVKGjTtSFPJoFwOBaeg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:42:28.859463Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Q4nFVKGjTtSFPJoFwOBaeg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:42:28.859473Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Q4nFVKGjTtSFPJoFwOBaeg==: stderr: stack backtrace: -2026-04-20T10:42:28.859480Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Q4nFVKGjTtSFPJoFwOBaeg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:42:28.859487Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Q4nFVKGjTtSFPJoFwOBaeg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:42:28.859594Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:42:28.860366Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:42:28.860658Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:42:28.927464Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:42:28.927507Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:42:28.927670Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:42:28.927869Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:42:28.927939Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:42:28.928388Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=31 blob_id=2147876439516520447615129798820143104 -2026-04-20T10:42:29.476890Z DEBUG sp1_core_executor_runner::native: CHILD sp1_u1B7N60FTjKI-uX0cprXXA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:42:29.479921Z DEBUG sp1_core_executor_runner::native: CHILD sp1_u1B7N60FTjKI-uX0cprXXA==: stderr: -2026-04-20T10:42:29.479950Z DEBUG sp1_core_executor_runner::native: CHILD sp1_u1B7N60FTjKI-uX0cprXXA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/module-system/sov-state/src/codec/mod.rs:60:14: -2026-04-20T10:42:29.479978Z DEBUG sp1_core_executor_runner::native: CHILD sp1_u1B7N60FTjKI-uX0cprXXA==: stderr: called `Result::unwrap()` on an `Err` value: "Failed to decode \"sov_mock_zkvm::MockCodeCommitment\" value 0x0000000000000000000000000000000000000000000000000000000000000000, error: RemainingInput" -2026-04-20T10:42:29.479987Z DEBUG sp1_core_executor_runner::native: CHILD sp1_u1B7N60FTjKI-uX0cprXXA==: stderr: stack backtrace: -2026-04-20T10:42:29.479994Z DEBUG sp1_core_executor_runner::native: CHILD sp1_u1B7N60FTjKI-uX0cprXXA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:42:29.480002Z DEBUG sp1_core_executor_runner::native: CHILD sp1_u1B7N60FTjKI-uX0cprXXA==: stderr: called `Result::unwrap()` on an `Err` value: "Failed to decode \"sov_mock_zkvm::MockCodeCommitment\" value 0x0000000000000000000000000000000000000000000000000000000000000000, error: RemainingInput" -2026-04-20T10:42:29.480077Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:42:29.490478Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 827724 cycles -2026-04-20T10:42:29.493150Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:42:29.537965Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:42:29.538021Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:42:29.636548Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:42:29.671839Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Fj4e51e-SoCcgv1_BN6KLw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:42:29.674703Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Fj4e51e-SoCcgv1_BN6KLw==: stderr: -2026-04-20T10:42:29.674718Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Fj4e51e-SoCcgv1_BN6KLw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:42:29.674729Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Fj4e51e-SoCcgv1_BN6KLw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:42:29.674736Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Fj4e51e-SoCcgv1_BN6KLw==: stderr: stack backtrace: -2026-04-20T10:42:29.674744Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Fj4e51e-SoCcgv1_BN6KLw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:42:29.674751Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Fj4e51e-SoCcgv1_BN6KLw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:42:29.674864Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:42:29.675631Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1137763 cycles -2026-04-20T10:42:29.675924Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:42:29.743561Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:42:29.743607Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:42:29.743772Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:42:29.744578Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=32 blob_id=2147876440503009523461346790147923679 -2026-04-20T10:42:34.096729Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=25 prev_hash=0xed3854e35d9aae555b095259d89755e1277cb2d0fe9e0f13e22270baff40bf5f hash=0x4ba0b9ba72fbcf6bc9b56aa4004a6abfaef896a087df930a66ba6406e4a2d0ec producing_time=1.490181ms -2026-04-20T10:42:34.104506Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=25 current_state_root="4ae26a057b90ed330932be3b7b78fbe0debac3fb9ee07d0b03280b973523905b1fb04e1adac143a4023e45cd0eb17fc5af6e8474ec0917db74607ef8cbf79cfe" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf0c11a3063ea0af6c705eac94fdb835cd501da868d34fc0fcfd2fdf185d0a3b9"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc0e7162bb5ed66ec910d233581159a63f3a26df4ec42355412ead599966deacc, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x562ff671f142485bf298faa3fedae48a0fdce8b70da0aa9c13523196dec15623, len=625"] -2026-04-20T10:42:34.104743Z DEBUG StfBlueprint::apply_slot{context=Node da_height=25}: sov_chain_state: Setting next visible slot number next_visible_slot_number=19 -2026-04-20T10:42:34.104881Z DEBUG StfBlueprint::apply_slot{context=Node da_height=25}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xf0c11a3063ea0af6c705eac94fdb835cd501da868d34fc0fcfd2fdf185d0a3b9}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:42:34.105084Z DEBUG StfBlueprint::apply_slot{context=Node da_height=25}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4ae26a057b90ed330932be3b7b78fbe0debac3fb9ee07d0b03280b973523905b1fb04e1adac143a4023e45cd0eb17fc5af6e8474ec0917db74607ef8cbf79cfe next_version=25 sesssion_starting_time=48.76µs -2026-04-20T10:42:34.106032Z DEBUG StfBlueprint::apply_slot{context=Node da_height=25}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=24633c232742638487664a22e4479b53d2f9399ca26523375b4294572125864158458a2bf7e865c39861dc678d9f252ac6106444212f243679a8b9037436a518 next_version=25 time=1.029013ms accesses_build_time=31.53µs finishing_session_time=888.725µs -2026-04-20T10:42:34.106227Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="74bf729bd3922c6f04ac1765dae7cdf0e3a94cf77f8753bae60f26e7372a11c22c94328950c6179cadd5144247d4e22da9781335d37eae40ce4b67b7714a6df7" next_state_root="24633c232742638487664a22e4479b53d2f9399ca26523375b4294572125864158458a2bf7e865c39861dc678d9f252ac6106444212f243679a8b9037436a518" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:42:34.106777Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 25, latest_finalized_slot_number: 24, sync_status: Synced { synced_da_height: 24 }, .. } -2026-04-20T10:42:34.106884Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=16 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 25, latest_finalized_slot_number: 24, sync_status: Synced { synced_da_height: 24 }, .. } -2026-04-20T10:42:34.106950Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=16 -2026-04-20T10:42:34.118269Z DEBUG sov_stf_runner::runner: Block execution complete time=6.005071894s -2026-04-20T10:42:34.118301Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:42:34.118503Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:42:34.118570Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:42:34.650094Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EmSEPMnXQfOcRv9P9ouZuA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:42:34.661875Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:42:34.672430Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1690515 cycles -2026-04-20T10:42:34.674926Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [23, 228, 4, 164, 19, 146, 66, 147, 18, 67, 92, 155, 39, 1, 27, 232, 86, 36, 134, 47, 217, 124, 202, 84, 226, 164, 35, 227, 213, 71, 16, 185, 97, 137, 194, 221, 120, 229, 168, 5, 144, 56, 86, 122, 242, 248, 60, 126, 178, 162, 109, 251, 6, 212, 203, 189, 8, 248, 104, 118, 28, 149, 222, 223, 5, 91, 16, 228, 95, 108, 16, 180, 40, 28, 220, 65, 54, 116, 196, 211, 134, 88, 68, 114, 160, 103, 112, 26, 85, 238, 9, 103, 48, 242, 221, 138, 29, 83, 230, 145, 220, 52, 104, 155, 154, 99, 101, 60, 67, 146, 21, 67, 32, 241, 174, 183, 24, 163, 223, 200, 171, 9, 68, 130, 134, 187, 209, 176, 179, 201, 42, 69, 192, 198, 225, 110, 28, 16, 141, 83, 161, 180, 22, 43, 195, 32, 25, 193, 215, 111, 42, 145, 198, 250, 156, 216, 23, 213, 53, 73, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:42:34.760577Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:42:34.760616Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:42:34.826562Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:42:34.861457Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qjMImAgQS0SbXd9tXwP_Gg==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:42:34.864264Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qjMImAgQS0SbXd9tXwP_Gg==: stderr: -2026-04-20T10:42:34.864279Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qjMImAgQS0SbXd9tXwP_Gg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:42:34.864290Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qjMImAgQS0SbXd9tXwP_Gg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:42:34.864299Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qjMImAgQS0SbXd9tXwP_Gg==: stderr: stack backtrace: -2026-04-20T10:42:34.864305Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qjMImAgQS0SbXd9tXwP_Gg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:42:34.864321Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qjMImAgQS0SbXd9tXwP_Gg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:42:34.864389Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:42:34.865155Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:42:34.865449Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:42:34.915641Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:42:34.915684Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:42:34.915831Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:42:34.916403Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=33 blob_id=2147876446755517486805383518960438557 -2026-04-20T10:42:40.098950Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=26 prev_hash=0x4ba0b9ba72fbcf6bc9b56aa4004a6abfaef896a087df930a66ba6406e4a2d0ec hash=0xf32b8b642875b27a006827bc9b8aabd963a7dcb7b51dac5f3edf1330c1d3cef9 producing_time=1.402801ms -2026-04-20T10:42:40.099516Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=26 current_state_root="24633c232742638487664a22e4479b53d2f9399ca26523375b4294572125864158458a2bf7e865c39861dc678d9f252ac6106444212f243679a8b9037436a518" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x704d15fe547c078a2153ea308ff7473ca89b9515732d900611bc0b618cb14e9f, len=625"] -2026-04-20T10:42:40.099863Z DEBUG StfBlueprint::apply_slot{context=Node da_height=26}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=24633c232742638487664a22e4479b53d2f9399ca26523375b4294572125864158458a2bf7e865c39861dc678d9f252ac6106444212f243679a8b9037436a518 next_version=26 sesssion_starting_time=45.75µs -2026-04-20T10:42:40.100683Z DEBUG StfBlueprint::apply_slot{context=Node da_height=26}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=24633c232742638487664a22e4479b53d2f9399ca26523375b429457212586413276e91a0927e24ad1281af122f1915fce7ab892f1b2496c6eab90a967b9ef1c next_version=26 time=883.605µs accesses_build_time=15.93µs finishing_session_time=784.395µs -2026-04-20T10:42:40.100754Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4ae26a057b90ed330932be3b7b78fbe0debac3fb9ee07d0b03280b973523905b1fb04e1adac143a4023e45cd0eb17fc5af6e8474ec0917db74607ef8cbf79cfe" next_state_root="24633c232742638487664a22e4479b53d2f9399ca26523375b429457212586413276e91a0927e24ad1281af122f1915fce7ab892f1b2496c6eab90a967b9ef1c" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:42:40.101375Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 26, latest_finalized_slot_number: 25, sync_status: Synced { synced_da_height: 25 }, .. } -2026-04-20T10:42:40.101479Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=16 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 26, latest_finalized_slot_number: 25, sync_status: Synced { synced_da_height: 25 }, .. } -2026-04-20T10:42:40.101573Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=16 -2026-04-20T10:42:40.101818Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:42:40.101907Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=12 -2026-04-20T10:42:40.102012Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=21 -2026-04-20T10:42:40.102152Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:42:40.102471Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=21 sequence_number=34 -2026-04-20T10:42:40.102513Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=34 blob_id=2147876453026226063570188498250263272 visible_slot_number_after_increase=21 visible_slots_to_advance=2 -2026-04-20T10:42:40.102533Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:42:40.104282Z DEBUG manage_blob_submission_inside_task{blob_id=2147876453026226063570188498250263272 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x6bc98b951ae2a6e623f3969c39eecf515c07d16fdbd3f52f171cc87dfa037e6b sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=27 include_at=27 bytes=13 time=644.356µs -2026-04-20T10:42:40.115194Z DEBUG compute_state_update{scope="sequencer" rollup_height=17 slot_number=21}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:42:40.115222Z DEBUG sov_stf_runner::runner: Block execution complete time=5.996923057s -2026-04-20T10:42:40.115262Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:42:40.115287Z DEBUG compute_state_update{scope="sequencer" rollup_height=17 slot_number=21}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=24633c232742638487664a22e4479b53d2f9399ca26523375b429457212586413276e91a0927e24ad1281af122f1915fce7ab892f1b2496c6eab90a967b9ef1c next_version=27 sesssion_starting_time=12.28377ms -2026-04-20T10:42:40.116019Z DEBUG compute_state_update{scope="sequencer" rollup_height=17 slot_number=21}: sov_state::nomt::prover_storage: computed next state root state_root=5ce9e67722babed22fa7fbc67ec3c0d18a0ce030716fdf8faa74f97ffa959e3e5ec687a6d2ae042fa52f6d7f3ce594a75f566ffbf431406fcfb5de41982f66d6 next_version=27 time=13.036175ms accesses_build_time=18.979µs finishing_session_time=703.895µs -2026-04-20T10:42:46.101234Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=27 prev_hash=0xf32b8b642875b27a006827bc9b8aabd963a7dcb7b51dac5f3edf1330c1d3cef9 hash=0xbe05b2a9608fb6384375014fbfbf13670067a2e30d12ecabdcc27e011089f19e producing_time=1.420741ms -2026-04-20T10:42:46.106944Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=27 current_state_root="24633c232742638487664a22e4479b53d2f9399ca26523375b429457212586413276e91a0927e24ad1281af122f1915fce7ab892f1b2496c6eab90a967b9ef1c" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x6bc98b951ae2a6e623f3969c39eecf515c07d16fdbd3f52f171cc87dfa037e6b"] proof_blobs=[] -2026-04-20T10:42:46.107229Z DEBUG StfBlueprint::apply_slot{context=Node da_height=27}: sov_chain_state: Setting next visible slot number next_visible_slot_number=21 -2026-04-20T10:42:46.107504Z DEBUG StfBlueprint::apply_slot{context=Node da_height=27}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x6bc98b951ae2a6e623f3969c39eecf515c07d16fdbd3f52f171cc87dfa037e6b}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:42:46.107693Z DEBUG StfBlueprint::apply_slot{context=Node da_height=27}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=24633c232742638487664a22e4479b53d2f9399ca26523375b429457212586413276e91a0927e24ad1281af122f1915fce7ab892f1b2496c6eab90a967b9ef1c next_version=27 sesssion_starting_time=48.82µs -2026-04-20T10:42:46.108709Z DEBUG StfBlueprint::apply_slot{context=Node da_height=27}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=5ce9e67722babed22fa7fbc67ec3c0d18a0ce030716fdf8faa74f97ffa959e3e60f16e25b666c26b7b426b441b0ec85557407f4344d994cf8e0bc30bf602c618 next_version=27 time=1.100883ms accesses_build_time=34.83µs finishing_session_time=985.243µs -2026-04-20T10:42:46.108876Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="c0e7162bb5ed66ec910d233581159a63f3a26df4ec42355412ead599966deacc" -2026-04-20T10:42:46.108899Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="562ff671f142485bf298faa3fedae48a0fdce8b70da0aa9c13523196dec15623" -2026-04-20T10:42:46.108927Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="704d15fe547c078a2153ea308ff7473ca89b9515732d900611bc0b618cb14e9f" -2026-04-20T10:42:46.108940Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="24633c232742638487664a22e4479b53d2f9399ca26523375b4294572125864158458a2bf7e865c39861dc678d9f252ac6106444212f243679a8b9037436a518" next_state_root="5ce9e67722babed22fa7fbc67ec3c0d18a0ce030716fdf8faa74f97ffa959e3e60f16e25b666c26b7b426b441b0ec85557407f4344d994cf8e0bc30bf602c618" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:42:46.109447Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 27, latest_finalized_slot_number: 26, sync_status: Synced { synced_da_height: 26 }, .. } -2026-04-20T10:42:46.109538Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=17 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 27, latest_finalized_slot_number: 26, sync_status: Synced { synced_da_height: 26 }, .. } -2026-04-20T10:42:46.109606Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=17 -2026-04-20T10:42:46.109823Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:42:46.109884Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=13 -2026-04-20T10:42:46.110045Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=22 -2026-04-20T10:42:46.110229Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:42:46.110441Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=22 sequence_number=35 -2026-04-20T10:42:46.110456Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=35 blob_id=2147876460289430527732441300123079029 visible_slot_number_after_increase=22 visible_slots_to_advance=1 -2026-04-20T10:42:46.110508Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:42:46.112521Z DEBUG manage_blob_submission_inside_task{blob_id=2147876460289430527732441300123079029 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x68ec5093a7aea5a03fb98f12743aca4f1ff88385192def77b2c6d53dd5decd56 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=28 include_at=28 bytes=13 time=748.916µs -2026-04-20T10:42:46.119155Z DEBUG compute_state_update{scope="sequencer" rollup_height=18 slot_number=22}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:42:46.119185Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003924853s -2026-04-20T10:42:46.119231Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:42:46.119268Z DEBUG compute_state_update{scope="sequencer" rollup_height=18 slot_number=22}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5ce9e67722babed22fa7fbc67ec3c0d18a0ce030716fdf8faa74f97ffa959e3e60f16e25b666c26b7b426b441b0ec85557407f4344d994cf8e0bc30bf602c618 next_version=28 sesssion_starting_time=8.257627ms -2026-04-20T10:42:46.119480Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:42:46.119580Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:42:46.119912Z DEBUG compute_state_update{scope="sequencer" rollup_height=18 slot_number=22}: sov_state::nomt::prover_storage: computed next state root state_root=11bdf9d0428d1b538101a2d22dc0c40ad51cb19d458a3bca861e364f9cb6abcd31c52c2a03832b46bb3ed05c16e7dbcdef16e6100312b4831e8a87cca3e1ec2b next_version=28 time=8.916753ms accesses_build_time=13.64µs finishing_session_time=614.466µs -2026-04-20T10:42:46.678580Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ViHgj76TRw2nUzBEgWXsYw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:42:46.693444Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:42:46.705310Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2209466 cycles -2026-04-20T10:42:46.708047Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [45, 3, 230, 164, 100, 17, 210, 254, 156, 32, 184, 16, 50, 159, 72, 115, 13, 42, 173, 99, 111, 9, 199, 148, 185, 101, 198, 174, 131, 215, 77, 233, 70, 188, 176, 148, 129, 215, 209, 117, 182, 177, 244, 194, 55, 50, 156, 70, 54, 60, 95, 93, 25, 86, 151, 183, 118, 50, 30, 145, 120, 142, 254, 130, 91, 183, 210, 210, 70, 204, 187, 34, 185, 249, 95, 168, 82, 52, 5, 158, 116, 204, 212, 207, 90, 115, 46, 213, 142, 106, 38, 218, 195, 183, 26, 119, 14, 64, 8, 47, 54, 26, 211, 198, 199, 89, 38, 144, 220, 236, 170, 17, 53, 249, 205, 248, 86, 240, 227, 35, 123, 241, 54, 14, 142, 77, 122, 22, 130, 90, 138, 167, 231, 7, 197, 99, 82, 226, 17, 232, 2, 198, 10, 85, 149, 69, 193, 248, 26, 88, 191, 25, 201, 163, 212, 215, 153, 3, 62, 96, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:42:46.808815Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:42:46.808855Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:42:46.825778Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:42:46.859184Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-tXPxs3IQvm1zGna14zMAQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:42:46.862052Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-tXPxs3IQvm1zGna14zMAQ==: stderr: -2026-04-20T10:42:46.862078Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-tXPxs3IQvm1zGna14zMAQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:42:46.862090Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-tXPxs3IQvm1zGna14zMAQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:42:46.862097Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-tXPxs3IQvm1zGna14zMAQ==: stderr: stack backtrace: -2026-04-20T10:42:46.862104Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-tXPxs3IQvm1zGna14zMAQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:42:46.862112Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-tXPxs3IQvm1zGna14zMAQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:42:46.862166Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:42:46.863018Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:42:46.863349Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:42:46.935048Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:42:46.935097Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:42:46.935275Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:42:46.935449Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:42:46.935531Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:42:46.935829Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=36 blob_id=2147876461286794642943842282170153617 -2026-04-20T10:42:47.493711Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Iubd4NYvSBOHW0fvRNRJ2Q==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:42:47.499400Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:42:47.509535Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 888788 cycles -2026-04-20T10:42:47.512116Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [44, 190, 25, 36, 204, 113, 53, 224, 198, 207, 106, 189, 195, 107, 95, 90, 31, 89, 200, 164, 68, 27, 237, 17, 188, 15, 25, 76, 215, 206, 161, 68, 102, 95, 171, 53, 193, 32, 218, 60, 54, 128, 92, 35, 8, 188, 163, 232, 136, 219, 89, 148, 127, 115, 56, 252, 239, 78, 180, 40, 193, 23, 142, 150, 44, 190, 25, 36, 204, 113, 53, 224, 198, 207, 106, 189, 195, 107, 95, 90, 31, 89, 200, 164, 68, 27, 237, 17, 188, 15, 25, 76, 215, 206, 161, 68, 28, 83, 197, 176, 140, 66, 151, 98, 201, 9, 198, 162, 45, 101, 137, 84, 49, 189, 236, 10, 134, 13, 138, 149, 49, 157, 75, 248, 78, 57, 103, 116, 238, 242, 165, 122, 32, 137, 200, 106, 192, 58, 137, 120, 96, 7, 79, 189, 142, 17, 222, 141, 50, 9, 26, 12, 138, 228, 84, 210, 113, 12, 29, 108, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:42:47.562192Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:42:47.562240Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:42:47.643975Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:42:47.677722Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-dfqSjkDSHq7TPjkC1i4wQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:42:47.680556Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-dfqSjkDSHq7TPjkC1i4wQ==: stderr: -2026-04-20T10:42:47.680572Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-dfqSjkDSHq7TPjkC1i4wQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:42:47.680581Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-dfqSjkDSHq7TPjkC1i4wQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:42:47.680590Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-dfqSjkDSHq7TPjkC1i4wQ==: stderr: stack backtrace: -2026-04-20T10:42:47.680599Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-dfqSjkDSHq7TPjkC1i4wQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:42:47.680607Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-dfqSjkDSHq7TPjkC1i4wQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:42:47.680747Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:42:47.681492Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:42:47.681813Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:42:47.747927Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:42:47.747975Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:42:47.748210Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:42:47.748802Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=37 blob_id=2147876462269659006814703068290377463 -2026-04-20T10:42:52.103125Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=28 prev_hash=0xbe05b2a9608fb6384375014fbfbf13670067a2e30d12ecabdcc27e011089f19e hash=0x1046eb8a1fab13e299bbd64dd19767ba031a71bdb94c7896d9f238908a06c247 producing_time=1.51673ms -2026-04-20T10:42:52.110862Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=28 current_state_root="5ce9e67722babed22fa7fbc67ec3c0d18a0ce030716fdf8faa74f97ffa959e3e60f16e25b666c26b7b426b441b0ec85557407f4344d994cf8e0bc30bf602c618" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x68ec5093a7aea5a03fb98f12743aca4f1ff88385192def77b2c6d53dd5decd56"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1a9414bd2b2d16c46fc8cb7747322e05a75eff040a334994eb28bf8a2ee314cb, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xcb02e82ebcb05949de9e1010dcf37856f1b02c310a241357fb9213d133f19413, len=625"] -2026-04-20T10:42:52.111117Z DEBUG StfBlueprint::apply_slot{context=Node da_height=28}: sov_chain_state: Setting next visible slot number next_visible_slot_number=22 -2026-04-20T10:42:52.111255Z DEBUG StfBlueprint::apply_slot{context=Node da_height=28}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x68ec5093a7aea5a03fb98f12743aca4f1ff88385192def77b2c6d53dd5decd56}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:42:52.111456Z DEBUG StfBlueprint::apply_slot{context=Node da_height=28}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5ce9e67722babed22fa7fbc67ec3c0d18a0ce030716fdf8faa74f97ffa959e3e60f16e25b666c26b7b426b441b0ec85557407f4344d994cf8e0bc30bf602c618 next_version=28 sesssion_starting_time=49.339µs -2026-04-20T10:42:52.112391Z DEBUG StfBlueprint::apply_slot{context=Node da_height=28}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=11bdf9d0428d1b538101a2d22dc0c40ad51cb19d458a3bca861e364f9cb6abcd10824af854b76ced7be43f6574490c350fc778f3cd74cebc170a69f4eae646e4 next_version=28 time=1.017833ms accesses_build_time=33.19µs finishing_session_time=901.954µs -2026-04-20T10:42:52.112584Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="24633c232742638487664a22e4479b53d2f9399ca26523375b429457212586413276e91a0927e24ad1281af122f1915fce7ab892f1b2496c6eab90a967b9ef1c" next_state_root="11bdf9d0428d1b538101a2d22dc0c40ad51cb19d458a3bca861e364f9cb6abcd10824af854b76ced7be43f6574490c350fc778f3cd74cebc170a69f4eae646e4" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:42:52.113136Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 28, latest_finalized_slot_number: 27, sync_status: Synced { synced_da_height: 27 }, .. } -2026-04-20T10:42:52.113215Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=18 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 28, latest_finalized_slot_number: 27, sync_status: Synced { synced_da_height: 27 }, .. } -2026-04-20T10:42:52.113277Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=18 -2026-04-20T10:42:52.127360Z DEBUG sov_stf_runner::runner: Block execution complete time=6.008130256s -2026-04-20T10:42:52.127390Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:42:52.127650Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:42:52.127718Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:42:52.684956Z DEBUG sp1_core_executor_runner::native: CHILD sp1_y4Cw7bJ0SYm4QHJhdM3FMg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:42:52.701105Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:42:52.713567Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2422641 cycles -2026-04-20T10:42:52.716305Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [44, 190, 25, 36, 204, 113, 53, 224, 198, 207, 106, 189, 195, 107, 95, 90, 31, 89, 200, 164, 68, 27, 237, 17, 188, 15, 25, 76, 215, 206, 161, 68, 61, 5, 184, 208, 173, 90, 134, 110, 23, 47, 42, 106, 53, 224, 132, 91, 81, 19, 29, 160, 91, 176, 220, 103, 159, 184, 65, 200, 23, 34, 198, 146, 16, 133, 9, 204, 143, 128, 128, 63, 135, 54, 22, 210, 146, 28, 191, 69, 17, 204, 103, 137, 98, 117, 198, 79, 131, 58, 172, 156, 134, 173, 148, 24, 7, 255, 133, 117, 200, 110, 215, 111, 8, 186, 22, 107, 149, 61, 206, 151, 90, 72, 8, 120, 255, 162, 70, 86, 93, 246, 16, 230, 234, 65, 176, 185, 160, 102, 129, 215, 116, 48, 255, 229, 76, 161, 110, 105, 103, 236, 204, 134, 247, 192, 78, 241, 238, 20, 12, 167, 64, 197, 148, 154, 213, 138, 148, 1, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:42:52.819535Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:42:52.819575Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:42:52.835151Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:42:52.868188Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hY33NG3yR7qGyN1LQeQJqQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:42:52.871015Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hY33NG3yR7qGyN1LQeQJqQ==: stderr: -2026-04-20T10:42:52.871042Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hY33NG3yR7qGyN1LQeQJqQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:42:52.871053Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hY33NG3yR7qGyN1LQeQJqQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:42:52.871060Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hY33NG3yR7qGyN1LQeQJqQ==: stderr: stack backtrace: -2026-04-20T10:42:52.871067Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hY33NG3yR7qGyN1LQeQJqQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:42:52.871074Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hY33NG3yR7qGyN1LQeQJqQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:42:52.871114Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:42:52.871942Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:42:52.872235Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:42:52.943717Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:42:52.943768Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:42:52.943969Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:42:52.944497Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=38 blob_id=2147876468551259076127304779293668905 -2026-04-20T10:42:58.105294Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=29 prev_hash=0x1046eb8a1fab13e299bbd64dd19767ba031a71bdb94c7896d9f238908a06c247 hash=0xc0c09b2477953b81806805ac62c4ce19c2b2b84bf52107e119060532b2660393 producing_time=1.47264ms -2026-04-20T10:42:58.108936Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=29 current_state_root="11bdf9d0428d1b538101a2d22dc0c40ad51cb19d458a3bca861e364f9cb6abcd10824af854b76ced7be43f6574490c350fc778f3cd74cebc170a69f4eae646e4" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x531f431f48903e92ca0e7b5e9ca972c52d74bdc3a5ada0211a2eb0d03cfd3eea, len=625"] -2026-04-20T10:42:58.109263Z DEBUG StfBlueprint::apply_slot{context=Node da_height=29}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=11bdf9d0428d1b538101a2d22dc0c40ad51cb19d458a3bca861e364f9cb6abcd10824af854b76ced7be43f6574490c350fc778f3cd74cebc170a69f4eae646e4 next_version=29 sesssion_starting_time=48.05µs -2026-04-20T10:42:58.110083Z DEBUG StfBlueprint::apply_slot{context=Node da_height=29}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=11bdf9d0428d1b538101a2d22dc0c40ad51cb19d458a3bca861e364f9cb6abcd5ebe0580297c4bea57fb3f5395f5802e9d432798bd34ddfa7615093227bea0e7 next_version=29 time=885.074µs accesses_build_time=16.02µs finishing_session_time=789.974µs -2026-04-20T10:42:58.110148Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="5ce9e67722babed22fa7fbc67ec3c0d18a0ce030716fdf8faa74f97ffa959e3e60f16e25b666c26b7b426b441b0ec85557407f4344d994cf8e0bc30bf602c618" next_state_root="11bdf9d0428d1b538101a2d22dc0c40ad51cb19d458a3bca861e364f9cb6abcd5ebe0580297c4bea57fb3f5395f5802e9d432798bd34ddfa7615093227bea0e7" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:42:58.110714Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 29, latest_finalized_slot_number: 28, sync_status: Synced { synced_da_height: 28 }, .. } -2026-04-20T10:42:58.110812Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=18 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 29, latest_finalized_slot_number: 28, sync_status: Synced { synced_da_height: 28 }, .. } -2026-04-20T10:42:58.110871Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=18 -2026-04-20T10:42:58.111075Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:42:58.111136Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=14 -2026-04-20T10:42:58.111236Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=24 -2026-04-20T10:42:58.111419Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:42:58.111791Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=24 sequence_number=39 -2026-04-20T10:42:58.111823Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=39 blob_id=2147876474797763733113693497610222885 visible_slot_number_after_increase=24 visible_slots_to_advance=2 -2026-04-20T10:42:58.111839Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:42:58.113839Z DEBUG manage_blob_submission_inside_task{blob_id=2147876474797763733113693497610222885 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x4192142d84d8321f7f764a22764da043bfa215b763cc03705003bb54e1417f96 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=30 include_at=30 bytes=13 time=693.955µs -2026-04-20T10:42:58.124112Z DEBUG compute_state_update{scope="sequencer" rollup_height=19 slot_number=24}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:42:58.124135Z DEBUG sov_stf_runner::runner: Block execution complete time=5.99674598s -2026-04-20T10:42:58.124173Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:42:58.124196Z DEBUG compute_state_update{scope="sequencer" rollup_height=19 slot_number=24}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=11bdf9d0428d1b538101a2d22dc0c40ad51cb19d458a3bca861e364f9cb6abcd5ebe0580297c4bea57fb3f5395f5802e9d432798bd34ddfa7615093227bea0e7 next_version=30 sesssion_starting_time=11.836023ms -2026-04-20T10:42:58.124991Z DEBUG compute_state_update{scope="sequencer" rollup_height=19 slot_number=24}: sov_state::nomt::prover_storage: computed next state root state_root=211e3a95ebe2fdb4faf559c57e8b3767fcaf1a7e81dd80d3f5ed2767f10e93f13549e5ba403570a10021e470aa63002575ec55371d58d3eaad2afdec38cd40af next_version=30 time=12.648808ms accesses_build_time=15.8µs finishing_session_time=763.915µs -2026-04-20T10:43:04.107594Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=30 prev_hash=0xc0c09b2477953b81806805ac62c4ce19c2b2b84bf52107e119060532b2660393 hash=0x2f469ba41ee4d05a2e4c38808a3b18efebad6858bd2876a63efdd9896c9ecb14 producing_time=1.48626ms -2026-04-20T10:43:04.115555Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=30 current_state_root="11bdf9d0428d1b538101a2d22dc0c40ad51cb19d458a3bca861e364f9cb6abcd5ebe0580297c4bea57fb3f5395f5802e9d432798bd34ddfa7615093227bea0e7" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x4192142d84d8321f7f764a22764da043bfa215b763cc03705003bb54e1417f96"] proof_blobs=[] -2026-04-20T10:43:04.115836Z DEBUG StfBlueprint::apply_slot{context=Node da_height=30}: sov_chain_state: Setting next visible slot number next_visible_slot_number=24 -2026-04-20T10:43:04.116082Z DEBUG StfBlueprint::apply_slot{context=Node da_height=30}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x4192142d84d8321f7f764a22764da043bfa215b763cc03705003bb54e1417f96}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:43:04.116261Z DEBUG StfBlueprint::apply_slot{context=Node da_height=30}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=11bdf9d0428d1b538101a2d22dc0c40ad51cb19d458a3bca861e364f9cb6abcd5ebe0580297c4bea57fb3f5395f5802e9d432798bd34ddfa7615093227bea0e7 next_version=30 sesssion_starting_time=49.19µs -2026-04-20T10:43:04.117208Z DEBUG StfBlueprint::apply_slot{context=Node da_height=30}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=211e3a95ebe2fdb4faf559c57e8b3767fcaf1a7e81dd80d3f5ed2767f10e93f103d9c57070f0a6a1c45b4b4a0b6279b69fbeee63028da243ed035bbaec55ca99 next_version=30 time=1.032494ms accesses_build_time=35.97µs finishing_session_time=922.194µs -2026-04-20T10:43:04.117384Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="1a9414bd2b2d16c46fc8cb7747322e05a75eff040a334994eb28bf8a2ee314cb" -2026-04-20T10:43:04.117404Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="cb02e82ebcb05949de9e1010dcf37856f1b02c310a241357fb9213d133f19413" -2026-04-20T10:43:04.117413Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="531f431f48903e92ca0e7b5e9ca972c52d74bdc3a5ada0211a2eb0d03cfd3eea" -2026-04-20T10:43:04.117439Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="11bdf9d0428d1b538101a2d22dc0c40ad51cb19d458a3bca861e364f9cb6abcd10824af854b76ced7be43f6574490c350fc778f3cd74cebc170a69f4eae646e4" next_state_root="211e3a95ebe2fdb4faf559c57e8b3767fcaf1a7e81dd80d3f5ed2767f10e93f103d9c57070f0a6a1c45b4b4a0b6279b69fbeee63028da243ed035bbaec55ca99" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:43:04.118062Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 30, latest_finalized_slot_number: 29, sync_status: Synced { synced_da_height: 29 }, .. } -2026-04-20T10:43:04.118143Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=19 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 30, latest_finalized_slot_number: 29, sync_status: Synced { synced_da_height: 29 }, .. } -2026-04-20T10:43:04.118207Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=19 -2026-04-20T10:43:04.118478Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:43:04.118559Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=15 -2026-04-20T10:43:04.118661Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=25 -2026-04-20T10:43:04.118785Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:43:04.118930Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=25 sequence_number=40 -2026-04-20T10:43:04.118961Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=40 blob_id=2147876482059803267096725926186856159 visible_slot_number_after_increase=25 visible_slots_to_advance=1 -2026-04-20T10:43:04.118978Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:43:04.121075Z DEBUG manage_blob_submission_inside_task{blob_id=2147876482059803267096725926186856159 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x52054b54514fe0cc7f733f9327ea59b8e2783c156cf1f58ad1e669d6e87cb59e sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=31 include_at=31 bytes=13 time=787.185µs -2026-04-20T10:43:04.128125Z DEBUG compute_state_update{scope="sequencer" rollup_height=20 slot_number=25}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:43:04.128163Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003991893s -2026-04-20T10:43:04.128183Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:43:04.128214Z DEBUG compute_state_update{scope="sequencer" rollup_height=20 slot_number=25}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=211e3a95ebe2fdb4faf559c57e8b3767fcaf1a7e81dd80d3f5ed2767f10e93f103d9c57070f0a6a1c45b4b4a0b6279b69fbeee63028da243ed035bbaec55ca99 next_version=31 sesssion_starting_time=8.848713ms -2026-04-20T10:43:04.128358Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:43:04.128451Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:43:04.128862Z DEBUG compute_state_update{scope="sequencer" rollup_height=20 slot_number=25}: sov_state::nomt::prover_storage: computed next state root state_root=5aea237cdea31e7a4e6fb77a0018bb9e6eafda3db2ee7742c0550d1bbfba9b826474654338d1c11cd0b343fc491ab9c27220522074d9eb2523522606b89fdc69 next_version=31 time=9.512288ms accesses_build_time=15.58µs finishing_session_time=621.365µs -2026-04-20T10:43:04.691386Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AymFV4w0R7qPYH9neITCQg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:43:04.703677Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:43:04.715578Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1720486 cycles -2026-04-20T10:43:04.718214Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [116, 114, 176, 44, 66, 38, 112, 64, 205, 175, 118, 47, 226, 170, 71, 159, 89, 37, 88, 219, 133, 129, 197, 168, 216, 42, 167, 127, 217, 162, 149, 220, 6, 226, 110, 113, 51, 34, 54, 26, 209, 233, 81, 14, 253, 117, 71, 233, 211, 14, 253, 229, 144, 214, 241, 88, 100, 88, 185, 146, 121, 103, 123, 83, 36, 144, 135, 69, 238, 201, 9, 222, 228, 43, 13, 146, 48, 114, 41, 184, 141, 161, 222, 62, 82, 140, 128, 66, 46, 85, 109, 136, 25, 177, 207, 91, 127, 187, 75, 49, 175, 181, 14, 141, 134, 60, 16, 193, 168, 104, 34, 36, 44, 45, 15, 54, 126, 99, 60, 225, 82, 142, 55, 30, 126, 234, 174, 151, 77, 205, 39, 92, 12, 247, 188, 234, 142, 157, 161, 195, 159, 55, 81, 106, 38, 232, 30, 26, 183, 23, 102, 177, 198, 243, 65, 108, 207, 190, 166, 132, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:43:04.805355Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:43:04.805395Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:43:04.835721Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:43:04.871772Z DEBUG sp1_core_executor_runner::native: CHILD sp1_piZlgkTDQtOEfFUO4kz6NA==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:43:04.874592Z DEBUG sp1_core_executor_runner::native: CHILD sp1_piZlgkTDQtOEfFUO4kz6NA==: stderr: -2026-04-20T10:43:04.874616Z DEBUG sp1_core_executor_runner::native: CHILD sp1_piZlgkTDQtOEfFUO4kz6NA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:43:04.874629Z DEBUG sp1_core_executor_runner::native: CHILD sp1_piZlgkTDQtOEfFUO4kz6NA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:43:04.874636Z DEBUG sp1_core_executor_runner::native: CHILD sp1_piZlgkTDQtOEfFUO4kz6NA==: stderr: stack backtrace: -2026-04-20T10:43:04.874642Z DEBUG sp1_core_executor_runner::native: CHILD sp1_piZlgkTDQtOEfFUO4kz6NA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:43:04.874649Z DEBUG sp1_core_executor_runner::native: CHILD sp1_piZlgkTDQtOEfFUO4kz6NA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:43:04.874692Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:43:04.875508Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:43:04.875801Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:43:04.940612Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:43:04.940655Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:43:04.940831Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:43:04.940995Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:43:04.941059Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:43:04.941532Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=41 blob_id=2147876483053519336299495182385029060 -2026-04-20T10:43:05.498185Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rKFlBoS2SEKABKW5U3Dk5Q==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:43:05.503824Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:43:05.513935Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 888693 cycles -2026-04-20T10:43:05.516537Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [116, 191, 114, 155, 211, 146, 44, 111, 4, 172, 23, 101, 218, 231, 205, 240, 227, 169, 76, 247, 127, 135, 83, 186, 230, 15, 38, 231, 55, 42, 17, 194, 124, 192, 200, 157, 234, 241, 79, 238, 96, 20, 193, 83, 95, 49, 15, 197, 3, 40, 59, 202, 27, 220, 231, 29, 212, 97, 135, 122, 102, 186, 27, 4, 116, 191, 114, 155, 211, 146, 44, 111, 4, 172, 23, 101, 218, 231, 205, 240, 227, 169, 76, 247, 127, 135, 83, 186, 230, 15, 38, 231, 55, 42, 17, 194, 15, 235, 172, 162, 40, 108, 205, 63, 13, 52, 231, 44, 185, 62, 112, 179, 38, 13, 224, 186, 219, 135, 25, 17, 244, 248, 47, 63, 6, 176, 125, 196, 48, 168, 163, 149, 200, 80, 126, 146, 216, 237, 156, 23, 83, 173, 235, 21, 8, 149, 238, 106, 118, 37, 241, 229, 78, 65, 169, 246, 127, 36, 66, 221, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:43:05.567362Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:43:05.567405Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:43:05.648158Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:43:05.682105Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FktuximESACQBOt0IqK6fw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:43:05.684944Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FktuximESACQBOt0IqK6fw==: stderr: -2026-04-20T10:43:05.684956Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FktuximESACQBOt0IqK6fw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:43:05.684964Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FktuximESACQBOt0IqK6fw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:43:05.684972Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FktuximESACQBOt0IqK6fw==: stderr: stack backtrace: -2026-04-20T10:43:05.684978Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FktuximESACQBOt0IqK6fw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:43:05.684983Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FktuximESACQBOt0IqK6fw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:43:05.685150Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:43:05.685917Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:43:05.686206Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:43:05.753029Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:43:05.753085Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:43:05.753306Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:43:05.753915Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=42 blob_id=2147876484036371654170482082695239441 -2026-04-20T10:43:10.110044Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=31 prev_hash=0x2f469ba41ee4d05a2e4c38808a3b18efebad6858bd2876a63efdd9896c9ecb14 hash=0x397e4972821501d4d5ead69b4b2649f1ecee4a45fea167e753bf1d246032d7da producing_time=1.469631ms -2026-04-20T10:43:10.119891Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=31 current_state_root="211e3a95ebe2fdb4faf559c57e8b3767fcaf1a7e81dd80d3f5ed2767f10e93f103d9c57070f0a6a1c45b4b4a0b6279b69fbeee63028da243ed035bbaec55ca99" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x52054b54514fe0cc7f733f9327ea59b8e2783c156cf1f58ad1e669d6e87cb59e"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc16cd4ec1e28114e96ab11bdda62c891e59dc69d2507014990ed605f83c07c48, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1758244aa9cf19030ff708017e4985df84db61052120c8398dd21b65db42b4f2, len=625"] -2026-04-20T10:43:10.120119Z DEBUG StfBlueprint::apply_slot{context=Node da_height=31}: sov_chain_state: Setting next visible slot number next_visible_slot_number=25 -2026-04-20T10:43:10.120253Z DEBUG StfBlueprint::apply_slot{context=Node da_height=31}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x52054b54514fe0cc7f733f9327ea59b8e2783c156cf1f58ad1e669d6e87cb59e}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:43:10.120442Z DEBUG StfBlueprint::apply_slot{context=Node da_height=31}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=211e3a95ebe2fdb4faf559c57e8b3767fcaf1a7e81dd80d3f5ed2767f10e93f103d9c57070f0a6a1c45b4b4a0b6279b69fbeee63028da243ed035bbaec55ca99 next_version=31 sesssion_starting_time=44.689µs -2026-04-20T10:43:10.121385Z DEBUG StfBlueprint::apply_slot{context=Node da_height=31}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=5aea237cdea31e7a4e6fb77a0018bb9e6eafda3db2ee7742c0550d1bbfba9b823d7cbcc6dd138a27dd5c4f02a3f1aea38cab07eac4e0b6706e2f89d4cd75bba6 next_version=31 time=1.019964ms accesses_build_time=31.41µs finishing_session_time=914.055µs -2026-04-20T10:43:10.121584Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="11bdf9d0428d1b538101a2d22dc0c40ad51cb19d458a3bca861e364f9cb6abcd5ebe0580297c4bea57fb3f5395f5802e9d432798bd34ddfa7615093227bea0e7" next_state_root="5aea237cdea31e7a4e6fb77a0018bb9e6eafda3db2ee7742c0550d1bbfba9b823d7cbcc6dd138a27dd5c4f02a3f1aea38cab07eac4e0b6706e2f89d4cd75bba6" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:43:10.122217Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 31, latest_finalized_slot_number: 30, sync_status: Synced { synced_da_height: 30 }, .. } -2026-04-20T10:43:10.122304Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=20 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 31, latest_finalized_slot_number: 30, sync_status: Synced { synced_da_height: 30 }, .. } -2026-04-20T10:43:10.122455Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=20 -2026-04-20T10:43:10.136800Z DEBUG sov_stf_runner::runner: Block execution complete time=6.008617603s -2026-04-20T10:43:10.136845Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:43:10.137071Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:43:10.137149Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:43:10.698114Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rPAtGr-FQn-1sdjJfA7UOg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:43:10.713698Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:43:10.724419Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2275110 cycles -2026-04-20T10:43:10.727059Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [116, 191, 114, 155, 211, 146, 44, 111, 4, 172, 23, 101, 218, 231, 205, 240, 227, 169, 76, 247, 127, 135, 83, 186, 230, 15, 38, 231, 55, 42, 17, 194, 44, 148, 50, 137, 80, 198, 23, 156, 173, 213, 20, 66, 71, 212, 226, 45, 169, 120, 19, 53, 211, 126, 174, 64, 206, 75, 103, 183, 113, 74, 109, 247, 75, 236, 8, 22, 5, 145, 76, 242, 200, 96, 120, 39, 179, 124, 195, 19, 112, 89, 186, 233, 228, 154, 246, 86, 8, 194, 47, 77, 82, 186, 81, 83, 64, 39, 112, 144, 209, 172, 166, 192, 11, 155, 135, 81, 3, 126, 228, 189, 108, 234, 55, 149, 18, 62, 32, 40, 18, 16, 247, 216, 65, 213, 154, 140, 237, 56, 84, 227, 93, 154, 174, 85, 91, 9, 82, 89, 216, 151, 85, 225, 39, 124, 178, 208, 254, 158, 15, 19, 226, 34, 112, 186, 255, 64, 191, 95, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:43:10.830163Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:43:10.830197Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:43:10.844715Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:43:10.878445Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vTmLgmSeTAG9WwP5bb34cw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:43:10.881260Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vTmLgmSeTAG9WwP5bb34cw==: stderr: -2026-04-20T10:43:10.881286Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vTmLgmSeTAG9WwP5bb34cw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:43:10.881296Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vTmLgmSeTAG9WwP5bb34cw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:43:10.881303Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vTmLgmSeTAG9WwP5bb34cw==: stderr: stack backtrace: -2026-04-20T10:43:10.881309Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vTmLgmSeTAG9WwP5bb34cw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:43:10.881327Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vTmLgmSeTAG9WwP5bb34cw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:43:10.881424Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:43:10.882242Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:43:10.882537Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:43:10.948463Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:43:10.948503Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:43:10.948665Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:43:10.949088Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=43 blob_id=2147876490316764570040456629287843391 -2026-04-20T10:43:16.112298Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=32 prev_hash=0x397e4972821501d4d5ead69b4b2649f1ecee4a45fea167e753bf1d246032d7da hash=0x86f30a3273d8e1f2979e474515cc4dac18a6c0e32b684bf5479018cb09d21b60 producing_time=1.53392ms -2026-04-20T10:43:16.119077Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=32 current_state_root="5aea237cdea31e7a4e6fb77a0018bb9e6eafda3db2ee7742c0550d1bbfba9b823d7cbcc6dd138a27dd5c4f02a3f1aea38cab07eac4e0b6706e2f89d4cd75bba6" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x83d22662bb6958ca7a51045b1b4975fadd8193732534dc3288dba2987cbabd35, len=625"] -2026-04-20T10:43:16.119454Z DEBUG StfBlueprint::apply_slot{context=Node da_height=32}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5aea237cdea31e7a4e6fb77a0018bb9e6eafda3db2ee7742c0550d1bbfba9b823d7cbcc6dd138a27dd5c4f02a3f1aea38cab07eac4e0b6706e2f89d4cd75bba6 next_version=32 sesssion_starting_time=47.76µs -2026-04-20T10:43:16.120252Z DEBUG StfBlueprint::apply_slot{context=Node da_height=32}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=5aea237cdea31e7a4e6fb77a0018bb9e6eafda3db2ee7742c0550d1bbfba9b8203af0ab738c2ea896b82e83dae8106bc0457c59b2927b358d691145108187966 next_version=32 time=864.735µs accesses_build_time=17.33µs finishing_session_time=761.885µs -2026-04-20T10:43:16.120349Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="211e3a95ebe2fdb4faf559c57e8b3767fcaf1a7e81dd80d3f5ed2767f10e93f103d9c57070f0a6a1c45b4b4a0b6279b69fbeee63028da243ed035bbaec55ca99" next_state_root="5aea237cdea31e7a4e6fb77a0018bb9e6eafda3db2ee7742c0550d1bbfba9b8203af0ab738c2ea896b82e83dae8106bc0457c59b2927b358d691145108187966" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:43:16.120910Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 32, latest_finalized_slot_number: 31, sync_status: Synced { synced_da_height: 31 }, .. } -2026-04-20T10:43:16.120987Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=20 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 32, latest_finalized_slot_number: 31, sync_status: Synced { synced_da_height: 31 }, .. } -2026-04-20T10:43:16.121062Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=20 -2026-04-20T10:43:16.121272Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:43:16.121344Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=16 -2026-04-20T10:43:16.121453Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=27 -2026-04-20T10:43:16.121617Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:43:16.121982Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=27 sequence_number=44 -2026-04-20T10:43:16.122014Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=44 blob_id=2147876496570552294787897052583416849 visible_slot_number_after_increase=27 visible_slots_to_advance=2 -2026-04-20T10:43:16.122032Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:43:16.124009Z DEBUG manage_blob_submission_inside_task{blob_id=2147876496570552294787897052583416849 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xfedbbfc3f04a97a07ec16fe2556c29a39fa4e0b25fb813a0e060f039e6e36d9a sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=33 include_at=33 bytes=13 time=823.314µs -2026-04-20T10:43:16.132516Z DEBUG compute_state_update{scope="sequencer" rollup_height=21 slot_number=27}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:43:16.132561Z DEBUG sov_stf_runner::runner: Block execution complete time=5.995718426s -2026-04-20T10:43:16.132585Z DEBUG compute_state_update{scope="sequencer" rollup_height=21 slot_number=27}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5aea237cdea31e7a4e6fb77a0018bb9e6eafda3db2ee7742c0550d1bbfba9b8203af0ab738c2ea896b82e83dae8106bc0457c59b2927b358d691145108187966 next_version=33 sesssion_starting_time=10.061935ms -2026-04-20T10:43:16.132591Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:43:16.133337Z DEBUG compute_state_update{scope="sequencer" rollup_height=21 slot_number=27}: sov_state::nomt::prover_storage: computed next state root state_root=5e3c4fc3e690023858fbefec6fc437ef3b9616c0f73c6be06dcceabbb7b0543d1c207fba9f17d2f605beb3f9f2e5c0cdae737e2f1b53b767598b640ff95205a7 next_version=33 time=10.82858ms accesses_build_time=14.21µs finishing_session_time=728.945µs -2026-04-20T10:43:22.114707Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=33 prev_hash=0x86f30a3273d8e1f2979e474515cc4dac18a6c0e32b684bf5479018cb09d21b60 hash=0x594cbbcc579e167ee032a887ac63f977d7fc89e2baa24104d60d32d7854604f1 producing_time=1.483001ms -2026-04-20T10:43:22.124487Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=33 current_state_root="5aea237cdea31e7a4e6fb77a0018bb9e6eafda3db2ee7742c0550d1bbfba9b8203af0ab738c2ea896b82e83dae8106bc0457c59b2927b358d691145108187966" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xfedbbfc3f04a97a07ec16fe2556c29a39fa4e0b25fb813a0e060f039e6e36d9a"] proof_blobs=[] -2026-04-20T10:43:22.124655Z DEBUG StfBlueprint::apply_slot{context=Node da_height=33}: sov_chain_state: Setting next visible slot number next_visible_slot_number=27 -2026-04-20T10:43:22.124781Z DEBUG StfBlueprint::apply_slot{context=Node da_height=33}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xfedbbfc3f04a97a07ec16fe2556c29a39fa4e0b25fb813a0e060f039e6e36d9a}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:43:22.124878Z DEBUG StfBlueprint::apply_slot{context=Node da_height=33}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5aea237cdea31e7a4e6fb77a0018bb9e6eafda3db2ee7742c0550d1bbfba9b8203af0ab738c2ea896b82e83dae8106bc0457c59b2927b358d691145108187966 next_version=33 sesssion_starting_time=30.39µs -2026-04-20T10:43:22.125709Z DEBUG StfBlueprint::apply_slot{context=Node da_height=33}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=5e3c4fc3e690023858fbefec6fc437ef3b9616c0f73c6be06dcceabbb7b0543d311e1eb7f4c28060f602f48f62d9445c6cde9ea1cac142c17a935f537b0a2ff1 next_version=33 time=879.505µs accesses_build_time=17.85µs finishing_session_time=814.975µs -2026-04-20T10:43:22.125790Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="c16cd4ec1e28114e96ab11bdda62c891e59dc69d2507014990ed605f83c07c48" -2026-04-20T10:43:22.125798Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="1758244aa9cf19030ff708017e4985df84db61052120c8398dd21b65db42b4f2" -2026-04-20T10:43:22.125802Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="83d22662bb6958ca7a51045b1b4975fadd8193732534dc3288dba2987cbabd35" -2026-04-20T10:43:22.125807Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="5aea237cdea31e7a4e6fb77a0018bb9e6eafda3db2ee7742c0550d1bbfba9b823d7cbcc6dd138a27dd5c4f02a3f1aea38cab07eac4e0b6706e2f89d4cd75bba6" next_state_root="5e3c4fc3e690023858fbefec6fc437ef3b9616c0f73c6be06dcceabbb7b0543d311e1eb7f4c28060f602f48f62d9445c6cde9ea1cac142c17a935f537b0a2ff1" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:43:22.126275Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 33, latest_finalized_slot_number: 32, sync_status: Synced { synced_da_height: 32 }, .. } -2026-04-20T10:43:22.126382Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=21 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 33, latest_finalized_slot_number: 32, sync_status: Synced { synced_da_height: 32 }, .. } -2026-04-20T10:43:22.126542Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=21 -2026-04-20T10:43:22.126862Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:43:22.126941Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=17 -2026-04-20T10:43:22.127065Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=28 -2026-04-20T10:43:22.127225Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:43:22.127426Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=28 sequence_number=45 -2026-04-20T10:43:22.127445Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=45 blob_id=2147876503831320666554945588033561898 visible_slot_number_after_increase=28 visible_slots_to_advance=1 -2026-04-20T10:43:22.127496Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:43:22.129346Z DEBUG manage_blob_submission_inside_task{blob_id=2147876503831320666554945588033561898 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x8527a02f24a4d1d09ae420591ed0a58304b91e82d37ff3285898308a9c461061 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=34 include_at=34 bytes=13 time=796.525µs -2026-04-20T10:43:22.135691Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003102939s -2026-04-20T10:43:22.135708Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:43:22.135705Z DEBUG compute_state_update{scope="sequencer" rollup_height=22 slot_number=28}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:43:22.135771Z DEBUG compute_state_update{scope="sequencer" rollup_height=22 slot_number=28}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5e3c4fc3e690023858fbefec6fc437ef3b9616c0f73c6be06dcceabbb7b0543d311e1eb7f4c28060f602f48f62d9445c6cde9ea1cac142c17a935f537b0a2ff1 next_version=34 sesssion_starting_time=7.80049ms -2026-04-20T10:43:22.135906Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:43:22.135962Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:43:22.136540Z DEBUG compute_state_update{scope="sequencer" rollup_height=22 slot_number=28}: sov_state::nomt::prover_storage: computed next state root state_root=31f0dd69e52bf576a6bd5eff2103b8be93c790ed1a3838b4c2937a38cc79afce5704e84e3e095748e4cc0de4ab5d420dccc1034e4c9991c29ec0617d0fb8c6b4 next_version=34 time=8.587515ms accesses_build_time=16.9µs finishing_session_time=744.745µs -2026-04-20T10:43:22.706549Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CeGekOs7RVW7yr4TtN2XlQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:43:22.718633Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:43:22.730022Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1727674 cycles -2026-04-20T10:43:22.732737Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [74, 226, 106, 5, 123, 144, 237, 51, 9, 50, 190, 59, 123, 120, 251, 224, 222, 186, 195, 251, 158, 224, 125, 11, 3, 40, 11, 151, 53, 35, 144, 91, 31, 176, 78, 26, 218, 193, 67, 164, 2, 62, 69, 205, 14, 177, 127, 197, 175, 110, 132, 116, 236, 9, 23, 219, 116, 96, 126, 248, 203, 247, 156, 254, 120, 223, 173, 54, 182, 226, 208, 68, 21, 225, 37, 122, 182, 78, 176, 130, 181, 93, 16, 159, 97, 155, 174, 20, 57, 210, 83, 147, 81, 130, 154, 241, 76, 241, 62, 220, 135, 171, 161, 239, 5, 110, 119, 249, 26, 118, 172, 181, 139, 176, 98, 62, 111, 202, 37, 183, 167, 250, 35, 18, 141, 206, 195, 84, 75, 160, 185, 186, 114, 251, 207, 107, 201, 181, 106, 164, 0, 74, 106, 191, 174, 248, 150, 160, 135, 223, 147, 10, 102, 186, 100, 6, 228, 162, 208, 236, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:43:22.819404Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:43:22.819458Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:43:22.843159Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:43:22.878488Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Szq0vbh8RkKtu34gJxZ0ow==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:43:22.881325Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Szq0vbh8RkKtu34gJxZ0ow==: stderr: -2026-04-20T10:43:22.881348Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Szq0vbh8RkKtu34gJxZ0ow==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:43:22.881358Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Szq0vbh8RkKtu34gJxZ0ow==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:43:22.881365Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Szq0vbh8RkKtu34gJxZ0ow==: stderr: stack backtrace: -2026-04-20T10:43:22.881371Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Szq0vbh8RkKtu34gJxZ0ow==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:43:22.881378Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Szq0vbh8RkKtu34gJxZ0ow==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:43:22.881436Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:43:22.882266Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:43:22.882592Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:43:22.950043Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:43:22.950089Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:43:22.950274Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:43:22.950451Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:43:22.950513Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:43:22.950986Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=46 blob_id=2147876504826259771767353466607269456 -2026-04-20T10:43:23.505263Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ZDSWsvg0TVWE4ozhsXiL4Q==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:43:23.511193Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:43:23.521060Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 926057 cycles -2026-04-20T10:43:23.523620Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [36, 99, 60, 35, 39, 66, 99, 132, 135, 102, 74, 34, 228, 71, 155, 83, 210, 249, 57, 156, 162, 101, 35, 55, 91, 66, 148, 87, 33, 37, 134, 65, 88, 69, 138, 43, 247, 232, 101, 195, 152, 97, 220, 103, 141, 159, 37, 42, 198, 16, 100, 68, 33, 47, 36, 54, 121, 168, 185, 3, 116, 54, 165, 24, 36, 99, 60, 35, 39, 66, 99, 132, 135, 102, 74, 34, 228, 71, 155, 83, 210, 249, 57, 156, 162, 101, 35, 55, 91, 66, 148, 87, 33, 37, 134, 65, 74, 136, 173, 161, 217, 82, 223, 249, 39, 234, 70, 25, 3, 80, 61, 237, 60, 167, 235, 84, 185, 204, 99, 199, 14, 250, 123, 101, 84, 9, 227, 213, 243, 43, 139, 100, 40, 117, 178, 122, 0, 104, 39, 188, 155, 138, 171, 217, 99, 167, 220, 183, 181, 29, 172, 95, 62, 223, 19, 48, 193, 211, 206, 249, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:43:23.575750Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:43:23.575791Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:43:23.657824Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:43:23.693349Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9Zh1ZJVHRNGO53KLtSvQpA==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:43:23.696148Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9Zh1ZJVHRNGO53KLtSvQpA==: stderr: -2026-04-20T10:43:23.696163Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9Zh1ZJVHRNGO53KLtSvQpA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:43:23.696172Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9Zh1ZJVHRNGO53KLtSvQpA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:43:23.696178Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9Zh1ZJVHRNGO53KLtSvQpA==: stderr: stack backtrace: -2026-04-20T10:43:23.696186Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9Zh1ZJVHRNGO53KLtSvQpA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:43:23.696192Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9Zh1ZJVHRNGO53KLtSvQpA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:43:23.696338Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:43:23.697046Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:43:23.697361Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:43:23.763690Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:43:23.763732Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:43:23.763924Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:43:23.764508Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=47 blob_id=2147876505809159903913714669146711214 -2026-04-20T10:43:28.117138Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=34 prev_hash=0x594cbbcc579e167ee032a887ac63f977d7fc89e2baa24104d60d32d7854604f1 hash=0x93054f94058a35e2f70df49410b9214de09688cc95ca87a3158e14f98a29a6c4 producing_time=1.50401ms -2026-04-20T10:43:28.128068Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=34 current_state_root="5e3c4fc3e690023858fbefec6fc437ef3b9616c0f73c6be06dcceabbb7b0543d311e1eb7f4c28060f602f48f62d9445c6cde9ea1cac142c17a935f537b0a2ff1" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x8527a02f24a4d1d09ae420591ed0a58304b91e82d37ff3285898308a9c461061"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd3908bc16b143c203ef095690d428c813da0f2a92937d0a1f36d09dcb5906566, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1233a415e12ae5c25d0d3b2a5f60365d7dad4cdff6697d2dfedd6de6e465de2d, len=625"] -2026-04-20T10:43:28.128303Z DEBUG StfBlueprint::apply_slot{context=Node da_height=34}: sov_chain_state: Setting next visible slot number next_visible_slot_number=28 -2026-04-20T10:43:28.128453Z DEBUG StfBlueprint::apply_slot{context=Node da_height=34}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x8527a02f24a4d1d09ae420591ed0a58304b91e82d37ff3285898308a9c461061}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:43:28.128627Z DEBUG StfBlueprint::apply_slot{context=Node da_height=34}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5e3c4fc3e690023858fbefec6fc437ef3b9616c0f73c6be06dcceabbb7b0543d311e1eb7f4c28060f602f48f62d9445c6cde9ea1cac142c17a935f537b0a2ff1 next_version=34 sesssion_starting_time=46.96µs -2026-04-20T10:43:28.129550Z DEBUG StfBlueprint::apply_slot{context=Node da_height=34}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=31f0dd69e52bf576a6bd5eff2103b8be93c790ed1a3838b4c2937a38cc79afce48b15ddf03f22c44d50a849aed0672806027a07e0712c67172a6318e3b7bb32c next_version=34 time=1.001713ms accesses_build_time=30.999µs finishing_session_time=897.034µs -2026-04-20T10:43:28.129738Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="5aea237cdea31e7a4e6fb77a0018bb9e6eafda3db2ee7742c0550d1bbfba9b8203af0ab738c2ea896b82e83dae8106bc0457c59b2927b358d691145108187966" next_state_root="31f0dd69e52bf576a6bd5eff2103b8be93c790ed1a3838b4c2937a38cc79afce48b15ddf03f22c44d50a849aed0672806027a07e0712c67172a6318e3b7bb32c" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:43:28.130249Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 34, latest_finalized_slot_number: 33, sync_status: Synced { synced_da_height: 33 }, .. } -2026-04-20T10:43:28.130350Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=22 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 34, latest_finalized_slot_number: 33, sync_status: Synced { synced_da_height: 33 }, .. } -2026-04-20T10:43:28.130421Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=22 -2026-04-20T10:43:28.144448Z DEBUG sov_stf_runner::runner: Block execution complete time=6.008740463s -2026-04-20T10:43:28.144484Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:43:28.144613Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:43:28.144680Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:43:28.704139Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eAQBPQ_ERjaP0LcF3E89ww==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:43:28.720110Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:43:28.730617Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2412690 cycles -2026-04-20T10:43:28.733262Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [36, 99, 60, 35, 39, 66, 99, 132, 135, 102, 74, 34, 228, 71, 155, 83, 210, 249, 57, 156, 162, 101, 35, 55, 91, 66, 148, 87, 33, 37, 134, 65, 50, 118, 233, 26, 9, 39, 226, 74, 209, 40, 26, 241, 34, 241, 145, 95, 206, 122, 184, 146, 241, 178, 73, 108, 110, 171, 144, 169, 103, 185, 239, 28, 36, 12, 45, 217, 179, 62, 61, 16, 159, 161, 15, 72, 243, 43, 221, 3, 15, 161, 124, 144, 209, 104, 14, 129, 115, 132, 178, 89, 75, 112, 67, 40, 116, 80, 223, 97, 233, 225, 217, 75, 224, 194, 20, 8, 69, 176, 252, 84, 19, 152, 148, 190, 158, 175, 138, 118, 13, 69, 65, 45, 97, 165, 165, 71, 190, 5, 178, 169, 96, 143, 182, 56, 67, 117, 1, 79, 191, 191, 19, 103, 0, 103, 162, 227, 13, 18, 236, 171, 220, 194, 126, 1, 16, 137, 241, 158, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:43:28.838660Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:43:28.838709Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:43:28.853135Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:43:28.888050Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Sw_rpvKQS3ix0FgOn6EbTA==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:43:28.890890Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Sw_rpvKQS3ix0FgOn6EbTA==: stderr: -2026-04-20T10:43:28.890914Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Sw_rpvKQS3ix0FgOn6EbTA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:43:28.890924Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Sw_rpvKQS3ix0FgOn6EbTA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:43:28.890931Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Sw_rpvKQS3ix0FgOn6EbTA==: stderr: stack backtrace: -2026-04-20T10:43:28.890937Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Sw_rpvKQS3ix0FgOn6EbTA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:43:28.890943Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Sw_rpvKQS3ix0FgOn6EbTA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:43:28.890985Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:43:28.891824Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:43:28.892115Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:43:28.959630Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:43:28.959675Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:43:28.959836Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:43:28.960624Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=48 blob_id=2147876512090730200221091724262232995 -2026-04-20T10:43:34.119713Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=35 prev_hash=0x93054f94058a35e2f70df49410b9214de09688cc95ca87a3158e14f98a29a6c4 hash=0x9f68171f858de82904f2c580cabda6deb32f0267e86b42c4df1eaa58305ded48 producing_time=1.57157ms -2026-04-20T10:43:34.126490Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=35 current_state_root="31f0dd69e52bf576a6bd5eff2103b8be93c790ed1a3838b4c2937a38cc79afce48b15ddf03f22c44d50a849aed0672806027a07e0712c67172a6318e3b7bb32c" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x35c48f47caeeb52dcecf53f4713b80fb5970a85d20a008dc40ba53436d6bed37, len=625"] -2026-04-20T10:43:34.126841Z DEBUG StfBlueprint::apply_slot{context=Node da_height=35}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=31f0dd69e52bf576a6bd5eff2103b8be93c790ed1a3838b4c2937a38cc79afce48b15ddf03f22c44d50a849aed0672806027a07e0712c67172a6318e3b7bb32c next_version=35 sesssion_starting_time=49.129µs -2026-04-20T10:43:34.127765Z DEBUG StfBlueprint::apply_slot{context=Node da_height=35}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=31f0dd69e52bf576a6bd5eff2103b8be93c790ed1a3838b4c2937a38cc79afce6263d5c73cf521e9a184c855eb566e084dc7e748fdb47ba84ffd95ad8abdee55 next_version=35 time=989.603µs accesses_build_time=16.09µs finishing_session_time=892.184µs -2026-04-20T10:43:34.127850Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="5e3c4fc3e690023858fbefec6fc437ef3b9616c0f73c6be06dcceabbb7b0543d311e1eb7f4c28060f602f48f62d9445c6cde9ea1cac142c17a935f537b0a2ff1" next_state_root="31f0dd69e52bf576a6bd5eff2103b8be93c790ed1a3838b4c2937a38cc79afce6263d5c73cf521e9a184c855eb566e084dc7e748fdb47ba84ffd95ad8abdee55" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:43:34.128450Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 35, latest_finalized_slot_number: 34, sync_status: Synced { synced_da_height: 34 }, .. } -2026-04-20T10:43:34.128545Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=22 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 35, latest_finalized_slot_number: 34, sync_status: Synced { synced_da_height: 34 }, .. } -2026-04-20T10:43:34.128607Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=22 -2026-04-20T10:43:34.128844Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:43:34.128914Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=18 -2026-04-20T10:43:34.129019Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=30 -2026-04-20T10:43:34.129168Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:43:34.129496Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=30 sequence_number=49 -2026-04-20T10:43:34.129543Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=49 blob_id=2147876518340879322015229050008428577 visible_slot_number_after_increase=30 visible_slots_to_advance=2 -2026-04-20T10:43:34.129583Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:43:34.131458Z DEBUG manage_blob_submission_inside_task{blob_id=2147876518340879322015229050008428577 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x4db6e928abd56c47b7e405b103ed8f2db4e2cd6c15bb6d12535436cfb8d9b9f8 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=36 include_at=36 bytes=13 time=757.215µs -2026-04-20T10:43:34.142271Z DEBUG compute_state_update{scope="sequencer" rollup_height=23 slot_number=30}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:43:34.142291Z DEBUG sov_stf_runner::runner: Block execution complete time=5.997809994s -2026-04-20T10:43:34.142325Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:43:34.142361Z DEBUG compute_state_update{scope="sequencer" rollup_height=23 slot_number=30}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=31f0dd69e52bf576a6bd5eff2103b8be93c790ed1a3838b4c2937a38cc79afce6263d5c73cf521e9a184c855eb566e084dc7e748fdb47ba84ffd95ad8abdee55 next_version=36 sesssion_starting_time=12.36247ms -2026-04-20T10:43:34.143053Z DEBUG compute_state_update{scope="sequencer" rollup_height=23 slot_number=30}: sov_state::nomt::prover_storage: computed next state root state_root=34c218d38e55cb1ecdab776da5cbcb68fc072eeaef2d48d3d2e2bb55aa8db8a11ad195915bd4155050223f75c2ed66f3965f2d21fc9299e997b7eb520c5f8913 next_version=36 time=13.075996ms accesses_build_time=20.44µs finishing_session_time=665.336µs -2026-04-20T10:43:40.121953Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=36 prev_hash=0x9f68171f858de82904f2c580cabda6deb32f0267e86b42c4df1eaa58305ded48 hash=0x0b2f94a4b057d0c2624a959c2cb9ac3d27bec805b517b35ad54a748566ee1a91 producing_time=1.346101ms -2026-04-20T10:43:40.123494Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=36 current_state_root="31f0dd69e52bf576a6bd5eff2103b8be93c790ed1a3838b4c2937a38cc79afce6263d5c73cf521e9a184c855eb566e084dc7e748fdb47ba84ffd95ad8abdee55" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x4db6e928abd56c47b7e405b103ed8f2db4e2cd6c15bb6d12535436cfb8d9b9f8"] proof_blobs=[] -2026-04-20T10:43:40.123720Z DEBUG StfBlueprint::apply_slot{context=Node da_height=36}: sov_chain_state: Setting next visible slot number next_visible_slot_number=30 -2026-04-20T10:43:40.123909Z DEBUG StfBlueprint::apply_slot{context=Node da_height=36}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x4db6e928abd56c47b7e405b103ed8f2db4e2cd6c15bb6d12535436cfb8d9b9f8}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:43:40.124046Z DEBUG StfBlueprint::apply_slot{context=Node da_height=36}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=31f0dd69e52bf576a6bd5eff2103b8be93c790ed1a3838b4c2937a38cc79afce6263d5c73cf521e9a184c855eb566e084dc7e748fdb47ba84ffd95ad8abdee55 next_version=36 sesssion_starting_time=37.7µs -2026-04-20T10:43:40.124943Z DEBUG StfBlueprint::apply_slot{context=Node da_height=36}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=34c218d38e55cb1ecdab776da5cbcb68fc072eeaef2d48d3d2e2bb55aa8db8a1693c0c98cc2eda087420519389213eb5032c1e6c2adeb176dd3d9f256b421e4e next_version=36 time=962.553µs accesses_build_time=27.03µs finishing_session_time=877.494µs -2026-04-20T10:43:40.125066Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="d3908bc16b143c203ef095690d428c813da0f2a92937d0a1f36d09dcb5906566" -2026-04-20T10:43:40.125078Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="1233a415e12ae5c25d0d3b2a5f60365d7dad4cdff6697d2dfedd6de6e465de2d" -2026-04-20T10:43:40.125085Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="35c48f47caeeb52dcecf53f4713b80fb5970a85d20a008dc40ba53436d6bed37" -2026-04-20T10:43:40.125094Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="31f0dd69e52bf576a6bd5eff2103b8be93c790ed1a3838b4c2937a38cc79afce48b15ddf03f22c44d50a849aed0672806027a07e0712c67172a6318e3b7bb32c" next_state_root="34c218d38e55cb1ecdab776da5cbcb68fc072eeaef2d48d3d2e2bb55aa8db8a1693c0c98cc2eda087420519389213eb5032c1e6c2adeb176dd3d9f256b421e4e" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:43:40.125627Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 36, latest_finalized_slot_number: 35, sync_status: Synced { synced_da_height: 35 }, .. } -2026-04-20T10:43:40.125722Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=23 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 36, latest_finalized_slot_number: 35, sync_status: Synced { synced_da_height: 35 }, .. } -2026-04-20T10:43:40.125784Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=23 -2026-04-20T10:43:40.126028Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:43:40.126096Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=19 -2026-04-20T10:43:40.126188Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=31 -2026-04-20T10:43:40.126328Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:43:40.126495Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=31 sequence_number=50 -2026-04-20T10:43:40.126523Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=50 blob_id=2147876525590773484433472824039706981 visible_slot_number_after_increase=31 visible_slots_to_advance=1 -2026-04-20T10:43:40.126594Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:43:40.128671Z DEBUG manage_blob_submission_inside_task{blob_id=2147876525590773484433472824039706981 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x484877f3e88e8d8d3be980208fa9b255c4acf8b748e792c1e09939d184b6ff51 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=37 include_at=37 bytes=13 time=831.875µs -2026-04-20T10:43:40.135566Z DEBUG compute_state_update{scope="sequencer" rollup_height=24 slot_number=31}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:43:40.135593Z DEBUG sov_stf_runner::runner: Block execution complete time=5.993280874s -2026-04-20T10:43:40.135640Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:43:40.135669Z DEBUG compute_state_update{scope="sequencer" rollup_height=24 slot_number=31}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=34c218d38e55cb1ecdab776da5cbcb68fc072eeaef2d48d3d2e2bb55aa8db8a1693c0c98cc2eda087420519389213eb5032c1e6c2adeb176dd3d9f256b421e4e next_version=37 sesssion_starting_time=8.647814ms -2026-04-20T10:43:40.135708Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:43:40.135748Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:43:40.136304Z DEBUG compute_state_update{scope="sequencer" rollup_height=24 slot_number=31}: sov_state::nomt::prover_storage: computed next state root state_root=15d475bf8b92239dd3cf46eea0c6fc57be20344bade624aab3e7dce048a5046f20474b9a414838ef9521fa4c2f8b56f5d43e768566e41a12d576f5242781a8d4 next_version=37 time=9.29721ms accesses_build_time=12.9µs finishing_session_time=609.726µs -2026-04-20T10:43:40.681368Z DEBUG sp1_core_executor_runner::native: CHILD sp1_777gj1-rRryFZnLOKzEoyA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:43:40.693499Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:43:40.704581Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1731804 cycles -2026-04-20T10:43:40.707171Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [92, 233, 230, 119, 34, 186, 190, 210, 47, 167, 251, 198, 126, 195, 192, 209, 138, 12, 224, 48, 113, 111, 223, 143, 170, 116, 249, 127, 250, 149, 158, 62, 96, 241, 110, 37, 182, 102, 194, 107, 123, 66, 107, 68, 27, 14, 200, 85, 87, 64, 127, 67, 68, 217, 148, 207, 142, 11, 195, 11, 246, 2, 198, 24, 108, 226, 7, 111, 147, 116, 23, 46, 156, 165, 209, 116, 99, 144, 163, 226, 173, 180, 163, 236, 191, 234, 247, 176, 212, 178, 3, 21, 232, 153, 172, 211, 37, 236, 87, 214, 105, 102, 111, 135, 242, 31, 242, 222, 199, 21, 175, 59, 78, 131, 1, 128, 4, 64, 184, 132, 77, 216, 89, 40, 83, 235, 154, 205, 16, 70, 235, 138, 31, 171, 19, 226, 153, 187, 214, 77, 209, 151, 103, 186, 3, 26, 113, 189, 185, 76, 120, 150, 217, 242, 56, 144, 138, 6, 194, 71, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:43:40.793551Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:43:40.793591Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:43:40.844478Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:43:40.878806Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XhacfhCVQEOD7m-iuhGD7A==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:43:40.881666Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XhacfhCVQEOD7m-iuhGD7A==: stderr: -2026-04-20T10:43:40.881681Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XhacfhCVQEOD7m-iuhGD7A==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:43:40.881690Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XhacfhCVQEOD7m-iuhGD7A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:43:40.881699Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XhacfhCVQEOD7m-iuhGD7A==: stderr: stack backtrace: -2026-04-20T10:43:40.881705Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XhacfhCVQEOD7m-iuhGD7A==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:43:40.881713Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XhacfhCVQEOD7m-iuhGD7A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:43:40.881812Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:43:40.882606Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:43:40.882899Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:43:40.932032Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:43:40.932072Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:43:40.932300Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:43:40.932492Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:43:40.932545Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:43:40.932965Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=51 blob_id=2147876526565219400531020918765460010 -2026-04-20T10:43:41.489698Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PXAn8qYWTYGbn1DtqPcarQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:43:41.495758Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:43:41.505878Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 941546 cycles -2026-04-20T10:43:41.508566Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [17, 189, 249, 208, 66, 141, 27, 83, 129, 1, 162, 210, 45, 192, 196, 10, 213, 28, 177, 157, 69, 138, 59, 202, 134, 30, 54, 79, 156, 182, 171, 205, 16, 130, 74, 248, 84, 183, 108, 237, 123, 228, 63, 101, 116, 73, 12, 53, 15, 199, 120, 243, 205, 116, 206, 188, 23, 10, 105, 244, 234, 230, 70, 228, 17, 189, 249, 208, 66, 141, 27, 83, 129, 1, 162, 210, 45, 192, 196, 10, 213, 28, 177, 157, 69, 138, 59, 202, 134, 30, 54, 79, 156, 182, 171, 205, 58, 212, 32, 95, 131, 165, 173, 122, 100, 39, 84, 212, 231, 139, 193, 37, 52, 152, 221, 106, 161, 11, 58, 189, 21, 165, 80, 103, 221, 145, 61, 253, 192, 192, 155, 36, 119, 149, 59, 129, 128, 104, 5, 172, 98, 196, 206, 25, 194, 178, 184, 75, 245, 33, 7, 225, 25, 6, 5, 50, 178, 102, 3, 147, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:43:41.562233Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:43:41.562275Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:43:41.640098Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:43:41.674782Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wKrnvoxLRCmU9QTVUIvLcw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:43:41.677637Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wKrnvoxLRCmU9QTVUIvLcw==: stderr: -2026-04-20T10:43:41.677662Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wKrnvoxLRCmU9QTVUIvLcw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:43:41.677672Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wKrnvoxLRCmU9QTVUIvLcw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:43:41.677679Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wKrnvoxLRCmU9QTVUIvLcw==: stderr: stack backtrace: -2026-04-20T10:43:41.677685Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wKrnvoxLRCmU9QTVUIvLcw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:43:41.677691Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wKrnvoxLRCmU9QTVUIvLcw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:43:41.677769Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:43:41.678573Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:43:41.678860Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:43:41.750058Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:43:41.750105Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:43:41.750247Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:43:41.750916Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=52 blob_id=2147876527554129578083458858068575886 -2026-04-20T10:43:46.124143Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=37 prev_hash=0x0b2f94a4b057d0c2624a959c2cb9ac3d27bec805b517b35ad54a748566ee1a91 hash=0x795fd24d79c42ae8c16806caf83f03d0735085114c64d6f6adff6de88edc084b producing_time=1.403751ms -2026-04-20T10:43:46.127822Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=37 current_state_root="34c218d38e55cb1ecdab776da5cbcb68fc072eeaef2d48d3d2e2bb55aa8db8a1693c0c98cc2eda087420519389213eb5032c1e6c2adeb176dd3d9f256b421e4e" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x484877f3e88e8d8d3be980208fa9b255c4acf8b748e792c1e09939d184b6ff51"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x4a62e29a7d850c8fb3f7a835b3092863e4abcdb59e010fac6d3e0048aa69dbc1, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9f075297cefce9d0fe549d8cc0241cdd6b76d32b662529a292f9c733dcc82a49, len=625"] -2026-04-20T10:43:46.128060Z DEBUG StfBlueprint::apply_slot{context=Node da_height=37}: sov_chain_state: Setting next visible slot number next_visible_slot_number=31 -2026-04-20T10:43:46.128208Z DEBUG StfBlueprint::apply_slot{context=Node da_height=37}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x484877f3e88e8d8d3be980208fa9b255c4acf8b748e792c1e09939d184b6ff51}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:43:46.128413Z DEBUG StfBlueprint::apply_slot{context=Node da_height=37}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=34c218d38e55cb1ecdab776da5cbcb68fc072eeaef2d48d3d2e2bb55aa8db8a1693c0c98cc2eda087420519389213eb5032c1e6c2adeb176dd3d9f256b421e4e next_version=37 sesssion_starting_time=48.539µs -2026-04-20T10:43:46.129338Z DEBUG StfBlueprint::apply_slot{context=Node da_height=37}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=15d475bf8b92239dd3cf46eea0c6fc57be20344bade624aab3e7dce048a5046f7f9a55617a8a06fbd50e4991f70e8daf0ff975c3092ac266b96e57f14be31dd2 next_version=37 time=1.006433ms accesses_build_time=31.75µs finishing_session_time=895.374µs -2026-04-20T10:43:46.129517Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="31f0dd69e52bf576a6bd5eff2103b8be93c790ed1a3838b4c2937a38cc79afce6263d5c73cf521e9a184c855eb566e084dc7e748fdb47ba84ffd95ad8abdee55" next_state_root="15d475bf8b92239dd3cf46eea0c6fc57be20344bade624aab3e7dce048a5046f7f9a55617a8a06fbd50e4991f70e8daf0ff975c3092ac266b96e57f14be31dd2" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:43:46.130132Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 37, latest_finalized_slot_number: 36, sync_status: Synced { synced_da_height: 36 }, .. } -2026-04-20T10:43:46.130206Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=24 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 37, latest_finalized_slot_number: 36, sync_status: Synced { synced_da_height: 36 }, .. } -2026-04-20T10:43:46.130263Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=24 -2026-04-20T10:43:46.144223Z DEBUG sov_stf_runner::runner: Block execution complete time=6.008584384s -2026-04-20T10:43:46.144250Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:43:46.144421Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:43:46.144473Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:43:46.693197Z DEBUG sp1_core_executor_runner::native: CHILD sp1_DJkjKtCLS9OHv2HKUokw1A==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:43:46.710178Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:43:46.721397Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2512724 cycles -2026-04-20T10:43:46.724055Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [17, 189, 249, 208, 66, 141, 27, 83, 129, 1, 162, 210, 45, 192, 196, 10, 213, 28, 177, 157, 69, 138, 59, 202, 134, 30, 54, 79, 156, 182, 171, 205, 94, 190, 5, 128, 41, 124, 75, 234, 87, 251, 63, 83, 149, 245, 128, 46, 157, 67, 39, 152, 189, 52, 221, 250, 118, 21, 9, 50, 39, 190, 160, 231, 63, 37, 124, 158, 128, 151, 30, 108, 10, 1, 114, 68, 181, 21, 53, 199, 179, 17, 144, 249, 220, 89, 187, 128, 2, 48, 184, 200, 27, 70, 0, 196, 8, 127, 249, 123, 30, 252, 62, 215, 123, 39, 82, 41, 43, 47, 83, 54, 13, 28, 209, 98, 200, 1, 50, 159, 201, 193, 5, 150, 10, 39, 89, 242, 47, 70, 155, 164, 30, 228, 208, 90, 46, 76, 56, 128, 138, 59, 24, 239, 235, 173, 104, 88, 189, 40, 118, 166, 62, 253, 217, 137, 108, 158, 203, 20, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:43:46.832577Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:43:46.832616Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:43:46.851135Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:43:46.885589Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kbV2zTr2Qku0agCN97BHAQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:43:46.888452Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kbV2zTr2Qku0agCN97BHAQ==: stderr: -2026-04-20T10:43:46.888475Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kbV2zTr2Qku0agCN97BHAQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:43:46.888486Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kbV2zTr2Qku0agCN97BHAQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:43:46.888492Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kbV2zTr2Qku0agCN97BHAQ==: stderr: stack backtrace: -2026-04-20T10:43:46.888500Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kbV2zTr2Qku0agCN97BHAQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:43:46.888508Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kbV2zTr2Qku0agCN97BHAQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:43:46.888561Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:43:46.889396Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:43:46.889690Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:43:46.959206Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:43:46.959258Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:43:46.959440Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:43:46.960126Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=53 blob_id=2147876533851375178365894066309628635 -2026-04-20T10:43:52.126456Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=38 prev_hash=0x795fd24d79c42ae8c16806caf83f03d0735085114c64d6f6adff6de88edc084b hash=0x03a866a09e167bde71aa6c9e2dbdee39150eac944178d1172da3eb0c508bece9 producing_time=1.47316ms -2026-04-20T10:43:52.135626Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=38 current_state_root="15d475bf8b92239dd3cf46eea0c6fc57be20344bade624aab3e7dce048a5046f7f9a55617a8a06fbd50e4991f70e8daf0ff975c3092ac266b96e57f14be31dd2" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0565f1073f891009909fe63a52a3caa5636cb027e37515445346aa2475ad2652, len=625"] -2026-04-20T10:43:52.135978Z DEBUG StfBlueprint::apply_slot{context=Node da_height=38}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=15d475bf8b92239dd3cf46eea0c6fc57be20344bade624aab3e7dce048a5046f7f9a55617a8a06fbd50e4991f70e8daf0ff975c3092ac266b96e57f14be31dd2 next_version=38 sesssion_starting_time=50.25µs -2026-04-20T10:43:52.136894Z DEBUG StfBlueprint::apply_slot{context=Node da_height=38}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=15d475bf8b92239dd3cf46eea0c6fc57be20344bade624aab3e7dce048a5046f367008c05712fe9bce7bce3c1e0a173756eb1799824b73171a0f069a44d58a03 next_version=38 time=982.604µs accesses_build_time=14.84µs finishing_session_time=862.364µs -2026-04-20T10:43:52.136965Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="34c218d38e55cb1ecdab776da5cbcb68fc072eeaef2d48d3d2e2bb55aa8db8a1693c0c98cc2eda087420519389213eb5032c1e6c2adeb176dd3d9f256b421e4e" next_state_root="15d475bf8b92239dd3cf46eea0c6fc57be20344bade624aab3e7dce048a5046f367008c05712fe9bce7bce3c1e0a173756eb1799824b73171a0f069a44d58a03" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:43:52.137579Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 38, latest_finalized_slot_number: 38, sync_status: Synced { synced_da_height: 37 }, .. } -2026-04-20T10:43:52.137669Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=24 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 38, latest_finalized_slot_number: 38, sync_status: Synced { synced_da_height: 37 }, .. } -2026-04-20T10:43:52.137736Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=24 -2026-04-20T10:43:52.137985Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=3 -2026-04-20T10:43:52.138051Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=20 -2026-04-20T10:43:52.138176Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=34 -2026-04-20T10:43:52.138344Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:43:52.138670Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=3 visible_slot_number_after_increase=34 sequence_number=54 -2026-04-20T10:43:52.138722Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=54 blob_id=2147876540112425259149265069502619937 visible_slot_number_after_increase=34 visible_slots_to_advance=3 -2026-04-20T10:43:52.138721Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:43:52.140687Z DEBUG manage_blob_submission_inside_task{blob_id=2147876540112425259149265069502619937 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x338da82ccf397bb61e23ab5a71c1dc33d11db6d379393e5153f7c2bb1783e1fc sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=39 include_at=39 bytes=13 time=790.314µs -2026-04-20T10:43:52.154635Z DEBUG sov_stf_runner::runner: Block execution complete time=6.010386583s -2026-04-20T10:43:52.154654Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:43:52.154649Z DEBUG compute_state_update{scope="sequencer" rollup_height=25 slot_number=34}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:43:52.154672Z DEBUG compute_state_update{scope="sequencer" rollup_height=25 slot_number=34}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:43:52.154731Z DEBUG compute_state_update{scope="sequencer" rollup_height=25 slot_number=34}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=15d475bf8b92239dd3cf46eea0c6fc57be20344bade624aab3e7dce048a5046f367008c05712fe9bce7bce3c1e0a173756eb1799824b73171a0f069a44d58a03 next_version=39 sesssion_starting_time=15.46653ms -2026-04-20T10:43:52.155446Z DEBUG compute_state_update{scope="sequencer" rollup_height=25 slot_number=34}: sov_state::nomt::prover_storage: computed next state root state_root=6fb51f0f3300773771310e8f4ec08429822582da72640c8aa88a7db3525b6d8965156242a524b1e706988965661a86ad1be1afa709419a5ac030bb7662f288e7 next_version=39 time=16.199965ms accesses_build_time=18.13µs finishing_session_time=689.886µs -2026-04-20T10:43:58.129162Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=39 prev_hash=0x03a866a09e167bde71aa6c9e2dbdee39150eac944178d1172da3eb0c508bece9 hash=0x4e1f02798536a42eaa286b6a588b5377db473f319ad93bb22395ac62e990bd00 producing_time=1.460211ms -2026-04-20T10:43:58.136355Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=39 current_state_root="15d475bf8b92239dd3cf46eea0c6fc57be20344bade624aab3e7dce048a5046f367008c05712fe9bce7bce3c1e0a173756eb1799824b73171a0f069a44d58a03" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x338da82ccf397bb61e23ab5a71c1dc33d11db6d379393e5153f7c2bb1783e1fc"] proof_blobs=[] -2026-04-20T10:43:58.136651Z DEBUG StfBlueprint::apply_slot{context=Node da_height=39}: sov_chain_state: Setting next visible slot number next_visible_slot_number=34 -2026-04-20T10:43:58.136897Z DEBUG StfBlueprint::apply_slot{context=Node da_height=39}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x338da82ccf397bb61e23ab5a71c1dc33d11db6d379393e5153f7c2bb1783e1fc}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:43:58.137077Z DEBUG StfBlueprint::apply_slot{context=Node da_height=39}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=15d475bf8b92239dd3cf46eea0c6fc57be20344bade624aab3e7dce048a5046f367008c05712fe9bce7bce3c1e0a173756eb1799824b73171a0f069a44d58a03 next_version=39 sesssion_starting_time=45.659µs -2026-04-20T10:43:58.138118Z DEBUG StfBlueprint::apply_slot{context=Node da_height=39}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6fb51f0f3300773771310e8f4ec08429822582da72640c8aa88a7db3525b6d890d6aeb77dfff67c4191c5589ad7defc946956f4b40f31350075987832cd00b6b next_version=39 time=1.125683ms accesses_build_time=37.34µs finishing_session_time=1.017874ms -2026-04-20T10:43:58.138272Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="4a62e29a7d850c8fb3f7a835b3092863e4abcdb59e010fac6d3e0048aa69dbc1" -2026-04-20T10:43:58.138287Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="9f075297cefce9d0fe549d8cc0241cdd6b76d32b662529a292f9c733dcc82a49" -2026-04-20T10:43:58.138297Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="0565f1073f891009909fe63a52a3caa5636cb027e37515445346aa2475ad2652" -2026-04-20T10:43:58.138308Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="15d475bf8b92239dd3cf46eea0c6fc57be20344bade624aab3e7dce048a5046f367008c05712fe9bce7bce3c1e0a173756eb1799824b73171a0f069a44d58a03" next_state_root="6fb51f0f3300773771310e8f4ec08429822582da72640c8aa88a7db3525b6d890d6aeb77dfff67c4191c5589ad7defc946956f4b40f31350075987832cd00b6b" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:43:58.138889Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 39, latest_finalized_slot_number: 39, sync_status: Synced { synced_da_height: 38 }, .. } -2026-04-20T10:43:58.138979Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=25 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 39, latest_finalized_slot_number: 39, sync_status: Synced { synced_da_height: 38 }, .. } -2026-04-20T10:43:58.139050Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=25 -2026-04-20T10:43:58.139290Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:43:58.139374Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=21 -2026-04-20T10:43:58.139536Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=35 -2026-04-20T10:43:58.139714Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:43:58.139874Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=35 sequence_number=55 -2026-04-20T10:43:58.139896Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=55 blob_id=2147876547367146064939804854180139571 visible_slot_number_after_increase=35 visible_slots_to_advance=1 -2026-04-20T10:43:58.139928Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:43:58.141677Z DEBUG manage_blob_submission_inside_task{blob_id=2147876547367146064939804854180139571 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x67ced2fb27d4127c4158d5d32704e029dea05e2095bb24c5fb22e8ba199c6154 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=40 include_at=40 bytes=13 time=748.635µs -2026-04-20T10:43:58.150049Z DEBUG compute_state_update{scope="sequencer" rollup_height=26 slot_number=35}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:43:58.150064Z DEBUG sov_stf_runner::runner: Block execution complete time=5.99541005s -2026-04-20T10:43:58.150139Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:43:58.150174Z DEBUG compute_state_update{scope="sequencer" rollup_height=26 slot_number=35}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6fb51f0f3300773771310e8f4ec08429822582da72640c8aa88a7db3525b6d890d6aeb77dfff67c4191c5589ad7defc946956f4b40f31350075987832cd00b6b next_version=40 sesssion_starting_time=9.712337ms -2026-04-20T10:43:58.150273Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:43:58.150332Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:43:58.150807Z DEBUG compute_state_update{scope="sequencer" rollup_height=26 slot_number=35}: sov_state::nomt::prover_storage: computed next state root state_root=3298c285e64e27cfe84e7326d157edee0cb0f8434375cd81cedac8fcfb6f185145439e9b00f0e806ce1f65da0d2c3338c1b9cdca02c6334d55bebd3033b6869d next_version=40 time=10.365823ms accesses_build_time=18.73µs finishing_session_time=607.306µs -2026-04-20T10:43:58.709942Z DEBUG sp1_core_executor_runner::native: CHILD sp1_p_Lmb7BXQKSM-TpeBnaYXw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:43:58.722541Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:43:58.733899Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1801479 cycles -2026-04-20T10:43:58.736533Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [33, 30, 58, 149, 235, 226, 253, 180, 250, 245, 89, 197, 126, 139, 55, 103, 252, 175, 26, 126, 129, 221, 128, 211, 245, 237, 39, 103, 241, 14, 147, 241, 3, 217, 197, 112, 112, 240, 166, 161, 196, 91, 75, 74, 11, 98, 121, 182, 159, 190, 238, 99, 2, 141, 162, 67, 237, 3, 91, 186, 236, 85, 202, 153, 20, 47, 205, 145, 117, 69, 253, 53, 63, 196, 175, 41, 232, 123, 226, 171, 92, 127, 82, 220, 0, 229, 87, 126, 79, 37, 246, 109, 78, 66, 169, 63, 69, 195, 2, 78, 128, 29, 57, 120, 166, 199, 2, 141, 138, 56, 59, 202, 6, 57, 81, 247, 177, 213, 10, 89, 96, 97, 66, 98, 110, 36, 181, 137, 57, 126, 73, 114, 130, 21, 1, 212, 213, 234, 214, 155, 75, 38, 73, 241, 236, 238, 74, 69, 254, 161, 103, 231, 83, 191, 29, 36, 96, 50, 215, 218, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:43:58.826599Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:43:58.826639Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:43:58.858188Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:43:58.892355Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Ma7LZ1OVTIefCJUrWKxK0Q==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:43:58.895264Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Ma7LZ1OVTIefCJUrWKxK0Q==: stderr: -2026-04-20T10:43:58.895278Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Ma7LZ1OVTIefCJUrWKxK0Q==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:43:58.895287Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Ma7LZ1OVTIefCJUrWKxK0Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:43:58.895295Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Ma7LZ1OVTIefCJUrWKxK0Q==: stderr: stack backtrace: -2026-04-20T10:43:58.895301Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Ma7LZ1OVTIefCJUrWKxK0Q==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:43:58.895307Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Ma7LZ1OVTIefCJUrWKxK0Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:43:58.895455Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:43:58.896357Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:43:58.896739Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:43:58.962988Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:43:58.963038Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:43:58.963213Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:43:58.963373Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:43:58.963433Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:43:58.963680Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=56 blob_id=2147876548363316824468998958595474213 -2026-04-20T10:43:59.524495Z DEBUG sp1_core_executor_runner::native: CHILD sp1_WY7WrEUAQMGXVSUozjSfWA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:43:59.530203Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:43:59.540797Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 891739 cycles -2026-04-20T10:43:59.543466Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [90, 234, 35, 124, 222, 163, 30, 122, 78, 111, 183, 122, 0, 24, 187, 158, 110, 175, 218, 61, 178, 238, 119, 66, 192, 85, 13, 27, 191, 186, 155, 130, 61, 124, 188, 198, 221, 19, 138, 39, 221, 92, 79, 2, 163, 241, 174, 163, 140, 171, 7, 234, 196, 224, 182, 112, 110, 47, 137, 212, 205, 117, 187, 166, 90, 234, 35, 124, 222, 163, 30, 122, 78, 111, 183, 122, 0, 24, 187, 158, 110, 175, 218, 61, 178, 238, 119, 66, 192, 85, 13, 27, 191, 186, 155, 130, 85, 236, 168, 55, 57, 217, 185, 160, 212, 46, 172, 124, 195, 66, 102, 41, 16, 128, 164, 164, 139, 64, 53, 174, 165, 53, 116, 80, 187, 72, 71, 115, 134, 243, 10, 50, 115, 216, 225, 242, 151, 158, 71, 69, 21, 204, 77, 172, 24, 166, 192, 227, 43, 104, 75, 245, 71, 144, 24, 203, 9, 210, 27, 96, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:43:59.593616Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:43:59.593657Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:43:59.671521Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:43:59.706093Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bStgH3F_Tl6300Voj5nHnA==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:43:59.708938Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bStgH3F_Tl6300Voj5nHnA==: stderr: -2026-04-20T10:43:59.708951Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bStgH3F_Tl6300Voj5nHnA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:43:59.708959Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bStgH3F_Tl6300Voj5nHnA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:43:59.708968Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bStgH3F_Tl6300Voj5nHnA==: stderr: stack backtrace: -2026-04-20T10:43:59.708974Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bStgH3F_Tl6300Voj5nHnA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:43:59.708981Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bStgH3F_Tl6300Voj5nHnA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:43:59.709107Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:43:59.709858Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:43:59.710147Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:43:59.777641Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:43:59.777683Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:43:59.777834Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:43:59.778021Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:43:59.778099Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:43:59.778784Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=57 blob_id=2147876549347373935375826110183715028 -2026-04-20T10:44:00.313463Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QDPDkGNTQPamgXdKZYUzng==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:44:00.329334Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:44:00.339167Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2402373 cycles -2026-04-20T10:44:00.341806Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [90, 234, 35, 124, 222, 163, 30, 122, 78, 111, 183, 122, 0, 24, 187, 158, 110, 175, 218, 61, 178, 238, 119, 66, 192, 85, 13, 27, 191, 186, 155, 130, 3, 175, 10, 183, 56, 194, 234, 137, 107, 130, 232, 61, 174, 129, 6, 188, 4, 87, 197, 155, 41, 39, 179, 88, 214, 145, 20, 81, 8, 24, 121, 102, 2, 87, 100, 224, 48, 138, 12, 178, 117, 57, 31, 47, 162, 229, 94, 236, 42, 232, 18, 71, 74, 253, 34, 41, 40, 52, 178, 114, 4, 60, 41, 108, 93, 148, 82, 179, 241, 159, 128, 11, 165, 133, 76, 171, 206, 52, 64, 221, 53, 124, 148, 140, 147, 255, 98, 72, 58, 136, 105, 223, 128, 98, 236, 199, 89, 76, 187, 204, 87, 158, 22, 126, 224, 50, 168, 135, 172, 99, 249, 119, 215, 252, 137, 226, 186, 162, 65, 4, 214, 13, 50, 215, 133, 70, 4, 241, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:44:00.447912Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:44:00.447948Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:44:00.486092Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:44:00.520228Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zMH5fBiQQ0-mP3nB3g0dgw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:44:00.523048Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zMH5fBiQQ0-mP3nB3g0dgw==: stderr: -2026-04-20T10:44:00.523060Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zMH5fBiQQ0-mP3nB3g0dgw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:44:00.523071Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zMH5fBiQQ0-mP3nB3g0dgw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:44:00.523078Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zMH5fBiQQ0-mP3nB3g0dgw==: stderr: stack backtrace: -2026-04-20T10:44:00.523083Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zMH5fBiQQ0-mP3nB3g0dgw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:44:00.523097Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zMH5fBiQQ0-mP3nB3g0dgw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:44:00.523154Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:44:00.523930Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:44:00.524217Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:44:00.596154Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:44:00.596198Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:44:00.596378Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:44:00.596957Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=58 blob_id=2147876550337504531399460309511682485 -2026-04-20T10:44:04.131881Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=4 height=40 prev_hash=0x4e1f02798536a42eaa286b6a588b5377db473f319ad93bb22395ac62e990bd00 hash=0x53eae5ed26a16752e7d4803fd88a6a8b237faf80a602726ad0a7f1bdceab417b producing_time=1.658419ms -2026-04-20T10:44:04.141892Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=40 current_state_root="6fb51f0f3300773771310e8f4ec08429822582da72640c8aa88a7db3525b6d890d6aeb77dfff67c4191c5589ad7defc946956f4b40f31350075987832cd00b6b" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x67ced2fb27d4127c4158d5d32704e029dea05e2095bb24c5fb22e8ba199c6154"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc32b352fc0b7c94a4f8e3118b75104758ca79b1f8e873da36e54f882f9e83841, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf1ea2fa6b7796d3cc2b18434f8a04f26b8e6a5c5c6a7034faaefcabeeb649616, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe7b0e22d9fefab047c9409f7fdcdc1d449f9048a3d1c815b948fca33a239c796, len=625"] -2026-04-20T10:44:04.142144Z DEBUG StfBlueprint::apply_slot{context=Node da_height=40}: sov_chain_state: Setting next visible slot number next_visible_slot_number=35 -2026-04-20T10:44:04.142281Z DEBUG StfBlueprint::apply_slot{context=Node da_height=40}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x67ced2fb27d4127c4158d5d32704e029dea05e2095bb24c5fb22e8ba199c6154}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:44:04.142486Z DEBUG StfBlueprint::apply_slot{context=Node da_height=40}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6fb51f0f3300773771310e8f4ec08429822582da72640c8aa88a7db3525b6d890d6aeb77dfff67c4191c5589ad7defc946956f4b40f31350075987832cd00b6b next_version=40 sesssion_starting_time=48.199µs -2026-04-20T10:44:04.143444Z DEBUG StfBlueprint::apply_slot{context=Node da_height=40}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3298c285e64e27cfe84e7326d157edee0cb0f8434375cd81cedac8fcfb6f1851055262f44041735b2810a6214fd6ceb36fe29a4bcf708b4403c5c8234fc4671b next_version=40 time=1.041903ms accesses_build_time=34.38µs finishing_session_time=904.384µs -2026-04-20T10:44:04.143610Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6fb51f0f3300773771310e8f4ec08429822582da72640c8aa88a7db3525b6d890d6aeb77dfff67c4191c5589ad7defc946956f4b40f31350075987832cd00b6b" next_state_root="3298c285e64e27cfe84e7326d157edee0cb0f8434375cd81cedac8fcfb6f1851055262f44041735b2810a6214fd6ceb36fe29a4bcf708b4403c5c8234fc4671b" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:44:04.144185Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 40, latest_finalized_slot_number: 40, sync_status: Syncing { synced_da_height: 39, target_da_height: 40 }, .. } -2026-04-20T10:44:04.144262Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=26 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 40, latest_finalized_slot_number: 40, sync_status: Syncing { synced_da_height: 39, target_da_height: 40 }, .. } -2026-04-20T10:44:04.144345Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=26 -2026-04-20T10:44:04.144637Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:44:04.144699Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=22 -2026-04-20T10:44:04.144793Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=36 -2026-04-20T10:44:04.144942Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:44:04.145246Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=36 sequence_number=59 -2026-04-20T10:44:04.145270Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=59 blob_id=2147876554628009433871611627492116539 visible_slot_number_after_increase=36 visible_slots_to_advance=1 -2026-04-20T10:44:04.145289Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:44:04.147117Z DEBUG manage_blob_submission_inside_task{blob_id=2147876554628009433871611627492116539 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x9e35b03f1dcbf43f882866c8cf12cbcee6fd61ec6df1a89c0fb54eaa833ea0dc sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=41 include_at=41 bytes=13 time=670.746µs -2026-04-20T10:44:04.158533Z DEBUG compute_state_update{scope="sequencer" rollup_height=27 slot_number=36}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:44:04.158566Z DEBUG sov_stf_runner::runner: Block execution complete time=6.008429217s -2026-04-20T10:44:04.158588Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:44:04.158621Z DEBUG compute_state_update{scope="sequencer" rollup_height=27 slot_number=36}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3298c285e64e27cfe84e7326d157edee0cb0f8434375cd81cedac8fcfb6f1851055262f44041735b2810a6214fd6ceb36fe29a4bcf708b4403c5c8234fc4671b next_version=41 sesssion_starting_time=12.752857ms -2026-04-20T10:44:04.158794Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:44:04.158864Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:44:04.159342Z DEBUG compute_state_update{scope="sequencer" rollup_height=27 slot_number=36}: sov_state::nomt::prover_storage: computed next state root state_root=046af33b74768894e4105cc67867a07728785ddf4964e03e61196607b690adb021d65055972d9e9769f095c939e620000ba7465d9f67c2b0800ee8a0a18bf9de next_version=41 time=13.490233ms accesses_build_time=14.31µs finishing_session_time=696.946µs -2026-04-20T10:44:04.722439Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EPKx-8bhQp21nJg87IzX1g==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:44:04.734932Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:44:04.745482Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1769157 cycles -2026-04-20T10:44:04.748126Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [94, 60, 79, 195, 230, 144, 2, 56, 88, 251, 239, 236, 111, 196, 55, 239, 59, 150, 22, 192, 247, 60, 107, 224, 109, 204, 234, 187, 183, 176, 84, 61, 49, 30, 30, 183, 244, 194, 128, 96, 246, 2, 244, 143, 98, 217, 68, 92, 108, 222, 158, 161, 202, 193, 66, 193, 122, 147, 95, 83, 123, 10, 47, 241, 12, 183, 4, 23, 220, 199, 248, 226, 143, 141, 64, 23, 120, 143, 141, 203, 73, 81, 213, 130, 75, 237, 201, 238, 63, 180, 244, 200, 215, 7, 11, 63, 53, 238, 132, 148, 45, 45, 239, 74, 179, 4, 209, 65, 89, 218, 197, 69, 234, 33, 51, 15, 18, 44, 237, 138, 129, 110, 178, 234, 72, 69, 29, 126, 147, 5, 79, 148, 5, 138, 53, 226, 247, 13, 244, 148, 16, 185, 33, 77, 224, 150, 136, 204, 149, 202, 135, 163, 21, 142, 20, 249, 138, 41, 166, 196, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:44:04.836693Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:44:04.836730Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:44:04.865736Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:44:04.899924Z DEBUG sp1_core_executor_runner::native: CHILD sp1_UKLRG05OSz-9GEcCvempuw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:44:04.902772Z DEBUG sp1_core_executor_runner::native: CHILD sp1_UKLRG05OSz-9GEcCvempuw==: stderr: -2026-04-20T10:44:04.902796Z DEBUG sp1_core_executor_runner::native: CHILD sp1_UKLRG05OSz-9GEcCvempuw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:44:04.902807Z DEBUG sp1_core_executor_runner::native: CHILD sp1_UKLRG05OSz-9GEcCvempuw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:44:04.902814Z DEBUG sp1_core_executor_runner::native: CHILD sp1_UKLRG05OSz-9GEcCvempuw==: stderr: stack backtrace: -2026-04-20T10:44:04.902820Z DEBUG sp1_core_executor_runner::native: CHILD sp1_UKLRG05OSz-9GEcCvempuw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:44:04.902826Z DEBUG sp1_core_executor_runner::native: CHILD sp1_UKLRG05OSz-9GEcCvempuw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:44:04.902899Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:44:04.903735Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:44:04.904061Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:44:04.971477Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:44:04.971520Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:44:04.971676Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:44:04.972272Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=60 blob_id=2147876555626531932207581130830063616 -2026-04-20T10:44:10.133957Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=41 prev_hash=0x53eae5ed26a16752e7d4803fd88a6a8b237faf80a602726ad0a7f1bdceab417b hash=0xe53431a0c331e708769af21711e2fe791b04d8c560ca0a95129e85e9ff4cac47 producing_time=1.48657ms -2026-04-20T10:44:10.139999Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=41 current_state_root="3298c285e64e27cfe84e7326d157edee0cb0f8434375cd81cedac8fcfb6f1851055262f44041735b2810a6214fd6ceb36fe29a4bcf708b4403c5c8234fc4671b" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9e35b03f1dcbf43f882866c8cf12cbcee6fd61ec6df1a89c0fb54eaa833ea0dc"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0da80233801554f66dfbe1bff0fd6038534cf77012a6e274f9555d6adb98dcbb, len=625"] -2026-04-20T10:44:10.140276Z DEBUG StfBlueprint::apply_slot{context=Node da_height=41}: sov_chain_state: Setting next visible slot number next_visible_slot_number=36 -2026-04-20T10:44:10.140546Z DEBUG StfBlueprint::apply_slot{context=Node da_height=41}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x9e35b03f1dcbf43f882866c8cf12cbcee6fd61ec6df1a89c0fb54eaa833ea0dc}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:44:10.140731Z DEBUG StfBlueprint::apply_slot{context=Node da_height=41}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3298c285e64e27cfe84e7326d157edee0cb0f8434375cd81cedac8fcfb6f1851055262f44041735b2810a6214fd6ceb36fe29a4bcf708b4403c5c8234fc4671b next_version=41 sesssion_starting_time=46.88µs -2026-04-20T10:44:10.141637Z DEBUG StfBlueprint::apply_slot{context=Node da_height=41}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=046af33b74768894e4105cc67867a07728785ddf4964e03e61196607b690adb067c4f3f15b3a149ed36fd4c2870c761eac36231a47c71e4c2d88947da81a535a next_version=41 time=990.693µs accesses_build_time=36.689µs finishing_session_time=878.524µs -2026-04-20T10:44:10.141822Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="c32b352fc0b7c94a4f8e3118b75104758ca79b1f8e873da36e54f882f9e83841" -2026-04-20T10:44:10.141838Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="f1ea2fa6b7796d3cc2b18434f8a04f26b8e6a5c5c6a7034faaefcabeeb649616" -2026-04-20T10:44:10.141847Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="e7b0e22d9fefab047c9409f7fdcdc1d449f9048a3d1c815b948fca33a239c796" -2026-04-20T10:44:10.141859Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3298c285e64e27cfe84e7326d157edee0cb0f8434375cd81cedac8fcfb6f1851055262f44041735b2810a6214fd6ceb36fe29a4bcf708b4403c5c8234fc4671b" next_state_root="046af33b74768894e4105cc67867a07728785ddf4964e03e61196607b690adb067c4f3f15b3a149ed36fd4c2870c761eac36231a47c71e4c2d88947da81a535a" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:44:10.142394Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 41, latest_finalized_slot_number: 41, sync_status: Syncing { synced_da_height: 40, target_da_height: 41 }, .. } -2026-04-20T10:44:10.142478Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=27 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 41, latest_finalized_slot_number: 41, sync_status: Syncing { synced_da_height: 40, target_da_height: 41 }, .. } -2026-04-20T10:44:10.142537Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=27 -2026-04-20T10:44:10.153663Z DEBUG sov_stf_runner::runner: Block execution complete time=5.995075182s -2026-04-20T10:44:10.153700Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:44:10.153879Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:44:10.153949Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:44:10.722636Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SlWndiN7SoCtwxF_xIGCiQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:44:10.728997Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:44:10.739876Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 969016 cycles -2026-04-20T10:44:10.742531Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [49, 240, 221, 105, 229, 43, 245, 118, 166, 189, 94, 255, 33, 3, 184, 190, 147, 199, 144, 237, 26, 56, 56, 180, 194, 147, 122, 56, 204, 121, 175, 206, 72, 177, 93, 223, 3, 242, 44, 68, 213, 10, 132, 154, 237, 6, 114, 128, 96, 39, 160, 126, 7, 18, 198, 113, 114, 166, 49, 142, 59, 123, 179, 44, 49, 240, 221, 105, 229, 43, 245, 118, 166, 189, 94, 255, 33, 3, 184, 190, 147, 199, 144, 237, 26, 56, 56, 180, 194, 147, 122, 56, 204, 121, 175, 206, 91, 141, 66, 50, 88, 137, 205, 96, 61, 214, 218, 232, 132, 177, 156, 41, 160, 1, 127, 72, 169, 76, 10, 196, 11, 105, 175, 164, 232, 167, 208, 19, 159, 104, 23, 31, 133, 141, 232, 41, 4, 242, 197, 128, 202, 189, 166, 222, 179, 47, 2, 103, 232, 107, 66, 196, 223, 30, 170, 88, 48, 93, 237, 72, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:44:10.779184Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:44:10.779229Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:44:10.861474Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:44:10.896392Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M3mR9xeuSZ6yo6uArSSm9g==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:44:10.899220Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M3mR9xeuSZ6yo6uArSSm9g==: stderr: -2026-04-20T10:44:10.899235Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M3mR9xeuSZ6yo6uArSSm9g==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:44:10.899249Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M3mR9xeuSZ6yo6uArSSm9g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:44:10.899259Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M3mR9xeuSZ6yo6uArSSm9g==: stderr: stack backtrace: -2026-04-20T10:44:10.899268Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M3mR9xeuSZ6yo6uArSSm9g==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:44:10.899276Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M3mR9xeuSZ6yo6uArSSm9g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:44:10.899377Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:44:10.900136Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:44:10.900461Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:44:10.967807Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:44:10.967850Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:44:10.968028Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:44:10.968636Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=61 blob_id=2147876562876514969328389253795922174 -2026-04-20T10:44:16.135812Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=42 prev_hash=0xe53431a0c331e708769af21711e2fe791b04d8c560ca0a95129e85e9ff4cac47 hash=0x5b029e4fb6743d9a2d36b5e43fd282bd4788c297963b5cc66785057a16c97a55 producing_time=1.152292ms -2026-04-20T10:44:16.145586Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=42 current_state_root="046af33b74768894e4105cc67867a07728785ddf4964e03e61196607b690adb067c4f3f15b3a149ed36fd4c2870c761eac36231a47c71e4c2d88947da81a535a" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x282cecf93296933c615dbc5ef54372241f43cfc5c56413783fd337f484adff0e, len=625"] -2026-04-20T10:44:16.145912Z DEBUG StfBlueprint::apply_slot{context=Node da_height=42}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=046af33b74768894e4105cc67867a07728785ddf4964e03e61196607b690adb067c4f3f15b3a149ed36fd4c2870c761eac36231a47c71e4c2d88947da81a535a next_version=42 sesssion_starting_time=47.14µs -2026-04-20T10:44:16.146777Z DEBUG StfBlueprint::apply_slot{context=Node da_height=42}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=046af33b74768894e4105cc67867a07728785ddf4964e03e61196607b690adb053a046aab7304574150f5fd5e7ea746135a0eba92e599d1e45371e93c42d7137 next_version=42 time=930.894µs accesses_build_time=17.71µs finishing_session_time=828.794µs -2026-04-20T10:44:16.146846Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="046af33b74768894e4105cc67867a07728785ddf4964e03e61196607b690adb067c4f3f15b3a149ed36fd4c2870c761eac36231a47c71e4c2d88947da81a535a" next_state_root="046af33b74768894e4105cc67867a07728785ddf4964e03e61196607b690adb053a046aab7304574150f5fd5e7ea746135a0eba92e599d1e45371e93c42d7137" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:44:16.147261Z DEBUG sov_stf_runner::runner: Block execution complete time=5.993563433s -2026-04-20T10:44:16.147296Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:44:16.147336Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 42, latest_finalized_slot_number: 41, sync_status: Syncing { synced_da_height: 41, target_da_height: 42 }, .. } -2026-04-20T10:44:16.147422Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=27 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 42, latest_finalized_slot_number: 41, sync_status: Syncing { synced_da_height: 41, target_da_height: 42 }, .. } -2026-04-20T10:44:16.147503Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=27 -2026-04-20T10:44:16.147730Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:44:16.147788Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=23 -2026-04-20T10:44:16.147888Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=37 -2026-04-20T10:44:16.147991Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:44:16.148260Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=37 sequence_number=62 -2026-04-20T10:44:16.148276Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=62 blob_id=2147876569138697899893753598317083760 visible_slot_number_after_increase=37 visible_slots_to_advance=1 -2026-04-20T10:44:16.148325Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=2 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:44:16.148796Z DEBUG compute_state_update{scope="sequencer" rollup_height=28 slot_number=37}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=046af33b74768894e4105cc67867a07728785ddf4964e03e61196607b690adb053a046aab7304574150f5fd5e7ea746135a0eba92e599d1e45371e93c42d7137 next_version=43 sesssion_starting_time=47.819µs -2026-04-20T10:44:16.149551Z DEBUG compute_state_update{scope="sequencer" rollup_height=28 slot_number=37}: sov_state::nomt::prover_storage: computed next state root state_root=21148ba12415761b9505caaab2e14aed27550ad4d2ee468eb88182112caf6e8003aa639778917ddf6b65fe7570322f0223966f1d1588afd7ff9496e7e661e746 next_version=43 time=819.444µs accesses_build_time=15.3µs finishing_session_time=721.175µs -2026-04-20T10:44:16.150135Z DEBUG manage_blob_submission_inside_task{blob_id=2147876569138697899893753598317083760 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x26c81191941b2b6d5754f03936a04030a74c514b4b0beaef1b7197ba1c7bc15c sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=43 include_at=43 bytes=13 time=738.605µs -2026-04-20T10:44:22.138507Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=43 prev_hash=0x5b029e4fb6743d9a2d36b5e43fd282bd4788c297963b5cc66785057a16c97a55 hash=0x31407a8c8ae2efce4d4d2ad058277b7e6eb74dfde8e06678af28a6ae3817bfc8 producing_time=1.258622ms -2026-04-20T10:44:22.148188Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=43 current_state_root="046af33b74768894e4105cc67867a07728785ddf4964e03e61196607b690adb053a046aab7304574150f5fd5e7ea746135a0eba92e599d1e45371e93c42d7137" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x26c81191941b2b6d5754f03936a04030a74c514b4b0beaef1b7197ba1c7bc15c"] proof_blobs=[] -2026-04-20T10:44:22.148459Z DEBUG StfBlueprint::apply_slot{context=Node da_height=43}: sov_chain_state: Setting next visible slot number next_visible_slot_number=37 -2026-04-20T10:44:22.148695Z DEBUG StfBlueprint::apply_slot{context=Node da_height=43}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x26c81191941b2b6d5754f03936a04030a74c514b4b0beaef1b7197ba1c7bc15c}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=2 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:44:22.148877Z DEBUG StfBlueprint::apply_slot{context=Node da_height=43}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=046af33b74768894e4105cc67867a07728785ddf4964e03e61196607b690adb053a046aab7304574150f5fd5e7ea746135a0eba92e599d1e45371e93c42d7137 next_version=43 sesssion_starting_time=48.17µs -2026-04-20T10:44:22.149828Z DEBUG StfBlueprint::apply_slot{context=Node da_height=43}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=21148ba12415761b9505caaab2e14aed27550ad4d2ee468eb88182112caf6e8041e6969d89fbec0f2711642ee4dc065225d1d3da259483b2dc72f827a9f290d0 next_version=43 time=1.033804ms accesses_build_time=33.53µs finishing_session_time=925.054µs -2026-04-20T10:44:22.150000Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="0da80233801554f66dfbe1bff0fd6038534cf77012a6e274f9555d6adb98dcbb" -2026-04-20T10:44:22.150017Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="282cecf93296933c615dbc5ef54372241f43cfc5c56413783fd337f484adff0e" -2026-04-20T10:44:22.150044Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="046af33b74768894e4105cc67867a07728785ddf4964e03e61196607b690adb067c4f3f15b3a149ed36fd4c2870c761eac36231a47c71e4c2d88947da81a535a" next_state_root="21148ba12415761b9505caaab2e14aed27550ad4d2ee468eb88182112caf6e8041e6969d89fbec0f2711642ee4dc065225d1d3da259483b2dc72f827a9f290d0" aggregated_proofs=0 proof_receipts=2 -2026-04-20T10:44:22.150521Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 43, latest_finalized_slot_number: 42, sync_status: Syncing { synced_da_height: 42, target_da_height: 43 }, .. } -2026-04-20T10:44:22.150595Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=28 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 43, latest_finalized_slot_number: 42, sync_status: Syncing { synced_da_height: 42, target_da_height: 43 }, .. } -2026-04-20T10:44:22.150653Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=28 -2026-04-20T10:44:22.150880Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:44:22.150958Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=24 -2026-04-20T10:44:22.151042Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=38 -2026-04-20T10:44:22.151147Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:44:22.151293Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=38 sequence_number=63 -2026-04-20T10:44:22.151329Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=63 blob_id=2147876576395924772674713638137993208 visible_slot_number_after_increase=38 visible_slots_to_advance=1 -2026-04-20T10:44:22.151360Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:44:22.153148Z DEBUG manage_blob_submission_inside_task{blob_id=2147876576395924772674713638137993208 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xe115a6cc81f2a32c9af0d1ea179a92a7408a4b290cd465e369efbcdb0e39c8f7 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=44 include_at=44 bytes=13 time=689.745µs -2026-04-20T10:44:22.160290Z DEBUG compute_state_update{scope="sequencer" rollup_height=29 slot_number=38}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:44:22.160348Z DEBUG sov_stf_runner::runner: Block execution complete time=6.013054707s -2026-04-20T10:44:22.160372Z DEBUG compute_state_update{scope="sequencer" rollup_height=29 slot_number=38}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=21148ba12415761b9505caaab2e14aed27550ad4d2ee468eb88182112caf6e8041e6969d89fbec0f2711642ee4dc065225d1d3da259483b2dc72f827a9f290d0 next_version=44 sesssion_starting_time=8.631094ms -2026-04-20T10:44:22.160383Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:44:22.160608Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:44:22.160690Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:44:22.160946Z DEBUG compute_state_update{scope="sequencer" rollup_height=29 slot_number=38}: sov_state::nomt::prover_storage: computed next state root state_root=6980bb8414bdaf389c93388b582b3d463b2151f35dd1feb0afc42f6084fe628a3e1294c0867016b75b06793621612cbb1d684a82d7bd72e93660497910f973f0 next_version=44 time=9.220031ms accesses_build_time=13.59µs finishing_session_time=553.057µs -2026-04-20T10:44:22.719282Z DEBUG sp1_core_executor_runner::native: CHILD sp1_o8LToXJDSf6N65es3v8WoQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:44:22.735687Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:44:22.748136Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2454087 cycles -2026-04-20T10:44:22.750815Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [49, 240, 221, 105, 229, 43, 245, 118, 166, 189, 94, 255, 33, 3, 184, 190, 147, 199, 144, 237, 26, 56, 56, 180, 194, 147, 122, 56, 204, 121, 175, 206, 98, 99, 213, 199, 60, 245, 33, 233, 161, 132, 200, 85, 235, 86, 110, 8, 77, 199, 231, 72, 253, 180, 123, 168, 79, 253, 149, 173, 138, 189, 238, 85, 16, 156, 57, 47, 49, 188, 211, 228, 15, 99, 184, 9, 106, 60, 210, 142, 64, 58, 169, 208, 73, 104, 81, 214, 73, 195, 42, 199, 40, 209, 99, 63, 83, 62, 239, 101, 78, 1, 254, 44, 81, 100, 37, 207, 132, 96, 26, 13, 168, 94, 69, 135, 37, 20, 224, 131, 51, 63, 66, 233, 248, 24, 122, 32, 11, 47, 148, 164, 176, 87, 208, 194, 98, 74, 149, 156, 44, 185, 172, 61, 39, 190, 200, 5, 181, 23, 179, 90, 213, 74, 116, 133, 102, 238, 26, 145, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:44:22.855581Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:44:22.855626Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:44:22.870756Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:44:22.907953Z DEBUG sp1_core_executor_runner::native: CHILD sp1_k3thwhokTGy946yv16Ot8w==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:44:22.910802Z DEBUG sp1_core_executor_runner::native: CHILD sp1_k3thwhokTGy946yv16Ot8w==: stderr: -2026-04-20T10:44:22.910827Z DEBUG sp1_core_executor_runner::native: CHILD sp1_k3thwhokTGy946yv16Ot8w==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:44:22.910838Z DEBUG sp1_core_executor_runner::native: CHILD sp1_k3thwhokTGy946yv16Ot8w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:44:22.910845Z DEBUG sp1_core_executor_runner::native: CHILD sp1_k3thwhokTGy946yv16Ot8w==: stderr: stack backtrace: -2026-04-20T10:44:22.910851Z DEBUG sp1_core_executor_runner::native: CHILD sp1_k3thwhokTGy946yv16Ot8w==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:44:22.910858Z DEBUG sp1_core_executor_runner::native: CHILD sp1_k3thwhokTGy946yv16Ot8w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:44:22.910957Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:44:22.911688Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:44:22.912017Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:44:22.977583Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:44:22.977627Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:44:22.977849Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:44:22.978469Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=64 blob_id=2147876577394511943412560691818800568 -2026-04-20T10:44:28.141434Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=44 prev_hash=0x31407a8c8ae2efce4d4d2ad058277b7e6eb74dfde8e06678af28a6ae3817bfc8 hash=0x7e11ba4a4d525810892605ba455a9ac3516afb9a1201a7c2967019fc1acd0e0f producing_time=1.409011ms -2026-04-20T10:44:28.141966Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=44 current_state_root="21148ba12415761b9505caaab2e14aed27550ad4d2ee468eb88182112caf6e8041e6969d89fbec0f2711642ee4dc065225d1d3da259483b2dc72f827a9f290d0" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe115a6cc81f2a32c9af0d1ea179a92a7408a4b290cd465e369efbcdb0e39c8f7"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf2479d9c2b18c00779abe7fdae0543fa8b34a1d2642171b6a02d5e35cae60b2e, len=625"] -2026-04-20T10:44:28.142205Z DEBUG StfBlueprint::apply_slot{context=Node da_height=44}: sov_chain_state: Setting next visible slot number next_visible_slot_number=38 -2026-04-20T10:44:28.142352Z DEBUG StfBlueprint::apply_slot{context=Node da_height=44}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xe115a6cc81f2a32c9af0d1ea179a92a7408a4b290cd465e369efbcdb0e39c8f7}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:44:28.142533Z DEBUG StfBlueprint::apply_slot{context=Node da_height=44}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=21148ba12415761b9505caaab2e14aed27550ad4d2ee468eb88182112caf6e8041e6969d89fbec0f2711642ee4dc065225d1d3da259483b2dc72f827a9f290d0 next_version=44 sesssion_starting_time=50.16µs -2026-04-20T10:44:28.143424Z DEBUG StfBlueprint::apply_slot{context=Node da_height=44}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6980bb8414bdaf389c93388b582b3d463b2151f35dd1feb0afc42f6084fe628a4e177e34cd00fa8ad1293e439176374d3b09f2f7f174008c65e943fbc931b78a next_version=44 time=972.924µs accesses_build_time=30.61µs finishing_session_time=867.475µs -2026-04-20T10:44:28.143621Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="046af33b74768894e4105cc67867a07728785ddf4964e03e61196607b690adb053a046aab7304574150f5fd5e7ea746135a0eba92e599d1e45371e93c42d7137" next_state_root="6980bb8414bdaf389c93388b582b3d463b2151f35dd1feb0afc42f6084fe628a4e177e34cd00fa8ad1293e439176374d3b09f2f7f174008c65e943fbc931b78a" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:44:28.144083Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 44, latest_finalized_slot_number: 43, sync_status: Synced { synced_da_height: 43 }, .. } -2026-04-20T10:44:28.144162Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=29 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 44, latest_finalized_slot_number: 43, sync_status: Synced { synced_da_height: 43 }, .. } -2026-04-20T10:44:28.144236Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=29 -2026-04-20T10:44:28.155581Z DEBUG sov_stf_runner::runner: Block execution complete time=5.995198093s -2026-04-20T10:44:28.155619Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:44:28.155810Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:44:28.155886Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:44:28.725510Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eYXxf41qQKGBJdS0TM5Eqg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:44:28.738141Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:44:28.750223Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1784208 cycles -2026-04-20T10:44:28.752832Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [52, 194, 24, 211, 142, 85, 203, 30, 205, 171, 119, 109, 165, 203, 203, 104, 252, 7, 46, 234, 239, 45, 72, 211, 210, 226, 187, 85, 170, 141, 184, 161, 105, 60, 12, 152, 204, 46, 218, 8, 116, 32, 81, 147, 137, 33, 62, 181, 3, 44, 30, 108, 42, 222, 177, 118, 221, 61, 159, 37, 107, 66, 30, 78, 25, 192, 109, 109, 184, 154, 37, 85, 157, 24, 29, 22, 78, 178, 251, 50, 70, 237, 192, 56, 146, 38, 34, 65, 176, 166, 228, 66, 39, 76, 100, 212, 80, 168, 211, 161, 239, 239, 85, 170, 25, 223, 88, 171, 11, 23, 180, 154, 80, 235, 220, 103, 141, 243, 222, 203, 194, 87, 85, 142, 231, 243, 200, 65, 121, 95, 210, 77, 121, 196, 42, 232, 193, 104, 6, 202, 248, 63, 3, 208, 115, 80, 133, 17, 76, 100, 214, 246, 173, 255, 109, 232, 142, 220, 8, 75, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:44:28.841804Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:44:28.841841Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:44:28.864722Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:44:28.899658Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vbyk9mbERKOud3dWYl5kxA==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:44:28.902479Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vbyk9mbERKOud3dWYl5kxA==: stderr: -2026-04-20T10:44:28.902491Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vbyk9mbERKOud3dWYl5kxA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:44:28.902501Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vbyk9mbERKOud3dWYl5kxA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:44:28.902509Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vbyk9mbERKOud3dWYl5kxA==: stderr: stack backtrace: -2026-04-20T10:44:28.902528Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vbyk9mbERKOud3dWYl5kxA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:44:28.902534Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vbyk9mbERKOud3dWYl5kxA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:44:28.902635Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:44:28.903398Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:44:28.903831Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:44:28.975928Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:44:28.975974Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:44:28.976210Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:44:28.977010Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=65 blob_id=2147876584646807151806542830267308806 -2026-04-20T10:44:34.144756Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=45 prev_hash=0x7e11ba4a4d525810892605ba455a9ac3516afb9a1201a7c2967019fc1acd0e0f hash=0xf76f89b7f4eb27cfb7fb519fca5e338dafe0e2ed679c507854c99d1b4971d98b producing_time=1.323331ms -2026-04-20T10:44:34.147419Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=45 current_state_root="6980bb8414bdaf389c93388b582b3d463b2151f35dd1feb0afc42f6084fe628a4e177e34cd00fa8ad1293e439176374d3b09f2f7f174008c65e943fbc931b78a" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x509e4285fa4fa6dd11b0ecf262f8be35c17d8e8b2f9d3c10b289a98e71a46221, len=625"] -2026-04-20T10:44:34.147748Z DEBUG StfBlueprint::apply_slot{context=Node da_height=45}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6980bb8414bdaf389c93388b582b3d463b2151f35dd1feb0afc42f6084fe628a4e177e34cd00fa8ad1293e439176374d3b09f2f7f174008c65e943fbc931b78a next_version=45 sesssion_starting_time=50.71µs -2026-04-20T10:44:34.148503Z DEBUG StfBlueprint::apply_slot{context=Node da_height=45}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6980bb8414bdaf389c93388b582b3d463b2151f35dd1feb0afc42f6084fe628a5fdd39b03f77f3b9f731146e17da9d5f695d171af9cbf06ce021632f1d19ad2f next_version=45 time=820.575µs accesses_build_time=15.18µs finishing_session_time=720.945µs -2026-04-20T10:44:34.148608Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="21148ba12415761b9505caaab2e14aed27550ad4d2ee468eb88182112caf6e8041e6969d89fbec0f2711642ee4dc065225d1d3da259483b2dc72f827a9f290d0" next_state_root="6980bb8414bdaf389c93388b582b3d463b2151f35dd1feb0afc42f6084fe628a5fdd39b03f77f3b9f731146e17da9d5f695d171af9cbf06ce021632f1d19ad2f" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:44:34.149106Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 45, latest_finalized_slot_number: 44, sync_status: Synced { synced_da_height: 44 }, .. } -2026-04-20T10:44:34.149186Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=29 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 45, latest_finalized_slot_number: 44, sync_status: Synced { synced_da_height: 44 }, .. } -2026-04-20T10:44:34.149246Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=29 -2026-04-20T10:44:34.149474Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:44:34.149549Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=25 -2026-04-20T10:44:34.149642Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=40 -2026-04-20T10:44:34.149769Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:44:34.150041Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=40 sequence_number=66 -2026-04-20T10:44:34.150063Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=66 blob_id=2147876590901793805902913614187122787 visible_slot_number_after_increase=40 visible_slots_to_advance=2 -2026-04-20T10:44:34.150086Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=2 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:44:34.151795Z DEBUG manage_blob_submission_inside_task{blob_id=2147876590901793805902913614187122787 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x2242bc8acea908752b98434ba5e64354a3a59878b3c8e3ccb81bc386964aa1a8 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=46 include_at=46 bytes=13 time=686.056µs -2026-04-20T10:44:34.166839Z DEBUG compute_state_update{scope="sequencer" rollup_height=30 slot_number=40}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:44:34.166863Z DEBUG sov_stf_runner::runner: Block execution complete time=6.011245329s -2026-04-20T10:44:34.166914Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:44:34.166945Z DEBUG compute_state_update{scope="sequencer" rollup_height=30 slot_number=40}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6980bb8414bdaf389c93388b582b3d463b2151f35dd1feb0afc42f6084fe628a5fdd39b03f77f3b9f731146e17da9d5f695d171af9cbf06ce021632f1d19ad2f next_version=46 sesssion_starting_time=16.419934ms -2026-04-20T10:44:34.167645Z DEBUG compute_state_update{scope="sequencer" rollup_height=30 slot_number=40}: sov_state::nomt::prover_storage: computed next state root state_root=0b680e0e68d7c0b72ee5d0068a6bbde430d48fc52b1c85769a699b17fd41dabf544c6948db4ff56f2a7be150381944f1cce1bb7b1a432ec0f1839965055ef9d8 next_version=46 time=17.14149ms accesses_build_time=20µs finishing_session_time=672.376µs -2026-04-20T10:44:40.147613Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=46 prev_hash=0xf76f89b7f4eb27cfb7fb519fca5e338dafe0e2ed679c507854c99d1b4971d98b hash=0x52b7b0478bf491400c9bc5a363c1dde1fe93bdffccbdf123ace92db36385d98e producing_time=1.4541ms -2026-04-20T10:44:40.148173Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=46 current_state_root="6980bb8414bdaf389c93388b582b3d463b2151f35dd1feb0afc42f6084fe628a5fdd39b03f77f3b9f731146e17da9d5f695d171af9cbf06ce021632f1d19ad2f" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x2242bc8acea908752b98434ba5e64354a3a59878b3c8e3ccb81bc386964aa1a8"] proof_blobs=[] -2026-04-20T10:44:40.148460Z DEBUG StfBlueprint::apply_slot{context=Node da_height=46}: sov_chain_state: Setting next visible slot number next_visible_slot_number=40 -2026-04-20T10:44:40.148693Z DEBUG StfBlueprint::apply_slot{context=Node da_height=46}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x2242bc8acea908752b98434ba5e64354a3a59878b3c8e3ccb81bc386964aa1a8}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=2 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:44:40.148927Z DEBUG StfBlueprint::apply_slot{context=Node da_height=46}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6980bb8414bdaf389c93388b582b3d463b2151f35dd1feb0afc42f6084fe628a5fdd39b03f77f3b9f731146e17da9d5f695d171af9cbf06ce021632f1d19ad2f next_version=46 sesssion_starting_time=55.87µs -2026-04-20T10:44:40.150046Z DEBUG StfBlueprint::apply_slot{context=Node da_height=46}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=0b680e0e68d7c0b72ee5d0068a6bbde430d48fc52b1c85769a699b17fd41dabf626e519e67dd9529be5f61d91427c29cfc0626447bda9f51df6d65ea28f48862 next_version=46 time=1.214022ms accesses_build_time=39.369µs finishing_session_time=1.077293ms -2026-04-20T10:44:40.150310Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="f2479d9c2b18c00779abe7fdae0543fa8b34a1d2642171b6a02d5e35cae60b2e" -2026-04-20T10:44:40.150355Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="509e4285fa4fa6dd11b0ecf262f8be35c17d8e8b2f9d3c10b289a98e71a46221" -2026-04-20T10:44:40.150370Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6980bb8414bdaf389c93388b582b3d463b2151f35dd1feb0afc42f6084fe628a4e177e34cd00fa8ad1293e439176374d3b09f2f7f174008c65e943fbc931b78a" next_state_root="0b680e0e68d7c0b72ee5d0068a6bbde430d48fc52b1c85769a699b17fd41dabf626e519e67dd9529be5f61d91427c29cfc0626447bda9f51df6d65ea28f48862" aggregated_proofs=0 proof_receipts=2 -2026-04-20T10:44:40.151025Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 46, latest_finalized_slot_number: 45, sync_status: Synced { synced_da_height: 45 }, .. } -2026-04-20T10:44:40.151100Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=30 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 46, latest_finalized_slot_number: 45, sync_status: Synced { synced_da_height: 45 }, .. } -2026-04-20T10:44:40.151158Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=30 -2026-04-20T10:44:40.151393Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:44:40.151468Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=26 -2026-04-20T10:44:40.151554Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=41 -2026-04-20T10:44:40.151701Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:44:40.151847Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=41 sequence_number=67 -2026-04-20T10:44:40.151874Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=67 blob_id=2147876598156568554437602010302735693 visible_slot_number_after_increase=41 visible_slots_to_advance=1 -2026-04-20T10:44:40.151891Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:44:40.153871Z DEBUG manage_blob_submission_inside_task{blob_id=2147876598156568554437602010302735693 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x4f8bf8cbce4538c1d42afbd903b7eef1f957d2f3e4526e58b9a4abccc50f33c9 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=47 include_at=47 bytes=13 time=770.665µs -2026-04-20T10:44:40.157781Z DEBUG compute_state_update{scope="sequencer" rollup_height=31 slot_number=41}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:44:40.157828Z DEBUG sov_stf_runner::runner: Block execution complete time=5.990914611s -2026-04-20T10:44:40.157849Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:44:40.157853Z DEBUG compute_state_update{scope="sequencer" rollup_height=31 slot_number=41}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0b680e0e68d7c0b72ee5d0068a6bbde430d48fc52b1c85769a699b17fd41dabf626e519e67dd9529be5f61d91427c29cfc0626447bda9f51df6d65ea28f48862 next_version=47 sesssion_starting_time=5.494594ms -2026-04-20T10:44:40.158067Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:44:40.158127Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:44:40.158454Z DEBUG compute_state_update{scope="sequencer" rollup_height=31 slot_number=41}: sov_state::nomt::prover_storage: computed next state root state_root=0a5e6d3021c59e74dec5066f60bb44dcdfac6aff9caec46f46555da060db269041274e2b96af74a47647f0b3bae930eca607437091568229656c8e34d328136c next_version=47 time=6.10957ms accesses_build_time=13.03µs finishing_session_time=579.646µs -2026-04-20T10:44:40.723335Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aGiRdPGqQ46x7OANRJl0VQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:44:40.729565Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:44:40.740796Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 961730 cycles -2026-04-20T10:44:40.743339Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [21, 212, 117, 191, 139, 146, 35, 157, 211, 207, 70, 238, 160, 198, 252, 87, 190, 32, 52, 75, 173, 230, 36, 170, 179, 231, 220, 224, 72, 165, 4, 111, 127, 154, 85, 97, 122, 138, 6, 251, 213, 14, 73, 145, 247, 14, 141, 175, 15, 249, 117, 195, 9, 42, 194, 102, 185, 110, 87, 241, 75, 227, 29, 210, 21, 212, 117, 191, 139, 146, 35, 157, 211, 207, 70, 238, 160, 198, 252, 87, 190, 32, 52, 75, 173, 230, 36, 170, 179, 231, 220, 224, 72, 165, 4, 111, 114, 244, 21, 110, 88, 216, 81, 36, 100, 78, 38, 19, 163, 88, 186, 95, 88, 155, 139, 126, 210, 118, 83, 104, 172, 84, 75, 144, 200, 225, 249, 116, 3, 168, 102, 160, 158, 22, 123, 222, 113, 170, 108, 158, 45, 189, 238, 57, 21, 14, 172, 148, 65, 120, 209, 23, 45, 163, 235, 12, 80, 139, 236, 233, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:44:40.796012Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:44:40.796057Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:44:40.864765Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:44:40.898829Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wrHYkbD9SPimUZF4DqjJ4g==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:44:40.901657Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wrHYkbD9SPimUZF4DqjJ4g==: stderr: -2026-04-20T10:44:40.901671Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wrHYkbD9SPimUZF4DqjJ4g==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:44:40.901680Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wrHYkbD9SPimUZF4DqjJ4g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:44:40.901688Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wrHYkbD9SPimUZF4DqjJ4g==: stderr: stack backtrace: -2026-04-20T10:44:40.901694Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wrHYkbD9SPimUZF4DqjJ4g==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:44:40.901701Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wrHYkbD9SPimUZF4DqjJ4g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:44:40.901858Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:44:40.902618Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:44:40.902910Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:44:40.969745Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:44:40.969787Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:44:40.969942Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:44:40.970130Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:44:40.970206Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:44:40.970623Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=68 blob_id=2147876599145491437961908136505757691 -2026-04-20T10:44:41.524864Z DEBUG sp1_core_executor_runner::native: CHILD sp1_WYrqal-7R2qrAnPhmQNvxQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:44:41.542228Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:44:41.552807Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2584979 cycles -2026-04-20T10:44:41.555594Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [21, 212, 117, 191, 139, 146, 35, 157, 211, 207, 70, 238, 160, 198, 252, 87, 190, 32, 52, 75, 173, 230, 36, 170, 179, 231, 220, 224, 72, 165, 4, 111, 54, 112, 8, 192, 87, 18, 254, 155, 206, 123, 206, 60, 30, 10, 23, 55, 86, 235, 23, 153, 130, 75, 115, 23, 26, 15, 6, 154, 68, 213, 138, 3, 27, 144, 49, 95, 212, 28, 237, 235, 130, 23, 20, 235, 203, 241, 191, 197, 208, 121, 204, 33, 68, 0, 115, 55, 209, 183, 100, 181, 95, 41, 179, 97, 73, 16, 183, 79, 163, 113, 172, 218, 245, 61, 221, 109, 127, 49, 114, 134, 170, 200, 221, 115, 213, 114, 250, 183, 183, 81, 228, 103, 82, 224, 192, 163, 78, 31, 2, 121, 133, 54, 164, 46, 170, 40, 107, 106, 88, 139, 83, 119, 219, 71, 63, 49, 154, 217, 59, 178, 35, 149, 172, 98, 233, 144, 189, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:44:41.666078Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:44:41.666111Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:44:41.676627Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:44:41.711922Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AJzPHyYCRNKI02gLsixRJQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:44:41.714793Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AJzPHyYCRNKI02gLsixRJQ==: stderr: -2026-04-20T10:44:41.714831Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AJzPHyYCRNKI02gLsixRJQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:44:41.714842Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AJzPHyYCRNKI02gLsixRJQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:44:41.714848Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AJzPHyYCRNKI02gLsixRJQ==: stderr: stack backtrace: -2026-04-20T10:44:41.714855Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AJzPHyYCRNKI02gLsixRJQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:44:41.714861Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AJzPHyYCRNKI02gLsixRJQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:44:41.714947Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:44:41.715722Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:44:41.716012Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:44:41.786925Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:44:41.786969Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:44:41.787104Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:44:41.787688Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=69 blob_id=2147876600134346123843146083759490109 -2026-04-20T10:44:46.150659Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=47 prev_hash=0x52b7b0478bf491400c9bc5a363c1dde1fe93bdffccbdf123ace92db36385d98e hash=0xe17c44ea55601149e9c95bc0f2a1e4a05f089ab0c8d31c26f6acc6ef57ff5a51 producing_time=1.4495ms -2026-04-20T10:44:46.159547Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=47 current_state_root="0b680e0e68d7c0b72ee5d0068a6bbde430d48fc52b1c85769a699b17fd41dabf626e519e67dd9529be5f61d91427c29cfc0626447bda9f51df6d65ea28f48862" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x4f8bf8cbce4538c1d42afbd903b7eef1f957d2f3e4526e58b9a4abccc50f33c9"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe4060e66178c4d73150db9d81c1c7f6669cecfddf114c2e12c20b2d5216fce3c, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xdbaf976995298449d89a94619b55ba02cda13594b4e434cae73bba55cc2d6460, len=625"] -2026-04-20T10:44:46.159802Z DEBUG StfBlueprint::apply_slot{context=Node da_height=47}: sov_chain_state: Setting next visible slot number next_visible_slot_number=41 -2026-04-20T10:44:46.159964Z DEBUG StfBlueprint::apply_slot{context=Node da_height=47}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x4f8bf8cbce4538c1d42afbd903b7eef1f957d2f3e4526e58b9a4abccc50f33c9}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:44:46.160166Z DEBUG StfBlueprint::apply_slot{context=Node da_height=47}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0b680e0e68d7c0b72ee5d0068a6bbde430d48fc52b1c85769a699b17fd41dabf626e519e67dd9529be5f61d91427c29cfc0626447bda9f51df6d65ea28f48862 next_version=47 sesssion_starting_time=48.44µs -2026-04-20T10:44:46.161092Z DEBUG StfBlueprint::apply_slot{context=Node da_height=47}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=0a5e6d3021c59e74dec5066f60bb44dcdfac6aff9caec46f46555da060db2690362b2b555a94f13782059b8d1b1afd2ba764ba282fd52eb4a050117e4d5a56aa next_version=47 time=1.009924ms accesses_build_time=34.58µs finishing_session_time=900.304µs -2026-04-20T10:44:46.161256Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6980bb8414bdaf389c93388b582b3d463b2151f35dd1feb0afc42f6084fe628a5fdd39b03f77f3b9f731146e17da9d5f695d171af9cbf06ce021632f1d19ad2f" next_state_root="0a5e6d3021c59e74dec5066f60bb44dcdfac6aff9caec46f46555da060db2690362b2b555a94f13782059b8d1b1afd2ba764ba282fd52eb4a050117e4d5a56aa" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:44:46.161854Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 47, latest_finalized_slot_number: 46, sync_status: Synced { synced_da_height: 46 }, .. } -2026-04-20T10:44:46.161964Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=31 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 47, latest_finalized_slot_number: 46, sync_status: Synced { synced_da_height: 46 }, .. } -2026-04-20T10:44:46.162027Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=31 -2026-04-20T10:44:46.173184Z DEBUG sov_stf_runner::runner: Block execution complete time=6.015336984s -2026-04-20T10:44:46.173214Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:44:46.173495Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:44:46.173600Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:44:46.738006Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ijqM7sKgR266tmHw-0W4uQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:44:46.751016Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:44:46.761929Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1853185 cycles -2026-04-20T10:44:46.764523Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [111, 181, 31, 15, 51, 0, 119, 55, 113, 49, 14, 143, 78, 192, 132, 41, 130, 37, 130, 218, 114, 100, 12, 138, 168, 138, 125, 179, 82, 91, 109, 137, 13, 106, 235, 119, 223, 255, 103, 196, 25, 28, 85, 137, 173, 125, 239, 201, 70, 149, 111, 75, 64, 243, 19, 80, 7, 89, 135, 131, 44, 208, 11, 107, 42, 70, 177, 228, 101, 64, 20, 211, 172, 15, 115, 71, 121, 14, 84, 194, 201, 113, 23, 26, 121, 63, 159, 59, 44, 51, 94, 14, 213, 196, 3, 33, 102, 94, 51, 67, 26, 60, 143, 131, 109, 16, 247, 157, 107, 139, 98, 135, 34, 241, 199, 97, 63, 254, 109, 215, 82, 142, 233, 194, 59, 26, 81, 9, 83, 234, 229, 237, 38, 161, 103, 82, 231, 212, 128, 63, 216, 138, 106, 139, 35, 127, 175, 128, 166, 2, 114, 106, 208, 167, 241, 189, 206, 171, 65, 123, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:44:46.855259Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:44:46.855295Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:44:46.880122Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:44:46.914879Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LMVH_Ob8SxCnHr8ZZjsAaA==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:44:46.917736Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LMVH_Ob8SxCnHr8ZZjsAaA==: stderr: -2026-04-20T10:44:46.917760Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LMVH_Ob8SxCnHr8ZZjsAaA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:44:46.917770Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LMVH_Ob8SxCnHr8ZZjsAaA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:44:46.917777Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LMVH_Ob8SxCnHr8ZZjsAaA==: stderr: stack backtrace: -2026-04-20T10:44:46.917783Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LMVH_Ob8SxCnHr8ZZjsAaA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:44:46.917790Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LMVH_Ob8SxCnHr8ZZjsAaA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:44:46.917842Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:44:46.918677Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:44:46.918967Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:44:46.989457Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:44:46.989504Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:44:46.989661Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:44:46.990252Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=70 blob_id=2147876606423184988364798458065027394 -2026-04-20T10:44:52.153809Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=48 prev_hash=0xe17c44ea55601149e9c95bc0f2a1e4a05f089ab0c8d31c26f6acc6ef57ff5a51 hash=0x1d0d79673fb6f46f71319148813618a534f6e6939ba18ee9ae0e828afb030fce producing_time=1.380721ms -2026-04-20T10:44:52.154275Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=48 current_state_root="0a5e6d3021c59e74dec5066f60bb44dcdfac6aff9caec46f46555da060db2690362b2b555a94f13782059b8d1b1afd2ba764ba282fd52eb4a050117e4d5a56aa" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x84da340ebc53c58bc2dfcda0cf149b37fd5825664d02e02246f92d8d78d35f4e, len=625"] -2026-04-20T10:44:52.154621Z DEBUG StfBlueprint::apply_slot{context=Node da_height=48}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0a5e6d3021c59e74dec5066f60bb44dcdfac6aff9caec46f46555da060db2690362b2b555a94f13782059b8d1b1afd2ba764ba282fd52eb4a050117e4d5a56aa next_version=48 sesssion_starting_time=47.14µs -2026-04-20T10:44:52.155490Z DEBUG StfBlueprint::apply_slot{context=Node da_height=48}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=0a5e6d3021c59e74dec5066f60bb44dcdfac6aff9caec46f46555da060db26904104c08b9703dd0855e5254c731c5dd008c5d794b6ba7ff50e37f10710d7b82b next_version=48 time=932.874µs accesses_build_time=15.96µs finishing_session_time=832.584µs -2026-04-20T10:44:52.155556Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="0b680e0e68d7c0b72ee5d0068a6bbde430d48fc52b1c85769a699b17fd41dabf626e519e67dd9529be5f61d91427c29cfc0626447bda9f51df6d65ea28f48862" next_state_root="0a5e6d3021c59e74dec5066f60bb44dcdfac6aff9caec46f46555da060db26904104c08b9703dd0855e5254c731c5dd008c5d794b6ba7ff50e37f10710d7b82b" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:44:52.156106Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 48, latest_finalized_slot_number: 47, sync_status: Synced { synced_da_height: 47 }, .. } -2026-04-20T10:44:52.156192Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=31 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 48, latest_finalized_slot_number: 47, sync_status: Synced { synced_da_height: 47 }, .. } -2026-04-20T10:44:52.156252Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=31 -2026-04-20T10:44:52.156471Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:44:52.156546Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=27 -2026-04-20T10:44:52.156635Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=43 -2026-04-20T10:44:52.156770Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:44:52.157065Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=43 sequence_number=71 -2026-04-20T10:44:52.157090Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=71 blob_id=2147876612670918641776904256505564020 visible_slot_number_after_increase=43 visible_slots_to_advance=2 -2026-04-20T10:44:52.157114Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:44:52.159122Z DEBUG manage_blob_submission_inside_task{blob_id=2147876612670918641776904256505564020 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x33c645d09a9de3ae63f11445fd0491f5b7bde9ac8c79dc795005a9d05ca45a38 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=49 include_at=49 bytes=13 time=657.016µs -2026-04-20T10:44:52.167257Z DEBUG compute_state_update{scope="sequencer" rollup_height=32 slot_number=43}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:44:52.167299Z DEBUG sov_stf_runner::runner: Block execution complete time=5.994086321s -2026-04-20T10:44:52.167384Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:44:52.167397Z DEBUG compute_state_update{scope="sequencer" rollup_height=32 slot_number=43}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0a5e6d3021c59e74dec5066f60bb44dcdfac6aff9caec46f46555da060db26904104c08b9703dd0855e5254c731c5dd008c5d794b6ba7ff50e37f10710d7b82b next_version=49 sesssion_starting_time=9.560958ms -2026-04-20T10:44:52.168108Z DEBUG compute_state_update{scope="sequencer" rollup_height=32 slot_number=43}: sov_state::nomt::prover_storage: computed next state root state_root=1a8cb905ab391d21b8b1c60f98e4df716f4188c676e875fa22b19a9fda628c762fea156993aa6e225afc97702eafe7638f793f7cda15fb36d0c5282540f10c02 next_version=49 time=10.294884ms accesses_build_time=21.12µs finishing_session_time=678.046µs -2026-04-20T10:44:58.155905Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=49 prev_hash=0x1d0d79673fb6f46f71319148813618a534f6e6939ba18ee9ae0e828afb030fce hash=0x68525f31c6b04071301af486c53e7184705e48c881ddfa96fafb2385141b72ca producing_time=1.350032ms -2026-04-20T10:44:58.159586Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=49 current_state_root="0a5e6d3021c59e74dec5066f60bb44dcdfac6aff9caec46f46555da060db26904104c08b9703dd0855e5254c731c5dd008c5d794b6ba7ff50e37f10710d7b82b" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x33c645d09a9de3ae63f11445fd0491f5b7bde9ac8c79dc795005a9d05ca45a38"] proof_blobs=[] -2026-04-20T10:44:58.159866Z DEBUG StfBlueprint::apply_slot{context=Node da_height=49}: sov_chain_state: Setting next visible slot number next_visible_slot_number=43 -2026-04-20T10:44:58.160116Z DEBUG StfBlueprint::apply_slot{context=Node da_height=49}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x33c645d09a9de3ae63f11445fd0491f5b7bde9ac8c79dc795005a9d05ca45a38}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:44:58.160329Z DEBUG StfBlueprint::apply_slot{context=Node da_height=49}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0a5e6d3021c59e74dec5066f60bb44dcdfac6aff9caec46f46555da060db26904104c08b9703dd0855e5254c731c5dd008c5d794b6ba7ff50e37f10710d7b82b next_version=49 sesssion_starting_time=48.85µs -2026-04-20T10:44:58.161311Z DEBUG StfBlueprint::apply_slot{context=Node da_height=49}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=1a8cb905ab391d21b8b1c60f98e4df716f4188c676e875fa22b19a9fda628c76673ff84dd993097af18287473aa1a127b6dca7b598c1a74424c67832c5eb0e40 next_version=49 time=1.084883ms accesses_build_time=35.889µs finishing_session_time=926.334µs -2026-04-20T10:44:58.161500Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="e4060e66178c4d73150db9d81c1c7f6669cecfddf114c2e12c20b2d5216fce3c" -2026-04-20T10:44:58.161521Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="dbaf976995298449d89a94619b55ba02cda13594b4e434cae73bba55cc2d6460" -2026-04-20T10:44:58.161533Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="84da340ebc53c58bc2dfcda0cf149b37fd5825664d02e02246f92d8d78d35f4e" -2026-04-20T10:44:58.161550Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="0a5e6d3021c59e74dec5066f60bb44dcdfac6aff9caec46f46555da060db2690362b2b555a94f13782059b8d1b1afd2ba764ba282fd52eb4a050117e4d5a56aa" next_state_root="1a8cb905ab391d21b8b1c60f98e4df716f4188c676e875fa22b19a9fda628c76673ff84dd993097af18287473aa1a127b6dca7b598c1a74424c67832c5eb0e40" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:44:58.162103Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 49, latest_finalized_slot_number: 48, sync_status: Synced { synced_da_height: 48 }, .. } -2026-04-20T10:44:58.162190Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=32 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 49, latest_finalized_slot_number: 48, sync_status: Synced { synced_da_height: 48 }, .. } -2026-04-20T10:44:58.162262Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=32 -2026-04-20T10:44:58.162511Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:44:58.162599Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=28 -2026-04-20T10:44:58.162691Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=44 -2026-04-20T10:44:58.162808Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:44:58.162988Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=44 sequence_number=72 -2026-04-20T10:44:58.163002Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=72 blob_id=2147876619930503430008225404911294253 visible_slot_number_after_increase=44 visible_slots_to_advance=1 -2026-04-20T10:44:58.163047Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:44:58.164897Z DEBUG manage_blob_submission_inside_task{blob_id=2147876619930503430008225404911294253 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x5c99f6b464a1abddbb82c5980061ca13112cfe375e809d61be4a1ba92d4e247c sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=50 include_at=50 bytes=13 time=712.665µs -2026-04-20T10:44:58.172216Z DEBUG compute_state_update{scope="sequencer" rollup_height=33 slot_number=44}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:44:58.172266Z DEBUG sov_stf_runner::runner: Block execution complete time=6.004884212s -2026-04-20T10:44:58.172292Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:44:58.172297Z DEBUG compute_state_update{scope="sequencer" rollup_height=33 slot_number=44}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1a8cb905ab391d21b8b1c60f98e4df716f4188c676e875fa22b19a9fda628c76673ff84dd993097af18287473aa1a127b6dca7b598c1a74424c67832c5eb0e40 next_version=50 sesssion_starting_time=8.715204ms -2026-04-20T10:44:58.172511Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:44:58.172609Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:44:58.172955Z DEBUG compute_state_update{scope="sequencer" rollup_height=33 slot_number=44}: sov_state::nomt::prover_storage: computed next state root state_root=612c97c71b3a584291e9af6321c79eaf2079cdc3a3671ebd8d3b427d9f3f60374261e565dbfc0e9b68e335795e1dd8cdaece2764c71b99278cc160648cc40557 next_version=50 time=9.38813ms accesses_build_time=13.95µs finishing_session_time=628.056µs -2026-04-20T10:44:58.733444Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8tnKIqwrS3-Bj-iMTdqIFA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:44:58.750074Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:44:58.761742Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2488207 cycles -2026-04-20T10:44:58.764435Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [50, 152, 194, 133, 230, 78, 39, 207, 232, 78, 115, 38, 209, 87, 237, 238, 12, 176, 248, 67, 67, 117, 205, 129, 206, 218, 200, 252, 251, 111, 24, 81, 5, 82, 98, 244, 64, 65, 115, 91, 40, 16, 166, 33, 79, 214, 206, 179, 111, 226, 154, 75, 207, 112, 139, 68, 3, 197, 200, 35, 79, 196, 103, 27, 54, 75, 225, 192, 5, 237, 45, 101, 129, 35, 119, 30, 31, 214, 135, 216, 162, 146, 73, 252, 89, 122, 207, 188, 220, 10, 134, 5, 196, 145, 240, 223, 4, 192, 176, 67, 136, 135, 123, 216, 157, 161, 254, 109, 126, 131, 45, 75, 211, 249, 7, 174, 246, 49, 229, 245, 103, 124, 79, 4, 147, 109, 243, 142, 229, 52, 49, 160, 195, 49, 231, 8, 118, 154, 242, 23, 17, 226, 254, 121, 27, 4, 216, 197, 96, 202, 10, 149, 18, 158, 133, 233, 255, 76, 172, 71, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:44:58.871332Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:44:58.871370Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:44:58.980576Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:44:59.014271Z DEBUG sp1_core_executor_runner::native: CHILD sp1_g8kAjys-TMWI4lgeA7OERw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:44:59.017090Z DEBUG sp1_core_executor_runner::native: CHILD sp1_g8kAjys-TMWI4lgeA7OERw==: stderr: -2026-04-20T10:44:59.017103Z DEBUG sp1_core_executor_runner::native: CHILD sp1_g8kAjys-TMWI4lgeA7OERw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:44:59.017112Z DEBUG sp1_core_executor_runner::native: CHILD sp1_g8kAjys-TMWI4lgeA7OERw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:44:59.017121Z DEBUG sp1_core_executor_runner::native: CHILD sp1_g8kAjys-TMWI4lgeA7OERw==: stderr: stack backtrace: -2026-04-20T10:44:59.017127Z DEBUG sp1_core_executor_runner::native: CHILD sp1_g8kAjys-TMWI4lgeA7OERw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:44:59.017133Z DEBUG sp1_core_executor_runner::native: CHILD sp1_g8kAjys-TMWI4lgeA7OERw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:44:59.017268Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:44:59.018059Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:44:59.018367Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:44:59.089490Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:44:59.089535Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:44:59.089716Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:44:59.089882Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:44:59.089950Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:44:59.090283Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=73 blob_id=2147876621051209596185795353832065574 -2026-04-20T10:44:59.648915Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0Fs1nXLIRDu2Fe2FXWyHxw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:44:59.655144Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:44:59.665188Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 954258 cycles -2026-04-20T10:44:59.667813Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [4, 106, 243, 59, 116, 118, 136, 148, 228, 16, 92, 198, 120, 103, 160, 119, 40, 120, 93, 223, 73, 100, 224, 62, 97, 25, 102, 7, 182, 144, 173, 176, 103, 196, 243, 241, 91, 58, 20, 158, 211, 111, 212, 194, 135, 12, 118, 30, 172, 54, 35, 26, 71, 199, 30, 76, 45, 136, 148, 125, 168, 26, 83, 90, 4, 106, 243, 59, 116, 118, 136, 148, 228, 16, 92, 198, 120, 103, 160, 119, 40, 120, 93, 223, 73, 100, 224, 62, 97, 25, 102, 7, 182, 144, 173, 176, 32, 250, 241, 120, 5, 193, 93, 122, 35, 209, 104, 224, 174, 34, 196, 82, 49, 45, 32, 82, 120, 133, 39, 86, 114, 60, 162, 226, 8, 185, 125, 167, 91, 2, 158, 79, 182, 116, 61, 154, 45, 54, 181, 228, 63, 210, 130, 189, 71, 136, 194, 151, 150, 59, 92, 198, 103, 133, 5, 122, 22, 201, 122, 85, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:44:59.721176Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:44:59.721218Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:44:59.798211Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:44:59.831678Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TdSsrtslRMiZxKy-2KORRQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:44:59.834517Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TdSsrtslRMiZxKy-2KORRQ==: stderr: -2026-04-20T10:44:59.834531Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TdSsrtslRMiZxKy-2KORRQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:44:59.834551Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TdSsrtslRMiZxKy-2KORRQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:44:59.834560Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TdSsrtslRMiZxKy-2KORRQ==: stderr: stack backtrace: -2026-04-20T10:44:59.834566Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TdSsrtslRMiZxKy-2KORRQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:44:59.834572Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TdSsrtslRMiZxKy-2KORRQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:44:59.834740Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:44:59.835496Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:44:59.835795Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:44:59.900033Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:44:59.900077Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:44:59.900297Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:44:59.901077Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=74 blob_id=2147876622031632206698646955910903930 -2026-04-20T10:45:04.158331Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=50 prev_hash=0x68525f31c6b04071301af486c53e7184705e48c881ddfa96fafb2385141b72ca hash=0x3e08234959add19507ff24caeef8217a378f2c137ba2a98ce1d786c657b3e797 producing_time=1.332371ms -2026-04-20T10:45:04.162972Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=50 current_state_root="1a8cb905ab391d21b8b1c60f98e4df716f4188c676e875fa22b19a9fda628c76673ff84dd993097af18287473aa1a127b6dca7b598c1a74424c67832c5eb0e40" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x5c99f6b464a1abddbb82c5980061ca13112cfe375e809d61be4a1ba92d4e247c"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xba5615ba123eb6f878a140cff867bb81f18acee1c6e90e653fb7a152ba4b12d8, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xfafa5a6928d0e40b127dd836edfb090db0012bf75047388457ae86cbb0770c06, len=625"] -2026-04-20T10:45:04.163201Z DEBUG StfBlueprint::apply_slot{context=Node da_height=50}: sov_chain_state: Setting next visible slot number next_visible_slot_number=44 -2026-04-20T10:45:04.163358Z DEBUG StfBlueprint::apply_slot{context=Node da_height=50}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x5c99f6b464a1abddbb82c5980061ca13112cfe375e809d61be4a1ba92d4e247c}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:45:04.163570Z DEBUG StfBlueprint::apply_slot{context=Node da_height=50}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1a8cb905ab391d21b8b1c60f98e4df716f4188c676e875fa22b19a9fda628c76673ff84dd993097af18287473aa1a127b6dca7b598c1a74424c67832c5eb0e40 next_version=50 sesssion_starting_time=48.009µs -2026-04-20T10:45:04.164474Z DEBUG StfBlueprint::apply_slot{context=Node da_height=50}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=612c97c71b3a584291e9af6321c79eaf2079cdc3a3671ebd8d3b427d9f3f60374114dc98fe83fe7e3b786ccb585971f1e04e8751b32269cb3e497e634503e794 next_version=50 time=985.994µs accesses_build_time=32µs finishing_session_time=873.365µs -2026-04-20T10:45:04.164661Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="0a5e6d3021c59e74dec5066f60bb44dcdfac6aff9caec46f46555da060db26904104c08b9703dd0855e5254c731c5dd008c5d794b6ba7ff50e37f10710d7b82b" next_state_root="612c97c71b3a584291e9af6321c79eaf2079cdc3a3671ebd8d3b427d9f3f60374114dc98fe83fe7e3b786ccb585971f1e04e8751b32269cb3e497e634503e794" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:45:04.165219Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 50, latest_finalized_slot_number: 49, sync_status: Synced { synced_da_height: 49 }, .. } -2026-04-20T10:45:04.165296Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=33 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 50, latest_finalized_slot_number: 49, sync_status: Synced { synced_da_height: 49 }, .. } -2026-04-20T10:45:04.165374Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=33 -2026-04-20T10:45:04.176396Z DEBUG sov_stf_runner::runner: Block execution complete time=6.004106017s -2026-04-20T10:45:04.176431Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:45:04.176586Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:45:04.176633Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:45:04.696770Z DEBUG sp1_core_executor_runner::native: CHILD sp1_f9rLmfxURIC9sdZXOZPmaw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:45:04.712098Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:45:04.722650Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2252890 cycles -2026-04-20T10:45:04.725401Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [4, 106, 243, 59, 116, 118, 136, 148, 228, 16, 92, 198, 120, 103, 160, 119, 40, 120, 93, 223, 73, 100, 224, 62, 97, 25, 102, 7, 182, 144, 173, 176, 83, 160, 70, 170, 183, 48, 69, 116, 21, 15, 95, 213, 231, 234, 116, 97, 53, 160, 235, 169, 46, 89, 157, 30, 69, 55, 30, 147, 196, 45, 113, 55, 48, 152, 134, 220, 249, 2, 151, 132, 4, 69, 92, 86, 128, 113, 19, 162, 162, 84, 24, 97, 223, 234, 71, 127, 6, 163, 193, 73, 81, 183, 254, 185, 111, 138, 222, 87, 3, 57, 178, 25, 52, 55, 111, 90, 40, 73, 183, 243, 91, 136, 186, 2, 244, 129, 100, 2, 118, 150, 220, 109, 179, 206, 137, 112, 49, 64, 122, 140, 138, 226, 239, 206, 77, 77, 42, 208, 88, 39, 123, 126, 110, 183, 77, 253, 232, 224, 102, 120, 175, 40, 166, 174, 56, 23, 191, 200, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:45:04.825738Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:45:04.825776Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:45:04.883838Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:45:04.919220Z DEBUG sp1_core_executor_runner::native: CHILD sp1_le7drIdOT5WzpmgELROCYg==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:45:04.922054Z DEBUG sp1_core_executor_runner::native: CHILD sp1_le7drIdOT5WzpmgELROCYg==: stderr: -2026-04-20T10:45:04.922080Z DEBUG sp1_core_executor_runner::native: CHILD sp1_le7drIdOT5WzpmgELROCYg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:45:04.922090Z DEBUG sp1_core_executor_runner::native: CHILD sp1_le7drIdOT5WzpmgELROCYg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:45:04.922097Z DEBUG sp1_core_executor_runner::native: CHILD sp1_le7drIdOT5WzpmgELROCYg==: stderr: stack backtrace: -2026-04-20T10:45:04.922103Z DEBUG sp1_core_executor_runner::native: CHILD sp1_le7drIdOT5WzpmgELROCYg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:45:04.922110Z DEBUG sp1_core_executor_runner::native: CHILD sp1_le7drIdOT5WzpmgELROCYg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:45:04.922213Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:45:04.923005Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:45:04.923354Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:45:04.972051Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:45:04.972094Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:45:04.972233Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:45:04.972761Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=75 blob_id=2147876628163346701781043953327670114 -2026-04-20T10:45:10.161236Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=51 prev_hash=0x3e08234959add19507ff24caeef8217a378f2c137ba2a98ce1d786c657b3e797 hash=0x028b9bbe48e3627e54663fd98f1e2ea9f8478d312d65952859750f7e042cec12 producing_time=1.409281ms -2026-04-20T10:45:10.168862Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=51 current_state_root="612c97c71b3a584291e9af6321c79eaf2079cdc3a3671ebd8d3b427d9f3f60374114dc98fe83fe7e3b786ccb585971f1e04e8751b32269cb3e497e634503e794" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0ee77ec5f13f4bb8f6b09dbcfa6fbaf9105d89bd8ca6714df304b2091c301366, len=625"] -2026-04-20T10:45:10.169183Z DEBUG StfBlueprint::apply_slot{context=Node da_height=51}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=612c97c71b3a584291e9af6321c79eaf2079cdc3a3671ebd8d3b427d9f3f60374114dc98fe83fe7e3b786ccb585971f1e04e8751b32269cb3e497e634503e794 next_version=51 sesssion_starting_time=46.88µs -2026-04-20T10:45:10.170002Z DEBUG StfBlueprint::apply_slot{context=Node da_height=51}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=612c97c71b3a584291e9af6321c79eaf2079cdc3a3671ebd8d3b427d9f3f60371fac656d60dd98f32e89f96a7e98da0547280815b5d59d14bed211c940335c7d next_version=51 time=881.955µs accesses_build_time=15.33µs finishing_session_time=786.384µs -2026-04-20T10:45:10.170074Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="1a8cb905ab391d21b8b1c60f98e4df716f4188c676e875fa22b19a9fda628c76673ff84dd993097af18287473aa1a127b6dca7b598c1a74424c67832c5eb0e40" next_state_root="612c97c71b3a584291e9af6321c79eaf2079cdc3a3671ebd8d3b427d9f3f60371fac656d60dd98f32e89f96a7e98da0547280815b5d59d14bed211c940335c7d" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:45:10.170645Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 51, latest_finalized_slot_number: 50, sync_status: Synced { synced_da_height: 50 }, .. } -2026-04-20T10:45:10.170754Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=33 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 51, latest_finalized_slot_number: 50, sync_status: Synced { synced_da_height: 50 }, .. } -2026-04-20T10:45:10.170814Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=33 -2026-04-20T10:45:10.171017Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:45:10.171074Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=29 -2026-04-20T10:45:10.171194Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=46 -2026-04-20T10:45:10.171344Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:45:10.171646Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=46 sequence_number=76 -2026-04-20T10:45:10.171675Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=76 blob_id=2147876634448521972604330219406738743 visible_slot_number_after_increase=46 visible_slots_to_advance=2 -2026-04-20T10:45:10.171693Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:45:10.173625Z DEBUG manage_blob_submission_inside_task{blob_id=2147876634448521972604330219406738743 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x8826ca51fc2a13ebcf5fc1c013c957a7c862736b44aa80d9767c7a500c3b9b95 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=52 include_at=52 bytes=13 time=768.635µs -2026-04-20T10:45:10.181339Z DEBUG compute_state_update{scope="sequencer" rollup_height=34 slot_number=46}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:45:10.181384Z DEBUG sov_stf_runner::runner: Block execution complete time=6.004954612s -2026-04-20T10:45:10.181404Z DEBUG compute_state_update{scope="sequencer" rollup_height=34 slot_number=46}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=612c97c71b3a584291e9af6321c79eaf2079cdc3a3671ebd8d3b427d9f3f60371fac656d60dd98f32e89f96a7e98da0547280815b5d59d14bed211c940335c7d next_version=52 sesssion_starting_time=9.28248ms -2026-04-20T10:45:10.181410Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:45:10.182155Z DEBUG compute_state_update{scope="sequencer" rollup_height=34 slot_number=46}: sov_state::nomt::prover_storage: computed next state root state_root=08e0e278b723d9fb4aee2e0718344406e95a929fb02842ac753774cc7c28e36d0f6d2cbe5bca48c8d60a3c82890a036251f5338532b5f288efdb19ad5f5ad700 next_version=52 time=10.048875ms accesses_build_time=14.23µs finishing_session_time=715.475µs -2026-04-20T10:45:16.163121Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=52 prev_hash=0x028b9bbe48e3627e54663fd98f1e2ea9f8478d312d65952859750f7e042cec12 hash=0xbb498565698f465a1157d4b40b420cef7d7686e8967d43fcfd765fd2be05fc16 producing_time=1.421771ms -2026-04-20T10:45:16.163663Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=52 current_state_root="612c97c71b3a584291e9af6321c79eaf2079cdc3a3671ebd8d3b427d9f3f60371fac656d60dd98f32e89f96a7e98da0547280815b5d59d14bed211c940335c7d" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x8826ca51fc2a13ebcf5fc1c013c957a7c862736b44aa80d9767c7a500c3b9b95"] proof_blobs=[] -2026-04-20T10:45:16.163938Z DEBUG StfBlueprint::apply_slot{context=Node da_height=52}: sov_chain_state: Setting next visible slot number next_visible_slot_number=46 -2026-04-20T10:45:16.164191Z DEBUG StfBlueprint::apply_slot{context=Node da_height=52}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x8826ca51fc2a13ebcf5fc1c013c957a7c862736b44aa80d9767c7a500c3b9b95}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:45:16.164401Z DEBUG StfBlueprint::apply_slot{context=Node da_height=52}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=612c97c71b3a584291e9af6321c79eaf2079cdc3a3671ebd8d3b427d9f3f60371fac656d60dd98f32e89f96a7e98da0547280815b5d59d14bed211c940335c7d next_version=52 sesssion_starting_time=48µs -2026-04-20T10:45:16.165436Z DEBUG StfBlueprint::apply_slot{context=Node da_height=52}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=08e0e278b723d9fb4aee2e0718344406e95a929fb02842ac753774cc7c28e36d24b4af5427b65c8dc6c3ba67f70195ec90c04caf7266c2fd7fd115a4d2b7d0ee next_version=52 time=1.143893ms accesses_build_time=59.19µs finishing_session_time=1.002213ms -2026-04-20T10:45:16.165618Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ba5615ba123eb6f878a140cff867bb81f18acee1c6e90e653fb7a152ba4b12d8" -2026-04-20T10:45:16.165634Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="fafa5a6928d0e40b127dd836edfb090db0012bf75047388457ae86cbb0770c06" -2026-04-20T10:45:16.165643Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="0ee77ec5f13f4bb8f6b09dbcfa6fbaf9105d89bd8ca6714df304b2091c301366" -2026-04-20T10:45:16.165655Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="612c97c71b3a584291e9af6321c79eaf2079cdc3a3671ebd8d3b427d9f3f60374114dc98fe83fe7e3b786ccb585971f1e04e8751b32269cb3e497e634503e794" next_state_root="08e0e278b723d9fb4aee2e0718344406e95a929fb02842ac753774cc7c28e36d24b4af5427b65c8dc6c3ba67f70195ec90c04caf7266c2fd7fd115a4d2b7d0ee" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:45:16.166229Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 52, latest_finalized_slot_number: 51, sync_status: Synced { synced_da_height: 51 }, .. } -2026-04-20T10:45:16.166331Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=34 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 52, latest_finalized_slot_number: 51, sync_status: Synced { synced_da_height: 51 }, .. } -2026-04-20T10:45:16.166415Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=34 -2026-04-20T10:45:16.166658Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:45:16.166733Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=30 -2026-04-20T10:45:16.166843Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=47 -2026-04-20T10:45:16.166989Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:45:16.167148Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=47 sequence_number=77 -2026-04-20T10:45:16.167172Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=77 blob_id=2147876641697247639194756988899506539 visible_slot_number_after_increase=47 visible_slots_to_advance=1 -2026-04-20T10:45:16.167217Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:45:16.169142Z DEBUG manage_blob_submission_inside_task{blob_id=2147876641697247639194756988899506539 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xbd97a0f7fcea17eddc07732d8e8a94295159ac6b10d9c66d29001be51b872de3 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=53 include_at=53 bytes=13 time=706.965µs -2026-04-20T10:45:16.172681Z DEBUG compute_state_update{scope="sequencer" rollup_height=35 slot_number=47}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:45:16.172711Z DEBUG sov_stf_runner::runner: Block execution complete time=5.99130252s -2026-04-20T10:45:16.172745Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:45:16.172773Z DEBUG compute_state_update{scope="sequencer" rollup_height=35 slot_number=47}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=08e0e278b723d9fb4aee2e0718344406e95a929fb02842ac753774cc7c28e36d24b4af5427b65c8dc6c3ba67f70195ec90c04caf7266c2fd7fd115a4d2b7d0ee next_version=53 sesssion_starting_time=5.042148ms -2026-04-20T10:45:16.172991Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:45:16.173070Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:45:16.173376Z DEBUG compute_state_update{scope="sequencer" rollup_height=35 slot_number=47}: sov_state::nomt::prover_storage: computed next state root state_root=0b76eaf047e8a2ef3abee4e236d8b10a1b180657eca6e81063778fbcd1f549c035885d9c406436a2bbde8443f4c3d2957bacda87b4ab20a051b41677d7d79d3e next_version=53 time=5.659444ms accesses_build_time=12.85µs finishing_session_time=578.367µs -2026-04-20T10:45:16.731866Z DEBUG sp1_core_executor_runner::native: CHILD sp1_WDXuTq8tTJGqO65KOzlEzw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:45:16.744501Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:45:16.755663Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1776688 cycles -2026-04-20T10:45:16.758398Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [33, 20, 139, 161, 36, 21, 118, 27, 149, 5, 202, 170, 178, 225, 74, 237, 39, 85, 10, 212, 210, 238, 70, 142, 184, 129, 130, 17, 44, 175, 110, 128, 65, 230, 150, 157, 137, 251, 236, 15, 39, 17, 100, 46, 228, 220, 6, 82, 37, 209, 211, 218, 37, 148, 131, 178, 220, 114, 248, 39, 169, 242, 144, 208, 123, 76, 255, 201, 77, 91, 226, 97, 247, 136, 240, 2, 56, 245, 154, 146, 96, 6, 120, 109, 60, 129, 38, 51, 223, 18, 242, 199, 182, 79, 90, 89, 87, 202, 44, 170, 175, 43, 32, 162, 240, 100, 138, 190, 26, 242, 151, 80, 43, 142, 132, 103, 73, 125, 241, 49, 204, 234, 62, 240, 177, 207, 49, 5, 126, 17, 186, 74, 77, 82, 88, 16, 137, 38, 5, 186, 69, 90, 154, 195, 81, 106, 251, 154, 18, 1, 167, 194, 150, 112, 25, 252, 26, 205, 14, 15, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:45:16.844982Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:45:16.845021Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:45:16.881519Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:45:16.914980Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3MrRkSNVRt6PWFK09B9vqw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:45:16.917829Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3MrRkSNVRt6PWFK09B9vqw==: stderr: -2026-04-20T10:45:16.917844Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3MrRkSNVRt6PWFK09B9vqw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:45:16.917852Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3MrRkSNVRt6PWFK09B9vqw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:45:16.917860Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3MrRkSNVRt6PWFK09B9vqw==: stderr: stack backtrace: -2026-04-20T10:45:16.917866Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3MrRkSNVRt6PWFK09B9vqw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:45:16.917872Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3MrRkSNVRt6PWFK09B9vqw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:45:16.917975Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:45:16.918768Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:45:16.919062Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:45:16.989419Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:45:16.989466Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:45:16.989659Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:45:16.989814Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:45:16.989885Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:45:16.990266Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=78 blob_id=2147876642690982320464803790280042788 -2026-04-20T10:45:17.549544Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XQRGjEXJSAO8487-97q-SQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:45:17.556067Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:45:17.566274Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 985615 cycles -2026-04-20T10:45:17.569128Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [105, 128, 187, 132, 20, 189, 175, 56, 156, 147, 56, 139, 88, 43, 61, 70, 59, 33, 81, 243, 93, 209, 254, 176, 175, 196, 47, 96, 132, 254, 98, 138, 78, 23, 126, 52, 205, 0, 250, 138, 209, 41, 62, 67, 145, 118, 55, 77, 59, 9, 242, 247, 241, 116, 0, 140, 101, 233, 67, 251, 201, 49, 183, 138, 105, 128, 187, 132, 20, 189, 175, 56, 156, 147, 56, 139, 88, 43, 61, 70, 59, 33, 81, 243, 93, 209, 254, 176, 175, 196, 47, 96, 132, 254, 98, 138, 93, 99, 154, 148, 128, 253, 37, 231, 127, 88, 103, 123, 13, 130, 42, 240, 211, 47, 89, 38, 48, 94, 121, 179, 177, 50, 24, 35, 158, 173, 164, 251, 247, 111, 137, 183, 244, 235, 39, 207, 183, 251, 81, 159, 202, 94, 51, 141, 175, 224, 226, 237, 103, 156, 80, 120, 84, 201, 157, 27, 73, 113, 217, 139, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:45:17.623790Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:45:17.623833Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:45:17.699211Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:45:17.732796Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kvAr7n4cTzC7_tj2D3KDvw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:45:17.735674Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kvAr7n4cTzC7_tj2D3KDvw==: stderr: -2026-04-20T10:45:17.735686Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kvAr7n4cTzC7_tj2D3KDvw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:45:17.735693Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kvAr7n4cTzC7_tj2D3KDvw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:45:17.735701Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kvAr7n4cTzC7_tj2D3KDvw==: stderr: stack backtrace: -2026-04-20T10:45:17.735719Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kvAr7n4cTzC7_tj2D3KDvw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:45:17.735726Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kvAr7n4cTzC7_tj2D3KDvw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:45:17.735868Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:45:17.736593Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:45:17.736882Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:45:17.804054Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:45:17.804098Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:45:17.804276Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:45:17.804875Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=79 blob_id=2147876643676231167377445917596237303 -2026-04-20T10:45:22.165380Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=53 prev_hash=0xbb498565698f465a1157d4b40b420cef7d7686e8967d43fcfd765fd2be05fc16 hash=0x283601a04be1fc77b5e9dd039d1adf4f482e017be9f3e3200c59f6197e38bdd4 producing_time=1.64846ms -2026-04-20T10:45:22.173997Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=53 current_state_root="08e0e278b723d9fb4aee2e0718344406e95a929fb02842ac753774cc7c28e36d24b4af5427b65c8dc6c3ba67f70195ec90c04caf7266c2fd7fd115a4d2b7d0ee" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xbd97a0f7fcea17eddc07732d8e8a94295159ac6b10d9c66d29001be51b872de3"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x58bba7c7b9d37287656131bef785ea33100555bd4a72c2a5d7993fafa72ffb87, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x07e002d7abf57a8cd19522cd5c4fac0d6bb9c8ee9b0a67c83ef605a7d7fcf184, len=625"] -2026-04-20T10:45:22.174235Z DEBUG StfBlueprint::apply_slot{context=Node da_height=53}: sov_chain_state: Setting next visible slot number next_visible_slot_number=47 -2026-04-20T10:45:22.174386Z DEBUG StfBlueprint::apply_slot{context=Node da_height=53}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xbd97a0f7fcea17eddc07732d8e8a94295159ac6b10d9c66d29001be51b872de3}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:45:22.174591Z DEBUG StfBlueprint::apply_slot{context=Node da_height=53}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=08e0e278b723d9fb4aee2e0718344406e95a929fb02842ac753774cc7c28e36d24b4af5427b65c8dc6c3ba67f70195ec90c04caf7266c2fd7fd115a4d2b7d0ee next_version=53 sesssion_starting_time=46.99µs -2026-04-20T10:45:22.175872Z DEBUG StfBlueprint::apply_slot{context=Node da_height=53}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=0b76eaf047e8a2ef3abee4e236d8b10a1b180657eca6e81063778fbcd1f549c003f7b4a388a2f3e2318645aa57c3c3c210edc99a450b97c17787ff9062f9af6c next_version=53 time=1.360351ms accesses_build_time=31.529µs finishing_session_time=1.257112ms -2026-04-20T10:45:22.176044Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="612c97c71b3a584291e9af6321c79eaf2079cdc3a3671ebd8d3b427d9f3f60371fac656d60dd98f32e89f96a7e98da0547280815b5d59d14bed211c940335c7d" next_state_root="0b76eaf047e8a2ef3abee4e236d8b10a1b180657eca6e81063778fbcd1f549c003f7b4a388a2f3e2318645aa57c3c3c210edc99a450b97c17787ff9062f9af6c" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:45:22.176590Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 53, latest_finalized_slot_number: 52, sync_status: Synced { synced_da_height: 52 }, .. } -2026-04-20T10:45:22.176679Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=35 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 53, latest_finalized_slot_number: 52, sync_status: Synced { synced_da_height: 52 }, .. } -2026-04-20T10:45:22.176740Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=35 -2026-04-20T10:45:22.187629Z DEBUG sov_stf_runner::runner: Block execution complete time=6.014885688s -2026-04-20T10:45:22.187655Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:45:22.187864Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:45:22.187911Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:45:22.747686Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tDmh73XiRQas4-oNCto-UQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:45:22.763660Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:45:22.774641Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2325106 cycles -2026-04-20T10:45:22.777226Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [105, 128, 187, 132, 20, 189, 175, 56, 156, 147, 56, 139, 88, 43, 61, 70, 59, 33, 81, 243, 93, 209, 254, 176, 175, 196, 47, 96, 132, 254, 98, 138, 95, 221, 57, 176, 63, 119, 243, 185, 247, 49, 20, 110, 23, 218, 157, 95, 105, 93, 23, 26, 249, 203, 240, 108, 224, 33, 99, 47, 29, 25, 173, 47, 126, 95, 218, 98, 250, 56, 236, 119, 185, 77, 133, 226, 118, 36, 86, 40, 79, 74, 100, 252, 155, 181, 120, 185, 139, 3, 158, 233, 116, 198, 172, 2, 124, 173, 66, 37, 11, 102, 47, 94, 124, 165, 211, 112, 232, 10, 2, 58, 10, 172, 162, 29, 58, 157, 198, 242, 49, 56, 210, 196, 241, 122, 107, 137, 82, 183, 176, 71, 139, 244, 145, 64, 12, 155, 197, 163, 99, 193, 221, 225, 254, 147, 189, 255, 204, 189, 241, 35, 172, 233, 45, 179, 99, 133, 217, 142, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:45:22.880573Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:45:22.880611Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:45:22.894965Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:45:22.931200Z DEBUG sp1_core_executor_runner::native: CHILD sp1_d6GcDi-GQX-rMzydVEJzNw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:45:22.934110Z DEBUG sp1_core_executor_runner::native: CHILD sp1_d6GcDi-GQX-rMzydVEJzNw==: stderr: -2026-04-20T10:45:22.934136Z DEBUG sp1_core_executor_runner::native: CHILD sp1_d6GcDi-GQX-rMzydVEJzNw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:45:22.934147Z DEBUG sp1_core_executor_runner::native: CHILD sp1_d6GcDi-GQX-rMzydVEJzNw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:45:22.934158Z DEBUG sp1_core_executor_runner::native: CHILD sp1_d6GcDi-GQX-rMzydVEJzNw==: stderr: stack backtrace: -2026-04-20T10:45:22.934166Z DEBUG sp1_core_executor_runner::native: CHILD sp1_d6GcDi-GQX-rMzydVEJzNw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:45:22.934174Z DEBUG sp1_core_executor_runner::native: CHILD sp1_d6GcDi-GQX-rMzydVEJzNw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:45:22.934205Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:45:22.935086Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:45:22.935387Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:45:22.961810Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:45:22.961848Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:45:22.962016Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:45:22.962515Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=80 blob_id=2147876649911908659440514176031823548 -2026-04-20T10:45:28.168552Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=54 prev_hash=0x283601a04be1fc77b5e9dd039d1adf4f482e017be9f3e3200c59f6197e38bdd4 hash=0x72e3b013151affe53e665698da55f8ee02bddd53b7859d8ecae81bcbec5b1815 producing_time=1.438501ms -2026-04-20T10:45:28.169142Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=54 current_state_root="0b76eaf047e8a2ef3abee4e236d8b10a1b180657eca6e81063778fbcd1f549c003f7b4a388a2f3e2318645aa57c3c3c210edc99a450b97c17787ff9062f9af6c" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x5b2cf731ae1846e502030397daa4e48915918fc637ba6eddfcdf36dd61b9f6bd, len=625"] -2026-04-20T10:45:28.169495Z DEBUG StfBlueprint::apply_slot{context=Node da_height=54}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0b76eaf047e8a2ef3abee4e236d8b10a1b180657eca6e81063778fbcd1f549c003f7b4a388a2f3e2318645aa57c3c3c210edc99a450b97c17787ff9062f9af6c next_version=54 sesssion_starting_time=59.499µs -2026-04-20T10:45:28.170238Z DEBUG StfBlueprint::apply_slot{context=Node da_height=54}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=0b76eaf047e8a2ef3abee4e236d8b10a1b180657eca6e81063778fbcd1f549c04573fc0e7f710945cba5e99415c9f411d0b7e53837e7c434815d0d72c1678aff next_version=54 time=822.055µs accesses_build_time=18.31µs finishing_session_time=696.626µs -2026-04-20T10:45:28.170327Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="08e0e278b723d9fb4aee2e0718344406e95a929fb02842ac753774cc7c28e36d24b4af5427b65c8dc6c3ba67f70195ec90c04caf7266c2fd7fd115a4d2b7d0ee" next_state_root="0b76eaf047e8a2ef3abee4e236d8b10a1b180657eca6e81063778fbcd1f549c04573fc0e7f710945cba5e99415c9f411d0b7e53837e7c434815d0d72c1678aff" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:45:28.170868Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 54, latest_finalized_slot_number: 53, sync_status: Synced { synced_da_height: 53 }, .. } -2026-04-20T10:45:28.170968Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=35 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 54, latest_finalized_slot_number: 53, sync_status: Synced { synced_da_height: 53 }, .. } -2026-04-20T10:45:28.171051Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=35 -2026-04-20T10:45:28.171270Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:45:28.171350Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=31 -2026-04-20T10:45:28.171440Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=49 -2026-04-20T10:45:28.171564Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:45:28.171852Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=49 sequence_number=81 -2026-04-20T10:45:28.171875Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=81 blob_id=2147876656209194989401264620989989599 visible_slot_number_after_increase=49 visible_slots_to_advance=2 -2026-04-20T10:45:28.171913Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:45:28.173784Z DEBUG manage_blob_submission_inside_task{blob_id=2147876656209194989401264620989989599 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x453fb606bcfcd8f13a0531540b71ed1befbf6903fc4b19d031286ee291a87e86 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=55 include_at=55 bytes=13 time=749.375µs -2026-04-20T10:45:28.185555Z DEBUG compute_state_update{scope="sequencer" rollup_height=36 slot_number=49}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:45:28.185595Z DEBUG sov_stf_runner::runner: Block execution complete time=5.997941477s -2026-04-20T10:45:28.185620Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:45:28.185635Z DEBUG compute_state_update{scope="sequencer" rollup_height=36 slot_number=49}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0b76eaf047e8a2ef3abee4e236d8b10a1b180657eca6e81063778fbcd1f549c04573fc0e7f710945cba5e99415c9f411d0b7e53837e7c434815d0d72c1678aff next_version=55 sesssion_starting_time=13.293574ms -2026-04-20T10:45:28.186375Z DEBUG compute_state_update{scope="sequencer" rollup_height=36 slot_number=49}: sov_state::nomt::prover_storage: computed next state root state_root=06db764725b03603c9475f7903eda5dd5d6c93b753feb1633266da3c1f20db385e9bfe97b38ab84b38fd47ee2fe4adc4a1c88c5f857cce186a8f4490a282eadc next_version=55 time=14.06478ms accesses_build_time=29.93µs finishing_session_time=703.015µs -2026-04-20T10:45:34.170681Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=55 prev_hash=0x72e3b013151affe53e665698da55f8ee02bddd53b7859d8ecae81bcbec5b1815 hash=0xc4e9b9862d8b66342f9b09b766e7d2075df4e39a578deb52e9c9e54657d0ca5e producing_time=1.195953ms -2026-04-20T10:45:34.177165Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=55 current_state_root="0b76eaf047e8a2ef3abee4e236d8b10a1b180657eca6e81063778fbcd1f549c04573fc0e7f710945cba5e99415c9f411d0b7e53837e7c434815d0d72c1678aff" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x453fb606bcfcd8f13a0531540b71ed1befbf6903fc4b19d031286ee291a87e86"] proof_blobs=[] -2026-04-20T10:45:34.177333Z DEBUG StfBlueprint::apply_slot{context=Node da_height=55}: sov_chain_state: Setting next visible slot number next_visible_slot_number=49 -2026-04-20T10:45:34.177458Z DEBUG StfBlueprint::apply_slot{context=Node da_height=55}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x453fb606bcfcd8f13a0531540b71ed1befbf6903fc4b19d031286ee291a87e86}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:45:34.177548Z DEBUG StfBlueprint::apply_slot{context=Node da_height=55}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0b76eaf047e8a2ef3abee4e236d8b10a1b180657eca6e81063778fbcd1f549c04573fc0e7f710945cba5e99415c9f411d0b7e53837e7c434815d0d72c1678aff next_version=55 sesssion_starting_time=25.18µs -2026-04-20T10:45:34.178332Z DEBUG StfBlueprint::apply_slot{context=Node da_height=55}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=06db764725b03603c9475f7903eda5dd5d6c93b753feb1633266da3c1f20db383c12e6ba2f076def25c69bed8e9daefcb8c38c62fc868a1a2360678a2974e96a next_version=55 time=826.215µs accesses_build_time=16.24µs finishing_session_time=771.085µs -2026-04-20T10:45:34.178416Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="58bba7c7b9d37287656131bef785ea33100555bd4a72c2a5d7993fafa72ffb87" -2026-04-20T10:45:34.178425Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="07e002d7abf57a8cd19522cd5c4fac0d6bb9c8ee9b0a67c83ef605a7d7fcf184" -2026-04-20T10:45:34.178429Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="5b2cf731ae1846e502030397daa4e48915918fc637ba6eddfcdf36dd61b9f6bd" -2026-04-20T10:45:34.178434Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="0b76eaf047e8a2ef3abee4e236d8b10a1b180657eca6e81063778fbcd1f549c003f7b4a388a2f3e2318645aa57c3c3c210edc99a450b97c17787ff9062f9af6c" next_state_root="06db764725b03603c9475f7903eda5dd5d6c93b753feb1633266da3c1f20db383c12e6ba2f076def25c69bed8e9daefcb8c38c62fc868a1a2360678a2974e96a" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:45:34.178770Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 55, latest_finalized_slot_number: 54, sync_status: Synced { synced_da_height: 54 }, .. } -2026-04-20T10:45:34.178842Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=36 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 55, latest_finalized_slot_number: 54, sync_status: Synced { synced_da_height: 54 }, .. } -2026-04-20T10:45:34.178900Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=36 -2026-04-20T10:45:34.179100Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:45:34.179154Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=32 -2026-04-20T10:45:34.179238Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=50 -2026-04-20T10:45:34.179358Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:45:34.179505Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=50 sequence_number=82 -2026-04-20T10:45:34.179512Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=82 blob_id=2147876663472438724231118264490831384 visible_slot_number_after_increase=50 visible_slots_to_advance=1 -2026-04-20T10:45:34.179551Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:45:34.181475Z DEBUG manage_blob_submission_inside_task{blob_id=2147876663472438724231118264490831384 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x8b5163356f98273cae0150d630f8ea3e5ba7414423160e4ae0126de05aac4790 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=56 include_at=56 bytes=13 time=789.675µs -2026-04-20T10:45:34.188526Z DEBUG compute_state_update{scope="sequencer" rollup_height=37 slot_number=50}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:45:34.188587Z DEBUG sov_stf_runner::runner: Block execution complete time=6.002967766s -2026-04-20T10:45:34.188610Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:45:34.188607Z DEBUG compute_state_update{scope="sequencer" rollup_height=37 slot_number=50}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=06db764725b03603c9475f7903eda5dd5d6c93b753feb1633266da3c1f20db383c12e6ba2f076def25c69bed8e9daefcb8c38c62fc868a1a2360678a2974e96a next_version=56 sesssion_starting_time=8.696474ms -2026-04-20T10:45:34.188780Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:45:34.188831Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:45:34.189214Z DEBUG compute_state_update{scope="sequencer" rollup_height=37 slot_number=50}: sov_state::nomt::prover_storage: computed next state root state_root=2eb9c280a4ade04e22cbcb80a75b435d7634643901faa2b11ec1f807bd59769a20a06ee789395660e22ea18e3729aa0e81bddbe063a3e43ce8ecbc27e620a6f0 next_version=56 time=9.31668ms accesses_build_time=12.27µs finishing_session_time=583.626µs -2026-04-20T10:45:34.747664Z DEBUG sp1_core_executor_runner::native: CHILD sp1_USQ07QGPTCuGZWWNHScznQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:45:34.760199Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:45:34.771754Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1769391 cycles -2026-04-20T10:45:34.774492Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [11, 104, 14, 14, 104, 215, 192, 183, 46, 229, 208, 6, 138, 107, 189, 228, 48, 212, 143, 197, 43, 28, 133, 118, 154, 105, 155, 23, 253, 65, 218, 191, 98, 110, 81, 158, 103, 221, 149, 41, 190, 95, 97, 217, 20, 39, 194, 156, 252, 6, 38, 68, 123, 218, 159, 81, 223, 109, 101, 234, 40, 244, 136, 98, 22, 75, 64, 81, 122, 143, 161, 177, 14, 25, 247, 100, 58, 207, 178, 77, 62, 246, 30, 152, 51, 184, 162, 142, 58, 182, 21, 190, 34, 222, 253, 98, 114, 212, 121, 10, 166, 158, 77, 109, 109, 89, 227, 137, 177, 165, 217, 194, 115, 12, 152, 255, 202, 185, 143, 230, 41, 33, 191, 205, 249, 26, 151, 190, 225, 124, 68, 234, 85, 96, 17, 73, 233, 201, 91, 192, 242, 161, 228, 160, 95, 8, 154, 176, 200, 211, 28, 38, 246, 172, 198, 239, 87, 255, 90, 81, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:45:34.861672Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:45:34.861709Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:45:34.895663Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:45:34.929512Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VthqNDVmTUSBJ0A3fI8lLg==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:45:34.932381Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VthqNDVmTUSBJ0A3fI8lLg==: stderr: -2026-04-20T10:45:34.932405Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VthqNDVmTUSBJ0A3fI8lLg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:45:34.932415Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VthqNDVmTUSBJ0A3fI8lLg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:45:34.932422Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VthqNDVmTUSBJ0A3fI8lLg==: stderr: stack backtrace: -2026-04-20T10:45:34.932428Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VthqNDVmTUSBJ0A3fI8lLg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:45:34.932436Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VthqNDVmTUSBJ0A3fI8lLg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:45:34.932540Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:45:34.933363Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:45:34.933655Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:45:35.001363Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:45:35.001411Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:45:35.001590Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:45:35.001763Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:45:35.001832Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:45:35.002127Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=83 blob_id=2147876664466176596531181041332023649 -2026-04-20T10:45:35.561122Z DEBUG sp1_core_executor_runner::native: CHILD sp1_exiHfpx9RbuRr2iLGra_AA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:45:35.567038Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:45:35.577003Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 916069 cycles -2026-04-20T10:45:35.579734Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [10, 94, 109, 48, 33, 197, 158, 116, 222, 197, 6, 111, 96, 187, 68, 220, 223, 172, 106, 255, 156, 174, 196, 111, 70, 85, 93, 160, 96, 219, 38, 144, 54, 43, 43, 85, 90, 148, 241, 55, 130, 5, 155, 141, 27, 26, 253, 43, 167, 100, 186, 40, 47, 213, 46, 180, 160, 80, 17, 126, 77, 90, 86, 170, 10, 94, 109, 48, 33, 197, 158, 116, 222, 197, 6, 111, 96, 187, 68, 220, 223, 172, 106, 255, 156, 174, 196, 111, 70, 85, 93, 160, 96, 219, 38, 144, 10, 117, 71, 87, 94, 76, 15, 130, 233, 171, 92, 101, 139, 227, 176, 69, 124, 4, 40, 172, 12, 230, 139, 150, 132, 210, 92, 92, 171, 204, 232, 181, 29, 13, 121, 103, 63, 182, 244, 111, 113, 49, 145, 72, 129, 54, 24, 165, 52, 246, 230, 147, 155, 161, 142, 233, 174, 14, 130, 138, 251, 3, 15, 206, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:45:35.631323Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:45:35.631366Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:45:35.709548Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:45:35.744146Z DEBUG sp1_core_executor_runner::native: CHILD sp1_KVtlUFgoQhCtrVAXn6y76g==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:45:35.746996Z DEBUG sp1_core_executor_runner::native: CHILD sp1_KVtlUFgoQhCtrVAXn6y76g==: stderr: -2026-04-20T10:45:35.747020Z DEBUG sp1_core_executor_runner::native: CHILD sp1_KVtlUFgoQhCtrVAXn6y76g==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:45:35.747030Z DEBUG sp1_core_executor_runner::native: CHILD sp1_KVtlUFgoQhCtrVAXn6y76g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:45:35.747037Z DEBUG sp1_core_executor_runner::native: CHILD sp1_KVtlUFgoQhCtrVAXn6y76g==: stderr: stack backtrace: -2026-04-20T10:45:35.747044Z DEBUG sp1_core_executor_runner::native: CHILD sp1_KVtlUFgoQhCtrVAXn6y76g==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:45:35.747065Z DEBUG sp1_core_executor_runner::native: CHILD sp1_KVtlUFgoQhCtrVAXn6y76g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:45:35.747173Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:45:35.747919Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:45:35.748211Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:45:35.815434Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:45:35.815475Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:45:35.815655Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:45:35.816255Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=84 blob_id=2147876665450199122565433203419499538 -2026-04-20T10:45:40.173265Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=56 prev_hash=0xc4e9b9862d8b66342f9b09b766e7d2075df4e39a578deb52e9c9e54657d0ca5e hash=0xc28663c3bebbb8f61831c74e6e996b4ca9ebde9da7337ab6cb30a1e90436dd25 producing_time=1.52697ms -2026-04-20T10:45:40.180867Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=56 current_state_root="06db764725b03603c9475f7903eda5dd5d6c93b753feb1633266da3c1f20db383c12e6ba2f076def25c69bed8e9daefcb8c38c62fc868a1a2360678a2974e96a" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x8b5163356f98273cae0150d630f8ea3e5ba7414423160e4ae0126de05aac4790"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa102760ed8a6f1f1321e7f9c09f02159351430a1f0ce358efec00000fcf5edff, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa8805c98d79ea5efaab6bbfdcd27e6eaec0f8349c50463a3599acf6adace5abb, len=625"] -2026-04-20T10:45:40.181086Z DEBUG StfBlueprint::apply_slot{context=Node da_height=56}: sov_chain_state: Setting next visible slot number next_visible_slot_number=50 -2026-04-20T10:45:40.181225Z DEBUG StfBlueprint::apply_slot{context=Node da_height=56}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x8b5163356f98273cae0150d630f8ea3e5ba7414423160e4ae0126de05aac4790}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:45:40.181436Z DEBUG StfBlueprint::apply_slot{context=Node da_height=56}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=06db764725b03603c9475f7903eda5dd5d6c93b753feb1633266da3c1f20db383c12e6ba2f076def25c69bed8e9daefcb8c38c62fc868a1a2360678a2974e96a next_version=56 sesssion_starting_time=47.11µs -2026-04-20T10:45:40.182399Z DEBUG StfBlueprint::apply_slot{context=Node da_height=56}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2eb9c280a4ade04e22cbcb80a75b435d7634643901faa2b11ec1f807bd59769a5030474aebf4726c7a4cb7627b50fff9db01d6f19c318aea87250332b26e5245 next_version=56 time=1.041433ms accesses_build_time=30.649µs finishing_session_time=932.924µs -2026-04-20T10:45:40.182592Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="0b76eaf047e8a2ef3abee4e236d8b10a1b180657eca6e81063778fbcd1f549c04573fc0e7f710945cba5e99415c9f411d0b7e53837e7c434815d0d72c1678aff" next_state_root="2eb9c280a4ade04e22cbcb80a75b435d7634643901faa2b11ec1f807bd59769a5030474aebf4726c7a4cb7627b50fff9db01d6f19c318aea87250332b26e5245" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:45:40.183102Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 56, latest_finalized_slot_number: 56, sync_status: Synced { synced_da_height: 55 }, .. } -2026-04-20T10:45:40.183178Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=37 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 56, latest_finalized_slot_number: 56, sync_status: Synced { synced_da_height: 55 }, .. } -2026-04-20T10:45:40.183238Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=37 -2026-04-20T10:45:40.203151Z DEBUG sov_stf_runner::runner: Block execution complete time=6.014543051s -2026-04-20T10:45:40.203189Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:45:40.203435Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:45:40.203527Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:45:40.761802Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vyXL_gomS6u1MfadZmCwjg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:45:40.777739Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:45:40.789194Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2396615 cycles -2026-04-20T10:45:40.791720Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [10, 94, 109, 48, 33, 197, 158, 116, 222, 197, 6, 111, 96, 187, 68, 220, 223, 172, 106, 255, 156, 174, 196, 111, 70, 85, 93, 160, 96, 219, 38, 144, 65, 4, 192, 139, 151, 3, 221, 8, 85, 229, 37, 76, 115, 28, 93, 208, 8, 197, 215, 148, 182, 186, 127, 245, 14, 55, 241, 7, 16, 215, 184, 43, 91, 144, 158, 244, 114, 49, 166, 125, 53, 162, 5, 220, 218, 129, 123, 84, 32, 27, 76, 42, 176, 62, 105, 113, 62, 193, 220, 74, 17, 70, 146, 210, 74, 157, 43, 244, 198, 62, 110, 151, 181, 67, 91, 46, 242, 114, 152, 222, 114, 41, 202, 154, 147, 228, 216, 92, 74, 151, 190, 232, 131, 45, 63, 15, 104, 82, 95, 49, 198, 176, 64, 113, 48, 26, 244, 134, 197, 62, 113, 132, 112, 94, 72, 200, 129, 221, 250, 150, 250, 251, 35, 133, 20, 27, 114, 202, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:45:40.896415Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:45:40.896453Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:45:40.912533Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:45:40.946594Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3OYCI4dVR02d9BcAHtsmZw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:45:40.949415Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3OYCI4dVR02d9BcAHtsmZw==: stderr: -2026-04-20T10:45:40.949439Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3OYCI4dVR02d9BcAHtsmZw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:45:40.949448Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3OYCI4dVR02d9BcAHtsmZw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:45:40.949455Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3OYCI4dVR02d9BcAHtsmZw==: stderr: stack backtrace: -2026-04-20T10:45:40.949461Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3OYCI4dVR02d9BcAHtsmZw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:45:40.949468Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3OYCI4dVR02d9BcAHtsmZw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:45:40.949554Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:45:40.950369Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:45:40.950671Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:45:41.017704Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:45:41.017748Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:45:41.017948Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:45:41.018421Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=85 blob_id=2147876671739054610063096190270069983 -2026-04-20T10:45:46.175001Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=57 prev_hash=0xc28663c3bebbb8f61831c74e6e996b4ca9ebde9da7337ab6cb30a1e90436dd25 hash=0x8e6ff9988e86e810f4ddbc358555518231904aa06cfc4fa644d9d4d499b62ac7 producing_time=1.436861ms -2026-04-20T10:45:46.183956Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=57 current_state_root="2eb9c280a4ade04e22cbcb80a75b435d7634643901faa2b11ec1f807bd59769a5030474aebf4726c7a4cb7627b50fff9db01d6f19c318aea87250332b26e5245" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x4c032157a17888394529b160473512c4d72b59c42dd16332b924fb872865373e, len=625"] -2026-04-20T10:45:46.184292Z DEBUG StfBlueprint::apply_slot{context=Node da_height=57}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2eb9c280a4ade04e22cbcb80a75b435d7634643901faa2b11ec1f807bd59769a5030474aebf4726c7a4cb7627b50fff9db01d6f19c318aea87250332b26e5245 next_version=57 sesssion_starting_time=46.5µs -2026-04-20T10:45:46.185044Z DEBUG StfBlueprint::apply_slot{context=Node da_height=57}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2eb9c280a4ade04e22cbcb80a75b435d7634643901faa2b11ec1f807bd59769a69e758273f870acdd899a7ae0a736034cd2885247e13a42ffd7548dd2a4a2840 next_version=57 time=819.695µs accesses_build_time=19.74µs finishing_session_time=698.216µs -2026-04-20T10:45:46.185129Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2eb9c280a4ade04e22cbcb80a75b435d7634643901faa2b11ec1f807bd59769a5030474aebf4726c7a4cb7627b50fff9db01d6f19c318aea87250332b26e5245" next_state_root="2eb9c280a4ade04e22cbcb80a75b435d7634643901faa2b11ec1f807bd59769a69e758273f870acdd899a7ae0a736034cd2885247e13a42ffd7548dd2a4a2840" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:45:46.185649Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 57, latest_finalized_slot_number: 57, sync_status: Synced { synced_da_height: 56 }, .. } -2026-04-20T10:45:46.185740Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=37 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 57, latest_finalized_slot_number: 57, sync_status: Synced { synced_da_height: 56 }, .. } -2026-04-20T10:45:46.185827Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=37 -2026-04-20T10:45:46.186077Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=3 -2026-04-20T10:45:46.186150Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=33 -2026-04-20T10:45:46.186242Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=53 -2026-04-20T10:45:46.186390Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:45:46.186694Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=3 visible_slot_number_after_increase=53 sequence_number=86 -2026-04-20T10:45:46.186713Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=86 blob_id=2147876677988013070898924349537919098 visible_slot_number_after_increase=53 visible_slots_to_advance=3 -2026-04-20T10:45:46.186744Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:45:46.188456Z DEBUG manage_blob_submission_inside_task{blob_id=2147876677988013070898924349537919098 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x1b8eaa3561cb2579c0badab1aca306e25fa62e4c2268d96476ffec7f431588ee sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=58 include_at=58 bytes=13 time=632.806µs -2026-04-20T10:45:46.191393Z DEBUG sov_stf_runner::runner: Block execution complete time=5.988206082s -2026-04-20T10:45:46.191400Z DEBUG compute_state_update{scope="sequencer" rollup_height=38 slot_number=53}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:45:46.191417Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:45:46.191479Z DEBUG compute_state_update{scope="sequencer" rollup_height=38 slot_number=53}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2eb9c280a4ade04e22cbcb80a75b435d7634643901faa2b11ec1f807bd59769a69e758273f870acdd899a7ae0a736034cd2885247e13a42ffd7548dd2a4a2840 next_version=58 sesssion_starting_time=4.307572ms -2026-04-20T10:45:46.192207Z DEBUG compute_state_update{scope="sequencer" rollup_height=38 slot_number=53}: sov_state::nomt::prover_storage: computed next state root state_root=69098b3a4d0be70095b00b57d19dd49b77c2eafa511383fc497e06c495b034d45cc0254d63969a9933596601ba61253b0a321d0c0406599b87aec1ab09aa2762 next_version=58 time=5.050827ms accesses_build_time=14.16µs finishing_session_time=686.096µs -2026-04-20T10:45:52.177750Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=58 prev_hash=0x8e6ff9988e86e810f4ddbc358555518231904aa06cfc4fa644d9d4d499b62ac7 hash=0xa75e2c0db7ae6f0ea2249980cd4016fa0fafbcfca559980dfb30a312b46fd64d producing_time=1.396341ms -2026-04-20T10:45:52.183731Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=58 current_state_root="2eb9c280a4ade04e22cbcb80a75b435d7634643901faa2b11ec1f807bd59769a69e758273f870acdd899a7ae0a736034cd2885247e13a42ffd7548dd2a4a2840" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1b8eaa3561cb2579c0badab1aca306e25fa62e4c2268d96476ffec7f431588ee"] proof_blobs=[] -2026-04-20T10:45:52.184015Z DEBUG StfBlueprint::apply_slot{context=Node da_height=58}: sov_chain_state: Setting next visible slot number next_visible_slot_number=53 -2026-04-20T10:45:52.184267Z DEBUG StfBlueprint::apply_slot{context=Node da_height=58}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x1b8eaa3561cb2579c0badab1aca306e25fa62e4c2268d96476ffec7f431588ee}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:45:52.184470Z DEBUG StfBlueprint::apply_slot{context=Node da_height=58}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2eb9c280a4ade04e22cbcb80a75b435d7634643901faa2b11ec1f807bd59769a69e758273f870acdd899a7ae0a736034cd2885247e13a42ffd7548dd2a4a2840 next_version=58 sesssion_starting_time=47.6µs -2026-04-20T10:45:52.185513Z DEBUG StfBlueprint::apply_slot{context=Node da_height=58}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=69098b3a4d0be70095b00b57d19dd49b77c2eafa511383fc497e06c495b034d45b81f064fab26400506f982a00a10d1ee4cfab469b5222872aa30be39ae5189b next_version=58 time=1.128703ms accesses_build_time=37.57µs finishing_session_time=1.011153ms -2026-04-20T10:45:52.185697Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="a102760ed8a6f1f1321e7f9c09f02159351430a1f0ce358efec00000fcf5edff" -2026-04-20T10:45:52.185713Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="a8805c98d79ea5efaab6bbfdcd27e6eaec0f8349c50463a3599acf6adace5abb" -2026-04-20T10:45:52.185723Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="4c032157a17888394529b160473512c4d72b59c42dd16332b924fb872865373e" -2026-04-20T10:45:52.185735Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2eb9c280a4ade04e22cbcb80a75b435d7634643901faa2b11ec1f807bd59769a69e758273f870acdd899a7ae0a736034cd2885247e13a42ffd7548dd2a4a2840" next_state_root="69098b3a4d0be70095b00b57d19dd49b77c2eafa511383fc497e06c495b034d45b81f064fab26400506f982a00a10d1ee4cfab469b5222872aa30be39ae5189b" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:45:52.186171Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 58, latest_finalized_slot_number: 58, sync_status: Synced { synced_da_height: 57 }, .. } -2026-04-20T10:45:52.186239Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=38 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 58, latest_finalized_slot_number: 58, sync_status: Synced { synced_da_height: 57 }, .. } -2026-04-20T10:45:52.186296Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=38 -2026-04-20T10:45:52.186513Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:45:52.186584Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=34 -2026-04-20T10:45:52.186684Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=54 -2026-04-20T10:45:52.186807Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:45:52.186945Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=54 sequence_number=87 -2026-04-20T10:45:52.186964Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=87 blob_id=2147876685241574518303798047866849298 visible_slot_number_after_increase=54 visible_slots_to_advance=1 -2026-04-20T10:45:52.186991Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:45:52.188747Z DEBUG manage_blob_submission_inside_task{blob_id=2147876685241574518303798047866849298 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x0fd293025d2d358d3fb0d9aea50b2d691a585aa6eac32274fd86ab70b8bcfcd2 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=59 include_at=59 bytes=13 time=720.885µs -2026-04-20T10:45:52.197202Z DEBUG compute_state_update{scope="sequencer" rollup_height=39 slot_number=54}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:45:52.197246Z DEBUG sov_stf_runner::runner: Block execution complete time=6.005830227s -2026-04-20T10:45:52.197265Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:45:52.197271Z DEBUG compute_state_update{scope="sequencer" rollup_height=39 slot_number=54}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=69098b3a4d0be70095b00b57d19dd49b77c2eafa511383fc497e06c495b034d45b81f064fab26400506f982a00a10d1ee4cfab469b5222872aa30be39ae5189b next_version=59 sesssion_starting_time=9.892756ms -2026-04-20T10:45:52.197518Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:45:52.197609Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:45:52.197874Z DEBUG compute_state_update{scope="sequencer" rollup_height=39 slot_number=54}: sov_state::nomt::prover_storage: computed next state root state_root=6da4ac6b938b82a346b11e01781e58e21b2fbce40d627bb8583cc52f05431732312abc4adb5174e14f3d827f50211e01b0abb9ea600ba25d8c9c9037d50b30df next_version=59 time=10.508172ms accesses_build_time=11.86µs finishing_session_time=582.806µs -2026-04-20T10:45:52.759275Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CQj13kHURlqUy-jO3580sA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:45:52.771556Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:45:52.782977Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1742242 cycles -2026-04-20T10:45:52.785610Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [26, 140, 185, 5, 171, 57, 29, 33, 184, 177, 198, 15, 152, 228, 223, 113, 111, 65, 136, 198, 118, 232, 117, 250, 34, 177, 154, 159, 218, 98, 140, 118, 103, 63, 248, 77, 217, 147, 9, 122, 241, 130, 135, 71, 58, 161, 161, 39, 182, 220, 167, 181, 152, 193, 167, 68, 36, 198, 120, 50, 197, 235, 14, 64, 55, 42, 242, 207, 236, 225, 176, 76, 244, 190, 236, 140, 239, 112, 173, 20, 154, 156, 114, 26, 221, 178, 64, 65, 130, 20, 153, 103, 41, 159, 252, 9, 64, 146, 23, 136, 89, 95, 68, 18, 167, 30, 205, 230, 47, 169, 26, 145, 174, 10, 121, 247, 213, 217, 161, 206, 31, 39, 225, 177, 1, 93, 84, 147, 62, 8, 35, 73, 89, 173, 209, 149, 7, 255, 36, 202, 238, 248, 33, 122, 55, 143, 44, 19, 123, 162, 169, 140, 225, 215, 134, 198, 87, 179, 231, 151, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:45:52.870018Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:45:52.870054Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:45:52.905273Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:45:52.939023Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2lL2a_MZTve4Bx_4Qd8bwA==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:45:52.941853Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2lL2a_MZTve4Bx_4Qd8bwA==: stderr: -2026-04-20T10:45:52.941867Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2lL2a_MZTve4Bx_4Qd8bwA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:45:52.941876Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2lL2a_MZTve4Bx_4Qd8bwA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:45:52.941884Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2lL2a_MZTve4Bx_4Qd8bwA==: stderr: stack backtrace: -2026-04-20T10:45:52.941890Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2lL2a_MZTve4Bx_4Qd8bwA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:45:52.941896Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2lL2a_MZTve4Bx_4Qd8bwA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:45:52.942035Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:45:52.942807Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:45:52.943119Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:45:53.013917Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:45:53.013959Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:45:53.014179Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:45:53.014369Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:45:53.014469Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:45:53.014817Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=88 blob_id=2147876686242501015192761844675257884 -2026-04-20T10:45:53.574011Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LdLiy3CHTJmnrATE4KdsUQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:45:53.580547Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:45:53.590457Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 987328 cycles -2026-04-20T10:45:53.592973Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [97, 44, 151, 199, 27, 58, 88, 66, 145, 233, 175, 99, 33, 199, 158, 175, 32, 121, 205, 195, 163, 103, 30, 189, 141, 59, 66, 125, 159, 63, 96, 55, 65, 20, 220, 152, 254, 131, 254, 126, 59, 120, 108, 203, 88, 89, 113, 241, 224, 78, 135, 81, 179, 34, 105, 203, 62, 73, 126, 99, 69, 3, 231, 148, 97, 44, 151, 199, 27, 58, 88, 66, 145, 233, 175, 99, 33, 199, 158, 175, 32, 121, 205, 195, 163, 103, 30, 189, 141, 59, 66, 125, 159, 63, 96, 55, 105, 199, 220, 218, 57, 88, 190, 41, 124, 185, 67, 211, 200, 141, 71, 226, 232, 57, 212, 245, 153, 111, 40, 42, 204, 46, 108, 125, 171, 150, 24, 59, 2, 139, 155, 190, 72, 227, 98, 126, 84, 102, 63, 217, 143, 30, 46, 169, 248, 71, 141, 49, 45, 101, 149, 40, 89, 117, 15, 126, 4, 44, 236, 18, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:45:53.649610Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:45:53.649652Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:45:53.722135Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:45:53.755679Z DEBUG sp1_core_executor_runner::native: CHILD sp1__cv2_Z6VT3CJKjhGI9lftQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:45:53.758518Z DEBUG sp1_core_executor_runner::native: CHILD sp1__cv2_Z6VT3CJKjhGI9lftQ==: stderr: -2026-04-20T10:45:53.758543Z DEBUG sp1_core_executor_runner::native: CHILD sp1__cv2_Z6VT3CJKjhGI9lftQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:45:53.758554Z DEBUG sp1_core_executor_runner::native: CHILD sp1__cv2_Z6VT3CJKjhGI9lftQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:45:53.758560Z DEBUG sp1_core_executor_runner::native: CHILD sp1__cv2_Z6VT3CJKjhGI9lftQ==: stderr: stack backtrace: -2026-04-20T10:45:53.758567Z DEBUG sp1_core_executor_runner::native: CHILD sp1__cv2_Z6VT3CJKjhGI9lftQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:45:53.758573Z DEBUG sp1_core_executor_runner::native: CHILD sp1__cv2_Z6VT3CJKjhGI9lftQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:45:53.758691Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:45:53.759425Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:45:53.759720Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:45:53.826166Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:45:53.826208Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:45:53.826456Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:45:53.826674Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:45:53.826752Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:45:53.827191Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=89 blob_id=2147876687224164420549375382105433673 -2026-04-20T10:45:54.381300Z DEBUG sp1_core_executor_runner::native: CHILD sp1_I9UAoYn2SM6CZ9Fz4rSQpQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:45:54.398376Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:45:54.408565Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2547619 cycles -2026-04-20T10:45:54.411125Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [97, 44, 151, 199, 27, 58, 88, 66, 145, 233, 175, 99, 33, 199, 158, 175, 32, 121, 205, 195, 163, 103, 30, 189, 141, 59, 66, 125, 159, 63, 96, 55, 31, 172, 101, 109, 96, 221, 152, 243, 46, 137, 249, 106, 126, 152, 218, 5, 71, 40, 8, 21, 181, 213, 157, 20, 190, 210, 17, 201, 64, 51, 92, 125, 43, 16, 131, 80, 235, 48, 109, 9, 150, 73, 63, 251, 73, 222, 148, 86, 231, 120, 2, 4, 203, 184, 1, 19, 19, 198, 45, 26, 201, 169, 195, 210, 54, 133, 93, 221, 198, 5, 72, 76, 166, 27, 234, 59, 184, 238, 215, 19, 51, 245, 42, 163, 177, 234, 74, 101, 138, 112, 98, 214, 7, 226, 177, 210, 187, 73, 133, 101, 105, 143, 70, 90, 17, 87, 212, 180, 11, 66, 12, 239, 125, 118, 134, 232, 150, 125, 67, 252, 253, 118, 95, 210, 190, 5, 252, 22, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:45:54.522069Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:45:54.522103Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:45:54.534091Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:45:54.569493Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HYnaxWePSMS58_J2_YPafg==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:45:54.572341Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HYnaxWePSMS58_J2_YPafg==: stderr: -2026-04-20T10:45:54.572365Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HYnaxWePSMS58_J2_YPafg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:45:54.572375Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HYnaxWePSMS58_J2_YPafg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:45:54.572382Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HYnaxWePSMS58_J2_YPafg==: stderr: stack backtrace: -2026-04-20T10:45:54.572389Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HYnaxWePSMS58_J2_YPafg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:45:54.572395Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HYnaxWePSMS58_J2_YPafg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:45:54.572467Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:45:54.573240Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:45:54.573556Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:45:54.638833Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:45:54.638878Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:45:54.639038Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:45:54.639789Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=90 blob_id=2147876688207003443157266723654310722 -2026-04-20T10:45:58.180704Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=4 height=59 prev_hash=0xa75e2c0db7ae6f0ea2249980cd4016fa0fafbcfca559980dfb30a312b46fd64d hash=0x98b551f63374a96a34386e3b805ebb783605e25507c633ead5cf70971f61c303 producing_time=1.359191ms -2026-04-20T10:45:58.188713Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=59 current_state_root="69098b3a4d0be70095b00b57d19dd49b77c2eafa511383fc497e06c495b034d45b81f064fab26400506f982a00a10d1ee4cfab469b5222872aa30be39ae5189b" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0fd293025d2d358d3fb0d9aea50b2d691a585aa6eac32274fd86ab70b8bcfcd2"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x565020c2afe4c029ee3f2b251319b031712e0364d5123e39d60c79b693805639, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xb80cd74a90cf5215212d9fc2127a5ccec787e7fb9b08197b8d6836e9986819f1, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc87b846f732fddf75e7e5939c85c45573723360b60d68a21e0b9b6c151b025d1, len=625"] -2026-04-20T10:45:58.188964Z DEBUG StfBlueprint::apply_slot{context=Node da_height=59}: sov_chain_state: Setting next visible slot number next_visible_slot_number=54 -2026-04-20T10:45:58.189101Z DEBUG StfBlueprint::apply_slot{context=Node da_height=59}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x0fd293025d2d358d3fb0d9aea50b2d691a585aa6eac32274fd86ab70b8bcfcd2}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:45:58.189278Z DEBUG StfBlueprint::apply_slot{context=Node da_height=59}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=69098b3a4d0be70095b00b57d19dd49b77c2eafa511383fc497e06c495b034d45b81f064fab26400506f982a00a10d1ee4cfab469b5222872aa30be39ae5189b next_version=59 sesssion_starting_time=48.37µs -2026-04-20T10:45:58.190264Z DEBUG StfBlueprint::apply_slot{context=Node da_height=59}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6da4ac6b938b82a346b11e01781e58e21b2fbce40d627bb8583cc52f054317325397e65d070df81592a4eabf3fd9b1242535d92a075cf82a976ec1b0224df3e1 next_version=59 time=1.067833ms accesses_build_time=32.46µs finishing_session_time=961.674µs -2026-04-20T10:45:58.190441Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="69098b3a4d0be70095b00b57d19dd49b77c2eafa511383fc497e06c495b034d45b81f064fab26400506f982a00a10d1ee4cfab469b5222872aa30be39ae5189b" next_state_root="6da4ac6b938b82a346b11e01781e58e21b2fbce40d627bb8583cc52f054317325397e65d070df81592a4eabf3fd9b1242535d92a075cf82a976ec1b0224df3e1" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:45:58.190886Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 59, latest_finalized_slot_number: 59, sync_status: Syncing { synced_da_height: 58, target_da_height: 59 }, .. } -2026-04-20T10:45:58.190958Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=39 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 59, latest_finalized_slot_number: 59, sync_status: Syncing { synced_da_height: 58, target_da_height: 59 }, .. } -2026-04-20T10:45:58.191018Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=39 -2026-04-20T10:45:58.191240Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:45:58.191297Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=35 -2026-04-20T10:45:58.191397Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=55 -2026-04-20T10:45:58.191531Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:45:58.191822Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=55 sequence_number=91 -2026-04-20T10:45:58.191847Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=91 blob_id=2147876692501125364761638689901853249 visible_slot_number_after_increase=55 visible_slots_to_advance=1 -2026-04-20T10:45:58.191869Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:45:58.193715Z DEBUG manage_blob_submission_inside_task{blob_id=2147876692501125364761638689901853249 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xc6aa60faed84cff8d86d3773fed2528e6782da1fbe2c7c413e430c16b4fe1356 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=60 include_at=60 bytes=13 time=719.486µs -2026-04-20T10:45:58.202366Z DEBUG compute_state_update{scope="sequencer" rollup_height=40 slot_number=55}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:45:58.202431Z DEBUG sov_stf_runner::runner: Block execution complete time=6.005167293s -2026-04-20T10:45:58.202437Z DEBUG compute_state_update{scope="sequencer" rollup_height=40 slot_number=55}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6da4ac6b938b82a346b11e01781e58e21b2fbce40d627bb8583cc52f054317325397e65d070df81592a4eabf3fd9b1242535d92a075cf82a976ec1b0224df3e1 next_version=60 sesssion_starting_time=10.197985ms -2026-04-20T10:45:58.202465Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:45:58.202656Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:45:58.202753Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:45:58.203134Z DEBUG compute_state_update{scope="sequencer" rollup_height=40 slot_number=55}: sov_state::nomt::prover_storage: computed next state root state_root=2a6d9412d959d91778f8d2f8331cc34583b93ee2fc5796012fcaf968e5240f1a0c7b2da2b9cad065d5cfe46492240cc04bbcb339b411da49a93a1096c81457e4 next_version=60 time=10.909229ms accesses_build_time=13.86µs finishing_session_time=665.326µs -2026-04-20T10:45:58.759948Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tAUna2vVTFK1Jfxg3yxl_Q==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:45:58.772618Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:45:58.783533Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1797275 cycles -2026-04-20T10:45:58.786088Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [8, 224, 226, 120, 183, 35, 217, 251, 74, 238, 46, 7, 24, 52, 68, 6, 233, 90, 146, 159, 176, 40, 66, 172, 117, 55, 116, 204, 124, 40, 227, 109, 36, 180, 175, 84, 39, 182, 92, 141, 198, 195, 186, 103, 247, 1, 149, 236, 144, 192, 76, 175, 114, 102, 194, 253, 127, 209, 21, 164, 210, 183, 208, 238, 91, 151, 71, 208, 171, 180, 26, 234, 45, 229, 128, 203, 200, 137, 201, 81, 33, 187, 21, 43, 220, 104, 191, 89, 210, 131, 11, 214, 38, 214, 78, 76, 98, 100, 128, 7, 108, 226, 175, 11, 67, 137, 80, 194, 120, 45, 127, 77, 206, 142, 149, 147, 50, 142, 161, 115, 107, 100, 133, 218, 112, 246, 233, 94, 40, 54, 1, 160, 75, 225, 252, 119, 181, 233, 221, 3, 157, 26, 223, 79, 72, 46, 1, 123, 233, 243, 227, 32, 12, 89, 246, 25, 126, 56, 189, 212, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:45:58.874416Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:45:58.874450Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:45:58.910832Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:45:58.944886Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wMoCtgmbR32RhYP15TTHcQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:45:58.947724Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wMoCtgmbR32RhYP15TTHcQ==: stderr: -2026-04-20T10:45:58.947739Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wMoCtgmbR32RhYP15TTHcQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:45:58.947748Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wMoCtgmbR32RhYP15TTHcQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:45:58.947756Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wMoCtgmbR32RhYP15TTHcQ==: stderr: stack backtrace: -2026-04-20T10:45:58.947762Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wMoCtgmbR32RhYP15TTHcQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:45:58.947782Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wMoCtgmbR32RhYP15TTHcQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:45:58.947905Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:45:58.948655Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:45:58.948952Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:45:59.018473Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:45:59.018514Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:45:59.018694Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:45:59.019274Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=92 blob_id=2147876693500958964646422810709154630 -2026-04-20T10:46:04.183031Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=60 prev_hash=0x98b551f63374a96a34386e3b805ebb783605e25507c633ead5cf70971f61c303 hash=0x4b558b8a773be7fb44d42d713241a9f7d9150143b372f5b53c0879cf5de95e6d producing_time=1.131363ms -2026-04-20T10:46:04.184467Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=60 current_state_root="6da4ac6b938b82a346b11e01781e58e21b2fbce40d627bb8583cc52f054317325397e65d070df81592a4eabf3fd9b1242535d92a075cf82a976ec1b0224df3e1" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc6aa60faed84cff8d86d3773fed2528e6782da1fbe2c7c413e430c16b4fe1356"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x8957d1e8d952c9d5c92d9801b4f9983389b3332c63b321b5293a0fec6b00451c, len=625"] -2026-04-20T10:46:04.184616Z DEBUG StfBlueprint::apply_slot{context=Node da_height=60}: sov_chain_state: Setting next visible slot number next_visible_slot_number=55 -2026-04-20T10:46:04.184825Z DEBUG StfBlueprint::apply_slot{context=Node da_height=60}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xc6aa60faed84cff8d86d3773fed2528e6782da1fbe2c7c413e430c16b4fe1356}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:46:04.184998Z DEBUG StfBlueprint::apply_slot{context=Node da_height=60}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6da4ac6b938b82a346b11e01781e58e21b2fbce40d627bb8583cc52f054317325397e65d070df81592a4eabf3fd9b1242535d92a075cf82a976ec1b0224df3e1 next_version=60 sesssion_starting_time=42.7µs -2026-04-20T10:46:04.185733Z DEBUG StfBlueprint::apply_slot{context=Node da_height=60}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2a6d9412d959d91778f8d2f8331cc34583b93ee2fc5796012fcaf968e5240f1a2abddd9535acccac7c163c810866d234ad7ee05e6e60f9b16390e8bc851def15 next_version=60 time=813.904µs accesses_build_time=36.709µs finishing_session_time=693.065µs -2026-04-20T10:46:04.185938Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="565020c2afe4c029ee3f2b251319b031712e0364d5123e39d60c79b693805639" -2026-04-20T10:46:04.185961Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="b80cd74a90cf5215212d9fc2127a5ccec787e7fb9b08197b8d6836e9986819f1" -2026-04-20T10:46:04.185970Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="c87b846f732fddf75e7e5939c85c45573723360b60d68a21e0b9b6c151b025d1" -2026-04-20T10:46:04.185981Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6da4ac6b938b82a346b11e01781e58e21b2fbce40d627bb8583cc52f054317325397e65d070df81592a4eabf3fd9b1242535d92a075cf82a976ec1b0224df3e1" next_state_root="2a6d9412d959d91778f8d2f8331cc34583b93ee2fc5796012fcaf968e5240f1a2abddd9535acccac7c163c810866d234ad7ee05e6e60f9b16390e8bc851def15" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:46:04.186399Z DEBUG sov_stf_runner::runner: Block execution complete time=5.98393616s -2026-04-20T10:46:04.186434Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:46:04.186458Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 60, latest_finalized_slot_number: 59, sync_status: Synced { synced_da_height: 59 }, .. } -2026-04-20T10:46:04.186533Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=40 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 60, latest_finalized_slot_number: 59, sync_status: Synced { synced_da_height: 59 }, .. } -2026-04-20T10:46:04.186589Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=40 -2026-04-20T10:46:04.186595Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:46:04.186659Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:46:04.704042Z DEBUG sp1_core_executor_runner::native: CHILD sp1_O5Bz33e8R8e0zTgaBHy0hQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:46:04.710367Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:46:04.721276Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 970329 cycles -2026-04-20T10:46:04.724051Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [11, 118, 234, 240, 71, 232, 162, 239, 58, 190, 228, 226, 54, 216, 177, 10, 27, 24, 6, 87, 236, 166, 232, 16, 99, 119, 143, 188, 209, 245, 73, 192, 3, 247, 180, 163, 136, 162, 243, 226, 49, 134, 69, 170, 87, 195, 195, 194, 16, 237, 201, 154, 69, 11, 151, 193, 119, 135, 255, 144, 98, 249, 175, 108, 11, 118, 234, 240, 71, 232, 162, 239, 58, 190, 228, 226, 54, 216, 177, 10, 27, 24, 6, 87, 236, 166, 232, 16, 99, 119, 143, 188, 209, 245, 73, 192, 39, 221, 44, 149, 227, 118, 111, 24, 100, 210, 59, 54, 241, 2, 116, 126, 183, 43, 205, 1, 4, 217, 42, 115, 245, 202, 67, 240, 67, 14, 168, 18, 114, 227, 176, 19, 21, 26, 255, 229, 62, 102, 86, 152, 218, 85, 248, 238, 2, 189, 221, 83, 183, 133, 157, 142, 202, 232, 27, 203, 236, 91, 24, 21, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:46:04.778289Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:46:04.778340Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:46:04.792689Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:46:04.827983Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mP7a2k0eTkePz5TbU1Ry0w==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:46:04.830823Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mP7a2k0eTkePz5TbU1Ry0w==: stderr: -2026-04-20T10:46:04.830849Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mP7a2k0eTkePz5TbU1Ry0w==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:46:04.830859Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mP7a2k0eTkePz5TbU1Ry0w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:46:04.830866Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mP7a2k0eTkePz5TbU1Ry0w==: stderr: stack backtrace: -2026-04-20T10:46:04.830873Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mP7a2k0eTkePz5TbU1Ry0w==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:46:04.830879Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mP7a2k0eTkePz5TbU1Ry0w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:46:04.830958Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:46:04.831748Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:46:04.832085Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:46:04.898424Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:46:04.898468Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:46:04.898645Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:46:04.899175Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=93 blob_id=2147876700609435072326815774412032503 -2026-04-20T10:46:10.185608Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=61 prev_hash=0x4b558b8a773be7fb44d42d713241a9f7d9150143b372f5b53c0879cf5de95e6d hash=0x2e34b8d3cfd5851c838c2a64157c1784386a8fdd75d31cd016a76e96fee238c6 producing_time=1.336491ms -2026-04-20T10:46:10.188182Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=61 current_state_root="2a6d9412d959d91778f8d2f8331cc34583b93ee2fc5796012fcaf968e5240f1a2abddd9535acccac7c163c810866d234ad7ee05e6e60f9b16390e8bc851def15" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9508d5b8102fd730931a207954f9d20288dbbbaa92d7d13a7ae67053a5bdd02d, len=625"] -2026-04-20T10:46:10.188527Z DEBUG StfBlueprint::apply_slot{context=Node da_height=61}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2a6d9412d959d91778f8d2f8331cc34583b93ee2fc5796012fcaf968e5240f1a2abddd9535acccac7c163c810866d234ad7ee05e6e60f9b16390e8bc851def15 next_version=61 sesssion_starting_time=47.139µs -2026-04-20T10:46:10.189301Z DEBUG StfBlueprint::apply_slot{context=Node da_height=61}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2a6d9412d959d91778f8d2f8331cc34583b93ee2fc5796012fcaf968e5240f1a4793dbef77d88fd54bca4ccca0dd727c896bcf933fe5a7695b049aa5c7c4a7bb next_version=61 time=838.114µs accesses_build_time=15.8µs finishing_session_time=739.316µs -2026-04-20T10:46:10.189445Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6da4ac6b938b82a346b11e01781e58e21b2fbce40d627bb8583cc52f054317325397e65d070df81592a4eabf3fd9b1242535d92a075cf82a976ec1b0224df3e1" next_state_root="2a6d9412d959d91778f8d2f8331cc34583b93ee2fc5796012fcaf968e5240f1a4793dbef77d88fd54bca4ccca0dd727c896bcf933fe5a7695b049aa5c7c4a7bb" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:46:10.189925Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 61, latest_finalized_slot_number: 60, sync_status: Synced { synced_da_height: 60 }, .. } -2026-04-20T10:46:10.190008Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=40 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 61, latest_finalized_slot_number: 60, sync_status: Synced { synced_da_height: 60 }, .. } -2026-04-20T10:46:10.190066Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=40 -2026-04-20T10:46:10.201754Z DEBUG sov_stf_runner::runner: Block execution complete time=6.015322957s -2026-04-20T10:46:10.201790Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:46:16.188468Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=62 prev_hash=0x2e34b8d3cfd5851c838c2a64157c1784386a8fdd75d31cd016a76e96fee238c6 hash=0xed6608f7cce8baa333277693c86df830bf770aa4305c815737af8c7ce0660505 producing_time=1.310101ms -2026-04-20T10:46:16.193181Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=62 current_state_root="2a6d9412d959d91778f8d2f8331cc34583b93ee2fc5796012fcaf968e5240f1a4793dbef77d88fd54bca4ccca0dd727c896bcf933fe5a7695b049aa5c7c4a7bb" batch_blobs=[] proof_blobs=[] -2026-04-20T10:46:16.193514Z DEBUG StfBlueprint::apply_slot{context=Node da_height=62}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2a6d9412d959d91778f8d2f8331cc34583b93ee2fc5796012fcaf968e5240f1a4793dbef77d88fd54bca4ccca0dd727c896bcf933fe5a7695b049aa5c7c4a7bb next_version=62 sesssion_starting_time=48.27µs -2026-04-20T10:46:16.194329Z DEBUG StfBlueprint::apply_slot{context=Node da_height=62}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2a6d9412d959d91778f8d2f8331cc34583b93ee2fc5796012fcaf968e5240f1a0fe63a6800a5ee8385d7799a10264a8464237e4837df3aa7669f39d8fdca6d0b next_version=62 time=879.704µs accesses_build_time=15.89µs finishing_session_time=768.135µs -2026-04-20T10:46:16.194395Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2a6d9412d959d91778f8d2f8331cc34583b93ee2fc5796012fcaf968e5240f1a2abddd9535acccac7c163c810866d234ad7ee05e6e60f9b16390e8bc851def15" next_state_root="2a6d9412d959d91778f8d2f8331cc34583b93ee2fc5796012fcaf968e5240f1a0fe63a6800a5ee8385d7799a10264a8464237e4837df3aa7669f39d8fdca6d0b" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:46:16.194872Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 62, latest_finalized_slot_number: 61, sync_status: Syncing { synced_da_height: 61, target_da_height: 62 }, .. } -2026-04-20T10:46:16.194950Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=40 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 62, latest_finalized_slot_number: 61, sync_status: Syncing { synced_da_height: 61, target_da_height: 62 }, .. } -2026-04-20T10:46:16.195010Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=40 -2026-04-20T10:46:16.195248Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:46:16.195328Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=36 -2026-04-20T10:46:16.195424Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=57 -2026-04-20T10:46:16.195553Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:46:16.195813Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=57 sequence_number=94 -2026-04-20T10:46:16.195855Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=94 blob_id=2147876714266619902292270718707663765 visible_slot_number_after_increase=57 visible_slots_to_advance=2 -2026-04-20T10:46:16.195856Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=2 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:46:16.197692Z DEBUG manage_blob_submission_inside_task{blob_id=2147876714266619902292270718707663765 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x38c0b02aca418c4ab320522df762cf6a13e14ba074629c495c0e2e0e75ca6516 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=63 include_at=63 bytes=13 time=710.566µs -2026-04-20T10:46:16.201125Z DEBUG compute_state_update{scope="sequencer" rollup_height=41 slot_number=57}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:46:16.201144Z DEBUG sov_stf_runner::runner: Block execution complete time=5.99935639s -2026-04-20T10:46:16.201176Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:46:16.201204Z DEBUG compute_state_update{scope="sequencer" rollup_height=41 slot_number=57}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2a6d9412d959d91778f8d2f8331cc34583b93ee2fc5796012fcaf968e5240f1a0fe63a6800a5ee8385d7799a10264a8464237e4837df3aa7669f39d8fdca6d0b next_version=63 sesssion_starting_time=4.858509ms -2026-04-20T10:46:16.201854Z DEBUG compute_state_update{scope="sequencer" rollup_height=41 slot_number=57}: sov_state::nomt::prover_storage: computed next state root state_root=52a93db6b452be03882ba0e9fb9c550c745144eb25e28556fc1df1f3dd854c5d3ce34e0682fb9985e63bd6a30541dd633adfc05db35aa78b3fc5a93da43d553e next_version=63 time=5.525615ms accesses_build_time=15.84µs finishing_session_time=631.556µs -2026-04-20T10:46:22.191284Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=63 prev_hash=0xed6608f7cce8baa333277693c86df830bf770aa4305c815737af8c7ce0660505 hash=0x29c2cee122fabe3ef43d81441111b2313c45ad4e593d685eb8104f72b30217b4 producing_time=1.457991ms -2026-04-20T10:46:22.191792Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=63 current_state_root="2a6d9412d959d91778f8d2f8331cc34583b93ee2fc5796012fcaf968e5240f1a0fe63a6800a5ee8385d7799a10264a8464237e4837df3aa7669f39d8fdca6d0b" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x38c0b02aca418c4ab320522df762cf6a13e14ba074629c495c0e2e0e75ca6516"] proof_blobs=[] -2026-04-20T10:46:22.192076Z DEBUG StfBlueprint::apply_slot{context=Node da_height=63}: sov_chain_state: Setting next visible slot number next_visible_slot_number=57 -2026-04-20T10:46:22.192304Z DEBUG StfBlueprint::apply_slot{context=Node da_height=63}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x38c0b02aca418c4ab320522df762cf6a13e14ba074629c495c0e2e0e75ca6516}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=2 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:46:22.192507Z DEBUG StfBlueprint::apply_slot{context=Node da_height=63}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2a6d9412d959d91778f8d2f8331cc34583b93ee2fc5796012fcaf968e5240f1a0fe63a6800a5ee8385d7799a10264a8464237e4837df3aa7669f39d8fdca6d0b next_version=63 sesssion_starting_time=47.68µs -2026-04-20T10:46:22.193802Z DEBUG StfBlueprint::apply_slot{context=Node da_height=63}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=52a93db6b452be03882ba0e9fb9c550c745144eb25e28556fc1df1f3dd854c5d7dd5e07a0c52932d3403946b5ca14447a168596b4a148d498c06a2d9df7c544e next_version=63 time=1.377891ms accesses_build_time=36.47µs finishing_session_time=1.237163ms -2026-04-20T10:46:22.194067Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="8957d1e8d952c9d5c92d9801b4f9983389b3332c63b321b5293a0fec6b00451c" -2026-04-20T10:46:22.194086Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="9508d5b8102fd730931a207954f9d20288dbbbaa92d7d13a7ae67053a5bdd02d" -2026-04-20T10:46:22.194101Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2a6d9412d959d91778f8d2f8331cc34583b93ee2fc5796012fcaf968e5240f1a4793dbef77d88fd54bca4ccca0dd727c896bcf933fe5a7695b049aa5c7c4a7bb" next_state_root="52a93db6b452be03882ba0e9fb9c550c745144eb25e28556fc1df1f3dd854c5d7dd5e07a0c52932d3403946b5ca14447a168596b4a148d498c06a2d9df7c544e" aggregated_proofs=0 proof_receipts=2 -2026-04-20T10:46:22.194696Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 63, latest_finalized_slot_number: 62, sync_status: Synced { synced_da_height: 62 }, .. } -2026-04-20T10:46:22.194778Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=41 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 63, latest_finalized_slot_number: 62, sync_status: Synced { synced_da_height: 62 }, .. } -2026-04-20T10:46:22.194837Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=41 -2026-04-20T10:46:22.195054Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:46:22.195116Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=37 -2026-04-20T10:46:22.195205Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=58 -2026-04-20T10:46:22.195339Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:46:22.195490Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=58 sequence_number=95 -2026-04-20T10:46:22.195516Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=95 blob_id=2147876721520229403629785199923428846 visible_slot_number_after_increase=58 visible_slots_to_advance=1 -2026-04-20T10:46:22.195552Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:46:22.197196Z DEBUG manage_blob_submission_inside_task{blob_id=2147876721520229403629785199923428846 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xde128e6eec2194e0a3e0d5f351a1a3af7ec3bfa0f025bdc7f20cbcb1ca364fdc sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=64 include_at=64 bytes=13 time=636.186µs -2026-04-20T10:46:22.200624Z DEBUG compute_state_update{scope="sequencer" rollup_height=42 slot_number=58}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:46:22.200679Z DEBUG sov_stf_runner::runner: Block execution complete time=5.99950451s -2026-04-20T10:46:22.200698Z DEBUG compute_state_update{scope="sequencer" rollup_height=42 slot_number=58}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=52a93db6b452be03882ba0e9fb9c550c745144eb25e28556fc1df1f3dd854c5d7dd5e07a0c52932d3403946b5ca14447a168596b4a148d498c06a2d9df7c544e next_version=64 sesssion_starting_time=4.792219ms -2026-04-20T10:46:22.200705Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:46:22.200905Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:46:22.200991Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:46:22.201263Z DEBUG compute_state_update{scope="sequencer" rollup_height=42 slot_number=58}: sov_state::nomt::prover_storage: computed next state root state_root=2f9e002034894428d4e5126e6a073cc2ac11958517cfaeead8a94b99be197cd2518fe1d6b43ced453fa07a2bf15e2428cfa62bf793c2213fa1ca339adbe3d4f0 next_version=64 time=5.371085ms accesses_build_time=13.26µs finishing_session_time=546.556µs -2026-04-20T10:46:22.761357Z DEBUG sp1_core_executor_runner::native: CHILD sp1_paO_hhfDTnKW9zO9gYE-VQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:46:22.777706Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:46:22.789239Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2436115 cycles -2026-04-20T10:46:22.791871Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [11, 118, 234, 240, 71, 232, 162, 239, 58, 190, 228, 226, 54, 216, 177, 10, 27, 24, 6, 87, 236, 166, 232, 16, 99, 119, 143, 188, 209, 245, 73, 192, 69, 115, 252, 14, 127, 113, 9, 69, 203, 165, 233, 148, 21, 201, 244, 17, 208, 183, 229, 56, 55, 231, 196, 52, 129, 93, 13, 114, 193, 103, 138, 255, 55, 196, 121, 209, 159, 202, 47, 108, 162, 45, 119, 98, 193, 48, 114, 89, 195, 244, 102, 97, 251, 171, 204, 10, 86, 134, 11, 94, 91, 130, 144, 227, 96, 234, 169, 20, 148, 10, 168, 105, 105, 249, 101, 68, 178, 136, 166, 174, 248, 9, 93, 225, 15, 50, 249, 35, 156, 123, 226, 32, 140, 63, 204, 79, 196, 233, 185, 134, 45, 139, 102, 52, 47, 155, 9, 183, 102, 231, 210, 7, 93, 244, 227, 154, 87, 141, 235, 82, 233, 201, 229, 70, 87, 208, 202, 94, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:46:22.895596Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:46:22.895634Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:46:22.907893Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:46:22.941851Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ajg30byEQJSu-H5qei6IjQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:46:22.944703Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ajg30byEQJSu-H5qei6IjQ==: stderr: -2026-04-20T10:46:22.944715Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ajg30byEQJSu-H5qei6IjQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:46:22.944725Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ajg30byEQJSu-H5qei6IjQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:46:22.944733Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ajg30byEQJSu-H5qei6IjQ==: stderr: stack backtrace: -2026-04-20T10:46:22.944739Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ajg30byEQJSu-H5qei6IjQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:46:22.944746Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ajg30byEQJSu-H5qei6IjQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:46:22.944897Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:46:22.945624Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:46:22.945913Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:46:23.017699Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:46:23.017744Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:46:23.017972Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:46:23.018152Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:46:23.018227Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:46:23.018620Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=96 blob_id=2147876722515169154574883367209391611 -2026-04-20T10:46:23.577619Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zk3rdtTpRkujh3XUW0GJ_w==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:46:23.589814Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:46:23.601113Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1738367 cycles -2026-04-20T10:46:23.603771Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [6, 219, 118, 71, 37, 176, 54, 3, 201, 71, 95, 121, 3, 237, 165, 221, 93, 108, 147, 183, 83, 254, 177, 99, 50, 102, 218, 60, 31, 32, 219, 56, 60, 18, 230, 186, 47, 7, 109, 239, 37, 198, 155, 237, 142, 157, 174, 252, 184, 195, 140, 98, 252, 134, 138, 26, 35, 96, 103, 138, 41, 116, 233, 106, 45, 135, 83, 192, 134, 108, 24, 129, 177, 27, 136, 192, 27, 11, 175, 106, 168, 36, 97, 143, 100, 146, 58, 106, 151, 234, 231, 77, 238, 221, 3, 225, 29, 152, 114, 18, 169, 143, 187, 171, 173, 158, 126, 220, 70, 31, 38, 164, 200, 236, 242, 111, 195, 226, 57, 255, 196, 65, 236, 243, 39, 76, 178, 233, 194, 134, 99, 195, 190, 187, 184, 246, 24, 49, 199, 78, 110, 153, 107, 76, 169, 235, 222, 157, 167, 51, 122, 182, 203, 48, 161, 233, 4, 54, 221, 37, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:46:23.689600Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:46:23.689635Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:46:23.724985Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:46:23.758943Z DEBUG sp1_core_executor_runner::native: CHILD sp1_80tK2S61RliGRtqDepdwZA==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:46:23.761772Z DEBUG sp1_core_executor_runner::native: CHILD sp1_80tK2S61RliGRtqDepdwZA==: stderr: -2026-04-20T10:46:23.761784Z DEBUG sp1_core_executor_runner::native: CHILD sp1_80tK2S61RliGRtqDepdwZA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:46:23.761793Z DEBUG sp1_core_executor_runner::native: CHILD sp1_80tK2S61RliGRtqDepdwZA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:46:23.761800Z DEBUG sp1_core_executor_runner::native: CHILD sp1_80tK2S61RliGRtqDepdwZA==: stderr: stack backtrace: -2026-04-20T10:46:23.761819Z DEBUG sp1_core_executor_runner::native: CHILD sp1_80tK2S61RliGRtqDepdwZA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:46:23.761825Z DEBUG sp1_core_executor_runner::native: CHILD sp1_80tK2S61RliGRtqDepdwZA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:46:23.761955Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:46:23.762736Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:46:23.763064Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:46:23.828671Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:46:23.828715Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:46:23.828933Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:46:23.829453Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=97 blob_id=2147876723494402350004720450445100546 -2026-04-20T10:46:28.193397Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=64 prev_hash=0x29c2cee122fabe3ef43d81441111b2313c45ad4e593d685eb8104f72b30217b4 hash=0x325ed3e34e9449842e0c8c14efbef2f1da652889c36a5d08332321173c2f13c6 producing_time=1.291182ms -2026-04-20T10:46:28.202175Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=64 current_state_root="52a93db6b452be03882ba0e9fb9c550c745144eb25e28556fc1df1f3dd854c5d7dd5e07a0c52932d3403946b5ca14447a168596b4a148d498c06a2d9df7c544e" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xde128e6eec2194e0a3e0d5f351a1a3af7ec3bfa0f025bdc7f20cbcb1ca364fdc"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x86f12c5b08bd7822d82ea5449f77f5f26d8412c8819067548dd6af64d977bf12, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9833cf7bd2ce0b48c79352701122e67b5e6404b213a0df545cd6fb05c30fb6b4, len=625"] -2026-04-20T10:46:28.202430Z DEBUG StfBlueprint::apply_slot{context=Node da_height=64}: sov_chain_state: Setting next visible slot number next_visible_slot_number=58 -2026-04-20T10:46:28.202568Z DEBUG StfBlueprint::apply_slot{context=Node da_height=64}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xde128e6eec2194e0a3e0d5f351a1a3af7ec3bfa0f025bdc7f20cbcb1ca364fdc}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:46:28.202771Z DEBUG StfBlueprint::apply_slot{context=Node da_height=64}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=52a93db6b452be03882ba0e9fb9c550c745144eb25e28556fc1df1f3dd854c5d7dd5e07a0c52932d3403946b5ca14447a168596b4a148d498c06a2d9df7c544e next_version=64 sesssion_starting_time=48.599µs -2026-04-20T10:46:28.203701Z DEBUG StfBlueprint::apply_slot{context=Node da_height=64}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2f9e002034894428d4e5126e6a073cc2ac11958517cfaeead8a94b99be197cd238914ed0d0633a3fab858aad8078283f943fece448173a152fe879308d329d18 next_version=64 time=1.011553ms accesses_build_time=31.5µs finishing_session_time=906.105µs -2026-04-20T10:46:28.203868Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2a6d9412d959d91778f8d2f8331cc34583b93ee2fc5796012fcaf968e5240f1a0fe63a6800a5ee8385d7799a10264a8464237e4837df3aa7669f39d8fdca6d0b" next_state_root="2f9e002034894428d4e5126e6a073cc2ac11958517cfaeead8a94b99be197cd238914ed0d0633a3fab858aad8078283f943fece448173a152fe879308d329d18" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:46:28.204460Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 64, latest_finalized_slot_number: 63, sync_status: Synced { synced_da_height: 63 }, .. } -2026-04-20T10:46:28.204549Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=42 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 64, latest_finalized_slot_number: 63, sync_status: Synced { synced_da_height: 63 }, .. } -2026-04-20T10:46:28.204620Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=42 -2026-04-20T10:46:28.215174Z DEBUG sov_stf_runner::runner: Block execution complete time=6.014470623s -2026-04-20T10:46:28.215201Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:46:28.215404Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:46:28.215488Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:46:28.772971Z DEBUG sp1_core_executor_runner::native: CHILD sp1_UvfeCr3dTuCMw8eMpo21zQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:46:28.779303Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:46:28.789534Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 968035 cycles -2026-04-20T10:46:28.792246Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 185, 194, 128, 164, 173, 224, 78, 34, 203, 203, 128, 167, 91, 67, 93, 118, 52, 100, 57, 1, 250, 162, 177, 30, 193, 248, 7, 189, 89, 118, 154, 80, 48, 71, 74, 235, 244, 114, 108, 122, 76, 183, 98, 123, 80, 255, 249, 219, 1, 214, 241, 156, 49, 138, 234, 135, 37, 3, 50, 178, 110, 82, 69, 46, 185, 194, 128, 164, 173, 224, 78, 34, 203, 203, 128, 167, 91, 67, 93, 118, 52, 100, 57, 1, 250, 162, 177, 30, 193, 248, 7, 189, 89, 118, 154, 44, 122, 80, 102, 9, 99, 74, 136, 120, 31, 103, 205, 103, 113, 242, 200, 105, 226, 42, 203, 62, 89, 229, 151, 237, 95, 215, 177, 107, 43, 110, 208, 142, 111, 249, 152, 142, 134, 232, 16, 244, 221, 188, 53, 133, 85, 81, 130, 49, 144, 74, 160, 108, 252, 79, 166, 68, 217, 212, 212, 153, 182, 42, 199, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:46:28.845581Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:46:28.845622Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:46:28.922406Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:46:28.959348Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SOLGuO8AT1OPlm0JGzwPzA==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:46:28.962169Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SOLGuO8AT1OPlm0JGzwPzA==: stderr: -2026-04-20T10:46:28.962181Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SOLGuO8AT1OPlm0JGzwPzA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:46:28.962190Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SOLGuO8AT1OPlm0JGzwPzA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:46:28.962198Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SOLGuO8AT1OPlm0JGzwPzA==: stderr: stack backtrace: -2026-04-20T10:46:28.962204Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SOLGuO8AT1OPlm0JGzwPzA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:46:28.962209Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SOLGuO8AT1OPlm0JGzwPzA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:46:28.962354Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:46:28.963121Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:46:28.963422Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:46:29.029562Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:46:29.029618Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:46:29.029814Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:46:29.030521Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=98 blob_id=2147876729782029689082574047376035888 -2026-04-20T10:46:34.196226Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=65 prev_hash=0x325ed3e34e9449842e0c8c14efbef2f1da652889c36a5d08332321173c2f13c6 hash=0xd973a2f637884f1f6bc5ee041ef1365b4e73c2d218896fab68f66211e7c9b86e producing_time=1.467801ms -2026-04-20T10:46:34.206912Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=65 current_state_root="2f9e002034894428d4e5126e6a073cc2ac11958517cfaeead8a94b99be197cd238914ed0d0633a3fab858aad8078283f943fece448173a152fe879308d329d18" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa14f578ab57124c2ac74edcf5e620eb5db252704d5dcfa0d6d75c8fb664882b5, len=625"] -2026-04-20T10:46:34.207255Z DEBUG StfBlueprint::apply_slot{context=Node da_height=65}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2f9e002034894428d4e5126e6a073cc2ac11958517cfaeead8a94b99be197cd238914ed0d0633a3fab858aad8078283f943fece448173a152fe879308d329d18 next_version=65 sesssion_starting_time=48.27µs -2026-04-20T10:46:34.208030Z DEBUG StfBlueprint::apply_slot{context=Node da_height=65}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2f9e002034894428d4e5126e6a073cc2ac11958517cfaeead8a94b99be197cd2026675c303d2cc1638cc2cfbc3067189afb146f27fc964a85dab5064580d0119 next_version=65 time=842.065µs accesses_build_time=17.47µs finishing_session_time=734.186µs -2026-04-20T10:46:34.208100Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="52a93db6b452be03882ba0e9fb9c550c745144eb25e28556fc1df1f3dd854c5d7dd5e07a0c52932d3403946b5ca14447a168596b4a148d498c06a2d9df7c544e" next_state_root="2f9e002034894428d4e5126e6a073cc2ac11958517cfaeead8a94b99be197cd2026675c303d2cc1638cc2cfbc3067189afb146f27fc964a85dab5064580d0119" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:46:34.208639Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 65, latest_finalized_slot_number: 64, sync_status: Synced { synced_da_height: 64 }, .. } -2026-04-20T10:46:34.208740Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=42 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 65, latest_finalized_slot_number: 64, sync_status: Synced { synced_da_height: 64 }, .. } -2026-04-20T10:46:34.208836Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=42 -2026-04-20T10:46:34.209053Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:46:34.209121Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=38 -2026-04-20T10:46:34.209216Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=60 -2026-04-20T10:46:34.209392Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:46:34.209725Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=60 sequence_number=99 -2026-04-20T10:46:34.209750Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=99 blob_id=2147876736044208731531146204825539345 visible_slot_number_after_increase=60 visible_slots_to_advance=2 -2026-04-20T10:46:34.209801Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:46:34.211765Z DEBUG manage_blob_submission_inside_task{blob_id=2147876736044208731531146204825539345 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x2d634d91920482f878c5af6d026fcc2b7ef9e35a774e403b10b4a5c1709edd2c sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=66 include_at=66 bytes=13 time=841.025µs -2026-04-20T10:46:34.223143Z DEBUG compute_state_update{scope="sequencer" rollup_height=43 slot_number=60}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:46:34.223174Z DEBUG sov_stf_runner::runner: Block execution complete time=6.007974047s -2026-04-20T10:46:34.223194Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:46:34.223223Z DEBUG compute_state_update{scope="sequencer" rollup_height=43 slot_number=60}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2f9e002034894428d4e5126e6a073cc2ac11958517cfaeead8a94b99be197cd2026675c303d2cc1638cc2cfbc3067189afb146f27fc964a85dab5064580d0119 next_version=66 sesssion_starting_time=13.039056ms -2026-04-20T10:46:34.224073Z DEBUG compute_state_update{scope="sequencer" rollup_height=43 slot_number=60}: sov_state::nomt::prover_storage: computed next state root state_root=2643a9b21f372bf18e9ceaf4eff1c4def98d51c2c0c7cdb5489666f9ab87d4436f9aa8d9ee29afa5278a0d8b2932fc8cc09bb89400105810e1ae2fb780495b5d next_version=66 time=13.90336ms accesses_build_time=15.22µs finishing_session_time=797.855µs -2026-04-20T10:46:40.198710Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=66 prev_hash=0xd973a2f637884f1f6bc5ee041ef1365b4e73c2d218896fab68f66211e7c9b86e hash=0x8176cbc7e234448c60768a4d86707d114b4f96d2b0f622f41152588b52a1b9b7 producing_time=1.438101ms -2026-04-20T10:46:40.204355Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=66 current_state_root="2f9e002034894428d4e5126e6a073cc2ac11958517cfaeead8a94b99be197cd2026675c303d2cc1638cc2cfbc3067189afb146f27fc964a85dab5064580d0119" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x2d634d91920482f878c5af6d026fcc2b7ef9e35a774e403b10b4a5c1709edd2c"] proof_blobs=[] -2026-04-20T10:46:40.204637Z DEBUG StfBlueprint::apply_slot{context=Node da_height=66}: sov_chain_state: Setting next visible slot number next_visible_slot_number=60 -2026-04-20T10:46:40.204888Z DEBUG StfBlueprint::apply_slot{context=Node da_height=66}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x2d634d91920482f878c5af6d026fcc2b7ef9e35a774e403b10b4a5c1709edd2c}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:46:40.205073Z DEBUG StfBlueprint::apply_slot{context=Node da_height=66}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2f9e002034894428d4e5126e6a073cc2ac11958517cfaeead8a94b99be197cd2026675c303d2cc1638cc2cfbc3067189afb146f27fc964a85dab5064580d0119 next_version=66 sesssion_starting_time=49.23µs -2026-04-20T10:46:40.206033Z DEBUG StfBlueprint::apply_slot{context=Node da_height=66}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2643a9b21f372bf18e9ceaf4eff1c4def98d51c2c0c7cdb5489666f9ab87d44326d7303df505b34542c77685739bff33123e8385a342713cb650a8279b5bd452 next_version=66 time=1.046054ms accesses_build_time=36.6µs finishing_session_time=930.404µs -2026-04-20T10:46:40.206230Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="86f12c5b08bd7822d82ea5449f77f5f26d8412c8819067548dd6af64d977bf12" -2026-04-20T10:46:40.206248Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="9833cf7bd2ce0b48c79352701122e67b5e6404b213a0df545cd6fb05c30fb6b4" -2026-04-20T10:46:40.206257Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="a14f578ab57124c2ac74edcf5e620eb5db252704d5dcfa0d6d75c8fb664882b5" -2026-04-20T10:46:40.206269Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2f9e002034894428d4e5126e6a073cc2ac11958517cfaeead8a94b99be197cd238914ed0d0633a3fab858aad8078283f943fece448173a152fe879308d329d18" next_state_root="2643a9b21f372bf18e9ceaf4eff1c4def98d51c2c0c7cdb5489666f9ab87d44326d7303df505b34542c77685739bff33123e8385a342713cb650a8279b5bd452" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:46:40.206883Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 66, latest_finalized_slot_number: 65, sync_status: Synced { synced_da_height: 65 }, .. } -2026-04-20T10:46:40.206988Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=43 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 66, latest_finalized_slot_number: 65, sync_status: Synced { synced_da_height: 65 }, .. } -2026-04-20T10:46:40.207051Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=43 -2026-04-20T10:46:40.207297Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:46:40.207372Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=39 -2026-04-20T10:46:40.207477Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=61 -2026-04-20T10:46:40.207618Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:46:40.207775Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=61 sequence_number=100 -2026-04-20T10:46:40.207798Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=100 blob_id=2147876743295338693464533654070328470 visible_slot_number_after_increase=61 visible_slots_to_advance=1 -2026-04-20T10:46:40.207822Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:46:40.209755Z DEBUG manage_blob_submission_inside_task{blob_id=2147876743295338693464533654070328470 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x09c737632e4b7884f222db4c0312fe05c16ee356ea2b1c604fe40c099d7cf833 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=67 include_at=67 bytes=13 time=784.265µs -2026-04-20T10:46:40.217063Z DEBUG sov_stf_runner::runner: Block execution complete time=5.993870097s -2026-04-20T10:46:40.217064Z DEBUG compute_state_update{scope="sequencer" rollup_height=44 slot_number=61}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:46:40.217089Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:46:40.217159Z DEBUG compute_state_update{scope="sequencer" rollup_height=44 slot_number=61}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2643a9b21f372bf18e9ceaf4eff1c4def98d51c2c0c7cdb5489666f9ab87d44326d7303df505b34542c77685739bff33123e8385a342713cb650a8279b5bd452 next_version=67 sesssion_starting_time=8.880323ms -2026-04-20T10:46:40.217349Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:46:40.217442Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:46:40.217902Z DEBUG compute_state_update{scope="sequencer" rollup_height=44 slot_number=61}: sov_state::nomt::prover_storage: computed next state root state_root=4b35792866591e5febc1a3277b8952504b3bea5057cd7dd5df80efa3f5c054a70784d87ff9682c7ad6fefda26a678951b244b9a948b77a2d5505d1c36027a7e7 next_version=67 time=9.638767ms accesses_build_time=14.389µs finishing_session_time=715.915µs -2026-04-20T10:46:40.777078Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TDbw_x0RS8iWLz1rjmnp6Q==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:46:40.794626Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:46:40.806200Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2588493 cycles -2026-04-20T10:46:40.808800Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 185, 194, 128, 164, 173, 224, 78, 34, 203, 203, 128, 167, 91, 67, 93, 118, 52, 100, 57, 1, 250, 162, 177, 30, 193, 248, 7, 189, 89, 118, 154, 105, 231, 88, 39, 63, 135, 10, 205, 216, 153, 167, 174, 10, 115, 96, 52, 205, 40, 133, 36, 126, 19, 164, 47, 253, 117, 72, 221, 42, 74, 40, 64, 66, 166, 50, 82, 20, 132, 89, 103, 149, 215, 183, 107, 93, 187, 1, 58, 27, 76, 250, 77, 141, 175, 246, 66, 107, 22, 254, 104, 108, 111, 194, 189, 97, 74, 146, 6, 15, 160, 61, 31, 43, 44, 2, 71, 134, 202, 41, 102, 52, 93, 35, 175, 110, 66, 238, 170, 123, 66, 137, 1, 147, 169, 213, 4, 167, 94, 44, 13, 183, 174, 111, 14, 162, 36, 153, 128, 205, 64, 22, 250, 15, 175, 188, 252, 165, 89, 152, 13, 251, 48, 163, 18, 180, 111, 214, 77, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:46:40.905142Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:46:40.905180Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:46:40.924484Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:46:40.957350Z DEBUG sp1_core_executor_runner::native: CHILD sp1_uUMreXGvSFeDfOk9ZG3v0w==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:46:40.960169Z DEBUG sp1_core_executor_runner::native: CHILD sp1_uUMreXGvSFeDfOk9ZG3v0w==: stderr: -2026-04-20T10:46:40.960185Z DEBUG sp1_core_executor_runner::native: CHILD sp1_uUMreXGvSFeDfOk9ZG3v0w==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:46:40.960195Z DEBUG sp1_core_executor_runner::native: CHILD sp1_uUMreXGvSFeDfOk9ZG3v0w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:46:40.960206Z DEBUG sp1_core_executor_runner::native: CHILD sp1_uUMreXGvSFeDfOk9ZG3v0w==: stderr: stack backtrace: -2026-04-20T10:46:40.960214Z DEBUG sp1_core_executor_runner::native: CHILD sp1_uUMreXGvSFeDfOk9ZG3v0w==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:46:40.960221Z DEBUG sp1_core_executor_runner::native: CHILD sp1_uUMreXGvSFeDfOk9ZG3v0w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:46:40.960303Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:46:40.961113Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:46:40.961417Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:46:41.027390Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:46:41.027435Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:46:41.027629Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:46:41.027841Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:46:41.027923Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:46:41.028383Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=101 blob_id=2147876744286655210835130079326714977 -2026-04-20T10:46:41.584040Z DEBUG sp1_core_executor_runner::native: CHILD sp1_owJZNSOATBKOaqYE3Dv3Xw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:46:41.597255Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:46:41.608084Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1872741 cycles -2026-04-20T10:46:41.610658Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [105, 9, 139, 58, 77, 11, 231, 0, 149, 176, 11, 87, 209, 157, 212, 155, 119, 194, 234, 250, 81, 19, 131, 252, 73, 126, 6, 196, 149, 176, 52, 212, 91, 129, 240, 100, 250, 178, 100, 0, 80, 111, 152, 42, 0, 161, 13, 30, 228, 207, 171, 70, 155, 82, 34, 135, 42, 163, 11, 227, 154, 229, 24, 155, 31, 117, 51, 19, 201, 122, 58, 167, 185, 234, 114, 105, 113, 25, 99, 165, 101, 54, 15, 53, 177, 210, 138, 60, 198, 215, 8, 162, 184, 135, 125, 187, 89, 105, 133, 243, 233, 194, 220, 117, 222, 181, 141, 245, 40, 184, 33, 43, 226, 77, 8, 167, 83, 234, 159, 164, 211, 117, 72, 122, 93, 172, 234, 67, 152, 181, 81, 246, 51, 116, 169, 106, 52, 56, 110, 59, 128, 94, 187, 120, 54, 5, 226, 85, 7, 198, 51, 234, 213, 207, 112, 151, 31, 97, 195, 3, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:46:41.701009Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:46:41.701043Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:46:41.737606Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:46:41.772363Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1Gw_RXozSg6cItIhVSoIbA==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:46:41.775194Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1Gw_RXozSg6cItIhVSoIbA==: stderr: -2026-04-20T10:46:41.775207Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1Gw_RXozSg6cItIhVSoIbA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:46:41.775215Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1Gw_RXozSg6cItIhVSoIbA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:46:41.775223Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1Gw_RXozSg6cItIhVSoIbA==: stderr: stack backtrace: -2026-04-20T10:46:41.775229Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1Gw_RXozSg6cItIhVSoIbA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:46:41.775249Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1Gw_RXozSg6cItIhVSoIbA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:46:41.775362Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:46:41.776156Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:46:41.776447Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:46:41.844532Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:46:41.844575Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:46:41.844759Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:46:41.845394Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=102 blob_id=2147876745274371232785597660154564718 -2026-04-20T10:46:46.201592Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=67 prev_hash=0x8176cbc7e234448c60768a4d86707d114b4f96d2b0f622f41152588b52a1b9b7 hash=0xbdf17c903a0cfc2cf15d7aa037363412c3bfb3943c61298e35e154e6c8e85572 producing_time=1.299192ms -2026-04-20T10:46:46.208251Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=67 current_state_root="2643a9b21f372bf18e9ceaf4eff1c4def98d51c2c0c7cdb5489666f9ab87d44326d7303df505b34542c77685739bff33123e8385a342713cb650a8279b5bd452" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x09c737632e4b7884f222db4c0312fe05c16ee356ea2b1c604fe40c099d7cf833"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf93c270e3205723680970c3f39cdf83049d2c6afaa3e0663d35dbbc51622f784, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xbcd4bf911a79384f165435498c07fb8ac691c00699f99be137f2fea3db1323a3, len=625"] -2026-04-20T10:46:46.208503Z DEBUG StfBlueprint::apply_slot{context=Node da_height=67}: sov_chain_state: Setting next visible slot number next_visible_slot_number=61 -2026-04-20T10:46:46.208642Z DEBUG StfBlueprint::apply_slot{context=Node da_height=67}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x09c737632e4b7884f222db4c0312fe05c16ee356ea2b1c604fe40c099d7cf833}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:46:46.208851Z DEBUG StfBlueprint::apply_slot{context=Node da_height=67}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2643a9b21f372bf18e9ceaf4eff1c4def98d51c2c0c7cdb5489666f9ab87d44326d7303df505b34542c77685739bff33123e8385a342713cb650a8279b5bd452 next_version=67 sesssion_starting_time=47.769µs -2026-04-20T10:46:46.209855Z DEBUG StfBlueprint::apply_slot{context=Node da_height=67}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4b35792866591e5febc1a3277b8952504b3bea5057cd7dd5df80efa3f5c054a7169e9d54fa68bfd87cf324b6ffec2691947fd304517a3aadfc5ed33bd37edfdc next_version=67 time=1.083853ms accesses_build_time=30.75µs finishing_session_time=975.634µs -2026-04-20T10:46:46.210039Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2f9e002034894428d4e5126e6a073cc2ac11958517cfaeead8a94b99be197cd2026675c303d2cc1638cc2cfbc3067189afb146f27fc964a85dab5064580d0119" next_state_root="4b35792866591e5febc1a3277b8952504b3bea5057cd7dd5df80efa3f5c054a7169e9d54fa68bfd87cf324b6ffec2691947fd304517a3aadfc5ed33bd37edfdc" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:46:46.210617Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 67, latest_finalized_slot_number: 66, sync_status: Synced { synced_da_height: 66 }, .. } -2026-04-20T10:46:46.210720Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=44 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 67, latest_finalized_slot_number: 66, sync_status: Synced { synced_da_height: 66 }, .. } -2026-04-20T10:46:46.210783Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=44 -2026-04-20T10:46:46.224435Z DEBUG sov_stf_runner::runner: Block execution complete time=6.007346681s -2026-04-20T10:46:46.224468Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:46:46.224717Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:46:46.224800Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:46:46.786449Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VWj9S-5FTlWbV6YSGLCx2A==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:46:46.803759Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:46:46.814774Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2565728 cycles -2026-04-20T10:46:46.817523Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [109, 164, 172, 107, 147, 139, 130, 163, 70, 177, 30, 1, 120, 30, 88, 226, 27, 47, 188, 228, 13, 98, 123, 184, 88, 60, 197, 47, 5, 67, 23, 50, 83, 151, 230, 93, 7, 13, 248, 21, 146, 164, 234, 191, 63, 217, 177, 36, 37, 53, 217, 42, 7, 92, 248, 42, 151, 110, 193, 176, 34, 77, 243, 225, 96, 17, 227, 12, 230, 106, 103, 113, 248, 191, 33, 218, 74, 91, 186, 189, 0, 33, 184, 43, 45, 204, 86, 243, 238, 160, 102, 91, 116, 158, 192, 76, 81, 37, 179, 89, 132, 191, 120, 238, 248, 49, 37, 214, 36, 188, 200, 177, 196, 34, 65, 187, 86, 64, 147, 188, 189, 136, 171, 99, 191, 184, 82, 25, 75, 85, 139, 138, 119, 59, 231, 251, 68, 212, 45, 113, 50, 65, 169, 247, 217, 21, 1, 67, 179, 114, 245, 181, 60, 8, 121, 207, 93, 233, 94, 109, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:46:46.926082Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:46:46.926119Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:46:47.033640Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:46:47.069730Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-7exxkhmTYSi4OcY8FoC-Q==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:46:47.072560Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-7exxkhmTYSi4OcY8FoC-Q==: stderr: -2026-04-20T10:46:47.072573Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-7exxkhmTYSi4OcY8FoC-Q==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:46:47.072578Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-7exxkhmTYSi4OcY8FoC-Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:46:47.072582Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-7exxkhmTYSi4OcY8FoC-Q==: stderr: stack backtrace: -2026-04-20T10:46:47.072586Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-7exxkhmTYSi4OcY8FoC-Q==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:46:47.072589Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-7exxkhmTYSi4OcY8FoC-Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:46:47.072691Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:46:47.073510Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:46:47.073824Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:46:47.139154Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:46:47.139198Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:46:47.139396Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:46:47.139984Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=103 blob_id=2147876751675649977174121273170167757 -2026-04-20T10:46:52.203986Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=68 prev_hash=0xbdf17c903a0cfc2cf15d7aa037363412c3bfb3943c61298e35e154e6c8e85572 hash=0x3d7733b353ef238980bc5bd83ae7cca892bb105320aa6d6dfe3b95da5c7856ab producing_time=1.290171ms -2026-04-20T10:46:52.206801Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=68 current_state_root="4b35792866591e5febc1a3277b8952504b3bea5057cd7dd5df80efa3f5c054a7169e9d54fa68bfd87cf324b6ffec2691947fd304517a3aadfc5ed33bd37edfdc" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xfb4f3ba2d1b12c90211ac8541b11c90f9f7e9e72104bebb5c4cba734b10fe8f0, len=625"] -2026-04-20T10:46:52.207158Z DEBUG StfBlueprint::apply_slot{context=Node da_height=68}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4b35792866591e5febc1a3277b8952504b3bea5057cd7dd5df80efa3f5c054a7169e9d54fa68bfd87cf324b6ffec2691947fd304517a3aadfc5ed33bd37edfdc next_version=68 sesssion_starting_time=48.48µs -2026-04-20T10:46:52.208044Z DEBUG StfBlueprint::apply_slot{context=Node da_height=68}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4b35792866591e5febc1a3277b8952504b3bea5057cd7dd5df80efa3f5c054a77a29e5c51cd9c49e4aea6ed0a9c7033cc9175b562534d23efc31cf102e50fd25 next_version=68 time=951.594µs accesses_build_time=15.72µs finishing_session_time=851.274µs -2026-04-20T10:46:52.208112Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2643a9b21f372bf18e9ceaf4eff1c4def98d51c2c0c7cdb5489666f9ab87d44326d7303df505b34542c77685739bff33123e8385a342713cb650a8279b5bd452" next_state_root="4b35792866591e5febc1a3277b8952504b3bea5057cd7dd5df80efa3f5c054a77a29e5c51cd9c49e4aea6ed0a9c7033cc9175b562534d23efc31cf102e50fd25" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:46:52.208671Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 68, latest_finalized_slot_number: 67, sync_status: Synced { synced_da_height: 67 }, .. } -2026-04-20T10:46:52.208781Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=44 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 68, latest_finalized_slot_number: 67, sync_status: Synced { synced_da_height: 67 }, .. } -2026-04-20T10:46:52.208952Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=44 -2026-04-20T10:46:52.209192Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:46:52.209262Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=40 -2026-04-20T10:46:52.209368Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=63 -2026-04-20T10:46:52.209518Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:46:52.209824Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=63 sequence_number=104 -2026-04-20T10:46:52.209861Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=104 blob_id=2147876757804924820880134590708457571 visible_slot_number_after_increase=63 visible_slots_to_advance=2 -2026-04-20T10:46:52.209874Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:46:52.211811Z DEBUG manage_blob_submission_inside_task{blob_id=2147876757804924820880134590708457571 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xf356671aebde40b52fc2f3eab95dcdd5603c66176a63b9d4bc0eeb437d80ae7b sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=69 include_at=69 bytes=13 time=762.135µs -2026-04-20T10:46:52.219106Z DEBUG compute_state_update{scope="sequencer" rollup_height=45 slot_number=63}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:46:52.219138Z DEBUG sov_stf_runner::runner: Block execution complete time=5.994672032s -2026-04-20T10:46:52.219157Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:46:52.219161Z DEBUG compute_state_update{scope="sequencer" rollup_height=45 slot_number=63}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4b35792866591e5febc1a3277b8952504b3bea5057cd7dd5df80efa3f5c054a77a29e5c51cd9c49e4aea6ed0a9c7033cc9175b562534d23efc31cf102e50fd25 next_version=69 sesssion_starting_time=8.795324ms -2026-04-20T10:46:52.219809Z DEBUG compute_state_update{scope="sequencer" rollup_height=45 slot_number=63}: sov_state::nomt::prover_storage: computed next state root state_root=279e3903194dfb7d9a41e7c8bfa56033323fc4ab3ef001a8e015ee8f215fcec33be26ccf5e1629da3e82e0ce805e0f18e0d5245ea5b7a8bdcf31514b3ecffed2 next_version=69 time=9.460749ms accesses_build_time=16.45µs finishing_session_time=619.906µs -2026-04-20T10:46:58.206838Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=69 prev_hash=0x3d7733b353ef238980bc5bd83ae7cca892bb105320aa6d6dfe3b95da5c7856ab hash=0x1dca63b755e9d72267a0b3b4b3db39aa299c805adb03d0ce75f1adabd145579b producing_time=1.379041ms -2026-04-20T10:46:58.210620Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=69 current_state_root="4b35792866591e5febc1a3277b8952504b3bea5057cd7dd5df80efa3f5c054a77a29e5c51cd9c49e4aea6ed0a9c7033cc9175b562534d23efc31cf102e50fd25" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf356671aebde40b52fc2f3eab95dcdd5603c66176a63b9d4bc0eeb437d80ae7b"] proof_blobs=[] -2026-04-20T10:46:58.210902Z DEBUG StfBlueprint::apply_slot{context=Node da_height=69}: sov_chain_state: Setting next visible slot number next_visible_slot_number=63 -2026-04-20T10:46:58.211154Z DEBUG StfBlueprint::apply_slot{context=Node da_height=69}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xf356671aebde40b52fc2f3eab95dcdd5603c66176a63b9d4bc0eeb437d80ae7b}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:46:58.211357Z DEBUG StfBlueprint::apply_slot{context=Node da_height=69}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4b35792866591e5febc1a3277b8952504b3bea5057cd7dd5df80efa3f5c054a77a29e5c51cd9c49e4aea6ed0a9c7033cc9175b562534d23efc31cf102e50fd25 next_version=69 sesssion_starting_time=66.179µs -2026-04-20T10:46:58.212373Z DEBUG StfBlueprint::apply_slot{context=Node da_height=69}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=279e3903194dfb7d9a41e7c8bfa56033323fc4ab3ef001a8e015ee8f215fcec379a184eccf4c08f044741bfcfe98b4b189b565c5202f9c6e5cb4ad3eb2b493ed next_version=69 time=1.118142ms accesses_build_time=35.25µs finishing_session_time=984.483µs -2026-04-20T10:46:58.212589Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="f93c270e3205723680970c3f39cdf83049d2c6afaa3e0663d35dbbc51622f784" -2026-04-20T10:46:58.212608Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="bcd4bf911a79384f165435498c07fb8ac691c00699f99be137f2fea3db1323a3" -2026-04-20T10:46:58.212618Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="fb4f3ba2d1b12c90211ac8541b11c90f9f7e9e72104bebb5c4cba734b10fe8f0" -2026-04-20T10:46:58.212630Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4b35792866591e5febc1a3277b8952504b3bea5057cd7dd5df80efa3f5c054a7169e9d54fa68bfd87cf324b6ffec2691947fd304517a3aadfc5ed33bd37edfdc" next_state_root="279e3903194dfb7d9a41e7c8bfa56033323fc4ab3ef001a8e015ee8f215fcec379a184eccf4c08f044741bfcfe98b4b189b565c5202f9c6e5cb4ad3eb2b493ed" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:46:58.213132Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 69, latest_finalized_slot_number: 68, sync_status: Synced { synced_da_height: 68 }, .. } -2026-04-20T10:46:58.213211Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=45 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 69, latest_finalized_slot_number: 68, sync_status: Synced { synced_da_height: 68 }, .. } -2026-04-20T10:46:58.213284Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=45 -2026-04-20T10:46:58.213548Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:46:58.213639Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=41 -2026-04-20T10:46:58.213735Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=64 -2026-04-20T10:46:58.213848Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:46:58.214004Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=64 sequence_number=105 -2026-04-20T10:46:58.214021Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=105 blob_id=2147876765063290965041772261253490773 visible_slot_number_after_increase=64 visible_slots_to_advance=1 -2026-04-20T10:46:58.214056Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:46:58.215810Z DEBUG manage_blob_submission_inside_task{blob_id=2147876765063290965041772261253490773 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xd867b5cd8257b3f141be8d4ec5498e6182edf115b97d4a017b9b36d9070a69de sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=70 include_at=70 bytes=13 time=689.985µs -2026-04-20T10:46:58.219862Z DEBUG compute_state_update{scope="sequencer" rollup_height=46 slot_number=64}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:46:58.219901Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000746014s -2026-04-20T10:46:58.219920Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:46:58.219935Z DEBUG compute_state_update{scope="sequencer" rollup_height=46 slot_number=64}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=279e3903194dfb7d9a41e7c8bfa56033323fc4ab3ef001a8e015ee8f215fcec379a184eccf4c08f044741bfcfe98b4b189b565c5202f9c6e5cb4ad3eb2b493ed next_version=70 sesssion_starting_time=5.494525ms -2026-04-20T10:46:58.220109Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:46:58.220185Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:46:58.220554Z DEBUG compute_state_update{scope="sequencer" rollup_height=46 slot_number=64}: sov_state::nomt::prover_storage: computed next state root state_root=470d5b6dbe34963384b6e0e37a37ae6430471c8b7b55cbdc339470479ec33d0640df087f06474de98f372edaf23c21788961f1c2df1da132486286ca35505d94 next_version=70 time=6.128831ms accesses_build_time=14.86µs finishing_session_time=599.036µs -2026-04-20T10:46:58.776276Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5c2gI4H0Sf-uwGo0zxnnVw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:46:58.782930Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:46:58.793843Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1007584 cycles -2026-04-20T10:46:58.796558Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [42, 109, 148, 18, 217, 89, 217, 23, 120, 248, 210, 248, 51, 28, 195, 69, 131, 185, 62, 226, 252, 87, 150, 1, 47, 202, 249, 104, 229, 36, 15, 26, 42, 189, 221, 149, 53, 172, 204, 172, 124, 22, 60, 129, 8, 102, 210, 52, 173, 126, 224, 94, 110, 96, 249, 177, 99, 144, 232, 188, 133, 29, 239, 21, 42, 109, 148, 18, 217, 89, 217, 23, 120, 248, 210, 248, 51, 28, 195, 69, 131, 185, 62, 226, 252, 87, 150, 1, 47, 202, 249, 104, 229, 36, 15, 26, 106, 111, 251, 12, 201, 176, 116, 242, 236, 144, 107, 202, 118, 97, 254, 1, 183, 97, 235, 135, 33, 77, 122, 17, 89, 150, 125, 13, 141, 38, 162, 109, 46, 52, 184, 211, 207, 213, 133, 28, 131, 140, 42, 100, 21, 124, 23, 132, 56, 106, 143, 221, 117, 211, 28, 208, 22, 167, 110, 150, 254, 226, 56, 198, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:46:58.851796Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:46:58.851844Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:46:58.927698Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:46:58.962639Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ovRg7K2-R_K-poB5JQdfSw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:46:58.965460Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ovRg7K2-R_K-poB5JQdfSw==: stderr: -2026-04-20T10:46:58.965473Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ovRg7K2-R_K-poB5JQdfSw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:46:58.965481Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ovRg7K2-R_K-poB5JQdfSw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:46:58.965489Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ovRg7K2-R_K-poB5JQdfSw==: stderr: stack backtrace: -2026-04-20T10:46:58.965495Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ovRg7K2-R_K-poB5JQdfSw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:46:58.965501Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ovRg7K2-R_K-poB5JQdfSw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:46:58.965642Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:46:58.966400Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:46:58.966698Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:46:59.034706Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:46:59.034748Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:46:59.034930Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:46:59.035099Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:46:59.035188Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:46:59.035590Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=106 blob_id=2147876766055810779646445527255992530 -2026-04-20T10:46:59.592242Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mHaZPhK9T7ejfyfkKGneHA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:46:59.598464Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:46:59.608408Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 949266 cycles -2026-04-20T10:46:59.611051Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [42, 109, 148, 18, 217, 89, 217, 23, 120, 248, 210, 248, 51, 28, 195, 69, 131, 185, 62, 226, 252, 87, 150, 1, 47, 202, 249, 104, 229, 36, 15, 26, 71, 147, 219, 239, 119, 216, 143, 213, 75, 202, 76, 204, 160, 221, 114, 124, 137, 107, 207, 147, 63, 229, 167, 105, 91, 4, 154, 165, 199, 196, 167, 187, 42, 109, 148, 18, 217, 89, 217, 23, 120, 248, 210, 248, 51, 28, 195, 69, 131, 185, 62, 226, 252, 87, 150, 1, 47, 202, 249, 104, 229, 36, 15, 26, 125, 205, 114, 180, 101, 116, 176, 90, 36, 233, 247, 113, 122, 92, 62, 118, 248, 242, 235, 166, 37, 178, 0, 130, 120, 37, 31, 220, 143, 8, 218, 175, 237, 102, 8, 247, 204, 232, 186, 163, 51, 39, 118, 147, 200, 109, 248, 48, 191, 119, 10, 164, 48, 92, 129, 87, 55, 175, 140, 124, 224, 102, 5, 5, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:46:59.665087Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:46:59.665130Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:46:59.742260Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:46:59.775834Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Zt1SExmMRQa0cews2CKYlQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:46:59.778662Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Zt1SExmMRQa0cews2CKYlQ==: stderr: -2026-04-20T10:46:59.778675Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Zt1SExmMRQa0cews2CKYlQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:46:59.778684Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Zt1SExmMRQa0cews2CKYlQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:46:59.778692Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Zt1SExmMRQa0cews2CKYlQ==: stderr: stack backtrace: -2026-04-20T10:46:59.778698Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Zt1SExmMRQa0cews2CKYlQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:46:59.778704Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Zt1SExmMRQa0cews2CKYlQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:46:59.778808Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:46:59.779688Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:46:59.779978Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:46:59.845941Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:46:59.845988Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:46:59.846150Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:46:59.846854Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=107 blob_id=2147876767037450004080967705568474680 -2026-04-20T10:47:04.209156Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=70 prev_hash=0x1dca63b755e9d72267a0b3b4b3db39aa299c805adb03d0ce75f1adabd145579b hash=0xa270579f1abd093f77080a2097ac19f241c62ee0218cce2ade7506b47f7aab8a producing_time=1.446131ms -2026-04-20T10:47:04.211895Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=70 current_state_root="279e3903194dfb7d9a41e7c8bfa56033323fc4ab3ef001a8e015ee8f215fcec379a184eccf4c08f044741bfcfe98b4b189b565c5202f9c6e5cb4ad3eb2b493ed" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd867b5cd8257b3f141be8d4ec5498e6182edf115b97d4a017b9b36d9070a69de"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xdc885819618c71a0bbc5f87cb18080c66a39f85aaa4e73ea97d102c39b6ed756, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd8d37b69a3347d6095c951d178d16a5e011c648c00fc94f684ed228fc490faf0, len=625"] -2026-04-20T10:47:04.212144Z DEBUG StfBlueprint::apply_slot{context=Node da_height=70}: sov_chain_state: Setting next visible slot number next_visible_slot_number=64 -2026-04-20T10:47:04.212281Z DEBUG StfBlueprint::apply_slot{context=Node da_height=70}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xd867b5cd8257b3f141be8d4ec5498e6182edf115b97d4a017b9b36d9070a69de}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:47:04.212473Z DEBUG StfBlueprint::apply_slot{context=Node da_height=70}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=279e3903194dfb7d9a41e7c8bfa56033323fc4ab3ef001a8e015ee8f215fcec379a184eccf4c08f044741bfcfe98b4b189b565c5202f9c6e5cb4ad3eb2b493ed next_version=70 sesssion_starting_time=47.56µs -2026-04-20T10:47:04.213433Z DEBUG StfBlueprint::apply_slot{context=Node da_height=70}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=470d5b6dbe34963384b6e0e37a37ae6430471c8b7b55cbdc339470479ec33d062a3a79a0662fe273790724afe8a5bfbe3e293a45e7c46ac575789b337f69c727 next_version=70 time=1.038703ms accesses_build_time=31.039µs finishing_session_time=910.274µs -2026-04-20T10:47:04.213601Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4b35792866591e5febc1a3277b8952504b3bea5057cd7dd5df80efa3f5c054a77a29e5c51cd9c49e4aea6ed0a9c7033cc9175b562534d23efc31cf102e50fd25" next_state_root="470d5b6dbe34963384b6e0e37a37ae6430471c8b7b55cbdc339470479ec33d062a3a79a0662fe273790724afe8a5bfbe3e293a45e7c46ac575789b337f69c727" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:47:04.214144Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 70, latest_finalized_slot_number: 69, sync_status: Synced { synced_da_height: 69 }, .. } -2026-04-20T10:47:04.214226Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=46 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 70, latest_finalized_slot_number: 69, sync_status: Synced { synced_da_height: 69 }, .. } -2026-04-20T10:47:04.214286Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=46 -2026-04-20T10:47:04.225722Z DEBUG sov_stf_runner::runner: Block execution complete time=6.005802891s -2026-04-20T10:47:04.225761Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:47:04.225988Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:47:04.226065Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:47:04.784408Z DEBUG sp1_core_executor_runner::native: CHILD sp1_GVpym_0kRzi9mCJO1j8Fog==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:47:04.800255Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:47:04.811165Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2314917 cycles -2026-04-20T10:47:04.813820Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [42, 109, 148, 18, 217, 89, 217, 23, 120, 248, 210, 248, 51, 28, 195, 69, 131, 185, 62, 226, 252, 87, 150, 1, 47, 202, 249, 104, 229, 36, 15, 26, 15, 230, 58, 104, 0, 165, 238, 131, 133, 215, 121, 154, 16, 38, 74, 132, 100, 35, 126, 72, 55, 223, 58, 167, 102, 159, 57, 216, 253, 202, 109, 11, 104, 2, 168, 254, 52, 176, 50, 90, 123, 151, 98, 70, 160, 151, 88, 233, 220, 163, 10, 212, 61, 136, 130, 52, 167, 96, 107, 101, 97, 27, 24, 231, 101, 225, 232, 241, 16, 111, 229, 16, 243, 232, 179, 76, 210, 84, 239, 1, 30, 205, 35, 141, 135, 238, 224, 72, 193, 54, 45, 108, 197, 76, 140, 50, 41, 194, 206, 225, 34, 250, 190, 62, 244, 61, 129, 68, 17, 17, 178, 49, 60, 69, 173, 78, 89, 61, 104, 94, 184, 16, 79, 114, 179, 2, 23, 180, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:47:04.917105Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:47:04.917143Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:47:04.934075Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:47:04.968405Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8NT1Zx_ATeqL8EeSQ6WeFA==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:47:04.971226Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8NT1Zx_ATeqL8EeSQ6WeFA==: stderr: -2026-04-20T10:47:04.971244Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8NT1Zx_ATeqL8EeSQ6WeFA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:47:04.971255Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8NT1Zx_ATeqL8EeSQ6WeFA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:47:04.971265Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8NT1Zx_ATeqL8EeSQ6WeFA==: stderr: stack backtrace: -2026-04-20T10:47:04.971273Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8NT1Zx_ATeqL8EeSQ6WeFA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:47:04.971281Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8NT1Zx_ATeqL8EeSQ6WeFA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:47:04.971384Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:47:04.972132Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:47:04.972448Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:47:05.039063Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:47:05.039104Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:47:05.039263Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:47:05.039785Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=108 blob_id=2147876773315418055533353904748035378 -2026-04-20T10:47:10.210992Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=71 prev_hash=0xa270579f1abd093f77080a2097ac19f241c62ee0218cce2ade7506b47f7aab8a hash=0x0f09340b60f8811ebfda43fb3cc8ffdf47b57ae284f8cc7b3157441af023432b producing_time=1.391811ms -2026-04-20T10:47:10.217806Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=71 current_state_root="470d5b6dbe34963384b6e0e37a37ae6430471c8b7b55cbdc339470479ec33d062a3a79a0662fe273790724afe8a5bfbe3e293a45e7c46ac575789b337f69c727" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x30650c39e559ba3a413f5395d016d86b828119767239c2b2a73f86650f0d194f, len=625"] -2026-04-20T10:47:10.218138Z DEBUG StfBlueprint::apply_slot{context=Node da_height=71}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=470d5b6dbe34963384b6e0e37a37ae6430471c8b7b55cbdc339470479ec33d062a3a79a0662fe273790724afe8a5bfbe3e293a45e7c46ac575789b337f69c727 next_version=71 sesssion_starting_time=48.74µs -2026-04-20T10:47:10.218960Z DEBUG StfBlueprint::apply_slot{context=Node da_height=71}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=470d5b6dbe34963384b6e0e37a37ae6430471c8b7b55cbdc339470479ec33d06766e9aea3cd95577218e7c2c711200f7bf1d9b6a1498bcbc987602b6ff1426ae next_version=71 time=889.095µs accesses_build_time=16.2µs finishing_session_time=790.465µs -2026-04-20T10:47:10.219032Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="279e3903194dfb7d9a41e7c8bfa56033323fc4ab3ef001a8e015ee8f215fcec379a184eccf4c08f044741bfcfe98b4b189b565c5202f9c6e5cb4ad3eb2b493ed" next_state_root="470d5b6dbe34963384b6e0e37a37ae6430471c8b7b55cbdc339470479ec33d06766e9aea3cd95577218e7c2c711200f7bf1d9b6a1498bcbc987602b6ff1426ae" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:47:10.219585Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 71, latest_finalized_slot_number: 70, sync_status: Synced { synced_da_height: 70 }, .. } -2026-04-20T10:47:10.219671Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=46 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 71, latest_finalized_slot_number: 70, sync_status: Synced { synced_da_height: 70 }, .. } -2026-04-20T10:47:10.219747Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=46 -2026-04-20T10:47:10.220036Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:47:10.220115Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=42 -2026-04-20T10:47:10.220216Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=66 -2026-04-20T10:47:10.220361Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:47:10.220663Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=66 sequence_number=109 -2026-04-20T10:47:10.220694Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=109 blob_id=2147876779578900468956565897854932081 visible_slot_number_after_increase=66 visible_slots_to_advance=2 -2026-04-20T10:47:10.220712Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:47:10.222469Z DEBUG manage_blob_submission_inside_task{blob_id=2147876779578900468956565897854932081 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x9c36d4fecd8a4817988f285128609656f8538a6fd817fbad0485dcf1f8f3c405 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=72 include_at=72 bytes=13 time=694.205µs -2026-04-20T10:47:10.233485Z DEBUG compute_state_update{scope="sequencer" rollup_height=47 slot_number=66}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:47:10.233514Z DEBUG sov_stf_runner::runner: Block execution complete time=6.007754669s -2026-04-20T10:47:10.233532Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:47:10.233555Z DEBUG compute_state_update{scope="sequencer" rollup_height=47 slot_number=66}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=470d5b6dbe34963384b6e0e37a37ae6430471c8b7b55cbdc339470479ec33d06766e9aea3cd95577218e7c2c711200f7bf1d9b6a1498bcbc987602b6ff1426ae next_version=72 sesssion_starting_time=12.454119ms -2026-04-20T10:47:10.234262Z DEBUG compute_state_update{scope="sequencer" rollup_height=47 slot_number=66}: sov_state::nomt::prover_storage: computed next state root state_root=577106e2c7e60eb1c9b4eabf363d435ef5ef1cc2b70e99bdfe9d31f8132b463a3e83e7b129b2549ed26149da923a2dd1f18638ba133f50ad53d77ab820e11ea5 next_version=72 time=13.178465ms accesses_build_time=15.96µs finishing_session_time=684.016µs -2026-04-20T10:47:16.213069Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=72 prev_hash=0x0f09340b60f8811ebfda43fb3cc8ffdf47b57ae284f8cc7b3157441af023432b hash=0x9a6f21460030b814d4af0a70ff07b4a66971df591b736e5fd0273446401fdea9 producing_time=1.418851ms -2026-04-20T10:47:16.215689Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=72 current_state_root="470d5b6dbe34963384b6e0e37a37ae6430471c8b7b55cbdc339470479ec33d06766e9aea3cd95577218e7c2c711200f7bf1d9b6a1498bcbc987602b6ff1426ae" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9c36d4fecd8a4817988f285128609656f8538a6fd817fbad0485dcf1f8f3c405"] proof_blobs=[] -2026-04-20T10:47:16.215970Z DEBUG StfBlueprint::apply_slot{context=Node da_height=72}: sov_chain_state: Setting next visible slot number next_visible_slot_number=66 -2026-04-20T10:47:16.216223Z DEBUG StfBlueprint::apply_slot{context=Node da_height=72}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x9c36d4fecd8a4817988f285128609656f8538a6fd817fbad0485dcf1f8f3c405}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:47:16.216430Z DEBUG StfBlueprint::apply_slot{context=Node da_height=72}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=470d5b6dbe34963384b6e0e37a37ae6430471c8b7b55cbdc339470479ec33d06766e9aea3cd95577218e7c2c711200f7bf1d9b6a1498bcbc987602b6ff1426ae next_version=72 sesssion_starting_time=47.78µs -2026-04-20T10:47:16.217421Z DEBUG StfBlueprint::apply_slot{context=Node da_height=72}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=577106e2c7e60eb1c9b4eabf363d435ef5ef1cc2b70e99bdfe9d31f8132b463a14249fc117e3914bf457cf40811937ef538c39c98bcf672cc69c5a9ccff96c5a next_version=72 time=1.077493ms accesses_build_time=37.27µs finishing_session_time=956.323µs -2026-04-20T10:47:16.217630Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="dc885819618c71a0bbc5f87cb18080c66a39f85aaa4e73ea97d102c39b6ed756" -2026-04-20T10:47:16.217674Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="d8d37b69a3347d6095c951d178d16a5e011c648c00fc94f684ed228fc490faf0" -2026-04-20T10:47:16.217684Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="30650c39e559ba3a413f5395d016d86b828119767239c2b2a73f86650f0d194f" -2026-04-20T10:47:16.217696Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="470d5b6dbe34963384b6e0e37a37ae6430471c8b7b55cbdc339470479ec33d062a3a79a0662fe273790724afe8a5bfbe3e293a45e7c46ac575789b337f69c727" next_state_root="577106e2c7e60eb1c9b4eabf363d435ef5ef1cc2b70e99bdfe9d31f8132b463a14249fc117e3914bf457cf40811937ef538c39c98bcf672cc69c5a9ccff96c5a" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:47:16.218248Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 72, latest_finalized_slot_number: 71, sync_status: Synced { synced_da_height: 71 }, .. } -2026-04-20T10:47:16.218352Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=47 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 72, latest_finalized_slot_number: 71, sync_status: Synced { synced_da_height: 71 }, .. } -2026-04-20T10:47:16.218431Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=47 -2026-04-20T10:47:16.218652Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:47:16.218715Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=43 -2026-04-20T10:47:16.218812Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=67 -2026-04-20T10:47:16.218928Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:47:16.219059Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=67 sequence_number=110 -2026-04-20T10:47:16.219078Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=110 blob_id=2147876786831246441660866521711756958 visible_slot_number_after_increase=67 visible_slots_to_advance=1 -2026-04-20T10:47:16.219111Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:47:16.220904Z DEBUG manage_blob_submission_inside_task{blob_id=2147876786831246441660866521711756958 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xeabfe3ff8c39dc5f396699a70c5eefe6aad5f3e0f07844dd04467f839d826697 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=73 include_at=73 bytes=13 time=686.636µs -2026-04-20T10:47:16.228667Z DEBUG compute_state_update{scope="sequencer" rollup_height=48 slot_number=67}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:47:16.228705Z DEBUG sov_stf_runner::runner: Block execution complete time=5.99517429s -2026-04-20T10:47:16.228726Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:47:16.228751Z DEBUG compute_state_update{scope="sequencer" rollup_height=48 slot_number=67}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=577106e2c7e60eb1c9b4eabf363d435ef5ef1cc2b70e99bdfe9d31f8132b463a14249fc117e3914bf457cf40811937ef538c39c98bcf672cc69c5a9ccff96c5a next_version=73 sesssion_starting_time=9.26756ms -2026-04-20T10:47:16.228957Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:47:16.229039Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:47:16.229444Z DEBUG compute_state_update{scope="sequencer" rollup_height=48 slot_number=67}: sov_state::nomt::prover_storage: computed next state root state_root=04be40fc542daeff03378d65607087136c86dc2d08eb43313e795463c5aed3f77f8d9ad0f4d4b2dce7b4cfa919c32abd9341dd9a76ffc2782036bdb8c2c56c0d next_version=73 time=9.974296ms accesses_build_time=12.11µs finishing_session_time=670.016µs -2026-04-20T10:47:16.788972Z DEBUG sp1_core_executor_runner::native: CHILD sp1_6xnDqlQDRUmDm2Bz7uhbRg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:47:16.802449Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:47:16.813927Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1872842 cycles -2026-04-20T10:47:16.816596Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [82, 169, 61, 182, 180, 82, 190, 3, 136, 43, 160, 233, 251, 156, 85, 12, 116, 81, 68, 235, 37, 226, 133, 86, 252, 29, 241, 243, 221, 133, 76, 93, 125, 213, 224, 122, 12, 82, 147, 45, 52, 3, 148, 107, 92, 161, 68, 71, 161, 104, 89, 107, 74, 20, 141, 73, 140, 6, 162, 217, 223, 124, 84, 78, 113, 46, 126, 78, 224, 134, 191, 227, 156, 77, 205, 94, 105, 218, 250, 114, 36, 105, 84, 70, 254, 81, 192, 249, 235, 106, 242, 189, 233, 63, 254, 19, 119, 157, 79, 143, 198, 244, 202, 198, 3, 117, 136, 30, 179, 109, 226, 107, 167, 231, 55, 13, 111, 171, 134, 224, 217, 247, 19, 84, 144, 7, 212, 203, 50, 94, 211, 227, 78, 148, 73, 132, 46, 12, 140, 20, 239, 190, 242, 241, 218, 101, 40, 137, 195, 106, 93, 8, 51, 35, 33, 23, 60, 47, 19, 198, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:47:16.906593Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:47:16.906633Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:47:16.935769Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:47:16.969736Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FiJeLaSqROiiLqJZphaisw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:47:16.972572Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FiJeLaSqROiiLqJZphaisw==: stderr: -2026-04-20T10:47:16.972598Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FiJeLaSqROiiLqJZphaisw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:47:16.972608Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FiJeLaSqROiiLqJZphaisw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:47:16.972615Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FiJeLaSqROiiLqJZphaisw==: stderr: stack backtrace: -2026-04-20T10:47:16.972621Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FiJeLaSqROiiLqJZphaisw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:47:16.972627Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FiJeLaSqROiiLqJZphaisw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:47:16.972728Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:47:16.973500Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:47:16.973790Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:47:17.044709Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:47:17.044753Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:47:17.044972Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:47:17.045151Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:47:17.045220Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:47:17.045700Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=111 blob_id=2147876787829771078014404950626014765 -2026-04-20T10:47:17.603739Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hfLviSXgTAG_zB5MPC92kQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:47:17.610247Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:47:17.620532Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 989049 cycles -2026-04-20T10:47:17.623114Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [47, 158, 0, 32, 52, 137, 68, 40, 212, 229, 18, 110, 106, 7, 60, 194, 172, 17, 149, 133, 23, 207, 174, 234, 216, 169, 75, 153, 190, 25, 124, 210, 56, 145, 78, 208, 208, 99, 58, 63, 171, 133, 138, 173, 128, 120, 40, 63, 148, 63, 236, 228, 72, 23, 58, 21, 47, 232, 121, 48, 141, 50, 157, 24, 47, 158, 0, 32, 52, 137, 68, 40, 212, 229, 18, 110, 106, 7, 60, 194, 172, 17, 149, 133, 23, 207, 174, 234, 216, 169, 75, 153, 190, 25, 124, 210, 126, 121, 38, 227, 121, 121, 132, 138, 227, 170, 139, 113, 167, 86, 121, 208, 252, 111, 64, 73, 146, 57, 46, 84, 141, 246, 211, 182, 135, 27, 167, 116, 217, 115, 162, 246, 55, 136, 79, 31, 107, 197, 238, 4, 30, 241, 54, 91, 78, 115, 194, 210, 24, 137, 111, 171, 104, 246, 98, 17, 231, 201, 184, 110, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:47:17.679036Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:47:17.679081Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:47:17.754418Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:47:17.789482Z DEBUG sp1_core_executor_runner::native: CHILD sp1_k7To1mgxQdOrlWfOyfNu_w==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:47:17.792305Z DEBUG sp1_core_executor_runner::native: CHILD sp1_k7To1mgxQdOrlWfOyfNu_w==: stderr: -2026-04-20T10:47:17.792339Z DEBUG sp1_core_executor_runner::native: CHILD sp1_k7To1mgxQdOrlWfOyfNu_w==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:47:17.792350Z DEBUG sp1_core_executor_runner::native: CHILD sp1_k7To1mgxQdOrlWfOyfNu_w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:47:17.792357Z DEBUG sp1_core_executor_runner::native: CHILD sp1_k7To1mgxQdOrlWfOyfNu_w==: stderr: stack backtrace: -2026-04-20T10:47:17.792363Z DEBUG sp1_core_executor_runner::native: CHILD sp1_k7To1mgxQdOrlWfOyfNu_w==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:47:17.792370Z DEBUG sp1_core_executor_runner::native: CHILD sp1_k7To1mgxQdOrlWfOyfNu_w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:47:17.792450Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:47:17.793206Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:47:17.793513Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:47:17.858365Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:47:17.858418Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:47:17.858578Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:47:17.859146Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=112 blob_id=2147876788812671451543371277286370412 -2026-04-20T10:47:22.215069Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=73 prev_hash=0x9a6f21460030b814d4af0a70ff07b4a66971df591b736e5fd0273446401fdea9 hash=0x3e7ad5a5b0282b022c26fc097794c340ee92b19652a7b3c34d62194a28f77991 producing_time=1.51325ms -2026-04-20T10:47:22.220822Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=73 current_state_root="577106e2c7e60eb1c9b4eabf363d435ef5ef1cc2b70e99bdfe9d31f8132b463a14249fc117e3914bf457cf40811937ef538c39c98bcf672cc69c5a9ccff96c5a" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xeabfe3ff8c39dc5f396699a70c5eefe6aad5f3e0f07844dd04467f839d826697"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x792c24e4887f140404ff1b0d5648898af085dc05be3b76b3336d66ef03ea7380, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x6d1d3a6906e88d47cfe98940e9c832bd555ad4d50375ea1e0ee0039bdc13e453, len=625"] -2026-04-20T10:47:22.221043Z DEBUG StfBlueprint::apply_slot{context=Node da_height=73}: sov_chain_state: Setting next visible slot number next_visible_slot_number=67 -2026-04-20T10:47:22.221183Z DEBUG StfBlueprint::apply_slot{context=Node da_height=73}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xeabfe3ff8c39dc5f396699a70c5eefe6aad5f3e0f07844dd04467f839d826697}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:47:22.221371Z DEBUG StfBlueprint::apply_slot{context=Node da_height=73}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=577106e2c7e60eb1c9b4eabf363d435ef5ef1cc2b70e99bdfe9d31f8132b463a14249fc117e3914bf457cf40811937ef538c39c98bcf672cc69c5a9ccff96c5a next_version=73 sesssion_starting_time=59.009µs -2026-04-20T10:47:22.222327Z DEBUG StfBlueprint::apply_slot{context=Node da_height=73}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=04be40fc542daeff03378d65607087136c86dc2d08eb43313e795463c5aed3f72dadfd644fbd1c543e17faa287e05b934b70f81dbc64fd9d1c1d5d277ec5223f next_version=73 time=1.047873ms accesses_build_time=31.83µs finishing_session_time=912.854µs -2026-04-20T10:47:22.222520Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="470d5b6dbe34963384b6e0e37a37ae6430471c8b7b55cbdc339470479ec33d06766e9aea3cd95577218e7c2c711200f7bf1d9b6a1498bcbc987602b6ff1426ae" next_state_root="04be40fc542daeff03378d65607087136c86dc2d08eb43313e795463c5aed3f72dadfd644fbd1c543e17faa287e05b934b70f81dbc64fd9d1c1d5d277ec5223f" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:47:22.223083Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 73, latest_finalized_slot_number: 72, sync_status: Synced { synced_da_height: 72 }, .. } -2026-04-20T10:47:22.223159Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=48 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 73, latest_finalized_slot_number: 72, sync_status: Synced { synced_da_height: 72 }, .. } -2026-04-20T10:47:22.223219Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=48 -2026-04-20T10:47:22.234372Z DEBUG sov_stf_runner::runner: Block execution complete time=6.005646713s -2026-04-20T10:47:22.234399Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:47:22.234640Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:47:22.234719Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:47:22.809642Z DEBUG sp1_core_executor_runner::native: CHILD sp1_7wITIzNURumVfbb5e2CV-g==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:47:22.827015Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:47:22.837975Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2557448 cycles -2026-04-20T10:47:22.840590Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [47, 158, 0, 32, 52, 137, 68, 40, 212, 229, 18, 110, 106, 7, 60, 194, 172, 17, 149, 133, 23, 207, 174, 234, 216, 169, 75, 153, 190, 25, 124, 210, 2, 102, 117, 195, 3, 210, 204, 22, 56, 204, 44, 251, 195, 6, 113, 137, 175, 177, 70, 242, 127, 201, 100, 168, 93, 171, 80, 100, 88, 13, 1, 25, 70, 24, 35, 201, 29, 92, 43, 206, 77, 1, 11, 132, 198, 196, 204, 62, 133, 128, 214, 113, 146, 249, 3, 142, 207, 226, 237, 94, 18, 217, 91, 192, 98, 115, 19, 90, 241, 186, 177, 222, 129, 176, 143, 73, 103, 142, 32, 42, 57, 134, 199, 224, 176, 3, 119, 186, 75, 229, 89, 140, 144, 158, 15, 221, 129, 118, 203, 199, 226, 52, 68, 140, 96, 118, 138, 77, 134, 112, 125, 17, 75, 79, 150, 210, 176, 246, 34, 244, 17, 82, 88, 139, 82, 161, 185, 183, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:47:22.952923Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:47:22.952959Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:47:23.044021Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:47:23.076612Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Lc82F81KRmyVZvwxLOncAg==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:47:23.079470Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Lc82F81KRmyVZvwxLOncAg==: stderr: -2026-04-20T10:47:23.079483Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Lc82F81KRmyVZvwxLOncAg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:47:23.079492Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Lc82F81KRmyVZvwxLOncAg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:47:23.079500Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Lc82F81KRmyVZvwxLOncAg==: stderr: stack backtrace: -2026-04-20T10:47:23.079505Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Lc82F81KRmyVZvwxLOncAg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:47:23.079512Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Lc82F81KRmyVZvwxLOncAg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:47:23.079606Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:47:23.080408Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:47:23.080691Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:47:23.147947Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:47:23.147992Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:47:23.148116Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:47:23.148595Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=113 blob_id=2147876795207866622098529429757195734 -2026-04-20T10:47:28.217188Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=74 prev_hash=0x3e7ad5a5b0282b022c26fc097794c340ee92b19652a7b3c34d62194a28f77991 hash=0x1f55a9cd84ae4f6ba3730514704338a141089c808c34240f2a7212b1d6bf481a producing_time=1.427ms -2026-04-20T10:47:28.226955Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=74 current_state_root="04be40fc542daeff03378d65607087136c86dc2d08eb43313e795463c5aed3f72dadfd644fbd1c543e17faa287e05b934b70f81dbc64fd9d1c1d5d277ec5223f" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xbfa5fb151b23e12ada9fe831f0c07be87c2a2a93b908b97130237b8ede139e0c, len=625"] -2026-04-20T10:47:28.227296Z DEBUG StfBlueprint::apply_slot{context=Node da_height=74}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=04be40fc542daeff03378d65607087136c86dc2d08eb43313e795463c5aed3f72dadfd644fbd1c543e17faa287e05b934b70f81dbc64fd9d1c1d5d277ec5223f next_version=74 sesssion_starting_time=49.72µs -2026-04-20T10:47:28.228106Z DEBUG StfBlueprint::apply_slot{context=Node da_height=74}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=04be40fc542daeff03378d65607087136c86dc2d08eb43313e795463c5aed3f72d850b64a9db24a53f251005f9b208e32af7a38eba2a9e0dd56ef7f19b5cba2a next_version=74 time=876.544µs accesses_build_time=15.909µs finishing_session_time=759.675µs -2026-04-20T10:47:28.228167Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="577106e2c7e60eb1c9b4eabf363d435ef5ef1cc2b70e99bdfe9d31f8132b463a14249fc117e3914bf457cf40811937ef538c39c98bcf672cc69c5a9ccff96c5a" next_state_root="04be40fc542daeff03378d65607087136c86dc2d08eb43313e795463c5aed3f72d850b64a9db24a53f251005f9b208e32af7a38eba2a9e0dd56ef7f19b5cba2a" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:47:28.228810Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 74, latest_finalized_slot_number: 73, sync_status: Synced { synced_da_height: 73 }, .. } -2026-04-20T10:47:28.228900Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=48 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 74, latest_finalized_slot_number: 73, sync_status: Synced { synced_da_height: 73 }, .. } -2026-04-20T10:47:28.228966Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=48 -2026-04-20T10:47:28.229214Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:47:28.229279Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=44 -2026-04-20T10:47:28.229438Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=69 -2026-04-20T10:47:28.229597Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:47:28.229903Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=69 sequence_number=114 -2026-04-20T10:47:28.229941Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=114 blob_id=2147876801350425466035830663327082717 visible_slot_number_after_increase=69 visible_slots_to_advance=2 -2026-04-20T10:47:28.229965Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:47:28.232014Z DEBUG manage_blob_submission_inside_task{blob_id=2147876801350425466035830663327082717 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x70203858319e63a036f49c3d8c23552c39bf00b50d514c473874dacaf07b0d5d sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=75 include_at=75 bytes=13 time=822.424µs -2026-04-20T10:47:28.247018Z DEBUG compute_state_update{scope="sequencer" rollup_height=49 slot_number=69}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:47:28.247043Z DEBUG sov_stf_runner::runner: Block execution complete time=6.012644828s -2026-04-20T10:47:28.247083Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:47:28.247111Z DEBUG compute_state_update{scope="sequencer" rollup_height=49 slot_number=69}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=04be40fc542daeff03378d65607087136c86dc2d08eb43313e795463c5aed3f72d850b64a9db24a53f251005f9b208e32af7a38eba2a9e0dd56ef7f19b5cba2a next_version=75 sesssion_starting_time=16.675992ms -2026-04-20T10:47:28.247791Z DEBUG compute_state_update{scope="sequencer" rollup_height=49 slot_number=69}: sov_state::nomt::prover_storage: computed next state root state_root=14db78b3bd2dc29c94a744e047972a06e6742836abf184ea8afd23662c74f3924ff7ae95f792dd9bb65f32de6b983904ff5f75f76a63b2b4abb6d1476b8f4706 next_version=75 time=17.371398ms accesses_build_time=15.07µs finishing_session_time=653.066µs -2026-04-20T10:47:34.219679Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=75 prev_hash=0x1f55a9cd84ae4f6ba3730514704338a141089c808c34240f2a7212b1d6bf481a hash=0x315cb4689ca5654610fb7517a786ec37d1c19f242a5a063f72b73b7621bcb0be producing_time=1.299032ms -2026-04-20T10:47:34.228416Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=75 current_state_root="04be40fc542daeff03378d65607087136c86dc2d08eb43313e795463c5aed3f72d850b64a9db24a53f251005f9b208e32af7a38eba2a9e0dd56ef7f19b5cba2a" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x70203858319e63a036f49c3d8c23552c39bf00b50d514c473874dacaf07b0d5d"] proof_blobs=[] -2026-04-20T10:47:34.228604Z DEBUG StfBlueprint::apply_slot{context=Node da_height=75}: sov_chain_state: Setting next visible slot number next_visible_slot_number=69 -2026-04-20T10:47:34.228758Z DEBUG StfBlueprint::apply_slot{context=Node da_height=75}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x70203858319e63a036f49c3d8c23552c39bf00b50d514c473874dacaf07b0d5d}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:47:34.228867Z DEBUG StfBlueprint::apply_slot{context=Node da_height=75}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=04be40fc542daeff03378d65607087136c86dc2d08eb43313e795463c5aed3f72d850b64a9db24a53f251005f9b208e32af7a38eba2a9e0dd56ef7f19b5cba2a next_version=75 sesssion_starting_time=29.82µs -2026-04-20T10:47:34.229732Z DEBUG StfBlueprint::apply_slot{context=Node da_height=75}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=14db78b3bd2dc29c94a744e047972a06e6742836abf184ea8afd23662c74f39234767525402858737f5ec181c9561a48b7b3102c360edd1f6c8ec4e5d4de9dd4 next_version=75 time=915.754µs accesses_build_time=20.33µs finishing_session_time=845.235µs -2026-04-20T10:47:34.229842Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="792c24e4887f140404ff1b0d5648898af085dc05be3b76b3336d66ef03ea7380" -2026-04-20T10:47:34.229857Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="6d1d3a6906e88d47cfe98940e9c832bd555ad4d50375ea1e0ee0039bdc13e453" -2026-04-20T10:47:34.229872Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="bfa5fb151b23e12ada9fe831f0c07be87c2a2a93b908b97130237b8ede139e0c" -2026-04-20T10:47:34.229881Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="04be40fc542daeff03378d65607087136c86dc2d08eb43313e795463c5aed3f72dadfd644fbd1c543e17faa287e05b934b70f81dbc64fd9d1c1d5d277ec5223f" next_state_root="14db78b3bd2dc29c94a744e047972a06e6742836abf184ea8afd23662c74f39234767525402858737f5ec181c9561a48b7b3102c360edd1f6c8ec4e5d4de9dd4" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:47:34.230334Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 75, latest_finalized_slot_number: 74, sync_status: Synced { synced_da_height: 74 }, .. } -2026-04-20T10:47:34.230455Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=49 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 75, latest_finalized_slot_number: 74, sync_status: Synced { synced_da_height: 74 }, .. } -2026-04-20T10:47:34.230540Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=49 -2026-04-20T10:47:34.230811Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:47:34.230892Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=45 -2026-04-20T10:47:34.231033Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=70 -2026-04-20T10:47:34.231169Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:47:34.231335Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=70 sequence_number=115 -2026-04-20T10:47:34.231354Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=115 blob_id=2147876808606372295921747773579401435 visible_slot_number_after_increase=70 visible_slots_to_advance=1 -2026-04-20T10:47:34.231396Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:47:34.233139Z DEBUG manage_blob_submission_inside_task{blob_id=2147876808606372295921747773579401435 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xf5b33c66ce96869f648d54c50ed5ea22492195cb52e3d26ebabfa3edf8f48d37 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=76 include_at=76 bytes=13 time=694.226µs -2026-04-20T10:47:34.239858Z DEBUG compute_state_update{scope="sequencer" rollup_height=50 slot_number=70}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:47:34.239868Z DEBUG sov_stf_runner::runner: Block execution complete time=5.992786716s -2026-04-20T10:47:34.239900Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:47:34.239939Z DEBUG compute_state_update{scope="sequencer" rollup_height=50 slot_number=70}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=14db78b3bd2dc29c94a744e047972a06e6742836abf184ea8afd23662c74f39234767525402858737f5ec181c9561a48b7b3102c360edd1f6c8ec4e5d4de9dd4 next_version=76 sesssion_starting_time=8.134388ms -2026-04-20T10:47:34.240132Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:47:34.240210Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:47:34.240601Z DEBUG compute_state_update{scope="sequencer" rollup_height=50 slot_number=70}: sov_state::nomt::prover_storage: computed next state root state_root=37d0d3129c786fdca8f145d6cceddfc983fee0d436e20dd95415705ce1c5db092b0d0bb8d0fdf990484b8defb3a6c2ad98dcc4d025def3f99b0128e966f0b211 next_version=76 time=8.814823ms accesses_build_time=17.19µs finishing_session_time=633.206µs -2026-04-20T10:47:34.803201Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qpCy2aV4RbqzGNeFneiYQg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:47:34.816758Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:47:34.830026Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1908917 cycles -2026-04-20T10:47:34.832615Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [38, 67, 169, 178, 31, 55, 43, 241, 142, 156, 234, 244, 239, 241, 196, 222, 249, 141, 81, 194, 192, 199, 205, 181, 72, 150, 102, 249, 171, 135, 212, 67, 38, 215, 48, 61, 245, 5, 179, 69, 66, 199, 118, 133, 115, 155, 255, 51, 18, 62, 131, 133, 163, 66, 113, 60, 182, 80, 168, 39, 155, 91, 212, 82, 68, 112, 185, 24, 77, 175, 48, 169, 221, 158, 87, 240, 126, 44, 52, 48, 154, 242, 84, 4, 251, 252, 242, 226, 212, 142, 13, 39, 6, 2, 219, 162, 105, 3, 66, 93, 126, 23, 192, 67, 68, 31, 46, 245, 189, 86, 72, 79, 193, 33, 104, 161, 58, 209, 98, 49, 191, 104, 74, 91, 33, 21, 75, 122, 189, 241, 124, 144, 58, 12, 252, 44, 241, 93, 122, 160, 55, 54, 52, 18, 195, 191, 179, 148, 60, 97, 41, 142, 53, 225, 84, 230, 200, 232, 85, 114, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:47:34.919831Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:47:34.919870Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:47:34.948303Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:47:34.982568Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fammHNTzQmWUtJPge3CR_g==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:47:34.985406Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fammHNTzQmWUtJPge3CR_g==: stderr: -2026-04-20T10:47:34.985430Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fammHNTzQmWUtJPge3CR_g==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:47:34.985440Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fammHNTzQmWUtJPge3CR_g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:47:34.985447Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fammHNTzQmWUtJPge3CR_g==: stderr: stack backtrace: -2026-04-20T10:47:34.985453Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fammHNTzQmWUtJPge3CR_g==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:47:34.985460Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fammHNTzQmWUtJPge3CR_g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:47:34.985545Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:47:34.986344Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:47:34.986637Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:47:35.056763Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:47:35.056807Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:47:35.056965Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:47:35.057143Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:47:35.057199Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:47:35.057781Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=116 blob_id=2147876809604957699607824781415222556 -2026-04-20T10:47:35.623965Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tfYLsSdhQNyAgImNL1bXtg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:47:35.630623Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:47:35.641638Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1014388 cycles -2026-04-20T10:47:35.642755Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [75, 53, 121, 40, 102, 89, 30, 95, 235, 193, 163, 39, 123, 137, 82, 80, 75, 59, 234, 80, 87, 205, 125, 213, 223, 128, 239, 163, 245, 192, 84, 167, 22, 158, 157, 84, 250, 104, 191, 216, 124, 243, 36, 182, 255, 236, 38, 145, 148, 127, 211, 4, 81, 122, 58, 173, 252, 94, 211, 59, 211, 126, 223, 220, 75, 53, 121, 40, 102, 89, 30, 95, 235, 193, 163, 39, 123, 137, 82, 80, 75, 59, 234, 80, 87, 205, 125, 213, 223, 128, 239, 163, 245, 192, 84, 167, 107, 155, 91, 252, 166, 118, 121, 13, 170, 193, 66, 47, 55, 36, 150, 241, 110, 171, 87, 174, 156, 237, 243, 212, 92, 253, 212, 248, 210, 26, 230, 102, 61, 119, 51, 179, 83, 239, 35, 137, 128, 188, 91, 216, 58, 231, 204, 168, 146, 187, 16, 83, 32, 170, 109, 109, 254, 59, 149, 218, 92, 120, 86, 171, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:47:35.699971Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:47:35.700016Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:47:35.764276Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:47:35.789745Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EsRRzO5ETs-SlVQ7cb5R_w==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:47:35.792574Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EsRRzO5ETs-SlVQ7cb5R_w==: stderr: -2026-04-20T10:47:35.792586Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EsRRzO5ETs-SlVQ7cb5R_w==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:47:35.792595Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EsRRzO5ETs-SlVQ7cb5R_w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:47:35.792603Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EsRRzO5ETs-SlVQ7cb5R_w==: stderr: stack backtrace: -2026-04-20T10:47:35.792609Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EsRRzO5ETs-SlVQ7cb5R_w==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:47:35.792615Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EsRRzO5ETs-SlVQ7cb5R_w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:47:35.792719Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:47:35.793499Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:47:35.793799Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:47:35.863876Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:47:35.863936Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:47:35.864088Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:47:35.864606Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=117 blob_id=2147876810580570295247897240339234394 -2026-04-20T10:47:40.222453Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=76 prev_hash=0x315cb4689ca5654610fb7517a786ec37d1c19f242a5a063f72b73b7621bcb0be hash=0x2d8b7459673741587dc632f55af3bc067b51f60dcba6a5d23b893e9ea06cb79e producing_time=1.335262ms -2026-04-20T10:47:40.231205Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=76 current_state_root="14db78b3bd2dc29c94a744e047972a06e6742836abf184ea8afd23662c74f39234767525402858737f5ec181c9561a48b7b3102c360edd1f6c8ec4e5d4de9dd4" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf5b33c66ce96869f648d54c50ed5ea22492195cb52e3d26ebabfa3edf8f48d37"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1810e09a63a0796a18b482104628782a193de7c797f84492924f2d0adb0d4d89, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x95d005a3e82e3f2bd2b0a90da64cd90bc1c5222ae4fb4e79a84e3fceb682f9a6, len=625"] -2026-04-20T10:47:40.231457Z DEBUG StfBlueprint::apply_slot{context=Node da_height=76}: sov_chain_state: Setting next visible slot number next_visible_slot_number=70 -2026-04-20T10:47:40.231597Z DEBUG StfBlueprint::apply_slot{context=Node da_height=76}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xf5b33c66ce96869f648d54c50ed5ea22492195cb52e3d26ebabfa3edf8f48d37}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:47:40.231772Z DEBUG StfBlueprint::apply_slot{context=Node da_height=76}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=14db78b3bd2dc29c94a744e047972a06e6742836abf184ea8afd23662c74f39234767525402858737f5ec181c9561a48b7b3102c360edd1f6c8ec4e5d4de9dd4 next_version=76 sesssion_starting_time=47.39µs -2026-04-20T10:47:40.232667Z DEBUG StfBlueprint::apply_slot{context=Node da_height=76}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=37d0d3129c786fdca8f145d6cceddfc983fee0d436e20dd95415705ce1c5db09145f86d791b60698f4386f00860a553db7cf9bb608cdce17aa705c25a59e22fa next_version=76 time=976.234µs accesses_build_time=32.45µs finishing_session_time=864.625µs -2026-04-20T10:47:40.232862Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="04be40fc542daeff03378d65607087136c86dc2d08eb43313e795463c5aed3f72d850b64a9db24a53f251005f9b208e32af7a38eba2a9e0dd56ef7f19b5cba2a" next_state_root="37d0d3129c786fdca8f145d6cceddfc983fee0d436e20dd95415705ce1c5db09145f86d791b60698f4386f00860a553db7cf9bb608cdce17aa705c25a59e22fa" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:47:40.233441Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 76, latest_finalized_slot_number: 76, sync_status: Synced { synced_da_height: 75 }, .. } -2026-04-20T10:47:40.233546Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=50 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 76, latest_finalized_slot_number: 76, sync_status: Synced { synced_da_height: 75 }, .. } -2026-04-20T10:47:40.233608Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=50 -2026-04-20T10:47:40.251221Z DEBUG sov_stf_runner::runner: Block execution complete time=6.011320917s -2026-04-20T10:47:40.251251Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:47:40.251518Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:47:40.251610Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:47:40.814244Z DEBUG sp1_core_executor_runner::native: CHILD sp1_p_tlTmEqQI-fr_NTmhA_Fw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:47:40.831245Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:47:40.842923Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2533989 cycles -2026-04-20T10:47:40.845584Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [75, 53, 121, 40, 102, 89, 30, 95, 235, 193, 163, 39, 123, 137, 82, 80, 75, 59, 234, 80, 87, 205, 125, 213, 223, 128, 239, 163, 245, 192, 84, 167, 122, 41, 229, 197, 28, 217, 196, 158, 74, 234, 110, 208, 169, 199, 3, 60, 201, 23, 91, 86, 37, 52, 210, 62, 252, 49, 207, 16, 46, 80, 253, 37, 76, 135, 97, 144, 124, 151, 236, 36, 57, 177, 64, 47, 236, 100, 89, 192, 122, 164, 97, 14, 55, 16, 43, 85, 147, 35, 45, 207, 180, 28, 19, 123, 0, 184, 165, 91, 197, 134, 49, 254, 208, 152, 130, 246, 38, 187, 223, 232, 144, 3, 33, 214, 49, 160, 124, 214, 223, 225, 132, 111, 246, 38, 11, 73, 29, 202, 99, 183, 85, 233, 215, 34, 103, 160, 179, 180, 179, 219, 57, 170, 41, 156, 128, 90, 219, 3, 208, 206, 117, 241, 173, 171, 209, 69, 87, 155, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:47:40.952539Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:47:40.952577Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:47:41.059133Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:47:41.095816Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-0ShA1EyRJqUBmOAgXIzEg==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:47:41.098672Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-0ShA1EyRJqUBmOAgXIzEg==: stderr: -2026-04-20T10:47:41.098684Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-0ShA1EyRJqUBmOAgXIzEg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:47:41.098692Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-0ShA1EyRJqUBmOAgXIzEg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:47:41.098701Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-0ShA1EyRJqUBmOAgXIzEg==: stderr: stack backtrace: -2026-04-20T10:47:41.098707Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-0ShA1EyRJqUBmOAgXIzEg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:47:41.098713Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-0ShA1EyRJqUBmOAgXIzEg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:47:41.098876Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:47:41.099632Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:47:41.099934Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:47:41.169921Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:47:41.169962Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:47:41.170096Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:47:41.170673Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=118 blob_id=2147876816995136285196026164062032777 -2026-04-20T10:47:46.225807Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=77 prev_hash=0x2d8b7459673741587dc632f55af3bc067b51f60dcba6a5d23b893e9ea06cb79e hash=0x319683c0488528414ef73879b99bc5622003b08018cf295a725d9c4b88b0a078 producing_time=1.58283ms -2026-04-20T10:47:46.233172Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=77 current_state_root="37d0d3129c786fdca8f145d6cceddfc983fee0d436e20dd95415705ce1c5db09145f86d791b60698f4386f00860a553db7cf9bb608cdce17aa705c25a59e22fa" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x3865e1daf6bceca723a28a9a5ed426f503f523cf4fc6330d5675f94d8efcc59b, len=625"] -2026-04-20T10:47:46.233520Z DEBUG StfBlueprint::apply_slot{context=Node da_height=77}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=37d0d3129c786fdca8f145d6cceddfc983fee0d436e20dd95415705ce1c5db09145f86d791b60698f4386f00860a553db7cf9bb608cdce17aa705c25a59e22fa next_version=77 sesssion_starting_time=46.76µs -2026-04-20T10:47:46.234294Z DEBUG StfBlueprint::apply_slot{context=Node da_height=77}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=37d0d3129c786fdca8f145d6cceddfc983fee0d436e20dd95415705ce1c5db09432b6658dd7519ecace3975958b4c08ad31d15eb229182cfd5494d41eba12a3f next_version=77 time=839.914µs accesses_build_time=17.34µs finishing_session_time=738.745µs -2026-04-20T10:47:46.234365Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="37d0d3129c786fdca8f145d6cceddfc983fee0d436e20dd95415705ce1c5db09145f86d791b60698f4386f00860a553db7cf9bb608cdce17aa705c25a59e22fa" next_state_root="37d0d3129c786fdca8f145d6cceddfc983fee0d436e20dd95415705ce1c5db09432b6658dd7519ecace3975958b4c08ad31d15eb229182cfd5494d41eba12a3f" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:47:46.234932Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 77, latest_finalized_slot_number: 77, sync_status: Synced { synced_da_height: 76 }, .. } -2026-04-20T10:47:46.235018Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=50 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 77, latest_finalized_slot_number: 77, sync_status: Synced { synced_da_height: 76 }, .. } -2026-04-20T10:47:46.235086Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=50 -2026-04-20T10:47:46.235363Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=3 -2026-04-20T10:47:46.235447Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=46 -2026-04-20T10:47:46.235550Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=73 -2026-04-20T10:47:46.235721Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:47:46.236035Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=3 visible_slot_number_after_increase=73 sequence_number=119 -2026-04-20T10:47:46.236083Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=119 blob_id=2147876823119528551966488281593651980 visible_slot_number_after_increase=73 visible_slots_to_advance=3 -2026-04-20T10:47:46.236088Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:47:46.237857Z DEBUG manage_blob_submission_inside_task{blob_id=2147876823119528551966488281593651980 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x568704756d73d06e33b819566edb147e92e2389cd5a72022e760e9a6d1090d17 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=78 include_at=78 bytes=13 time=687.175µs -2026-04-20T10:47:46.241858Z DEBUG compute_state_update{scope="sequencer" rollup_height=51 slot_number=73}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:47:46.241901Z DEBUG sov_stf_runner::runner: Block execution complete time=5.99065136s -2026-04-20T10:47:46.241925Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:47:46.241935Z DEBUG compute_state_update{scope="sequencer" rollup_height=51 slot_number=73}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=37d0d3129c786fdca8f145d6cceddfc983fee0d436e20dd95415705ce1c5db09432b6658dd7519ecace3975958b4c08ad31d15eb229182cfd5494d41eba12a3f next_version=78 sesssion_starting_time=5.391075ms -2026-04-20T10:47:46.242642Z DEBUG compute_state_update{scope="sequencer" rollup_height=51 slot_number=73}: sov_state::nomt::prover_storage: computed next state root state_root=302085bea3e9e498977db3f4fff97fd95378e3f17efc7a3e2d3108bb3805be576bd9e2b0a07ff6827027d6754d02c9664cf84f03e1683065c872549dba2b1f76 next_version=78 time=6.11653ms accesses_build_time=17.2µs finishing_session_time=681.805µs -2026-04-20T10:47:52.228083Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=78 prev_hash=0x319683c0488528414ef73879b99bc5622003b08018cf295a725d9c4b88b0a078 hash=0xde7afa2a26705d245b5bc8842d7acde8eb5fd89c4906b7c18fea739bdfd37be1 producing_time=1.45998ms -2026-04-20T10:47:52.233090Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=78 current_state_root="37d0d3129c786fdca8f145d6cceddfc983fee0d436e20dd95415705ce1c5db09432b6658dd7519ecace3975958b4c08ad31d15eb229182cfd5494d41eba12a3f" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x568704756d73d06e33b819566edb147e92e2389cd5a72022e760e9a6d1090d17"] proof_blobs=[] -2026-04-20T10:47:52.233380Z DEBUG StfBlueprint::apply_slot{context=Node da_height=78}: sov_chain_state: Setting next visible slot number next_visible_slot_number=73 -2026-04-20T10:47:52.233633Z DEBUG StfBlueprint::apply_slot{context=Node da_height=78}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x568704756d73d06e33b819566edb147e92e2389cd5a72022e760e9a6d1090d17}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:47:52.233814Z DEBUG StfBlueprint::apply_slot{context=Node da_height=78}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=37d0d3129c786fdca8f145d6cceddfc983fee0d436e20dd95415705ce1c5db09432b6658dd7519ecace3975958b4c08ad31d15eb229182cfd5494d41eba12a3f next_version=78 sesssion_starting_time=46.099µs -2026-04-20T10:47:52.234811Z DEBUG StfBlueprint::apply_slot{context=Node da_height=78}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=302085bea3e9e498977db3f4fff97fd95378e3f17efc7a3e2d3108bb3805be574d2d5c09cce0e1cf04631e856d744e15031377bb645c746ebe2a71c5fe4e4b80 next_version=78 time=1.081083ms accesses_build_time=36.69µs finishing_session_time=973.464µs -2026-04-20T10:47:52.234972Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="1810e09a63a0796a18b482104628782a193de7c797f84492924f2d0adb0d4d89" -2026-04-20T10:47:52.234988Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="95d005a3e82e3f2bd2b0a90da64cd90bc1c5222ae4fb4e79a84e3fceb682f9a6" -2026-04-20T10:47:52.234998Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="3865e1daf6bceca723a28a9a5ed426f503f523cf4fc6330d5675f94d8efcc59b" -2026-04-20T10:47:52.235026Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="37d0d3129c786fdca8f145d6cceddfc983fee0d436e20dd95415705ce1c5db09432b6658dd7519ecace3975958b4c08ad31d15eb229182cfd5494d41eba12a3f" next_state_root="302085bea3e9e498977db3f4fff97fd95378e3f17efc7a3e2d3108bb3805be574d2d5c09cce0e1cf04631e856d744e15031377bb645c746ebe2a71c5fe4e4b80" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:47:52.235596Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 78, latest_finalized_slot_number: 78, sync_status: Synced { synced_da_height: 77 }, .. } -2026-04-20T10:47:52.235682Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=51 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 78, latest_finalized_slot_number: 78, sync_status: Synced { synced_da_height: 77 }, .. } -2026-04-20T10:47:52.235766Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=51 -2026-04-20T10:47:52.235983Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:47:52.236047Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=47 -2026-04-20T10:47:52.236168Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=74 -2026-04-20T10:47:52.236284Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:47:52.236436Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=74 sequence_number=120 -2026-04-20T10:47:52.236465Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=120 blob_id=2147876830373095237589999721245746431 visible_slot_number_after_increase=74 visible_slots_to_advance=1 -2026-04-20T10:47:52.236489Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:47:52.238395Z DEBUG manage_blob_submission_inside_task{blob_id=2147876830373095237589999721245746431 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x0d7de044ac95e35cb125c5ea445405c68d68b506930d956c548a3dfc1f545a91 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=79 include_at=79 bytes=13 time=863.705µs -2026-04-20T10:47:52.246236Z DEBUG compute_state_update{scope="sequencer" rollup_height=52 slot_number=74}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:47:52.246270Z DEBUG sov_stf_runner::runner: Block execution complete time=6.004347782s -2026-04-20T10:47:52.246289Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:47:52.246326Z DEBUG compute_state_update{scope="sequencer" rollup_height=52 slot_number=74}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=302085bea3e9e498977db3f4fff97fd95378e3f17efc7a3e2d3108bb3805be574d2d5c09cce0e1cf04631e856d744e15031377bb645c746ebe2a71c5fe4e4b80 next_version=79 sesssion_starting_time=9.481639ms -2026-04-20T10:47:52.246570Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:47:52.246655Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:47:52.247028Z DEBUG compute_state_update{scope="sequencer" rollup_height=52 slot_number=74}: sov_state::nomt::prover_storage: computed next state root state_root=05be22aa8d740ca7632c7d07644e3eac3bb66c9350014debbbf8794f25a37e9360b1fda5a19245b5023fdd22ffc54a55d759955654fd4f6d9a29d6e5c834b9a3 next_version=79 time=10.196974ms accesses_build_time=11.64µs finishing_session_time=673.095µs -2026-04-20T10:47:52.807501Z DEBUG sp1_core_executor_runner::native: CHILD sp1_O-ItCMcgQIyQf4ThBuzxTw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:47:52.820599Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:47:52.833057Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1849516 cycles -2026-04-20T10:47:52.835830Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [39, 158, 57, 3, 25, 77, 251, 125, 154, 65, 231, 200, 191, 165, 96, 51, 50, 63, 196, 171, 62, 240, 1, 168, 224, 21, 238, 143, 33, 95, 206, 195, 121, 161, 132, 236, 207, 76, 8, 240, 68, 116, 27, 252, 254, 152, 180, 177, 137, 181, 101, 197, 32, 47, 156, 110, 92, 180, 173, 62, 178, 180, 147, 237, 101, 171, 16, 204, 231, 153, 200, 111, 221, 43, 64, 44, 220, 134, 93, 139, 249, 52, 77, 134, 117, 39, 137, 62, 207, 151, 93, 207, 207, 212, 33, 233, 96, 139, 239, 29, 245, 133, 14, 69, 64, 120, 168, 73, 143, 14, 39, 93, 171, 227, 125, 76, 163, 149, 56, 91, 250, 80, 129, 249, 57, 97, 224, 131, 162, 112, 87, 159, 26, 189, 9, 63, 119, 8, 10, 32, 151, 172, 25, 242, 65, 198, 46, 224, 33, 140, 206, 42, 222, 117, 6, 180, 127, 122, 171, 138, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:47:52.914879Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:47:52.914927Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:47:52.954967Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:47:52.989350Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hLavooI9SyquBhNbU6YiWw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:47:52.992202Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hLavooI9SyquBhNbU6YiWw==: stderr: -2026-04-20T10:47:52.992226Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hLavooI9SyquBhNbU6YiWw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:47:52.992236Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hLavooI9SyquBhNbU6YiWw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:47:52.992243Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hLavooI9SyquBhNbU6YiWw==: stderr: stack backtrace: -2026-04-20T10:47:52.992249Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hLavooI9SyquBhNbU6YiWw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:47:52.992256Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hLavooI9SyquBhNbU6YiWw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:47:52.992361Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:47:52.993295Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:47:52.993589Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:47:53.063205Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:47:53.063249Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:47:53.063419Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:47:53.063527Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:47:53.063595Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:47:53.063884Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=121 blob_id=2147876831372880120258421359332271144 -2026-04-20T10:47:53.623156Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4eoQUgMmR4WtuK00YZoEhg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:47:53.629624Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:47:53.640096Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 982021 cycles -2026-04-20T10:47:53.642763Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [71, 13, 91, 109, 190, 52, 150, 51, 132, 182, 224, 227, 122, 55, 174, 100, 48, 71, 28, 139, 123, 85, 203, 220, 51, 148, 112, 71, 158, 195, 61, 6, 42, 58, 121, 160, 102, 47, 226, 115, 121, 7, 36, 175, 232, 165, 191, 190, 62, 41, 58, 69, 231, 196, 106, 197, 117, 120, 155, 51, 127, 105, 199, 39, 71, 13, 91, 109, 190, 52, 150, 51, 132, 182, 224, 227, 122, 55, 174, 100, 48, 71, 28, 139, 123, 85, 203, 220, 51, 148, 112, 71, 158, 195, 61, 6, 116, 136, 121, 96, 6, 169, 187, 126, 131, 181, 229, 125, 4, 110, 220, 47, 122, 57, 71, 106, 249, 208, 159, 70, 74, 109, 139, 29, 47, 242, 11, 73, 15, 9, 52, 11, 96, 248, 129, 30, 191, 218, 67, 251, 60, 200, 255, 223, 71, 181, 122, 226, 132, 248, 204, 123, 49, 87, 68, 26, 240, 35, 67, 43, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:47:53.697905Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:47:53.697950Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:47:53.772713Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:47:53.806651Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5G97YDT6RBGXn_DF83u27Q==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:47:53.809476Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5G97YDT6RBGXn_DF83u27Q==: stderr: -2026-04-20T10:47:53.809504Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5G97YDT6RBGXn_DF83u27Q==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:47:53.809514Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5G97YDT6RBGXn_DF83u27Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:47:53.809521Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5G97YDT6RBGXn_DF83u27Q==: stderr: stack backtrace: -2026-04-20T10:47:53.809528Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5G97YDT6RBGXn_DF83u27Q==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:47:53.809534Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5G97YDT6RBGXn_DF83u27Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:47:53.809618Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:47:53.810423Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:47:53.810714Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:47:53.864014Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:47:53.864049Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:47:53.864248Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:47:53.864450Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:47:53.864535Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:47:53.864886Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=122 blob_id=2147876832341239497256052731263964686 -2026-04-20T10:47:54.421613Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M3W4ikgfQ3CA-xYrij4W6A==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:47:54.438817Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:47:54.449587Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2554427 cycles -2026-04-20T10:47:54.452253Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [71, 13, 91, 109, 190, 52, 150, 51, 132, 182, 224, 227, 122, 55, 174, 100, 48, 71, 28, 139, 123, 85, 203, 220, 51, 148, 112, 71, 158, 195, 61, 6, 118, 110, 154, 234, 60, 217, 85, 119, 33, 142, 124, 44, 113, 18, 0, 247, 191, 29, 155, 106, 20, 152, 188, 188, 152, 118, 2, 182, 255, 20, 38, 174, 105, 104, 237, 16, 245, 196, 186, 2, 14, 143, 214, 144, 76, 106, 129, 185, 68, 38, 24, 160, 91, 76, 48, 111, 96, 66, 160, 253, 40, 182, 245, 192, 81, 254, 57, 27, 110, 41, 96, 232, 192, 89, 181, 146, 132, 171, 90, 52, 143, 59, 185, 17, 223, 153, 100, 17, 26, 237, 167, 99, 76, 129, 43, 84, 154, 111, 33, 70, 0, 48, 184, 20, 212, 175, 10, 112, 255, 7, 180, 166, 105, 113, 223, 89, 27, 115, 110, 95, 208, 39, 52, 70, 64, 31, 222, 169, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:47:54.565046Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:47:54.565085Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:47:54.673247Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:47:54.707622Z DEBUG sp1_core_executor_runner::native: CHILD sp1_uUb3NyVyT2KUQgRnx_Cktg==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:47:54.710483Z DEBUG sp1_core_executor_runner::native: CHILD sp1_uUb3NyVyT2KUQgRnx_Cktg==: stderr: -2026-04-20T10:47:54.710499Z DEBUG sp1_core_executor_runner::native: CHILD sp1_uUb3NyVyT2KUQgRnx_Cktg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:47:54.710510Z DEBUG sp1_core_executor_runner::native: CHILD sp1_uUb3NyVyT2KUQgRnx_Cktg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:47:54.710520Z DEBUG sp1_core_executor_runner::native: CHILD sp1_uUb3NyVyT2KUQgRnx_Cktg==: stderr: stack backtrace: -2026-04-20T10:47:54.710545Z DEBUG sp1_core_executor_runner::native: CHILD sp1_uUb3NyVyT2KUQgRnx_Cktg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:47:54.710551Z DEBUG sp1_core_executor_runner::native: CHILD sp1_uUb3NyVyT2KUQgRnx_Cktg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:47:54.710605Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:47:54.711410Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:47:54.711699Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:47:54.780418Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:47:54.780457Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:47:54.780572Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:47:54.781091Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=123 blob_id=2147876833448619624735145034191580111 -2026-04-20T10:47:58.230459Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=4 height=79 prev_hash=0xde7afa2a26705d245b5bc8842d7acde8eb5fd89c4906b7c18fea739bdfd37be1 hash=0x79f3a7ca331218c930084f3faccea2649b72e2d2381a59941edf256739722460 producing_time=1.433271ms -2026-04-20T10:47:58.237427Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=79 current_state_root="302085bea3e9e498977db3f4fff97fd95378e3f17efc7a3e2d3108bb3805be574d2d5c09cce0e1cf04631e856d744e15031377bb645c746ebe2a71c5fe4e4b80" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0d7de044ac95e35cb125c5ea445405c68d68b506930d956c548a3dfc1f545a91"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf9d60ab1e291a0a0e2c50fb288a6134a8a899f39907c56c8c16eb13990f074b8, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x4cbf7874a98d917f52ff0ec24296aa31719c588369baa26cce796c3950519ae6, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1b8f91ecdd8a4953192e2d8e22b94cfcf92f8a089121a05b2299049f6a333107, len=625"] -2026-04-20T10:47:58.237655Z DEBUG StfBlueprint::apply_slot{context=Node da_height=79}: sov_chain_state: Setting next visible slot number next_visible_slot_number=74 -2026-04-20T10:47:58.237786Z DEBUG StfBlueprint::apply_slot{context=Node da_height=79}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x0d7de044ac95e35cb125c5ea445405c68d68b506930d956c548a3dfc1f545a91}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:47:58.237980Z DEBUG StfBlueprint::apply_slot{context=Node da_height=79}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=302085bea3e9e498977db3f4fff97fd95378e3f17efc7a3e2d3108bb3805be574d2d5c09cce0e1cf04631e856d744e15031377bb645c746ebe2a71c5fe4e4b80 next_version=79 sesssion_starting_time=46.869µs -2026-04-20T10:47:58.238950Z DEBUG StfBlueprint::apply_slot{context=Node da_height=79}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=05be22aa8d740ca7632c7d07644e3eac3bb66c9350014debbbf8794f25a37e936e6518432b644c553a5dc38da3b869735806c930c4460014f2db17b3a18e5b7b next_version=79 time=1.051603ms accesses_build_time=33.16µs finishing_session_time=948.244µs -2026-04-20T10:47:58.239111Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="302085bea3e9e498977db3f4fff97fd95378e3f17efc7a3e2d3108bb3805be574d2d5c09cce0e1cf04631e856d744e15031377bb645c746ebe2a71c5fe4e4b80" next_state_root="05be22aa8d740ca7632c7d07644e3eac3bb66c9350014debbbf8794f25a37e936e6518432b644c553a5dc38da3b869735806c930c4460014f2db17b3a18e5b7b" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:47:58.239604Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 79, latest_finalized_slot_number: 79, sync_status: Synced { synced_da_height: 78 }, .. } -2026-04-20T10:47:58.239687Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=52 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 79, latest_finalized_slot_number: 79, sync_status: Synced { synced_da_height: 78 }, .. } -2026-04-20T10:47:58.239762Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=52 -2026-04-20T10:47:58.239978Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:47:58.240041Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=48 -2026-04-20T10:47:58.240185Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=75 -2026-04-20T10:47:58.240375Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:47:58.240703Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=75 sequence_number=124 -2026-04-20T10:47:58.240723Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=124 blob_id=2147876837631484678759821603871520628 visible_slot_number_after_increase=75 visible_slots_to_advance=1 -2026-04-20T10:47:58.240771Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:47:58.242615Z DEBUG manage_blob_submission_inside_task{blob_id=2147876837631484678759821603871520628 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x16434b7bb1d7a33cd9e9207afd23a3e37f401d5230ce246989f13bfbc616194d sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=80 include_at=80 bytes=13 time=724.105µs -2026-04-20T10:47:58.250542Z DEBUG sov_stf_runner::runner: Block execution complete time=6.004254143s -2026-04-20T10:47:58.250544Z DEBUG compute_state_update{scope="sequencer" rollup_height=53 slot_number=75}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:47:58.250577Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:47:58.250649Z DEBUG compute_state_update{scope="sequencer" rollup_height=53 slot_number=75}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=05be22aa8d740ca7632c7d07644e3eac3bb66c9350014debbbf8794f25a37e936e6518432b644c553a5dc38da3b869735806c930c4460014f2db17b3a18e5b7b next_version=80 sesssion_starting_time=9.397549ms -2026-04-20T10:47:58.250764Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:47:58.250849Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:47:58.251307Z DEBUG compute_state_update{scope="sequencer" rollup_height=53 slot_number=75}: sov_state::nomt::prover_storage: computed next state root state_root=2724b41dcd597877163ec241652191c731f6bd02259f47b6460a5b74bd03902b2940e7191dcd25c4c079ab195051a1536a85282548baf9ecfee5bf77b902077e next_version=80 time=10.073765ms accesses_build_time=16.45µs finishing_session_time=634.296µs -2026-04-20T10:47:58.812972Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1hq4BD6tTJisrrkjHIhY8Q==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:47:58.826762Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:47:58.837448Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1923232 cycles -2026-04-20T10:47:58.840077Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [87, 113, 6, 226, 199, 230, 14, 177, 201, 180, 234, 191, 54, 61, 67, 94, 245, 239, 28, 194, 183, 14, 153, 189, 254, 157, 49, 248, 19, 43, 70, 58, 20, 36, 159, 193, 23, 227, 145, 75, 244, 87, 207, 64, 129, 25, 55, 239, 83, 140, 57, 201, 139, 207, 103, 44, 198, 156, 90, 156, 207, 249, 108, 90, 6, 218, 141, 143, 201, 30, 222, 253, 113, 105, 148, 12, 82, 70, 3, 189, 48, 225, 30, 126, 6, 93, 48, 30, 211, 172, 125, 227, 126, 248, 201, 191, 14, 30, 246, 110, 141, 55, 147, 0, 245, 237, 61, 182, 196, 216, 131, 59, 204, 212, 240, 37, 144, 82, 166, 141, 142, 57, 97, 105, 134, 81, 44, 250, 62, 122, 213, 165, 176, 40, 43, 2, 44, 38, 252, 9, 119, 148, 195, 64, 238, 146, 177, 150, 82, 167, 179, 195, 77, 98, 25, 74, 40, 247, 121, 145, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:47:58.932252Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:47:58.932287Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:47:58.957718Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:47:58.983451Z DEBUG sp1_core_executor_runner::native: CHILD sp1_quRhUp46RuS4zWm52g-tcw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:47:58.986292Z DEBUG sp1_core_executor_runner::native: CHILD sp1_quRhUp46RuS4zWm52g-tcw==: stderr: -2026-04-20T10:47:58.986331Z DEBUG sp1_core_executor_runner::native: CHILD sp1_quRhUp46RuS4zWm52g-tcw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:47:58.986343Z DEBUG sp1_core_executor_runner::native: CHILD sp1_quRhUp46RuS4zWm52g-tcw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:47:58.986350Z DEBUG sp1_core_executor_runner::native: CHILD sp1_quRhUp46RuS4zWm52g-tcw==: stderr: stack backtrace: -2026-04-20T10:47:58.986356Z DEBUG sp1_core_executor_runner::native: CHILD sp1_quRhUp46RuS4zWm52g-tcw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:47:58.986363Z DEBUG sp1_core_executor_runner::native: CHILD sp1_quRhUp46RuS4zWm52g-tcw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:47:58.986447Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:47:58.987221Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:47:58.987521Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:47:59.055056Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:47:59.055099Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:47:59.055300Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:47:59.055973Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=125 blob_id=2147876838616734133171607218282513980 -2026-04-20T10:48:04.233525Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=80 prev_hash=0x79f3a7ca331218c930084f3faccea2649b72e2d2381a59941edf256739722460 hash=0x3129509029d652c04e1fb4326c51af8eb1a5a828eecefa4fa2f5215c8809dbca producing_time=1.470051ms -2026-04-20T10:48:04.242212Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=80 current_state_root="05be22aa8d740ca7632c7d07644e3eac3bb66c9350014debbbf8794f25a37e936e6518432b644c553a5dc38da3b869735806c930c4460014f2db17b3a18e5b7b" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x16434b7bb1d7a33cd9e9207afd23a3e37f401d5230ce246989f13bfbc616194d"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xee702565a74272ad2a684f8a99fa7ceb01f20c9ef1470fe01cd51dc4ed939ba2, len=625"] -2026-04-20T10:48:04.242496Z DEBUG StfBlueprint::apply_slot{context=Node da_height=80}: sov_chain_state: Setting next visible slot number next_visible_slot_number=75 -2026-04-20T10:48:04.242752Z DEBUG StfBlueprint::apply_slot{context=Node da_height=80}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x16434b7bb1d7a33cd9e9207afd23a3e37f401d5230ce246989f13bfbc616194d}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:48:04.242954Z DEBUG StfBlueprint::apply_slot{context=Node da_height=80}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=05be22aa8d740ca7632c7d07644e3eac3bb66c9350014debbbf8794f25a37e936e6518432b644c553a5dc38da3b869735806c930c4460014f2db17b3a18e5b7b next_version=80 sesssion_starting_time=48.7µs -2026-04-20T10:48:04.243920Z DEBUG StfBlueprint::apply_slot{context=Node da_height=80}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2724b41dcd597877163ec241652191c731f6bd02259f47b6460a5b74bd03902b22af7cdae60e1238440706db4ba9197446f4ea1b45422971470dd5d239ba72bd next_version=80 time=1.052774ms accesses_build_time=36.99µs finishing_session_time=934.184µs -2026-04-20T10:48:04.244138Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="f9d60ab1e291a0a0e2c50fb288a6134a8a899f39907c56c8c16eb13990f074b8" -2026-04-20T10:48:04.244162Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="4cbf7874a98d917f52ff0ec24296aa31719c588369baa26cce796c3950519ae6" -2026-04-20T10:48:04.244172Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="1b8f91ecdd8a4953192e2d8e22b94cfcf92f8a089121a05b2299049f6a333107" -2026-04-20T10:48:04.244184Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="05be22aa8d740ca7632c7d07644e3eac3bb66c9350014debbbf8794f25a37e936e6518432b644c553a5dc38da3b869735806c930c4460014f2db17b3a18e5b7b" next_state_root="2724b41dcd597877163ec241652191c731f6bd02259f47b6460a5b74bd03902b22af7cdae60e1238440706db4ba9197446f4ea1b45422971470dd5d239ba72bd" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:48:04.244693Z DEBUG sov_stf_runner::runner: Block execution complete time=5.994117899s -2026-04-20T10:48:04.244730Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:48:04.244762Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 80, latest_finalized_slot_number: 79, sync_status: Syncing { synced_da_height: 79, target_da_height: 80 }, .. } -2026-04-20T10:48:04.244842Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=53 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 80, latest_finalized_slot_number: 79, sync_status: Syncing { synced_da_height: 79, target_da_height: 80 }, .. } -2026-04-20T10:48:04.244903Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=53 -2026-04-20T10:48:04.244949Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:48:04.245035Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:48:04.805940Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HUR702ajS4-TM9rawO0ZUA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:48:04.812591Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:48:04.824537Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1006944 cycles -2026-04-20T10:48:04.827386Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [4, 190, 64, 252, 84, 45, 174, 255, 3, 55, 141, 101, 96, 112, 135, 19, 108, 134, 220, 45, 8, 235, 67, 49, 62, 121, 84, 99, 197, 174, 211, 247, 45, 173, 253, 100, 79, 189, 28, 84, 62, 23, 250, 162, 135, 224, 91, 147, 75, 112, 248, 29, 188, 100, 253, 157, 28, 29, 93, 39, 126, 197, 34, 63, 4, 190, 64, 252, 84, 45, 174, 255, 3, 55, 141, 101, 96, 112, 135, 19, 108, 134, 220, 45, 8, 235, 67, 49, 62, 121, 84, 99, 197, 174, 211, 247, 66, 69, 231, 116, 242, 211, 8, 165, 242, 228, 2, 239, 210, 82, 111, 64, 115, 205, 251, 84, 132, 58, 6, 249, 99, 105, 136, 207, 74, 33, 53, 22, 31, 85, 169, 205, 132, 174, 79, 107, 163, 115, 5, 20, 112, 67, 56, 161, 65, 8, 156, 128, 140, 52, 36, 15, 42, 114, 18, 177, 214, 191, 72, 26, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:48:04.868849Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:48:04.868895Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:48:04.951901Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:48:04.987262Z DEBUG sp1_core_executor_runner::native: CHILD sp1_m7rk2lfcQVCxd10cR9cLpQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:48:04.990110Z DEBUG sp1_core_executor_runner::native: CHILD sp1_m7rk2lfcQVCxd10cR9cLpQ==: stderr: -2026-04-20T10:48:04.990134Z DEBUG sp1_core_executor_runner::native: CHILD sp1_m7rk2lfcQVCxd10cR9cLpQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:48:04.990144Z DEBUG sp1_core_executor_runner::native: CHILD sp1_m7rk2lfcQVCxd10cR9cLpQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:48:04.990151Z DEBUG sp1_core_executor_runner::native: CHILD sp1_m7rk2lfcQVCxd10cR9cLpQ==: stderr: stack backtrace: -2026-04-20T10:48:04.990158Z DEBUG sp1_core_executor_runner::native: CHILD sp1_m7rk2lfcQVCxd10cR9cLpQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:48:04.990164Z DEBUG sp1_core_executor_runner::native: CHILD sp1_m7rk2lfcQVCxd10cR9cLpQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:48:04.990250Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:48:04.991061Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:48:04.991375Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:48:05.057461Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:48:05.057504Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:48:05.057687Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:48:05.058237Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=126 blob_id=2147876845872691887641717648791701470 -2026-04-20T10:48:10.235888Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=81 prev_hash=0x3129509029d652c04e1fb4326c51af8eb1a5a828eecefa4fa2f5215c8809dbca hash=0xee618f23d0d03c3dcb755f85207fe67b4629019f6f7386567c163aaef82791a4 producing_time=1.216392ms -2026-04-20T10:48:10.236389Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=81 current_state_root="2724b41dcd597877163ec241652191c731f6bd02259f47b6460a5b74bd03902b22af7cdae60e1238440706db4ba9197446f4ea1b45422971470dd5d239ba72bd" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xfc498294995a69fc45d423300f84f5514e7b13473499ef9e477b53fe10b227e9, len=625"] -2026-04-20T10:48:10.236728Z DEBUG StfBlueprint::apply_slot{context=Node da_height=81}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2724b41dcd597877163ec241652191c731f6bd02259f47b6460a5b74bd03902b22af7cdae60e1238440706db4ba9197446f4ea1b45422971470dd5d239ba72bd next_version=81 sesssion_starting_time=56.48µs -2026-04-20T10:48:10.237563Z DEBUG StfBlueprint::apply_slot{context=Node da_height=81}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2724b41dcd597877163ec241652191c731f6bd02259f47b6460a5b74bd03902b6b80f7f4b78e93f21e2014e12ff309bb4733b41de6515872cb1d6c996602691d next_version=81 time=910.064µs accesses_build_time=17.389µs finishing_session_time=799.995µs -2026-04-20T10:48:10.237634Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="05be22aa8d740ca7632c7d07644e3eac3bb66c9350014debbbf8794f25a37e936e6518432b644c553a5dc38da3b869735806c930c4460014f2db17b3a18e5b7b" next_state_root="2724b41dcd597877163ec241652191c731f6bd02259f47b6460a5b74bd03902b6b80f7f4b78e93f21e2014e12ff309bb4733b41de6515872cb1d6c996602691d" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:48:10.238159Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 81, latest_finalized_slot_number: 80, sync_status: Synced { synced_da_height: 80 }, .. } -2026-04-20T10:48:10.238236Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=53 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 81, latest_finalized_slot_number: 80, sync_status: Synced { synced_da_height: 80 }, .. } -2026-04-20T10:48:10.238323Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=53 -2026-04-20T10:48:10.249362Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00463451s -2026-04-20T10:48:10.249388Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:48:16.238128Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=82 prev_hash=0xee618f23d0d03c3dcb755f85207fe67b4629019f6f7386567c163aaef82791a4 hash=0x966735532d49fe52c17891de29d66ee1d8d30454b06463d09d393aa24f94c8fd producing_time=1.337081ms -2026-04-20T10:48:16.241775Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=82 current_state_root="2724b41dcd597877163ec241652191c731f6bd02259f47b6460a5b74bd03902b6b80f7f4b78e93f21e2014e12ff309bb4733b41de6515872cb1d6c996602691d" batch_blobs=[] proof_blobs=[] -2026-04-20T10:48:16.242094Z DEBUG StfBlueprint::apply_slot{context=Node da_height=82}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2724b41dcd597877163ec241652191c731f6bd02259f47b6460a5b74bd03902b6b80f7f4b78e93f21e2014e12ff309bb4733b41de6515872cb1d6c996602691d next_version=82 sesssion_starting_time=47.829µs -2026-04-20T10:48:16.242873Z DEBUG StfBlueprint::apply_slot{context=Node da_height=82}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2724b41dcd597877163ec241652191c731f6bd02259f47b6460a5b74bd03902b7222839210a5c29de16d68e8554b48dfb4d56e8ed5032f33255c94fb02e14b10 next_version=82 time=844.625µs accesses_build_time=16.43µs finishing_session_time=739.696µs -2026-04-20T10:48:16.242950Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2724b41dcd597877163ec241652191c731f6bd02259f47b6460a5b74bd03902b22af7cdae60e1238440706db4ba9197446f4ea1b45422971470dd5d239ba72bd" next_state_root="2724b41dcd597877163ec241652191c731f6bd02259f47b6460a5b74bd03902b7222839210a5c29de16d68e8554b48dfb4d56e8ed5032f33255c94fb02e14b10" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:48:16.243437Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 82, latest_finalized_slot_number: 81, sync_status: Syncing { synced_da_height: 81, target_da_height: 82 }, .. } -2026-04-20T10:48:16.243534Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=53 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 82, latest_finalized_slot_number: 81, sync_status: Syncing { synced_da_height: 81, target_da_height: 82 }, .. } -2026-04-20T10:48:16.243616Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=53 -2026-04-20T10:48:16.243872Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:48:16.243932Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=49 -2026-04-20T10:48:16.244020Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=77 -2026-04-20T10:48:16.244175Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:48:16.244453Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=77 sequence_number=127 -2026-04-20T10:48:16.244472Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=127 blob_id=2147876859396972478349285893271076122 visible_slot_number_after_increase=77 visible_slots_to_advance=2 -2026-04-20T10:48:16.244504Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=2 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:48:16.246379Z DEBUG manage_blob_submission_inside_task{blob_id=2147876859396972478349285893271076122 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x5a33f78bec17482ad87ec57cfb644660b754fe57a55a1ed52e3db4bf8dc157aa sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=83 include_at=83 bytes=13 time=678.356µs -2026-04-20T10:48:16.249775Z DEBUG compute_state_update{scope="sequencer" rollup_height=54 slot_number=77}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:48:16.249806Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000419529s -2026-04-20T10:48:16.249824Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:48:16.249854Z DEBUG compute_state_update{scope="sequencer" rollup_height=54 slot_number=77}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2724b41dcd597877163ec241652191c731f6bd02259f47b6460a5b74bd03902b7222839210a5c29de16d68e8554b48dfb4d56e8ed5032f33255c94fb02e14b10 next_version=83 sesssion_starting_time=4.967839ms -2026-04-20T10:48:16.250524Z DEBUG compute_state_update{scope="sequencer" rollup_height=54 slot_number=77}: sov_state::nomt::prover_storage: computed next state root state_root=12e002dca157fb3a9659897d62088cd0637c51651aed71b2b843a09cc86a7ea459fb4819ecc503a0f4140c1a32c618400ed3e70c1aeb9813a379674e834e7424 next_version=83 time=5.650803ms accesses_build_time=12.959µs finishing_session_time=632.966µs -2026-04-20T10:48:22.239784Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=83 prev_hash=0x966735532d49fe52c17891de29d66ee1d8d30454b06463d09d393aa24f94c8fd hash=0x25476fa9dab9de6314b078e69d1f49a9e9fff304ba44620fe35dbb51b6f7c648 producing_time=1.308732ms -2026-04-20T10:48:22.241364Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=83 current_state_root="2724b41dcd597877163ec241652191c731f6bd02259f47b6460a5b74bd03902b7222839210a5c29de16d68e8554b48dfb4d56e8ed5032f33255c94fb02e14b10" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x5a33f78bec17482ad87ec57cfb644660b754fe57a55a1ed52e3db4bf8dc157aa"] proof_blobs=[] -2026-04-20T10:48:22.241627Z DEBUG StfBlueprint::apply_slot{context=Node da_height=83}: sov_chain_state: Setting next visible slot number next_visible_slot_number=77 -2026-04-20T10:48:22.241856Z DEBUG StfBlueprint::apply_slot{context=Node da_height=83}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x5a33f78bec17482ad87ec57cfb644660b754fe57a55a1ed52e3db4bf8dc157aa}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=2 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:48:22.242044Z DEBUG StfBlueprint::apply_slot{context=Node da_height=83}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2724b41dcd597877163ec241652191c731f6bd02259f47b6460a5b74bd03902b7222839210a5c29de16d68e8554b48dfb4d56e8ed5032f33255c94fb02e14b10 next_version=83 sesssion_starting_time=48.859µs -2026-04-20T10:48:22.242996Z DEBUG StfBlueprint::apply_slot{context=Node da_height=83}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=12e002dca157fb3a9659897d62088cd0637c51651aed71b2b843a09cc86a7ea426824d753452dcc36487f04cad63d2b302384298e12fee79adabd8e93b9d9aa8 next_version=83 time=1.038193ms accesses_build_time=36.06µs finishing_session_time=926.064µs -2026-04-20T10:48:22.243183Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ee702565a74272ad2a684f8a99fa7ceb01f20c9ef1470fe01cd51dc4ed939ba2" -2026-04-20T10:48:22.243199Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="fc498294995a69fc45d423300f84f5514e7b13473499ef9e477b53fe10b227e9" -2026-04-20T10:48:22.243212Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2724b41dcd597877163ec241652191c731f6bd02259f47b6460a5b74bd03902b6b80f7f4b78e93f21e2014e12ff309bb4733b41de6515872cb1d6c996602691d" next_state_root="12e002dca157fb3a9659897d62088cd0637c51651aed71b2b843a09cc86a7ea426824d753452dcc36487f04cad63d2b302384298e12fee79adabd8e93b9d9aa8" aggregated_proofs=0 proof_receipts=2 -2026-04-20T10:48:22.243763Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 83, latest_finalized_slot_number: 82, sync_status: Syncing { synced_da_height: 82, target_da_height: 83 }, .. } -2026-04-20T10:48:22.243838Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=54 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 83, latest_finalized_slot_number: 82, sync_status: Syncing { synced_da_height: 82, target_da_height: 83 }, .. } -2026-04-20T10:48:22.243895Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=54 -2026-04-20T10:48:22.244115Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:48:22.244176Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=50 -2026-04-20T10:48:22.244264Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=78 -2026-04-20T10:48:22.244394Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:48:22.244540Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=78 sequence_number=128 -2026-04-20T10:48:22.244559Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=128 blob_id=2147876866650517308421156438069703650 visible_slot_number_after_increase=78 visible_slots_to_advance=1 -2026-04-20T10:48:22.244583Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:48:22.246270Z DEBUG manage_blob_submission_inside_task{blob_id=2147876866650517308421156438069703650 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x30830e36b5ba69f8c932db1c37d5be6a685326a13fef444f652bd83aca077c13 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=84 include_at=84 bytes=13 time=671.646µs -2026-04-20T10:48:22.250881Z DEBUG compute_state_update{scope="sequencer" rollup_height=55 slot_number=78}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:48:22.250934Z DEBUG sov_stf_runner::runner: Block execution complete time=6.001111114s -2026-04-20T10:48:22.250948Z DEBUG compute_state_update{scope="sequencer" rollup_height=55 slot_number=78}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=12e002dca157fb3a9659897d62088cd0637c51651aed71b2b843a09cc86a7ea426824d753452dcc36487f04cad63d2b302384298e12fee79adabd8e93b9d9aa8 next_version=84 sesssion_starting_time=5.996672ms -2026-04-20T10:48:22.250968Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:48:22.251193Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:48:22.251264Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:48:22.251634Z DEBUG compute_state_update{scope="sequencer" rollup_height=55 slot_number=78}: sov_state::nomt::prover_storage: computed next state root state_root=1213c4bcb53d8bb52a13399b72d76cdb68b288c8801a0907a2ad4067f2caa70d05fd2c4d66d455ad2a1296689ba7b481deae20eb227607da9f81a682484e45bf next_version=84 time=6.695846ms accesses_build_time=12.749µs finishing_session_time=664.246µs -2026-04-20T10:48:22.818256Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-jMQl8ohTk690v9kOiIR4A==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:48:22.835815Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:48:22.848476Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2561571 cycles -2026-04-20T10:48:22.851261Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [4, 190, 64, 252, 84, 45, 174, 255, 3, 55, 141, 101, 96, 112, 135, 19, 108, 134, 220, 45, 8, 235, 67, 49, 62, 121, 84, 99, 197, 174, 211, 247, 45, 133, 11, 100, 169, 219, 36, 165, 63, 37, 16, 5, 249, 178, 8, 227, 42, 247, 163, 142, 186, 42, 158, 13, 213, 110, 247, 241, 155, 92, 186, 42, 115, 188, 22, 224, 177, 242, 234, 72, 226, 162, 98, 127, 12, 77, 122, 240, 94, 150, 193, 190, 13, 87, 80, 119, 122, 62, 62, 33, 44, 71, 79, 85, 125, 4, 111, 93, 72, 132, 234, 128, 129, 84, 189, 157, 11, 113, 235, 10, 166, 13, 20, 118, 235, 29, 116, 3, 113, 242, 16, 60, 10, 68, 99, 130, 49, 92, 180, 104, 156, 165, 101, 70, 16, 251, 117, 23, 167, 134, 236, 55, 209, 193, 159, 36, 42, 90, 6, 63, 114, 183, 59, 118, 33, 188, 176, 190, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:48:22.957920Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:48:22.957956Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:48:23.059548Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:48:23.093241Z DEBUG sp1_core_executor_runner::native: CHILD sp1__SfRSJ6aSUqrGD5vyanJXg==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:48:23.096074Z DEBUG sp1_core_executor_runner::native: CHILD sp1__SfRSJ6aSUqrGD5vyanJXg==: stderr: -2026-04-20T10:48:23.096089Z DEBUG sp1_core_executor_runner::native: CHILD sp1__SfRSJ6aSUqrGD5vyanJXg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:48:23.096097Z DEBUG sp1_core_executor_runner::native: CHILD sp1__SfRSJ6aSUqrGD5vyanJXg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:48:23.096105Z DEBUG sp1_core_executor_runner::native: CHILD sp1__SfRSJ6aSUqrGD5vyanJXg==: stderr: stack backtrace: -2026-04-20T10:48:23.096111Z DEBUG sp1_core_executor_runner::native: CHILD sp1__SfRSJ6aSUqrGD5vyanJXg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:48:23.096117Z DEBUG sp1_core_executor_runner::native: CHILD sp1__SfRSJ6aSUqrGD5vyanJXg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:48:23.096249Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:48:23.097031Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:48:23.097361Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:48:23.164814Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:48:23.164860Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:48:23.165042Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:48:23.165228Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:48:23.165307Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:48:23.165704Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=129 blob_id=2147876867763992295323032977687857741 -2026-04-20T10:48:23.726059Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CNejCfcoRCyU0CnEyYYphg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:48:23.738784Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:48:23.749281Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1789490 cycles -2026-04-20T10:48:23.751878Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [20, 219, 120, 179, 189, 45, 194, 156, 148, 167, 68, 224, 71, 151, 42, 6, 230, 116, 40, 54, 171, 241, 132, 234, 138, 253, 35, 102, 44, 116, 243, 146, 52, 118, 117, 37, 64, 40, 88, 115, 127, 94, 193, 129, 201, 86, 26, 72, 183, 179, 16, 44, 54, 14, 221, 31, 108, 142, 196, 229, 212, 222, 157, 212, 53, 170, 168, 190, 45, 208, 229, 26, 17, 64, 161, 126, 168, 134, 175, 59, 72, 98, 118, 129, 129, 173, 35, 140, 50, 249, 86, 136, 51, 2, 150, 207, 71, 241, 119, 213, 83, 179, 56, 125, 206, 102, 203, 2, 22, 219, 253, 179, 229, 219, 21, 221, 187, 194, 20, 127, 72, 168, 244, 14, 187, 126, 46, 193, 45, 139, 116, 89, 103, 55, 65, 88, 125, 198, 50, 245, 90, 243, 188, 6, 123, 81, 246, 13, 203, 166, 165, 210, 59, 137, 62, 158, 160, 108, 183, 158, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:48:23.840477Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:48:23.840513Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:48:23.872949Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:48:23.907551Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LT9FLPc_SoaGB91NkxZToA==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:48:23.910380Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LT9FLPc_SoaGB91NkxZToA==: stderr: -2026-04-20T10:48:23.910396Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LT9FLPc_SoaGB91NkxZToA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:48:23.910407Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LT9FLPc_SoaGB91NkxZToA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:48:23.910417Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LT9FLPc_SoaGB91NkxZToA==: stderr: stack backtrace: -2026-04-20T10:48:23.910425Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LT9FLPc_SoaGB91NkxZToA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:48:23.910433Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LT9FLPc_SoaGB91NkxZToA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:48:23.910561Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:48:23.911356Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:48:23.911651Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:48:23.981628Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:48:23.981670Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:48:23.981878Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:48:23.982546Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=130 blob_id=2147876868750476669417745931028897454 -2026-04-20T10:48:28.241811Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=84 prev_hash=0x25476fa9dab9de6314b078e69d1f49a9e9fff304ba44620fe35dbb51b6f7c648 hash=0xb9cabe7402bee9de57bbc4d0f69412b2c274adb162ef006dcc436a33f14600e2 producing_time=1.277841ms -2026-04-20T10:48:28.242411Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=84 current_state_root="12e002dca157fb3a9659897d62088cd0637c51651aed71b2b843a09cc86a7ea426824d753452dcc36487f04cad63d2b302384298e12fee79adabd8e93b9d9aa8" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x30830e36b5ba69f8c932db1c37d5be6a685326a13fef444f652bd83aca077c13"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa00cea9393c8933c3b10e4fbc57740895c3f3bc668f2be940cc047e2762b231c, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x10efaf019d1794f191409c2205e733e8d08284490dec47f767627c8f59b041a3, len=625"] -2026-04-20T10:48:28.242634Z DEBUG StfBlueprint::apply_slot{context=Node da_height=84}: sov_chain_state: Setting next visible slot number next_visible_slot_number=78 -2026-04-20T10:48:28.242767Z DEBUG StfBlueprint::apply_slot{context=Node da_height=84}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x30830e36b5ba69f8c932db1c37d5be6a685326a13fef444f652bd83aca077c13}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:48:28.242963Z DEBUG StfBlueprint::apply_slot{context=Node da_height=84}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=12e002dca157fb3a9659897d62088cd0637c51651aed71b2b843a09cc86a7ea426824d753452dcc36487f04cad63d2b302384298e12fee79adabd8e93b9d9aa8 next_version=84 sesssion_starting_time=47.36µs -2026-04-20T10:48:28.243971Z DEBUG StfBlueprint::apply_slot{context=Node da_height=84}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=1213c4bcb53d8bb52a13399b72d76cdb68b288c8801a0907a2ad4067f2caa70d7334544021b7826aa2d5843007eba26f1436b20a05c596966828fd736ac74018 next_version=84 time=1.090113ms accesses_build_time=33.019µs finishing_session_time=960.134µs -2026-04-20T10:48:28.244155Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2724b41dcd597877163ec241652191c731f6bd02259f47b6460a5b74bd03902b7222839210a5c29de16d68e8554b48dfb4d56e8ed5032f33255c94fb02e14b10" next_state_root="1213c4bcb53d8bb52a13399b72d76cdb68b288c8801a0907a2ad4067f2caa70d7334544021b7826aa2d5843007eba26f1436b20a05c596966828fd736ac74018" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:48:28.244683Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 84, latest_finalized_slot_number: 83, sync_status: Synced { synced_da_height: 83 }, .. } -2026-04-20T10:48:28.244779Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=55 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 84, latest_finalized_slot_number: 83, sync_status: Synced { synced_da_height: 83 }, .. } -2026-04-20T10:48:28.244844Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=55 -2026-04-20T10:48:28.255342Z DEBUG sov_stf_runner::runner: Block execution complete time=6.004377213s -2026-04-20T10:48:28.255374Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:48:28.255578Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:48:28.255653Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:48:28.816234Z DEBUG sp1_core_executor_runner::native: CHILD sp1_olzlIEwrREGOv22n4xpMrw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:48:28.822421Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:48:28.832907Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 960830 cycles -2026-04-20T10:48:28.835588Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [55, 208, 211, 18, 156, 120, 111, 220, 168, 241, 69, 214, 204, 237, 223, 201, 131, 254, 224, 212, 54, 226, 13, 217, 84, 21, 112, 92, 225, 197, 219, 9, 20, 95, 134, 215, 145, 182, 6, 152, 244, 56, 111, 0, 134, 10, 85, 61, 183, 207, 155, 182, 8, 205, 206, 23, 170, 112, 92, 37, 165, 158, 34, 250, 55, 208, 211, 18, 156, 120, 111, 220, 168, 241, 69, 214, 204, 237, 223, 201, 131, 254, 224, 212, 54, 226, 13, 217, 84, 21, 112, 92, 225, 197, 219, 9, 51, 124, 53, 17, 28, 225, 231, 28, 53, 246, 1, 158, 27, 10, 195, 78, 61, 229, 198, 69, 39, 203, 101, 221, 94, 91, 162, 182, 209, 200, 175, 234, 49, 150, 131, 192, 72, 133, 40, 65, 78, 247, 56, 121, 185, 155, 197, 98, 32, 3, 176, 128, 24, 207, 41, 90, 114, 93, 156, 75, 136, 176, 160, 120, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:48:28.890404Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:48:28.890450Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:48:28.963152Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:48:28.997583Z DEBUG sp1_core_executor_runner::native: CHILD sp1_iOM5QlLAQ1GdL61DSlyN2w==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:48:29.000432Z DEBUG sp1_core_executor_runner::native: CHILD sp1_iOM5QlLAQ1GdL61DSlyN2w==: stderr: -2026-04-20T10:48:29.000456Z DEBUG sp1_core_executor_runner::native: CHILD sp1_iOM5QlLAQ1GdL61DSlyN2w==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:48:29.000466Z DEBUG sp1_core_executor_runner::native: CHILD sp1_iOM5QlLAQ1GdL61DSlyN2w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:48:29.000473Z DEBUG sp1_core_executor_runner::native: CHILD sp1_iOM5QlLAQ1GdL61DSlyN2w==: stderr: stack backtrace: -2026-04-20T10:48:29.000479Z DEBUG sp1_core_executor_runner::native: CHILD sp1_iOM5QlLAQ1GdL61DSlyN2w==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:48:29.000485Z DEBUG sp1_core_executor_runner::native: CHILD sp1_iOM5QlLAQ1GdL61DSlyN2w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:48:29.000592Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:48:29.001383Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:48:29.001673Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:48:29.056727Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:48:29.056765Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:48:29.056875Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:48:29.057477Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=131 blob_id=2147876874885711429676160761997303998 -2026-04-20T10:48:34.244418Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=85 prev_hash=0xb9cabe7402bee9de57bbc4d0f69412b2c274adb162ef006dcc436a33f14600e2 hash=0x7609b9f398e1e9dc1c62fba3931d09608fee7340cba01eec8565f62cc473e101 producing_time=1.41802ms -2026-04-20T10:48:34.246096Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=85 current_state_root="1213c4bcb53d8bb52a13399b72d76cdb68b288c8801a0907a2ad4067f2caa70d7334544021b7826aa2d5843007eba26f1436b20a05c596966828fd736ac74018" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9e8d824165c02d19eb5f7b1f717f5b58798a479ea7c016a7b2594b95e39a177b, len=625"] -2026-04-20T10:48:34.246443Z DEBUG StfBlueprint::apply_slot{context=Node da_height=85}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1213c4bcb53d8bb52a13399b72d76cdb68b288c8801a0907a2ad4067f2caa70d7334544021b7826aa2d5843007eba26f1436b20a05c596966828fd736ac74018 next_version=85 sesssion_starting_time=48.7µs -2026-04-20T10:48:34.247219Z DEBUG StfBlueprint::apply_slot{context=Node da_height=85}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=1213c4bcb53d8bb52a13399b72d76cdb68b288c8801a0907a2ad4067f2caa70d52052e07163e5955440176c8adc1283be3690bd77a6aab685d53eb7dafa566d8 next_version=85 time=845.534µs accesses_build_time=19.33µs finishing_session_time=733.696µs -2026-04-20T10:48:34.247293Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="12e002dca157fb3a9659897d62088cd0637c51651aed71b2b843a09cc86a7ea426824d753452dcc36487f04cad63d2b302384298e12fee79adabd8e93b9d9aa8" next_state_root="1213c4bcb53d8bb52a13399b72d76cdb68b288c8801a0907a2ad4067f2caa70d52052e07163e5955440176c8adc1283be3690bd77a6aab685d53eb7dafa566d8" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:48:34.247901Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 85, latest_finalized_slot_number: 84, sync_status: Synced { synced_da_height: 84 }, .. } -2026-04-20T10:48:34.247995Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=55 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 85, latest_finalized_slot_number: 84, sync_status: Synced { synced_da_height: 84 }, .. } -2026-04-20T10:48:34.248060Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=55 -2026-04-20T10:48:34.248298Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:48:34.248402Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=51 -2026-04-20T10:48:34.248497Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=80 -2026-04-20T10:48:34.248628Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:48:34.248922Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=80 sequence_number=132 -2026-04-20T10:48:34.248949Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=132 blob_id=2147876881162513630311234209140292942 visible_slot_number_after_increase=80 visible_slots_to_advance=2 -2026-04-20T10:48:34.248970Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:48:34.250633Z DEBUG manage_blob_submission_inside_task{blob_id=2147876881162513630311234209140292942 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x1c2efff2c554cb1fdb910d82a499a817d64065fef36ab26d5a1e2d03138ce26f sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=86 include_at=86 bytes=13 time=630.105µs -2026-04-20T10:48:34.259154Z DEBUG compute_state_update{scope="sequencer" rollup_height=56 slot_number=80}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:48:34.259198Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003825557s -2026-04-20T10:48:34.259224Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:48:34.259228Z DEBUG compute_state_update{scope="sequencer" rollup_height=56 slot_number=80}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1213c4bcb53d8bb52a13399b72d76cdb68b288c8801a0907a2ad4067f2caa70d52052e07163e5955440176c8adc1283be3690bd77a6aab685d53eb7dafa566d8 next_version=86 sesssion_starting_time=9.886696ms -2026-04-20T10:48:34.259974Z DEBUG compute_state_update{scope="sequencer" rollup_height=56 slot_number=80}: sov_state::nomt::prover_storage: computed next state root state_root=3c7e874bf5b9f96afc4e1e7703e97ec3baabdd14bb6d4a44f83d035c100eb31744f550ea9df580c5400a222fe83d92aeace2ee8d5934fdb2636cc6dc74399007 next_version=86 time=10.646591ms accesses_build_time=13.28µs finishing_session_time=719.725µs -2026-04-20T10:48:40.247264Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=86 prev_hash=0x7609b9f398e1e9dc1c62fba3931d09608fee7340cba01eec8565f62cc473e101 hash=0xb0f281deb6a3d1ca7fcce28c68570babd178c30bdc318137a7ad64614daf29d4 producing_time=1.357471ms -2026-04-20T10:48:40.251069Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=86 current_state_root="1213c4bcb53d8bb52a13399b72d76cdb68b288c8801a0907a2ad4067f2caa70d52052e07163e5955440176c8adc1283be3690bd77a6aab685d53eb7dafa566d8" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1c2efff2c554cb1fdb910d82a499a817d64065fef36ab26d5a1e2d03138ce26f"] proof_blobs=[] -2026-04-20T10:48:40.251359Z DEBUG StfBlueprint::apply_slot{context=Node da_height=86}: sov_chain_state: Setting next visible slot number next_visible_slot_number=80 -2026-04-20T10:48:40.251615Z DEBUG StfBlueprint::apply_slot{context=Node da_height=86}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x1c2efff2c554cb1fdb910d82a499a817d64065fef36ab26d5a1e2d03138ce26f}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:48:40.251801Z DEBUG StfBlueprint::apply_slot{context=Node da_height=86}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1213c4bcb53d8bb52a13399b72d76cdb68b288c8801a0907a2ad4067f2caa70d52052e07163e5955440176c8adc1283be3690bd77a6aab685d53eb7dafa566d8 next_version=86 sesssion_starting_time=47.459µs -2026-04-20T10:48:40.252768Z DEBUG StfBlueprint::apply_slot{context=Node da_height=86}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3c7e874bf5b9f96afc4e1e7703e97ec3baabdd14bb6d4a44f83d035c100eb31755d5358b6fd3b8700d1739b71fb5eaf492b54ad2613b345eb7c5781ae395562e next_version=86 time=1.051113ms accesses_build_time=35.369µs finishing_session_time=940.144µs -2026-04-20T10:48:40.252934Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="a00cea9393c8933c3b10e4fbc57740895c3f3bc668f2be940cc047e2762b231c" -2026-04-20T10:48:40.252953Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="10efaf019d1794f191409c2205e733e8d08284490dec47f767627c8f59b041a3" -2026-04-20T10:48:40.252981Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="9e8d824165c02d19eb5f7b1f717f5b58798a479ea7c016a7b2594b95e39a177b" -2026-04-20T10:48:40.252993Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="1213c4bcb53d8bb52a13399b72d76cdb68b288c8801a0907a2ad4067f2caa70d7334544021b7826aa2d5843007eba26f1436b20a05c596966828fd736ac74018" next_state_root="3c7e874bf5b9f96afc4e1e7703e97ec3baabdd14bb6d4a44f83d035c100eb31755d5358b6fd3b8700d1739b71fb5eaf492b54ad2613b345eb7c5781ae395562e" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:48:40.253478Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 86, latest_finalized_slot_number: 85, sync_status: Synced { synced_da_height: 85 }, .. } -2026-04-20T10:48:40.253563Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=56 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 86, latest_finalized_slot_number: 85, sync_status: Synced { synced_da_height: 85 }, .. } -2026-04-20T10:48:40.253626Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=56 -2026-04-20T10:48:40.253864Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:48:40.253945Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=52 -2026-04-20T10:48:40.254037Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=81 -2026-04-20T10:48:40.254154Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:48:40.254288Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=81 sequence_number=133 -2026-04-20T10:48:40.254311Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=133 blob_id=2147876888423254809691375647545666233 visible_slot_number_after_increase=81 visible_slots_to_advance=1 -2026-04-20T10:48:40.254337Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:48:40.256255Z DEBUG manage_blob_submission_inside_task{blob_id=2147876888423254809691375647545666233 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x9d6009328e9d73e2fd8e5221a70af4686ff85c1c41d234433a700132a4323a3c sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=87 include_at=87 bytes=13 time=726.225µs -2026-04-20T10:48:40.259677Z DEBUG compute_state_update{scope="sequencer" rollup_height=57 slot_number=81}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:48:40.259709Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000487679s -2026-04-20T10:48:40.259729Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:48:40.259772Z DEBUG compute_state_update{scope="sequencer" rollup_height=57 slot_number=81}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3c7e874bf5b9f96afc4e1e7703e97ec3baabdd14bb6d4a44f83d035c100eb31755d5358b6fd3b8700d1739b71fb5eaf492b54ad2613b345eb7c5781ae395562e next_version=87 sesssion_starting_time=5.032588ms -2026-04-20T10:48:40.259992Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:48:40.260080Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:48:40.260338Z DEBUG compute_state_update{scope="sequencer" rollup_height=57 slot_number=81}: sov_state::nomt::prover_storage: computed next state root state_root=388faf0b811660c1a4d65332c0fcf7ccfadec3ac3e69f7395b85bbe24298b0ce29cc9aa21e1716fb3536d3565dfee542f120bbc06e9a8cd1f23fc8f1e079bf3f next_version=87 time=5.612914ms accesses_build_time=12.74µs finishing_session_time=541.776µs -2026-04-20T10:48:40.816880Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QLSqgv1OSsiC_8RB_8JvIA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:48:40.834346Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:48:40.845982Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2599935 cycles -2026-04-20T10:48:40.848659Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [55, 208, 211, 18, 156, 120, 111, 220, 168, 241, 69, 214, 204, 237, 223, 201, 131, 254, 224, 212, 54, 226, 13, 217, 84, 21, 112, 92, 225, 197, 219, 9, 67, 43, 102, 88, 221, 117, 25, 236, 172, 227, 151, 89, 88, 180, 192, 138, 211, 29, 21, 235, 34, 145, 130, 207, 213, 73, 77, 65, 235, 161, 42, 63, 7, 227, 137, 214, 254, 157, 124, 0, 168, 96, 6, 113, 218, 150, 225, 182, 120, 195, 55, 103, 210, 184, 54, 2, 165, 59, 49, 220, 191, 156, 158, 244, 19, 158, 254, 117, 38, 132, 162, 86, 244, 110, 36, 10, 185, 52, 115, 50, 222, 76, 237, 118, 107, 89, 104, 234, 59, 94, 191, 49, 36, 215, 36, 216, 222, 122, 250, 42, 38, 112, 93, 36, 91, 91, 200, 132, 45, 122, 205, 232, 235, 95, 216, 156, 73, 6, 183, 193, 143, 234, 115, 155, 223, 211, 123, 225, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:48:40.958042Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:48:40.958080Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:48:40.967311Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:48:41.001548Z DEBUG sp1_core_executor_runner::native: CHILD sp1_03REyyD3TRaY8W9dtiHRFg==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:48:41.004388Z DEBUG sp1_core_executor_runner::native: CHILD sp1_03REyyD3TRaY8W9dtiHRFg==: stderr: -2026-04-20T10:48:41.004400Z DEBUG sp1_core_executor_runner::native: CHILD sp1_03REyyD3TRaY8W9dtiHRFg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:48:41.004408Z DEBUG sp1_core_executor_runner::native: CHILD sp1_03REyyD3TRaY8W9dtiHRFg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:48:41.004416Z DEBUG sp1_core_executor_runner::native: CHILD sp1_03REyyD3TRaY8W9dtiHRFg==: stderr: stack backtrace: -2026-04-20T10:48:41.004422Z DEBUG sp1_core_executor_runner::native: CHILD sp1_03REyyD3TRaY8W9dtiHRFg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:48:41.004428Z DEBUG sp1_core_executor_runner::native: CHILD sp1_03REyyD3TRaY8W9dtiHRFg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:48:41.004602Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:48:41.005367Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:48:41.005692Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:48:41.075352Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:48:41.075401Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:48:41.075551Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:48:41.075734Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:48:41.075815Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:48:41.076103Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=134 blob_id=2147876889415796795938141909920449199 -2026-04-20T10:48:41.637233Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zvqRt5wZTjyoXqEN1nlGGw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:48:41.651451Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:48:41.662170Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1998438 cycles -2026-04-20T10:48:41.664866Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [48, 32, 133, 190, 163, 233, 228, 152, 151, 125, 179, 244, 255, 249, 127, 217, 83, 120, 227, 241, 126, 252, 122, 62, 45, 49, 8, 187, 56, 5, 190, 87, 77, 45, 92, 9, 204, 224, 225, 207, 4, 99, 30, 133, 109, 116, 78, 21, 3, 19, 119, 187, 100, 92, 116, 110, 190, 42, 113, 197, 254, 78, 75, 128, 121, 130, 254, 44, 93, 27, 173, 254, 6, 106, 63, 63, 4, 179, 19, 29, 201, 134, 210, 99, 29, 44, 101, 242, 233, 235, 110, 231, 230, 4, 222, 176, 94, 166, 228, 107, 180, 178, 53, 46, 154, 83, 0, 169, 0, 134, 31, 10, 52, 163, 184, 113, 136, 220, 115, 80, 112, 33, 8, 170, 154, 105, 37, 9, 121, 243, 167, 202, 51, 18, 24, 201, 48, 8, 79, 63, 172, 206, 162, 100, 155, 114, 226, 210, 56, 26, 89, 148, 30, 223, 37, 103, 57, 114, 36, 96, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:48:41.764205Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:48:41.764241Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:48:41.783803Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:48:41.821214Z DEBUG sp1_core_executor_runner::native: CHILD sp1_c1LG4NDTQyyuOivuY0Glqg==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:48:41.824046Z DEBUG sp1_core_executor_runner::native: CHILD sp1_c1LG4NDTQyyuOivuY0Glqg==: stderr: -2026-04-20T10:48:41.824058Z DEBUG sp1_core_executor_runner::native: CHILD sp1_c1LG4NDTQyyuOivuY0Glqg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:48:41.824068Z DEBUG sp1_core_executor_runner::native: CHILD sp1_c1LG4NDTQyyuOivuY0Glqg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:48:41.824076Z DEBUG sp1_core_executor_runner::native: CHILD sp1_c1LG4NDTQyyuOivuY0Glqg==: stderr: stack backtrace: -2026-04-20T10:48:41.824083Z DEBUG sp1_core_executor_runner::native: CHILD sp1_c1LG4NDTQyyuOivuY0Glqg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:48:41.824089Z DEBUG sp1_core_executor_runner::native: CHILD sp1_c1LG4NDTQyyuOivuY0Glqg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:48:41.824224Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:48:41.825023Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:48:41.825330Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:48:41.896989Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:48:41.897034Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:48:41.897176Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:48:41.897592Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=135 blob_id=2147876890409561584445908397299285291 -2026-04-20T10:48:46.248910Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=87 prev_hash=0xb0f281deb6a3d1ca7fcce28c68570babd178c30bdc318137a7ad64614daf29d4 hash=0x6a566f9c557b73e85417e62c6747913b16a16452aac7e28ae4a2ecdbc3126956 producing_time=1.345041ms -2026-04-20T10:48:46.251575Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=87 current_state_root="3c7e874bf5b9f96afc4e1e7703e97ec3baabdd14bb6d4a44f83d035c100eb31755d5358b6fd3b8700d1739b71fb5eaf492b54ad2613b345eb7c5781ae395562e" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9d6009328e9d73e2fd8e5221a70af4686ff85c1c41d234433a700132a4323a3c"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa7974b50dc64fbd3a876faeaae1b7d7904069145c2edc4ddad41fa99f031f8c4, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x71ee9672829dc5baa22549091afb4a60f1e443928d40dda63ca9fffb126721c3, len=625"] -2026-04-20T10:48:46.251803Z DEBUG StfBlueprint::apply_slot{context=Node da_height=87}: sov_chain_state: Setting next visible slot number next_visible_slot_number=81 -2026-04-20T10:48:46.251942Z DEBUG StfBlueprint::apply_slot{context=Node da_height=87}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x9d6009328e9d73e2fd8e5221a70af4686ff85c1c41d234433a700132a4323a3c}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:48:46.252136Z DEBUG StfBlueprint::apply_slot{context=Node da_height=87}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3c7e874bf5b9f96afc4e1e7703e97ec3baabdd14bb6d4a44f83d035c100eb31755d5358b6fd3b8700d1739b71fb5eaf492b54ad2613b345eb7c5781ae395562e next_version=87 sesssion_starting_time=47.35µs -2026-04-20T10:48:46.253164Z DEBUG StfBlueprint::apply_slot{context=Node da_height=87}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=388faf0b811660c1a4d65332c0fcf7ccfadec3ac3e69f7395b85bbe24298b0ce04a35629db57f0d65dbc6a1532f34b06ac41c92832af7fa16179093aacb17fce next_version=87 time=1.108453ms accesses_build_time=31.559µs finishing_session_time=997.334µs -2026-04-20T10:48:46.253373Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="1213c4bcb53d8bb52a13399b72d76cdb68b288c8801a0907a2ad4067f2caa70d52052e07163e5955440176c8adc1283be3690bd77a6aab685d53eb7dafa566d8" next_state_root="388faf0b811660c1a4d65332c0fcf7ccfadec3ac3e69f7395b85bbe24298b0ce04a35629db57f0d65dbc6a1532f34b06ac41c92832af7fa16179093aacb17fce" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:48:46.253939Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 87, latest_finalized_slot_number: 86, sync_status: Synced { synced_da_height: 86 }, .. } -2026-04-20T10:48:46.254031Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=57 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 87, latest_finalized_slot_number: 86, sync_status: Synced { synced_da_height: 86 }, .. } -2026-04-20T10:48:46.254101Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=57 -2026-04-20T10:48:46.265337Z DEBUG sov_stf_runner::runner: Block execution complete time=6.005609447s -2026-04-20T10:48:46.265366Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:48:46.265578Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:48:46.265664Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:48:46.828821Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jO0is9RlRr69hAyuZtMKPQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:48:46.846412Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:48:46.857270Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2586454 cycles -2026-04-20T10:48:46.860063Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [5, 190, 34, 170, 141, 116, 12, 167, 99, 44, 125, 7, 100, 78, 62, 172, 59, 182, 108, 147, 80, 1, 77, 235, 187, 248, 121, 79, 37, 163, 126, 147, 110, 101, 24, 67, 43, 100, 76, 85, 58, 93, 195, 141, 163, 184, 105, 115, 88, 6, 201, 48, 196, 70, 0, 20, 242, 219, 23, 179, 161, 142, 91, 123, 107, 255, 87, 107, 89, 186, 20, 164, 236, 205, 92, 73, 25, 222, 170, 116, 250, 162, 65, 179, 220, 196, 200, 251, 187, 70, 200, 248, 231, 143, 52, 50, 39, 242, 211, 232, 22, 230, 24, 42, 117, 217, 114, 146, 16, 30, 182, 41, 166, 193, 242, 84, 113, 26, 75, 22, 198, 4, 8, 36, 57, 208, 131, 214, 49, 41, 80, 144, 41, 214, 82, 192, 78, 31, 180, 50, 108, 81, 175, 142, 177, 165, 168, 40, 238, 206, 250, 79, 162, 245, 33, 92, 136, 9, 219, 202, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:48:46.971850Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:48:46.971887Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:48:47.075947Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:48:47.110170Z DEBUG sp1_core_executor_runner::native: CHILD sp1_OiwHT8GJS9K3pS0JTppnfw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:48:47.113035Z DEBUG sp1_core_executor_runner::native: CHILD sp1_OiwHT8GJS9K3pS0JTppnfw==: stderr: -2026-04-20T10:48:47.113058Z DEBUG sp1_core_executor_runner::native: CHILD sp1_OiwHT8GJS9K3pS0JTppnfw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:48:47.113068Z DEBUG sp1_core_executor_runner::native: CHILD sp1_OiwHT8GJS9K3pS0JTppnfw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:48:47.113075Z DEBUG sp1_core_executor_runner::native: CHILD sp1_OiwHT8GJS9K3pS0JTppnfw==: stderr: stack backtrace: -2026-04-20T10:48:47.113081Z DEBUG sp1_core_executor_runner::native: CHILD sp1_OiwHT8GJS9K3pS0JTppnfw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:48:47.113087Z DEBUG sp1_core_executor_runner::native: CHILD sp1_OiwHT8GJS9K3pS0JTppnfw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:48:47.113184Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:48:47.114021Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:48:47.114330Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:48:47.179321Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:48:47.179366Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:48:47.179542Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:48:47.180157Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=136 blob_id=2147876896795135190884913312310093271 -2026-04-20T10:48:52.251467Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=88 prev_hash=0x6a566f9c557b73e85417e62c6747913b16a16452aac7e28ae4a2ecdbc3126956 hash=0x5f90571e8e02b5cbc61b1718d47a3a4df9958939f525141e2464921b3acb9832 producing_time=1.406541ms -2026-04-20T10:48:52.256140Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=88 current_state_root="388faf0b811660c1a4d65332c0fcf7ccfadec3ac3e69f7395b85bbe24298b0ce04a35629db57f0d65dbc6a1532f34b06ac41c92832af7fa16179093aacb17fce" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xaef00b9984183fa8e04c083124aa551e18e00af01c7c92370050f665a203b571, len=625"] -2026-04-20T10:48:52.256472Z DEBUG StfBlueprint::apply_slot{context=Node da_height=88}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=388faf0b811660c1a4d65332c0fcf7ccfadec3ac3e69f7395b85bbe24298b0ce04a35629db57f0d65dbc6a1532f34b06ac41c92832af7fa16179093aacb17fce next_version=88 sesssion_starting_time=48.52µs -2026-04-20T10:48:52.257326Z DEBUG StfBlueprint::apply_slot{context=Node da_height=88}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=388faf0b811660c1a4d65332c0fcf7ccfadec3ac3e69f7395b85bbe24298b0ce27cc2f79edabd5a500b596f7e96216ef68427dce31115c1163dc49f6f1994394 next_version=88 time=918.624µs accesses_build_time=15.33µs finishing_session_time=811.365µs -2026-04-20T10:48:52.257394Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3c7e874bf5b9f96afc4e1e7703e97ec3baabdd14bb6d4a44f83d035c100eb31755d5358b6fd3b8700d1739b71fb5eaf492b54ad2613b345eb7c5781ae395562e" next_state_root="388faf0b811660c1a4d65332c0fcf7ccfadec3ac3e69f7395b85bbe24298b0ce27cc2f79edabd5a500b596f7e96216ef68427dce31115c1163dc49f6f1994394" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:48:52.257862Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 88, latest_finalized_slot_number: 87, sync_status: Synced { synced_da_height: 87 }, .. } -2026-04-20T10:48:52.257940Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=57 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 88, latest_finalized_slot_number: 87, sync_status: Synced { synced_da_height: 87 }, .. } -2026-04-20T10:48:52.257999Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=57 -2026-04-20T10:48:52.258210Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:48:52.258268Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=53 -2026-04-20T10:48:52.258364Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=83 -2026-04-20T10:48:52.258513Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:48:52.258806Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=83 sequence_number=137 -2026-04-20T10:48:52.258851Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:48:52.258857Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=137 blob_id=2147876902935232815254205862196773803 visible_slot_number_after_increase=83 visible_slots_to_advance=2 -2026-04-20T10:48:52.261087Z DEBUG manage_blob_submission_inside_task{blob_id=2147876902935232815254205862196773803 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x671ed8d85f069def6b69aa21e78f283243de292fb88c22b5421e92fab6fa009e sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=89 include_at=89 bytes=13 time=667.586µs -2026-04-20T10:48:52.269304Z DEBUG compute_state_update{scope="sequencer" rollup_height=58 slot_number=83}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:48:52.269352Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003987527s -2026-04-20T10:48:52.269372Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:48:52.269403Z DEBUG compute_state_update{scope="sequencer" rollup_height=58 slot_number=83}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=388faf0b811660c1a4d65332c0fcf7ccfadec3ac3e69f7395b85bbe24298b0ce27cc2f79edabd5a500b596f7e96216ef68427dce31115c1163dc49f6f1994394 next_version=89 sesssion_starting_time=10.181784ms -2026-04-20T10:48:52.270115Z DEBUG compute_state_update{scope="sequencer" rollup_height=58 slot_number=83}: sov_state::nomt::prover_storage: computed next state root state_root=2629c97814e6bab0c2c2e6c77109fa9d50f489be668ef09f45f73951e54ddf0334fb2a141c681f33e7a5ca7c3b8451b50f2d5db022ebeef05287ae072cea26f2 next_version=89 time=10.90806ms accesses_build_time=13.54µs finishing_session_time=687.006µs -2026-04-20T10:48:58.253927Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=89 prev_hash=0x5f90571e8e02b5cbc61b1718d47a3a4df9958939f525141e2464921b3acb9832 hash=0xbf2a8404099c367599af99a52388f89ce8f5fb1570b2f4e87de3fcf6a79f18e7 producing_time=1.378681ms -2026-04-20T10:48:58.260631Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=89 current_state_root="388faf0b811660c1a4d65332c0fcf7ccfadec3ac3e69f7395b85bbe24298b0ce27cc2f79edabd5a500b596f7e96216ef68427dce31115c1163dc49f6f1994394" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x671ed8d85f069def6b69aa21e78f283243de292fb88c22b5421e92fab6fa009e"] proof_blobs=[] -2026-04-20T10:48:58.260887Z DEBUG StfBlueprint::apply_slot{context=Node da_height=89}: sov_chain_state: Setting next visible slot number next_visible_slot_number=83 -2026-04-20T10:48:58.261132Z DEBUG StfBlueprint::apply_slot{context=Node da_height=89}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x671ed8d85f069def6b69aa21e78f283243de292fb88c22b5421e92fab6fa009e}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:48:58.261310Z DEBUG StfBlueprint::apply_slot{context=Node da_height=89}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=388faf0b811660c1a4d65332c0fcf7ccfadec3ac3e69f7395b85bbe24298b0ce27cc2f79edabd5a500b596f7e96216ef68427dce31115c1163dc49f6f1994394 next_version=89 sesssion_starting_time=46.089µs -2026-04-20T10:48:58.262260Z DEBUG StfBlueprint::apply_slot{context=Node da_height=89}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2629c97814e6bab0c2c2e6c77109fa9d50f489be668ef09f45f73951e54ddf03068c6604773a587d6e3706b33288356ff49dd60f12df72723e21e7a7420bed1e next_version=89 time=1.033733ms accesses_build_time=36.6µs finishing_session_time=907.845µs -2026-04-20T10:48:58.262434Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="a7974b50dc64fbd3a876faeaae1b7d7904069145c2edc4ddad41fa99f031f8c4" -2026-04-20T10:48:58.262458Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="71ee9672829dc5baa22549091afb4a60f1e443928d40dda63ca9fffb126721c3" -2026-04-20T10:48:58.262468Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="aef00b9984183fa8e04c083124aa551e18e00af01c7c92370050f665a203b571" -2026-04-20T10:48:58.262492Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="388faf0b811660c1a4d65332c0fcf7ccfadec3ac3e69f7395b85bbe24298b0ce04a35629db57f0d65dbc6a1532f34b06ac41c92832af7fa16179093aacb17fce" next_state_root="2629c97814e6bab0c2c2e6c77109fa9d50f489be668ef09f45f73951e54ddf03068c6604773a587d6e3706b33288356ff49dd60f12df72723e21e7a7420bed1e" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:48:58.262972Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 89, latest_finalized_slot_number: 88, sync_status: Synced { synced_da_height: 88 }, .. } -2026-04-20T10:48:58.263045Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=58 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 89, latest_finalized_slot_number: 88, sync_status: Synced { synced_da_height: 88 }, .. } -2026-04-20T10:48:58.263100Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=58 -2026-04-20T10:48:58.263322Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:48:58.263391Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=54 -2026-04-20T10:48:58.263496Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=84 -2026-04-20T10:48:58.263648Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:48:58.263824Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=84 sequence_number=138 -2026-04-20T10:48:58.263843Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=138 blob_id=2147876910194818524096555797937811043 visible_slot_number_after_increase=84 visible_slots_to_advance=1 -2026-04-20T10:48:58.263896Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:48:58.265761Z DEBUG manage_blob_submission_inside_task{blob_id=2147876910194818524096555797937811043 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xcc40227b1091c1db8de551bf6cd1ad9e41c2012f01abcc807b06c6573d2c281f sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=90 include_at=90 bytes=13 time=610.116µs -2026-04-20T10:48:58.273119Z DEBUG compute_state_update{scope="sequencer" rollup_height=59 slot_number=84}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:48:58.273165Z DEBUG compute_state_update{scope="sequencer" rollup_height=59 slot_number=84}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2629c97814e6bab0c2c2e6c77109fa9d50f489be668ef09f45f73951e54ddf03068c6604773a587d6e3706b33288356ff49dd60f12df72723e21e7a7420bed1e next_version=90 sesssion_starting_time=8.897072ms -2026-04-20T10:48:58.273168Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003796908s -2026-04-20T10:48:58.273193Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:48:58.273434Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:48:58.273520Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:48:58.273680Z DEBUG compute_state_update{scope="sequencer" rollup_height=59 slot_number=84}: sov_state::nomt::prover_storage: computed next state root state_root=1c9787a28935c9ae782c4fbb0ecd352755f371fe2e9b93bee37d286ba9b04d1a16d4c1f7ba932da18c144b02216c8fba303fa2caf52e8011766d735b5ad64a26 next_version=90 time=9.422349ms accesses_build_time=9.929µs finishing_session_time=500.347µs -2026-04-20T10:48:58.835153Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Y4-gOpKUQuOQVEKz91jrHA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:48:58.841661Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:48:58.852337Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 983663 cycles -2026-04-20T10:48:58.855049Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [39, 36, 180, 29, 205, 89, 120, 119, 22, 62, 194, 65, 101, 33, 145, 199, 49, 246, 189, 2, 37, 159, 71, 182, 70, 10, 91, 116, 189, 3, 144, 43, 34, 175, 124, 218, 230, 14, 18, 56, 68, 7, 6, 219, 75, 169, 25, 116, 70, 244, 234, 27, 69, 66, 41, 113, 71, 13, 213, 210, 57, 186, 114, 189, 39, 36, 180, 29, 205, 89, 120, 119, 22, 62, 194, 65, 101, 33, 145, 199, 49, 246, 189, 2, 37, 159, 71, 182, 70, 10, 91, 116, 189, 3, 144, 43, 112, 209, 69, 218, 81, 239, 59, 71, 4, 19, 13, 28, 147, 132, 130, 208, 67, 110, 5, 130, 99, 217, 229, 122, 215, 107, 19, 20, 230, 246, 6, 127, 238, 97, 143, 35, 208, 208, 60, 61, 203, 117, 95, 133, 32, 127, 230, 123, 70, 41, 1, 159, 111, 115, 134, 86, 124, 22, 58, 174, 248, 39, 145, 164, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:48:58.912427Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:48:58.912491Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:48:58.980599Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:48:59.018091Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FEQf6GFnTWSMh5srCoPsYw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:48:59.020908Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FEQf6GFnTWSMh5srCoPsYw==: stderr: -2026-04-20T10:48:59.020922Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FEQf6GFnTWSMh5srCoPsYw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:48:59.020930Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FEQf6GFnTWSMh5srCoPsYw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:48:59.020939Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FEQf6GFnTWSMh5srCoPsYw==: stderr: stack backtrace: -2026-04-20T10:48:59.020944Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FEQf6GFnTWSMh5srCoPsYw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:48:59.020950Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FEQf6GFnTWSMh5srCoPsYw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:48:59.021134Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:48:59.021898Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:48:59.022210Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:48:59.089206Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:48:59.089250Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:48:59.089437Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:48:59.089613Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:48:59.089678Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:48:59.090009Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=139 blob_id=2147876911193391215714026527546029260 -2026-04-20T10:48:59.644811Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YfKvhDduSpmi3j8kxw6o6Q==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:48:59.651130Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:48:59.661111Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 951561 cycles -2026-04-20T10:48:59.663785Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [39, 36, 180, 29, 205, 89, 120, 119, 22, 62, 194, 65, 101, 33, 145, 199, 49, 246, 189, 2, 37, 159, 71, 182, 70, 10, 91, 116, 189, 3, 144, 43, 107, 128, 247, 244, 183, 142, 147, 242, 30, 32, 20, 225, 47, 243, 9, 187, 71, 51, 180, 29, 230, 81, 88, 114, 203, 29, 108, 153, 102, 2, 105, 29, 39, 36, 180, 29, 205, 89, 120, 119, 22, 62, 194, 65, 101, 33, 145, 199, 49, 246, 189, 2, 37, 159, 71, 182, 70, 10, 91, 116, 189, 3, 144, 43, 65, 82, 150, 77, 222, 180, 12, 78, 47, 108, 76, 225, 64, 129, 161, 68, 80, 122, 156, 214, 53, 28, 68, 174, 55, 216, 169, 231, 11, 10, 193, 178, 150, 103, 53, 83, 45, 73, 254, 82, 193, 120, 145, 222, 41, 214, 110, 225, 216, 211, 4, 84, 176, 100, 99, 208, 157, 57, 58, 162, 79, 148, 200, 253, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:48:59.717439Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:48:59.717481Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:48:59.797149Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:48:59.832987Z DEBUG sp1_core_executor_runner::native: CHILD sp1_B6RJNAvPS8G6vZCjJSEiNw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:48:59.835828Z DEBUG sp1_core_executor_runner::native: CHILD sp1_B6RJNAvPS8G6vZCjJSEiNw==: stderr: -2026-04-20T10:48:59.835853Z DEBUG sp1_core_executor_runner::native: CHILD sp1_B6RJNAvPS8G6vZCjJSEiNw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:48:59.835863Z DEBUG sp1_core_executor_runner::native: CHILD sp1_B6RJNAvPS8G6vZCjJSEiNw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:48:59.835870Z DEBUG sp1_core_executor_runner::native: CHILD sp1_B6RJNAvPS8G6vZCjJSEiNw==: stderr: stack backtrace: -2026-04-20T10:48:59.835876Z DEBUG sp1_core_executor_runner::native: CHILD sp1_B6RJNAvPS8G6vZCjJSEiNw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:48:59.835882Z DEBUG sp1_core_executor_runner::native: CHILD sp1_B6RJNAvPS8G6vZCjJSEiNw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:48:59.835977Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:48:59.836785Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:48:59.837079Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:48:59.903696Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:48:59.903741Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:48:59.903936Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:48:59.904673Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=140 blob_id=2147876912177494595789884829329814696 -2026-04-20T10:49:04.256191Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=90 prev_hash=0xbf2a8404099c367599af99a52388f89ce8f5fb1570b2f4e87de3fcf6a79f18e7 hash=0xfe7887fafd1351f2a4ac8a6a57c4f998ae3403158c7490417cf29cf6f99ba387 producing_time=1.447411ms -2026-04-20T10:49:04.265039Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=90 current_state_root="2629c97814e6bab0c2c2e6c77109fa9d50f489be668ef09f45f73951e54ddf03068c6604773a587d6e3706b33288356ff49dd60f12df72723e21e7a7420bed1e" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xcc40227b1091c1db8de551bf6cd1ad9e41c2012f01abcc807b06c6573d2c281f"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xbfe85096ccb4f3a61135e5757124ffae1949bd438cf6093c54903f6fa8d02fe9, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd9c89e4924f6c3e89855e5442fc3286ff48008fe75c02d2ce9bdd83fed594639, len=625"] -2026-04-20T10:49:04.265270Z DEBUG StfBlueprint::apply_slot{context=Node da_height=90}: sov_chain_state: Setting next visible slot number next_visible_slot_number=84 -2026-04-20T10:49:04.265429Z DEBUG StfBlueprint::apply_slot{context=Node da_height=90}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xcc40227b1091c1db8de551bf6cd1ad9e41c2012f01abcc807b06c6573d2c281f}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:49:04.265613Z DEBUG StfBlueprint::apply_slot{context=Node da_height=90}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2629c97814e6bab0c2c2e6c77109fa9d50f489be668ef09f45f73951e54ddf03068c6604773a587d6e3706b33288356ff49dd60f12df72723e21e7a7420bed1e next_version=90 sesssion_starting_time=48.18µs -2026-04-20T10:49:04.266559Z DEBUG StfBlueprint::apply_slot{context=Node da_height=90}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=1c9787a28935c9ae782c4fbb0ecd352755f371fe2e9b93bee37d286ba9b04d1a551e5631a03f349ae45cff3a9332956d25b819fca9917d13ab8402e5d393de10 next_version=90 time=1.027144ms accesses_build_time=31.68µs finishing_session_time=919.024µs -2026-04-20T10:49:04.266753Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="388faf0b811660c1a4d65332c0fcf7ccfadec3ac3e69f7395b85bbe24298b0ce27cc2f79edabd5a500b596f7e96216ef68427dce31115c1163dc49f6f1994394" next_state_root="1c9787a28935c9ae782c4fbb0ecd352755f371fe2e9b93bee37d286ba9b04d1a551e5631a03f349ae45cff3a9332956d25b819fca9917d13ab8402e5d393de10" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:49:04.267337Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 90, latest_finalized_slot_number: 89, sync_status: Synced { synced_da_height: 89 }, .. } -2026-04-20T10:49:04.267451Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=59 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 90, latest_finalized_slot_number: 89, sync_status: Synced { synced_da_height: 89 }, .. } -2026-04-20T10:49:04.267517Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=59 -2026-04-20T10:49:04.281201Z DEBUG sov_stf_runner::runner: Block execution complete time=6.008009681s -2026-04-20T10:49:04.281235Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:49:04.281501Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:49:04.281602Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:49:04.843275Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BEvoSYRjT36uEDP462FIhA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:49:04.858875Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:49:04.869811Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2286415 cycles -2026-04-20T10:49:04.872602Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [39, 36, 180, 29, 205, 89, 120, 119, 22, 62, 194, 65, 101, 33, 145, 199, 49, 246, 189, 2, 37, 159, 71, 182, 70, 10, 91, 116, 189, 3, 144, 43, 114, 34, 131, 146, 16, 165, 194, 157, 225, 109, 104, 232, 85, 75, 72, 223, 180, 213, 110, 142, 213, 3, 47, 51, 37, 92, 148, 251, 2, 225, 75, 16, 21, 251, 58, 112, 2, 39, 8, 43, 249, 12, 66, 18, 99, 46, 136, 164, 239, 89, 21, 75, 199, 142, 99, 79, 22, 123, 106, 176, 62, 147, 150, 249, 12, 58, 187, 229, 182, 208, 196, 86, 149, 208, 172, 226, 188, 247, 210, 86, 164, 119, 138, 170, 124, 213, 99, 17, 13, 152, 180, 219, 25, 38, 43, 208, 37, 71, 111, 169, 218, 185, 222, 99, 20, 176, 120, 230, 157, 31, 73, 169, 233, 255, 243, 4, 186, 68, 98, 15, 227, 93, 187, 81, 182, 247, 198, 72, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:49:04.973932Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:49:04.973970Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:49:04.988114Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:49:05.023929Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-z3vDZy9QmeIKrxft_wURg==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:49:05.026748Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-z3vDZy9QmeIKrxft_wURg==: stderr: -2026-04-20T10:49:05.026761Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-z3vDZy9QmeIKrxft_wURg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:49:05.026770Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-z3vDZy9QmeIKrxft_wURg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:49:05.026778Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-z3vDZy9QmeIKrxft_wURg==: stderr: stack backtrace: -2026-04-20T10:49:05.026785Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-z3vDZy9QmeIKrxft_wURg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:49:05.026791Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-z3vDZy9QmeIKrxft_wURg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:49:05.026902Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:49:05.027642Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:49:05.027770Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:49:05.096306Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:49:05.096359Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:49:05.096574Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:49:05.097121Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=141 blob_id=2147876918455417802658744947753247354 -2026-04-20T10:49:10.258007Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=91 prev_hash=0xfe7887fafd1351f2a4ac8a6a57c4f998ae3403158c7490417cf29cf6f99ba387 hash=0xfc8a3bbb00013543f1f10944deb1aad36b07601afc7bdc30a99c883b3e25d779 producing_time=1.297382ms -2026-04-20T10:49:10.262715Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=91 current_state_root="1c9787a28935c9ae782c4fbb0ecd352755f371fe2e9b93bee37d286ba9b04d1a551e5631a03f349ae45cff3a9332956d25b819fca9917d13ab8402e5d393de10" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x96ab0f3525fe1dc27d5967daae7c320db05f9de242c6069e09aced81bd1ef895, len=625"] -2026-04-20T10:49:10.263078Z DEBUG StfBlueprint::apply_slot{context=Node da_height=91}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1c9787a28935c9ae782c4fbb0ecd352755f371fe2e9b93bee37d286ba9b04d1a551e5631a03f349ae45cff3a9332956d25b819fca9917d13ab8402e5d393de10 next_version=91 sesssion_starting_time=48.64µs -2026-04-20T10:49:10.263875Z DEBUG StfBlueprint::apply_slot{context=Node da_height=91}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=1c9787a28935c9ae782c4fbb0ecd352755f371fe2e9b93bee37d286ba9b04d1a08e04b282512d5d87d456ea08441445327b2264de43c21090cc2dffad15fe505 next_version=91 time=862.224µs accesses_build_time=16.26µs finishing_session_time=767.005µs -2026-04-20T10:49:10.263961Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2629c97814e6bab0c2c2e6c77109fa9d50f489be668ef09f45f73951e54ddf03068c6604773a587d6e3706b33288356ff49dd60f12df72723e21e7a7420bed1e" next_state_root="1c9787a28935c9ae782c4fbb0ecd352755f371fe2e9b93bee37d286ba9b04d1a08e04b282512d5d87d456ea08441445327b2264de43c21090cc2dffad15fe505" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:49:10.264493Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 91, latest_finalized_slot_number: 90, sync_status: Synced { synced_da_height: 90 }, .. } -2026-04-20T10:49:10.264593Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=59 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 91, latest_finalized_slot_number: 90, sync_status: Synced { synced_da_height: 90 }, .. } -2026-04-20T10:49:10.264657Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=59 -2026-04-20T10:49:10.264889Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:49:10.264956Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=55 -2026-04-20T10:49:10.265054Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=86 -2026-04-20T10:49:10.265203Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:49:10.265532Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=86 sequence_number=142 -2026-04-20T10:49:10.265578Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=142 blob_id=2147876924704365674005876471867979727 visible_slot_number_after_increase=86 visible_slots_to_advance=2 -2026-04-20T10:49:10.265610Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:49:10.267403Z DEBUG manage_blob_submission_inside_task{blob_id=2147876924704365674005876471867979727 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x60a399d2a8e229da4aa334216deb33ba420ac789e8b6be8c31538a85712cde68 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=92 include_at=92 bytes=13 time=673.255µs -2026-04-20T10:49:10.278518Z DEBUG compute_state_update{scope="sequencer" rollup_height=60 slot_number=86}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:49:10.278550Z DEBUG sov_stf_runner::runner: Block execution complete time=5.997317461s -2026-04-20T10:49:10.278570Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:49:10.278603Z DEBUG compute_state_update{scope="sequencer" rollup_height=60 slot_number=86}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1c9787a28935c9ae782c4fbb0ecd352755f371fe2e9b93bee37d286ba9b04d1a08e04b282512d5d87d456ea08441445327b2264de43c21090cc2dffad15fe505 next_version=92 sesssion_starting_time=12.607948ms -2026-04-20T10:49:10.279241Z DEBUG compute_state_update{scope="sequencer" rollup_height=60 slot_number=86}: sov_state::nomt::prover_storage: computed next state root state_root=02099ac433727a2ecbe96f3b0c6776c0db58eb4e1162637294c3de8c8f3b75737edcf81befc1c03bebc6001dbdfedaad4bebe28b83072eeffb855a725bfe0bda next_version=92 time=13.262254ms accesses_build_time=14.809µs finishing_session_time=616.856µs -2026-04-20T10:49:16.260387Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=92 prev_hash=0xfc8a3bbb00013543f1f10944deb1aad36b07601afc7bdc30a99c883b3e25d779 hash=0x4c592e7e84bb2c8fe89c0c19ffb334059566c34aff113a4973577f1f808e54c8 producing_time=1.382311ms -2026-04-20T10:49:16.270271Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=92 current_state_root="1c9787a28935c9ae782c4fbb0ecd352755f371fe2e9b93bee37d286ba9b04d1a08e04b282512d5d87d456ea08441445327b2264de43c21090cc2dffad15fe505" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x60a399d2a8e229da4aa334216deb33ba420ac789e8b6be8c31538a85712cde68"] proof_blobs=[] -2026-04-20T10:49:16.270571Z DEBUG StfBlueprint::apply_slot{context=Node da_height=92}: sov_chain_state: Setting next visible slot number next_visible_slot_number=86 -2026-04-20T10:49:16.270827Z DEBUG StfBlueprint::apply_slot{context=Node da_height=92}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x60a399d2a8e229da4aa334216deb33ba420ac789e8b6be8c31538a85712cde68}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:49:16.271012Z DEBUG StfBlueprint::apply_slot{context=Node da_height=92}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1c9787a28935c9ae782c4fbb0ecd352755f371fe2e9b93bee37d286ba9b04d1a08e04b282512d5d87d456ea08441445327b2264de43c21090cc2dffad15fe505 next_version=92 sesssion_starting_time=48.15µs -2026-04-20T10:49:16.272135Z DEBUG StfBlueprint::apply_slot{context=Node da_height=92}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=02099ac433727a2ecbe96f3b0c6776c0db58eb4e1162637294c3de8c8f3b757300029b54dd2f4888e44fe36702455acc29a42eaaec144d77c8dd0183daaf4e87 next_version=92 time=1.208822ms accesses_build_time=36.41µs finishing_session_time=1.098563ms -2026-04-20T10:49:16.272303Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="bfe85096ccb4f3a61135e5757124ffae1949bd438cf6093c54903f6fa8d02fe9" -2026-04-20T10:49:16.272330Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="d9c89e4924f6c3e89855e5442fc3286ff48008fe75c02d2ce9bdd83fed594639" -2026-04-20T10:49:16.272343Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="96ab0f3525fe1dc27d5967daae7c320db05f9de242c6069e09aced81bd1ef895" -2026-04-20T10:49:16.272355Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="1c9787a28935c9ae782c4fbb0ecd352755f371fe2e9b93bee37d286ba9b04d1a551e5631a03f349ae45cff3a9332956d25b819fca9917d13ab8402e5d393de10" next_state_root="02099ac433727a2ecbe96f3b0c6776c0db58eb4e1162637294c3de8c8f3b757300029b54dd2f4888e44fe36702455acc29a42eaaec144d77c8dd0183daaf4e87" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:49:16.272976Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 92, latest_finalized_slot_number: 91, sync_status: Synced { synced_da_height: 91 }, .. } -2026-04-20T10:49:16.273064Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=60 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 92, latest_finalized_slot_number: 91, sync_status: Synced { synced_da_height: 91 }, .. } -2026-04-20T10:49:16.273125Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=60 -2026-04-20T10:49:16.273360Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:49:16.273435Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=56 -2026-04-20T10:49:16.273534Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=87 -2026-04-20T10:49:16.273657Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:49:16.273835Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=87 sequence_number=143 -2026-04-20T10:49:16.273860Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=143 blob_id=2147876931967614411492838935733543520 visible_slot_number_after_increase=87 visible_slots_to_advance=1 -2026-04-20T10:49:16.273926Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:49:16.275713Z DEBUG manage_blob_submission_inside_task{blob_id=2147876931967614411492838935733543520 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x7df80f23d4ad1310ce920eeb4ae3efe2cf39f237a589a83b86bad61033777aa4 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=93 include_at=93 bytes=13 time=809.774µs -2026-04-20T10:49:16.283221Z DEBUG compute_state_update{scope="sequencer" rollup_height=61 slot_number=87}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:49:16.283238Z DEBUG sov_stf_runner::runner: Block execution complete time=6.004668173s -2026-04-20T10:49:16.283299Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:49:16.283328Z DEBUG compute_state_update{scope="sequencer" rollup_height=61 slot_number=87}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=02099ac433727a2ecbe96f3b0c6776c0db58eb4e1162637294c3de8c8f3b757300029b54dd2f4888e44fe36702455acc29a42eaaec144d77c8dd0183daaf4e87 next_version=93 sesssion_starting_time=8.956512ms -2026-04-20T10:49:16.283500Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:49:16.283586Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:49:16.283931Z DEBUG compute_state_update{scope="sequencer" rollup_height=61 slot_number=87}: sov_state::nomt::prover_storage: computed next state root state_root=0a193c411f52a40bb573df1c27c992def2e8e77d2c8362bfc05813e4eeb0425f5fa36fcc8859c85f6f51bf2fed938993b9f9deb452ce8de9d16e10fed16aa3d9 next_version=93 time=9.578278ms accesses_build_time=16.97µs finishing_session_time=573.616µs -2026-04-20T10:49:16.843717Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LHV2RQm0Q1yRN3Vgl-n3AA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:49:16.856583Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:49:16.867923Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1812386 cycles -2026-04-20T10:49:16.870602Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [18, 224, 2, 220, 161, 87, 251, 58, 150, 89, 137, 125, 98, 8, 140, 208, 99, 124, 81, 101, 26, 237, 113, 178, 184, 67, 160, 156, 200, 106, 126, 164, 38, 130, 77, 117, 52, 82, 220, 195, 100, 135, 240, 76, 173, 99, 210, 179, 2, 56, 66, 152, 225, 47, 238, 121, 173, 171, 216, 233, 59, 157, 154, 168, 92, 15, 93, 8, 94, 100, 10, 129, 244, 2, 233, 179, 112, 42, 54, 127, 141, 132, 141, 49, 55, 112, 230, 42, 3, 94, 40, 172, 224, 18, 82, 183, 68, 195, 148, 14, 71, 132, 244, 208, 215, 181, 77, 210, 40, 121, 130, 154, 207, 138, 166, 161, 222, 154, 147, 139, 82, 202, 53, 45, 241, 202, 54, 117, 185, 202, 190, 116, 2, 190, 233, 222, 87, 187, 196, 208, 246, 148, 18, 178, 194, 116, 173, 177, 98, 239, 0, 109, 204, 67, 106, 51, 241, 70, 0, 226, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:49:16.959073Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:49:16.959112Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:49:16.990610Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:49:17.025390Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VIt5Vv2wRIWIoTms4yIZKQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:49:17.028212Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VIt5Vv2wRIWIoTms4yIZKQ==: stderr: -2026-04-20T10:49:17.028225Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VIt5Vv2wRIWIoTms4yIZKQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:49:17.028233Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VIt5Vv2wRIWIoTms4yIZKQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:49:17.028242Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VIt5Vv2wRIWIoTms4yIZKQ==: stderr: stack backtrace: -2026-04-20T10:49:17.028248Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VIt5Vv2wRIWIoTms4yIZKQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:49:17.028254Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VIt5Vv2wRIWIoTms4yIZKQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:49:17.028390Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:49:17.029193Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:49:17.029502Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:49:17.096086Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:49:17.096129Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:49:17.096369Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:49:17.096556Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:49:17.096628Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:49:17.097077Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=144 blob_id=2147876932962499246918577835341663867 -2026-04-20T10:49:17.657962Z DEBUG sp1_core_executor_runner::native: CHILD sp1_G_QaJ-qJQzqxF8-PTW9SNQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:49:17.664056Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:49:17.674116Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 945750 cycles -2026-04-20T10:49:17.676735Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [18, 19, 196, 188, 181, 61, 139, 181, 42, 19, 57, 155, 114, 215, 108, 219, 104, 178, 136, 200, 128, 26, 9, 7, 162, 173, 64, 103, 242, 202, 167, 13, 115, 52, 84, 64, 33, 183, 130, 106, 162, 213, 132, 48, 7, 235, 162, 111, 20, 54, 178, 10, 5, 197, 150, 150, 104, 40, 253, 115, 106, 199, 64, 24, 18, 19, 196, 188, 181, 61, 139, 181, 42, 19, 57, 155, 114, 215, 108, 219, 104, 178, 136, 200, 128, 26, 9, 7, 162, 173, 64, 103, 242, 202, 167, 13, 28, 72, 157, 150, 91, 157, 67, 60, 199, 93, 60, 184, 42, 219, 154, 70, 17, 71, 219, 255, 23, 207, 239, 67, 153, 214, 151, 107, 98, 152, 235, 155, 118, 9, 185, 243, 152, 225, 233, 220, 28, 98, 251, 163, 147, 29, 9, 96, 143, 238, 115, 64, 203, 160, 30, 236, 133, 101, 246, 44, 196, 115, 225, 1, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:49:17.730531Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:49:17.730577Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:49:17.804561Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:49:17.838678Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tumGs6C4TSSPpd68C_6DWg==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:49:17.841547Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tumGs6C4TSSPpd68C_6DWg==: stderr: -2026-04-20T10:49:17.841587Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tumGs6C4TSSPpd68C_6DWg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:49:17.841599Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tumGs6C4TSSPpd68C_6DWg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:49:17.841607Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tumGs6C4TSSPpd68C_6DWg==: stderr: stack backtrace: -2026-04-20T10:49:17.841615Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tumGs6C4TSSPpd68C_6DWg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:49:17.841625Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tumGs6C4TSSPpd68C_6DWg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:49:17.841731Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:49:17.842415Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:49:17.842703Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:49:17.910162Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:49:17.910205Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:49:17.910431Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:49:17.911010Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=145 blob_id=2147876933946617103496131414890995948 -2026-04-20T10:49:22.263767Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=93 prev_hash=0x4c592e7e84bb2c8fe89c0c19ffb334059566c34aff113a4973577f1f808e54c8 hash=0xaac88f2561411fecc1d432a463e491e692ae584af9519cffef066f0e088303c4 producing_time=1.381381ms -2026-04-20T10:49:22.264497Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=93 current_state_root="02099ac433727a2ecbe96f3b0c6776c0db58eb4e1162637294c3de8c8f3b757300029b54dd2f4888e44fe36702455acc29a42eaaec144d77c8dd0183daaf4e87" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x7df80f23d4ad1310ce920eeb4ae3efe2cf39f237a589a83b86bad61033777aa4"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd1d6c65766397aece069dea27aacb52618cd6bba465a617538134150f1507aa0, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf6362cf511a1bbd5c98df486bed791feda93e7b7239118ab3ea89f5823c3fd58, len=625"] -2026-04-20T10:49:22.264734Z DEBUG StfBlueprint::apply_slot{context=Node da_height=93}: sov_chain_state: Setting next visible slot number next_visible_slot_number=87 -2026-04-20T10:49:22.264873Z DEBUG StfBlueprint::apply_slot{context=Node da_height=93}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x7df80f23d4ad1310ce920eeb4ae3efe2cf39f237a589a83b86bad61033777aa4}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:49:22.265051Z DEBUG StfBlueprint::apply_slot{context=Node da_height=93}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=02099ac433727a2ecbe96f3b0c6776c0db58eb4e1162637294c3de8c8f3b757300029b54dd2f4888e44fe36702455acc29a42eaaec144d77c8dd0183daaf4e87 next_version=93 sesssion_starting_time=48.47µs -2026-04-20T10:49:22.266023Z DEBUG StfBlueprint::apply_slot{context=Node da_height=93}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=0a193c411f52a40bb573df1c27c992def2e8e77d2c8362bfc05813e4eeb0425f73777b04761b7e3d6dfc3336fa703964660ffe5cf75a5bec9ef6e618276e5ec8 next_version=93 time=1.053333ms accesses_build_time=32µs finishing_session_time=945.164µs -2026-04-20T10:49:22.266223Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="1c9787a28935c9ae782c4fbb0ecd352755f371fe2e9b93bee37d286ba9b04d1a08e04b282512d5d87d456ea08441445327b2264de43c21090cc2dffad15fe505" next_state_root="0a193c411f52a40bb573df1c27c992def2e8e77d2c8362bfc05813e4eeb0425f73777b04761b7e3d6dfc3336fa703964660ffe5cf75a5bec9ef6e618276e5ec8" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:49:22.266786Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 93, latest_finalized_slot_number: 92, sync_status: Synced { synced_da_height: 92 }, .. } -2026-04-20T10:49:22.266888Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=61 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 93, latest_finalized_slot_number: 92, sync_status: Synced { synced_da_height: 92 }, .. } -2026-04-20T10:49:22.266961Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=61 -2026-04-20T10:49:22.280252Z DEBUG sov_stf_runner::runner: Block execution complete time=5.996955143s -2026-04-20T10:49:22.280286Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:49:22.280583Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:49:22.280676Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:49:22.843718Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SfB1zpgwRe29ZwIcodW9fA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:49:22.861646Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:49:22.873149Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2643188 cycles -2026-04-20T10:49:22.875836Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [18, 19, 196, 188, 181, 61, 139, 181, 42, 19, 57, 155, 114, 215, 108, 219, 104, 178, 136, 200, 128, 26, 9, 7, 162, 173, 64, 103, 242, 202, 167, 13, 82, 5, 46, 7, 22, 62, 89, 85, 68, 1, 118, 200, 173, 193, 40, 59, 227, 105, 11, 215, 122, 106, 171, 104, 93, 83, 235, 125, 175, 165, 102, 216, 48, 240, 228, 169, 20, 155, 117, 40, 91, 122, 119, 89, 239, 144, 160, 21, 133, 18, 44, 116, 27, 71, 55, 1, 244, 142, 77, 104, 137, 161, 191, 227, 126, 181, 174, 222, 73, 41, 150, 0, 244, 249, 94, 203, 176, 179, 10, 227, 101, 77, 123, 251, 80, 207, 213, 87, 88, 190, 196, 99, 46, 126, 238, 119, 176, 242, 129, 222, 182, 163, 209, 202, 127, 204, 226, 140, 104, 87, 11, 171, 209, 120, 195, 11, 220, 49, 129, 55, 167, 173, 100, 97, 77, 175, 41, 212, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:49:22.992030Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:49:22.992075Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:49:23.089538Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:49:23.124451Z DEBUG sp1_core_executor_runner::native: CHILD sp1_w7qgcU9hQn-52zvJclWz-w==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:49:23.127290Z DEBUG sp1_core_executor_runner::native: CHILD sp1_w7qgcU9hQn-52zvJclWz-w==: stderr: -2026-04-20T10:49:23.127325Z DEBUG sp1_core_executor_runner::native: CHILD sp1_w7qgcU9hQn-52zvJclWz-w==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:49:23.127336Z DEBUG sp1_core_executor_runner::native: CHILD sp1_w7qgcU9hQn-52zvJclWz-w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:49:23.127344Z DEBUG sp1_core_executor_runner::native: CHILD sp1_w7qgcU9hQn-52zvJclWz-w==: stderr: stack backtrace: -2026-04-20T10:49:23.127351Z DEBUG sp1_core_executor_runner::native: CHILD sp1_w7qgcU9hQn-52zvJclWz-w==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:49:23.127358Z DEBUG sp1_core_executor_runner::native: CHILD sp1_w7qgcU9hQn-52zvJclWz-w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:49:23.127445Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:49:23.128217Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:49:23.128553Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:49:23.154641Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:49:23.154667Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:49:23.154816Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:49:23.155326Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=146 blob_id=2147876940286233545737552030791779958 -2026-04-20T10:49:28.266517Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=94 prev_hash=0xaac88f2561411fecc1d432a463e491e692ae584af9519cffef066f0e088303c4 hash=0x816199fd8adba1433138a2decdebd146a7b622b0a9dcd15219d4e33c9e5e982e producing_time=1.361412ms -2026-04-20T10:49:28.271229Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=94 current_state_root="0a193c411f52a40bb573df1c27c992def2e8e77d2c8362bfc05813e4eeb0425f73777b04761b7e3d6dfc3336fa703964660ffe5cf75a5bec9ef6e618276e5ec8" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x371bb3b400a5304566cbca74a723ae7ccad1aba1bcce4bab3b847c0f5eab4774, len=625"] -2026-04-20T10:49:28.271576Z DEBUG StfBlueprint::apply_slot{context=Node da_height=94}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0a193c411f52a40bb573df1c27c992def2e8e77d2c8362bfc05813e4eeb0425f73777b04761b7e3d6dfc3336fa703964660ffe5cf75a5bec9ef6e618276e5ec8 next_version=94 sesssion_starting_time=46.76µs -2026-04-20T10:49:28.272277Z DEBUG StfBlueprint::apply_slot{context=Node da_height=94}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=0a193c411f52a40bb573df1c27c992def2e8e77d2c8362bfc05813e4eeb0425f672711f1f9c77bbf5e6efafaff636522cd00ffd99dd4397b10457bff83ed3ec7 next_version=94 time=766.415µs accesses_build_time=17.54µs finishing_session_time=661.315µs -2026-04-20T10:49:28.272359Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="02099ac433727a2ecbe96f3b0c6776c0db58eb4e1162637294c3de8c8f3b757300029b54dd2f4888e44fe36702455acc29a42eaaec144d77c8dd0183daaf4e87" next_state_root="0a193c411f52a40bb573df1c27c992def2e8e77d2c8362bfc05813e4eeb0425f672711f1f9c77bbf5e6efafaff636522cd00ffd99dd4397b10457bff83ed3ec7" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:49:28.272826Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 94, latest_finalized_slot_number: 93, sync_status: Synced { synced_da_height: 93 }, .. } -2026-04-20T10:49:28.272901Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=61 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 94, latest_finalized_slot_number: 93, sync_status: Synced { synced_da_height: 93 }, .. } -2026-04-20T10:49:28.272957Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=61 -2026-04-20T10:49:28.273151Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:49:28.273204Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=57 -2026-04-20T10:49:28.273284Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=89 -2026-04-20T10:49:28.273414Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:49:28.273702Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=89 sequence_number=147 -2026-04-20T10:49:28.273711Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=147 blob_id=2147876946474670806595142327809702308 visible_slot_number_after_increase=89 visible_slots_to_advance=2 -2026-04-20T10:49:28.273742Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:49:28.275849Z DEBUG manage_blob_submission_inside_task{blob_id=2147876946474670806595142327809702308 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x0c2cd8a8ee626fa7bafb04f63467c4ff7f86ee718d551ab340e06b5f69328bff sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=95 include_at=95 bytes=13 time=1.127122ms -2026-04-20T10:49:28.286725Z DEBUG compute_state_update{scope="sequencer" rollup_height=62 slot_number=89}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:49:28.286747Z DEBUG sov_stf_runner::runner: Block execution complete time=6.006463402s -2026-04-20T10:49:28.286759Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:49:28.286764Z DEBUG compute_state_update{scope="sequencer" rollup_height=62 slot_number=89}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0a193c411f52a40bb573df1c27c992def2e8e77d2c8362bfc05813e4eeb0425f672711f1f9c77bbf5e6efafaff636522cd00ffd99dd4397b10457bff83ed3ec7 next_version=95 sesssion_starting_time=12.714568ms -2026-04-20T10:49:28.287151Z DEBUG compute_state_update{scope="sequencer" rollup_height=62 slot_number=89}: sov_state::nomt::prover_storage: computed next state root state_root=1019f092e661a12a998652d298cde250e1feb769b44591b58169817bb714db4b23ad0f4b77a1d7031b641e0cb1d6f5f6fbd60cb1314cfec7b636e0789dd8e95d next_version=95 time=13.114855ms accesses_build_time=12.08µs finishing_session_time=378.508µs -2026-04-20T10:49:34.269441Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=95 prev_hash=0x816199fd8adba1433138a2decdebd146a7b622b0a9dcd15219d4e33c9e5e982e hash=0x9f882a088d625e9e6c6c5a67bd5d1372cfc8d2d3f07b3e21d5eb0dd23dc33e6e producing_time=1.643449ms -2026-04-20T10:49:34.278334Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=95 current_state_root="0a193c411f52a40bb573df1c27c992def2e8e77d2c8362bfc05813e4eeb0425f672711f1f9c77bbf5e6efafaff636522cd00ffd99dd4397b10457bff83ed3ec7" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0c2cd8a8ee626fa7bafb04f63467c4ff7f86ee718d551ab340e06b5f69328bff"] proof_blobs=[] -2026-04-20T10:49:34.278622Z DEBUG StfBlueprint::apply_slot{context=Node da_height=95}: sov_chain_state: Setting next visible slot number next_visible_slot_number=89 -2026-04-20T10:49:34.278866Z DEBUG StfBlueprint::apply_slot{context=Node da_height=95}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x0c2cd8a8ee626fa7bafb04f63467c4ff7f86ee718d551ab340e06b5f69328bff}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:49:34.279050Z DEBUG StfBlueprint::apply_slot{context=Node da_height=95}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0a193c411f52a40bb573df1c27c992def2e8e77d2c8362bfc05813e4eeb0425f672711f1f9c77bbf5e6efafaff636522cd00ffd99dd4397b10457bff83ed3ec7 next_version=95 sesssion_starting_time=49.34µs -2026-04-20T10:49:34.280022Z DEBUG StfBlueprint::apply_slot{context=Node da_height=95}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=1019f092e661a12a998652d298cde250e1feb769b44591b58169817bb714db4b42c2f60b573af99fba3651663993b62b69e73356903100d39cc6264df1591c84 next_version=95 time=1.058123ms accesses_build_time=35.419µs finishing_session_time=948.164µs -2026-04-20T10:49:34.280192Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="d1d6c65766397aece069dea27aacb52618cd6bba465a617538134150f1507aa0" -2026-04-20T10:49:34.280208Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="f6362cf511a1bbd5c98df486bed791feda93e7b7239118ab3ea89f5823c3fd58" -2026-04-20T10:49:34.280218Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="371bb3b400a5304566cbca74a723ae7ccad1aba1bcce4bab3b847c0f5eab4774" -2026-04-20T10:49:34.280230Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="0a193c411f52a40bb573df1c27c992def2e8e77d2c8362bfc05813e4eeb0425f73777b04761b7e3d6dfc3336fa703964660ffe5cf75a5bec9ef6e618276e5ec8" next_state_root="1019f092e661a12a998652d298cde250e1feb769b44591b58169817bb714db4b42c2f60b573af99fba3651663993b62b69e73356903100d39cc6264df1591c84" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:49:34.280838Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 95, latest_finalized_slot_number: 94, sync_status: Synced { synced_da_height: 94 }, .. } -2026-04-20T10:49:34.280940Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=62 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 95, latest_finalized_slot_number: 94, sync_status: Synced { synced_da_height: 94 }, .. } -2026-04-20T10:49:34.281001Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=62 -2026-04-20T10:49:34.281241Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:49:34.281308Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=58 -2026-04-20T10:49:34.281451Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=90 -2026-04-20T10:49:34.281584Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:49:34.281737Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=90 sequence_number=148 -2026-04-20T10:49:34.281768Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=148 blob_id=2147876953737892443252097429339781330 visible_slot_number_after_increase=90 visible_slots_to_advance=1 -2026-04-20T10:49:34.281788Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:49:34.283806Z DEBUG manage_blob_submission_inside_task{blob_id=2147876953737892443252097429339781330 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xaa27c010549eab3d0df68e57316df62401134d21b2762d5a096d110ffd70ca1f sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=96 include_at=96 bytes=13 time=801.034µs -2026-04-20T10:49:34.291308Z DEBUG compute_state_update{scope="sequencer" rollup_height=63 slot_number=90}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:49:34.291377Z DEBUG sov_stf_runner::runner: Block execution complete time=6.004618334s -2026-04-20T10:49:34.291407Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:49:34.291421Z DEBUG compute_state_update{scope="sequencer" rollup_height=63 slot_number=90}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1019f092e661a12a998652d298cde250e1feb769b44591b58169817bb714db4b42c2f60b573af99fba3651663993b62b69e73356903100d39cc6264df1591c84 next_version=96 sesssion_starting_time=9.26743ms -2026-04-20T10:49:34.291643Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:49:34.291729Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:49:34.291966Z DEBUG compute_state_update{scope="sequencer" rollup_height=63 slot_number=90}: sov_state::nomt::prover_storage: computed next state root state_root=6555fcbb2c4a6adc699681e5f94ae14ca2aa41dd49aa66aa53e3cc25486467eb78de78ad2bc483a976760ab21e0ba1134ed51981cbdd98f1bbcc3286dde8e64a next_version=96 time=9.826997ms accesses_build_time=13.47µs finishing_session_time=524.007µs -2026-04-20T10:49:34.853485Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qaXJuZkjSNuSL1sngRw08Q==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:49:34.867300Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:49:34.879068Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1923720 cycles -2026-04-20T10:49:34.881782Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [60, 126, 135, 75, 245, 185, 249, 106, 252, 78, 30, 119, 3, 233, 126, 195, 186, 171, 221, 20, 187, 109, 74, 68, 248, 61, 3, 92, 16, 14, 179, 23, 85, 213, 53, 139, 111, 211, 184, 112, 13, 23, 57, 183, 31, 181, 234, 244, 146, 181, 74, 210, 97, 59, 52, 94, 183, 197, 120, 26, 227, 149, 86, 46, 15, 194, 88, 230, 8, 202, 244, 219, 196, 2, 143, 145, 51, 50, 185, 73, 217, 95, 217, 185, 249, 53, 177, 153, 17, 152, 117, 244, 138, 235, 248, 250, 47, 21, 245, 250, 6, 156, 57, 95, 53, 246, 182, 221, 190, 211, 219, 147, 58, 236, 44, 1, 39, 95, 194, 213, 4, 147, 175, 137, 84, 237, 128, 75, 106, 86, 111, 156, 85, 123, 115, 232, 84, 23, 230, 44, 103, 71, 145, 59, 22, 161, 100, 82, 170, 199, 226, 138, 228, 162, 236, 219, 195, 18, 105, 86, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:49:34.975029Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:49:34.975068Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:49:34.999200Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:49:35.033490Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Ydp-1KhTTDaipqIcMrYJkw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:49:35.036336Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Ydp-1KhTTDaipqIcMrYJkw==: stderr: -2026-04-20T10:49:35.036361Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Ydp-1KhTTDaipqIcMrYJkw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:49:35.036371Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Ydp-1KhTTDaipqIcMrYJkw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:49:35.036378Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Ydp-1KhTTDaipqIcMrYJkw==: stderr: stack backtrace: -2026-04-20T10:49:35.036385Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Ydp-1KhTTDaipqIcMrYJkw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:49:35.036391Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Ydp-1KhTTDaipqIcMrYJkw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:49:35.036499Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:49:35.037243Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:49:35.037534Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:49:35.106096Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:49:35.106142Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:49:35.106330Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:49:35.106490Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:49:35.106560Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:49:35.107104Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=149 blob_id=2147876954735276022513707260831032091 -2026-04-20T10:49:35.666016Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pJx129gzSqaFYISe5jLcWw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:49:35.672971Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:49:35.683227Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1046168 cycles -2026-04-20T10:49:35.686010Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [56, 143, 175, 11, 129, 22, 96, 193, 164, 214, 83, 50, 192, 252, 247, 204, 250, 222, 195, 172, 62, 105, 247, 57, 91, 133, 187, 226, 66, 152, 176, 206, 4, 163, 86, 41, 219, 87, 240, 214, 93, 188, 106, 21, 50, 243, 75, 6, 172, 65, 201, 40, 50, 175, 127, 161, 97, 121, 9, 58, 172, 177, 127, 206, 56, 143, 175, 11, 129, 22, 96, 193, 164, 214, 83, 50, 192, 252, 247, 204, 250, 222, 195, 172, 62, 105, 247, 57, 91, 133, 187, 226, 66, 152, 176, 206, 112, 146, 190, 249, 63, 30, 218, 167, 232, 221, 184, 220, 37, 191, 91, 80, 65, 40, 14, 1, 80, 100, 196, 79, 193, 129, 184, 248, 21, 67, 95, 43, 95, 144, 87, 30, 142, 2, 181, 203, 198, 27, 23, 24, 212, 122, 58, 77, 249, 149, 137, 57, 245, 37, 20, 30, 36, 100, 146, 27, 58, 203, 152, 50, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:49:35.743804Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:49:35.743847Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:49:35.813719Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:49:35.848533Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rx-eFdpFQyC1n_s3O9hcqA==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:49:35.851384Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rx-eFdpFQyC1n_s3O9hcqA==: stderr: -2026-04-20T10:49:35.851408Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rx-eFdpFQyC1n_s3O9hcqA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:49:35.851418Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rx-eFdpFQyC1n_s3O9hcqA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:49:35.851425Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rx-eFdpFQyC1n_s3O9hcqA==: stderr: stack backtrace: -2026-04-20T10:49:35.851431Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rx-eFdpFQyC1n_s3O9hcqA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:49:35.851438Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rx-eFdpFQyC1n_s3O9hcqA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:49:35.851575Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:49:35.852366Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:49:35.852656Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:49:35.918633Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:49:35.918679Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:49:35.918839Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:49:35.919476Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=150 blob_id=2147876955716938841279403420173195812 -2026-04-20T10:49:40.272302Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=96 prev_hash=0x9f882a088d625e9e6c6c5a67bd5d1372cfc8d2d3f07b3e21d5eb0dd23dc33e6e hash=0x54ecbb7453c87c9c0a8e737667a2724e1eabaea72f60ad8ef46e911532d6deea producing_time=1.5598ms -2026-04-20T10:49:40.272952Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=96 current_state_root="1019f092e661a12a998652d298cde250e1feb769b44591b58169817bb714db4b42c2f60b573af99fba3651663993b62b69e73356903100d39cc6264df1591c84" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xaa27c010549eab3d0df68e57316df62401134d21b2762d5a096d110ffd70ca1f"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x6bbb26fe4f9ea19b17057f5ebe7a64a9c799275ba3ddbe9d46e89b4a2eace717, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x5b04936b691c9709a5aef76ff66bba7b282c54143cb10ee1084df4ba00a9c49c, len=625"] -2026-04-20T10:49:40.273176Z DEBUG StfBlueprint::apply_slot{context=Node da_height=96}: sov_chain_state: Setting next visible slot number next_visible_slot_number=90 -2026-04-20T10:49:40.273333Z DEBUG StfBlueprint::apply_slot{context=Node da_height=96}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xaa27c010549eab3d0df68e57316df62401134d21b2762d5a096d110ffd70ca1f}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:49:40.273537Z DEBUG StfBlueprint::apply_slot{context=Node da_height=96}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1019f092e661a12a998652d298cde250e1feb769b44591b58169817bb714db4b42c2f60b573af99fba3651663993b62b69e73356903100d39cc6264df1591c84 next_version=96 sesssion_starting_time=47.33µs -2026-04-20T10:49:40.274481Z DEBUG StfBlueprint::apply_slot{context=Node da_height=96}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6555fcbb2c4a6adc699681e5f94ae14ca2aa41dd49aa66aa53e3cc25486467eb61c2b60b6c227e2571e41728118377f458c4318c5889ba7b2dcbc677153082de next_version=96 time=1.025573ms accesses_build_time=33.209µs finishing_session_time=911.704µs -2026-04-20T10:49:40.274666Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="0a193c411f52a40bb573df1c27c992def2e8e77d2c8362bfc05813e4eeb0425f672711f1f9c77bbf5e6efafaff636522cd00ffd99dd4397b10457bff83ed3ec7" next_state_root="6555fcbb2c4a6adc699681e5f94ae14ca2aa41dd49aa66aa53e3cc25486467eb61c2b60b6c227e2571e41728118377f458c4318c5889ba7b2dcbc677153082de" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:49:40.275208Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 96, latest_finalized_slot_number: 95, sync_status: Synced { synced_da_height: 95 }, .. } -2026-04-20T10:49:40.275284Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=63 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 96, latest_finalized_slot_number: 95, sync_status: Synced { synced_da_height: 95 }, .. } -2026-04-20T10:49:40.275358Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=63 -2026-04-20T10:49:40.289282Z DEBUG sov_stf_runner::runner: Block execution complete time=5.997877378s -2026-04-20T10:49:40.289328Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:49:40.289566Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:49:40.289653Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:49:40.850173Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TNzNG0KMTDqAu72EEYUYSQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:49:40.867918Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:49:40.878856Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2615284 cycles -2026-04-20T10:49:40.879968Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [56, 143, 175, 11, 129, 22, 96, 193, 164, 214, 83, 50, 192, 252, 247, 204, 250, 222, 195, 172, 62, 105, 247, 57, 91, 133, 187, 226, 66, 152, 176, 206, 39, 204, 47, 121, 237, 171, 213, 165, 0, 181, 150, 247, 233, 98, 22, 239, 104, 66, 125, 206, 49, 17, 92, 17, 99, 220, 73, 246, 241, 153, 67, 148, 125, 140, 190, 53, 236, 8, 127, 1, 70, 254, 216, 78, 170, 161, 174, 41, 212, 141, 97, 25, 114, 61, 107, 132, 65, 251, 40, 23, 238, 126, 221, 171, 101, 205, 146, 239, 230, 249, 178, 128, 182, 193, 13, 247, 201, 246, 97, 218, 108, 181, 199, 240, 243, 191, 207, 198, 17, 210, 150, 40, 64, 88, 156, 137, 191, 42, 132, 4, 9, 156, 54, 117, 153, 175, 153, 165, 35, 136, 248, 156, 232, 245, 251, 21, 112, 178, 244, 232, 125, 227, 252, 246, 167, 159, 24, 231, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:49:40.992695Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:49:40.992733Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:49:41.098980Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:49:41.133529Z DEBUG sp1_core_executor_runner::native: CHILD sp1_GXSJt6BoSxiX6M_FCizHQQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:49:41.136384Z DEBUG sp1_core_executor_runner::native: CHILD sp1_GXSJt6BoSxiX6M_FCizHQQ==: stderr: -2026-04-20T10:49:41.136407Z DEBUG sp1_core_executor_runner::native: CHILD sp1_GXSJt6BoSxiX6M_FCizHQQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:49:41.136418Z DEBUG sp1_core_executor_runner::native: CHILD sp1_GXSJt6BoSxiX6M_FCizHQQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:49:41.136424Z DEBUG sp1_core_executor_runner::native: CHILD sp1_GXSJt6BoSxiX6M_FCizHQQ==: stderr: stack backtrace: -2026-04-20T10:49:41.136431Z DEBUG sp1_core_executor_runner::native: CHILD sp1_GXSJt6BoSxiX6M_FCizHQQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:49:41.136438Z DEBUG sp1_core_executor_runner::native: CHILD sp1_GXSJt6BoSxiX6M_FCizHQQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:49:41.136498Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:49:41.137326Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:49:41.137627Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:49:41.204051Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:49:41.204096Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:49:41.204330Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:49:41.204801Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=151 blob_id=2147876962107293826569781012751360113 -2026-04-20T10:49:46.274369Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=97 prev_hash=0x54ecbb7453c87c9c0a8e737667a2724e1eabaea72f60ad8ef46e911532d6deea hash=0x8a9fac032c026c11117049a70ed4dcdbf5c4447cba9298d81852cdfe3d5b66a4 producing_time=1.750258ms -2026-04-20T10:49:46.280160Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=97 current_state_root="6555fcbb2c4a6adc699681e5f94ae14ca2aa41dd49aa66aa53e3cc25486467eb61c2b60b6c227e2571e41728118377f458c4318c5889ba7b2dcbc677153082de" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xabe41108a8e645607bdd323825bc313f1c9e9e4556b69213b5659234e0e95d62, len=625"] -2026-04-20T10:49:46.280502Z DEBUG StfBlueprint::apply_slot{context=Node da_height=97}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6555fcbb2c4a6adc699681e5f94ae14ca2aa41dd49aa66aa53e3cc25486467eb61c2b60b6c227e2571e41728118377f458c4318c5889ba7b2dcbc677153082de next_version=97 sesssion_starting_time=47.97µs -2026-04-20T10:49:46.281426Z DEBUG StfBlueprint::apply_slot{context=Node da_height=97}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6555fcbb2c4a6adc699681e5f94ae14ca2aa41dd49aa66aa53e3cc25486467eb0e59ef6e4fec00d332680535a95229912ac04ffd8bca4b3662c7ff34e59d9516 next_version=97 time=988.994µs accesses_build_time=16.14µs finishing_session_time=872.084µs -2026-04-20T10:49:46.281491Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="1019f092e661a12a998652d298cde250e1feb769b44591b58169817bb714db4b42c2f60b573af99fba3651663993b62b69e73356903100d39cc6264df1591c84" next_state_root="6555fcbb2c4a6adc699681e5f94ae14ca2aa41dd49aa66aa53e3cc25486467eb0e59ef6e4fec00d332680535a95229912ac04ffd8bca4b3662c7ff34e59d9516" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:49:46.281971Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 97, latest_finalized_slot_number: 96, sync_status: Synced { synced_da_height: 96 }, .. } -2026-04-20T10:49:46.282054Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=63 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 97, latest_finalized_slot_number: 96, sync_status: Synced { synced_da_height: 96 }, .. } -2026-04-20T10:49:46.282119Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=63 -2026-04-20T10:49:46.282364Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:49:46.282459Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=59 -2026-04-20T10:49:46.282550Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=92 -2026-04-20T10:49:46.282681Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:49:46.282975Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=92 sequence_number=152 -2026-04-20T10:49:46.282990Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=152 blob_id=2147876968246225963578965362650834575 visible_slot_number_after_increase=92 visible_slots_to_advance=2 -2026-04-20T10:49:46.283024Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:49:46.284902Z DEBUG manage_blob_submission_inside_task{blob_id=2147876968246225963578965362650834575 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x126ad67d32e48aab32a2883f0736f5e97ba1b6e08bfd010dfe1b9b5d3afa8694 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=98 include_at=98 bytes=13 time=826.995µs -2026-04-20T10:49:46.296472Z DEBUG compute_state_update{scope="sequencer" rollup_height=64 slot_number=92}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:49:46.296513Z DEBUG sov_stf_runner::runner: Block execution complete time=6.007186379s -2026-04-20T10:49:46.296543Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:49:46.296546Z DEBUG compute_state_update{scope="sequencer" rollup_height=64 slot_number=92}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6555fcbb2c4a6adc699681e5f94ae14ca2aa41dd49aa66aa53e3cc25486467eb0e59ef6e4fec00d332680535a95229912ac04ffd8bca4b3662c7ff34e59d9516 next_version=98 sesssion_starting_time=13.127615ms -2026-04-20T10:49:46.297271Z DEBUG compute_state_update{scope="sequencer" rollup_height=64 slot_number=92}: sov_state::nomt::prover_storage: computed next state root state_root=443165183f1bea4a51cf8ec145550a8471cb1489963380b4ff6d2e392e6cf9821707d751f121f54737d5750ec78afc98d601645325170c9dc5b4141c2d70466e next_version=98 time=13.869251ms accesses_build_time=15.19µs finishing_session_time=702.846µs -2026-04-20T10:49:52.277432Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=98 prev_hash=0x8a9fac032c026c11117049a70ed4dcdbf5c4447cba9298d81852cdfe3d5b66a4 hash=0x4d63756fd2d27d6c64ea77f13139d8501cf617e1f7c9a07fa877db6f57176c2a producing_time=1.5833ms -2026-04-20T10:49:52.278080Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=98 current_state_root="6555fcbb2c4a6adc699681e5f94ae14ca2aa41dd49aa66aa53e3cc25486467eb0e59ef6e4fec00d332680535a95229912ac04ffd8bca4b3662c7ff34e59d9516" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x126ad67d32e48aab32a2883f0736f5e97ba1b6e08bfd010dfe1b9b5d3afa8694"] proof_blobs=[] -2026-04-20T10:49:52.278396Z DEBUG StfBlueprint::apply_slot{context=Node da_height=98}: sov_chain_state: Setting next visible slot number next_visible_slot_number=92 -2026-04-20T10:49:52.278652Z DEBUG StfBlueprint::apply_slot{context=Node da_height=98}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x126ad67d32e48aab32a2883f0736f5e97ba1b6e08bfd010dfe1b9b5d3afa8694}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:49:52.278832Z DEBUG StfBlueprint::apply_slot{context=Node da_height=98}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6555fcbb2c4a6adc699681e5f94ae14ca2aa41dd49aa66aa53e3cc25486467eb0e59ef6e4fec00d332680535a95229912ac04ffd8bca4b3662c7ff34e59d9516 next_version=98 sesssion_starting_time=44.64µs -2026-04-20T10:49:52.279908Z DEBUG StfBlueprint::apply_slot{context=Node da_height=98}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=443165183f1bea4a51cf8ec145550a8471cb1489963380b4ff6d2e392e6cf982636b24b4a35a2c3053672ff6b21f834352d02bdfda9a02e7e576f884aa7e385f next_version=98 time=1.155703ms accesses_build_time=33.85µs finishing_session_time=1.051584ms -2026-04-20T10:49:52.280089Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="6bbb26fe4f9ea19b17057f5ebe7a64a9c799275ba3ddbe9d46e89b4a2eace717" -2026-04-20T10:49:52.280110Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="5b04936b691c9709a5aef76ff66bba7b282c54143cb10ee1084df4ba00a9c49c" -2026-04-20T10:49:52.280121Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="abe41108a8e645607bdd323825bc313f1c9e9e4556b69213b5659234e0e95d62" -2026-04-20T10:49:52.280134Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6555fcbb2c4a6adc699681e5f94ae14ca2aa41dd49aa66aa53e3cc25486467eb61c2b60b6c227e2571e41728118377f458c4318c5889ba7b2dcbc677153082de" next_state_root="443165183f1bea4a51cf8ec145550a8471cb1489963380b4ff6d2e392e6cf982636b24b4a35a2c3053672ff6b21f834352d02bdfda9a02e7e576f884aa7e385f" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:49:52.280719Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 98, latest_finalized_slot_number: 97, sync_status: Synced { synced_da_height: 97 }, .. } -2026-04-20T10:49:52.280831Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=64 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 98, latest_finalized_slot_number: 97, sync_status: Synced { synced_da_height: 97 }, .. } -2026-04-20T10:49:52.280895Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=64 -2026-04-20T10:49:52.281146Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:49:52.281216Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=60 -2026-04-20T10:49:52.281358Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=93 -2026-04-20T10:49:52.281509Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:49:52.281667Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=93 sequence_number=153 -2026-04-20T10:49:52.281689Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=153 blob_id=2147876975498610935880764517263997979 visible_slot_number_after_increase=93 visible_slots_to_advance=1 -2026-04-20T10:49:52.281717Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:49:52.283702Z DEBUG manage_blob_submission_inside_task{blob_id=2147876975498610935880764517263997979 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x12eb77c6ac79c9b2d6b0687b28aea70483dd0781a117b838477460712d9df12e sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=99 include_at=99 bytes=13 time=850.584µs -2026-04-20T10:49:52.287658Z DEBUG compute_state_update{scope="sequencer" rollup_height=65 slot_number=93}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:49:52.287695Z DEBUG sov_stf_runner::runner: Block execution complete time=5.991153532s -2026-04-20T10:49:52.287713Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:49:52.287741Z DEBUG compute_state_update{scope="sequencer" rollup_height=65 slot_number=93}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=443165183f1bea4a51cf8ec145550a8471cb1489963380b4ff6d2e392e6cf982636b24b4a35a2c3053672ff6b21f834352d02bdfda9a02e7e576f884aa7e385f next_version=99 sesssion_starting_time=5.633683ms -2026-04-20T10:49:52.287989Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:49:52.288085Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:49:52.288464Z DEBUG compute_state_update{scope="sequencer" rollup_height=65 slot_number=93}: sov_state::nomt::prover_storage: computed next state root state_root=730a141a9e545f5766aad1dc5f835083f7f8b37480aa060d046367ab608a3288489cef895848ff28a716b0edaa098aacfc2ad223c72875264889c5c0824b0f50 next_version=99 time=6.369129ms accesses_build_time=12.291µs finishing_session_time=696.046µs -2026-04-20T10:49:52.846515Z DEBUG sp1_core_executor_runner::native: CHILD sp1_v_n0YQAgRKSI-VvR1Oa3kA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:49:52.859856Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:49:52.871713Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1869861 cycles -2026-04-20T10:49:52.874439Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [38, 41, 201, 120, 20, 230, 186, 176, 194, 194, 230, 199, 113, 9, 250, 157, 80, 244, 137, 190, 102, 142, 240, 159, 69, 247, 57, 81, 229, 77, 223, 3, 6, 140, 102, 4, 119, 58, 88, 125, 110, 55, 6, 179, 50, 136, 53, 111, 244, 157, 214, 15, 18, 223, 114, 114, 62, 33, 231, 167, 66, 11, 237, 30, 127, 185, 90, 219, 180, 47, 100, 182, 64, 216, 254, 156, 30, 150, 177, 214, 207, 156, 38, 58, 131, 120, 173, 199, 218, 221, 201, 156, 118, 157, 163, 206, 93, 190, 145, 1, 106, 118, 177, 243, 143, 122, 25, 213, 240, 139, 40, 140, 187, 30, 84, 178, 171, 194, 119, 210, 150, 236, 241, 233, 106, 17, 216, 39, 254, 120, 135, 250, 253, 19, 81, 242, 164, 172, 138, 106, 87, 196, 249, 152, 174, 52, 3, 21, 140, 116, 144, 65, 124, 242, 156, 246, 249, 155, 163, 135, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:49:52.965229Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:49:52.965266Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:49:52.995020Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:49:53.028769Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mXKdsrQsQG6lMMR3ADfEOg==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:49:53.031609Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mXKdsrQsQG6lMMR3ADfEOg==: stderr: -2026-04-20T10:49:53.031647Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mXKdsrQsQG6lMMR3ADfEOg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:49:53.031657Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mXKdsrQsQG6lMMR3ADfEOg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:49:53.031663Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mXKdsrQsQG6lMMR3ADfEOg==: stderr: stack backtrace: -2026-04-20T10:49:53.031670Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mXKdsrQsQG6lMMR3ADfEOg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:49:53.031677Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mXKdsrQsQG6lMMR3ADfEOg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:49:53.031755Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:49:53.032579Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:49:53.032866Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:49:53.098934Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:49:53.098976Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:49:53.099152Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:49:53.099341Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:49:53.099424Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:49:53.099775Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=154 blob_id=2147876976487501609213603604801413980 -2026-04-20T10:49:53.661559Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1GV0ULq3QXilM2uMOlRYTw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:49:53.668160Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:49:53.678356Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1000461 cycles -2026-04-20T10:49:53.680919Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [28, 151, 135, 162, 137, 53, 201, 174, 120, 44, 79, 187, 14, 205, 53, 39, 85, 243, 113, 254, 46, 155, 147, 190, 227, 125, 40, 107, 169, 176, 77, 26, 85, 30, 86, 49, 160, 63, 52, 154, 228, 92, 255, 58, 147, 50, 149, 109, 37, 184, 25, 252, 169, 145, 125, 19, 171, 132, 2, 229, 211, 147, 222, 16, 28, 151, 135, 162, 137, 53, 201, 174, 120, 44, 79, 187, 14, 205, 53, 39, 85, 243, 113, 254, 46, 155, 147, 190, 227, 125, 40, 107, 169, 176, 77, 26, 113, 97, 146, 99, 64, 36, 244, 131, 254, 9, 71, 114, 17, 253, 204, 88, 237, 93, 189, 151, 233, 37, 110, 19, 195, 101, 54, 219, 205, 98, 185, 25, 252, 138, 59, 187, 0, 1, 53, 67, 241, 241, 9, 68, 222, 177, 170, 211, 107, 7, 96, 26, 252, 123, 220, 48, 169, 156, 136, 59, 62, 37, 215, 121, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:49:53.737132Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:49:53.737174Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:49:53.806043Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:49:53.840136Z DEBUG sp1_core_executor_runner::native: CHILD sp1__bX8TFJfRSqyuzk3ZzhtDA==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:49:53.842970Z DEBUG sp1_core_executor_runner::native: CHILD sp1__bX8TFJfRSqyuzk3ZzhtDA==: stderr: -2026-04-20T10:49:53.842984Z DEBUG sp1_core_executor_runner::native: CHILD sp1__bX8TFJfRSqyuzk3ZzhtDA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:49:53.842993Z DEBUG sp1_core_executor_runner::native: CHILD sp1__bX8TFJfRSqyuzk3ZzhtDA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:49:53.842999Z DEBUG sp1_core_executor_runner::native: CHILD sp1__bX8TFJfRSqyuzk3ZzhtDA==: stderr: stack backtrace: -2026-04-20T10:49:53.843007Z DEBUG sp1_core_executor_runner::native: CHILD sp1__bX8TFJfRSqyuzk3ZzhtDA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:49:53.843013Z DEBUG sp1_core_executor_runner::native: CHILD sp1__bX8TFJfRSqyuzk3ZzhtDA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:49:53.843192Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:49:53.843907Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:49:53.844212Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:49:53.909365Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:49:53.909408Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:49:53.909589Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:49:53.910249Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=155 blob_id=2147876977466712653310850777495049350 -2026-04-20T10:49:58.280835Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=99 prev_hash=0x4d63756fd2d27d6c64ea77f13139d8501cf617e1f7c9a07fa877db6f57176c2a hash=0x2089de0099fee261764922d4026be532539c319188e69e2f374471b278c8a4c9 producing_time=1.774009ms -2026-04-20T10:49:58.289876Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=99 current_state_root="443165183f1bea4a51cf8ec145550a8471cb1489963380b4ff6d2e392e6cf982636b24b4a35a2c3053672ff6b21f834352d02bdfda9a02e7e576f884aa7e385f" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x12eb77c6ac79c9b2d6b0687b28aea70483dd0781a117b838477460712d9df12e"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xec6360d6e7699b0ccdf3cc12332c1dcce5c7fc7edbd949e28dcd5493a15e31c0, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xb06eda7b359e3847f24b323a50b3236578b96ea51d0e61e292730d52ec980288, len=625"] -2026-04-20T10:49:58.290102Z DEBUG StfBlueprint::apply_slot{context=Node da_height=99}: sov_chain_state: Setting next visible slot number next_visible_slot_number=93 -2026-04-20T10:49:58.290232Z DEBUG StfBlueprint::apply_slot{context=Node da_height=99}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x12eb77c6ac79c9b2d6b0687b28aea70483dd0781a117b838477460712d9df12e}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:49:58.290442Z DEBUG StfBlueprint::apply_slot{context=Node da_height=99}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=443165183f1bea4a51cf8ec145550a8471cb1489963380b4ff6d2e392e6cf982636b24b4a35a2c3053672ff6b21f834352d02bdfda9a02e7e576f884aa7e385f next_version=99 sesssion_starting_time=48.39µs -2026-04-20T10:49:58.291456Z DEBUG StfBlueprint::apply_slot{context=Node da_height=99}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=730a141a9e545f5766aad1dc5f835083f7f8b37480aa060d046367ab608a32880835b4689b980c8c5ff26e1931f846fb72cf18ca2a439a2d2333856a923e88d2 next_version=99 time=1.095323ms accesses_build_time=31.15µs finishing_session_time=976.803µs -2026-04-20T10:49:58.291651Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6555fcbb2c4a6adc699681e5f94ae14ca2aa41dd49aa66aa53e3cc25486467eb0e59ef6e4fec00d332680535a95229912ac04ffd8bca4b3662c7ff34e59d9516" next_state_root="730a141a9e545f5766aad1dc5f835083f7f8b37480aa060d046367ab608a32880835b4689b980c8c5ff26e1931f846fb72cf18ca2a439a2d2333856a923e88d2" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:49:58.292195Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 99, latest_finalized_slot_number: 99, sync_status: Syncing { synced_da_height: 98, target_da_height: 99 }, .. } -2026-04-20T10:49:58.292289Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=65 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 99, latest_finalized_slot_number: 99, sync_status: Syncing { synced_da_height: 98, target_da_height: 99 }, .. } -2026-04-20T10:49:58.292385Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=65 -2026-04-20T10:49:58.309575Z DEBUG sov_stf_runner::runner: Block execution complete time=6.021861844s -2026-04-20T10:49:58.309620Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:49:58.309849Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:49:58.309927Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:49:58.876200Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ihcSrXX-TXaT2No1EEB8SA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:49:58.894078Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:49:58.905947Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2608323 cycles -2026-04-20T10:49:58.908600Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [28, 151, 135, 162, 137, 53, 201, 174, 120, 44, 79, 187, 14, 205, 53, 39, 85, 243, 113, 254, 46, 155, 147, 190, 227, 125, 40, 107, 169, 176, 77, 26, 8, 224, 75, 40, 37, 18, 213, 216, 125, 69, 110, 160, 132, 65, 68, 83, 39, 178, 38, 77, 228, 60, 33, 9, 12, 194, 223, 250, 209, 95, 229, 5, 21, 158, 213, 46, 91, 222, 31, 144, 171, 227, 27, 218, 137, 32, 64, 201, 62, 4, 5, 3, 21, 21, 230, 239, 13, 105, 59, 107, 204, 71, 94, 147, 101, 196, 41, 115, 18, 79, 221, 222, 173, 88, 153, 45, 189, 192, 7, 47, 72, 57, 140, 73, 111, 152, 211, 2, 82, 233, 179, 185, 160, 210, 73, 237, 76, 89, 46, 126, 132, 187, 44, 143, 232, 156, 12, 25, 255, 179, 52, 5, 149, 102, 195, 74, 255, 17, 58, 73, 115, 87, 127, 31, 128, 142, 84, 200, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:49:59.017275Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:49:59.017306Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:49:59.119634Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:49:59.153555Z DEBUG sp1_core_executor_runner::native: CHILD sp1_l9KsRK37QFGCD7yI4vwbYw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:49:59.156433Z DEBUG sp1_core_executor_runner::native: CHILD sp1_l9KsRK37QFGCD7yI4vwbYw==: stderr: -2026-04-20T10:49:59.156457Z DEBUG sp1_core_executor_runner::native: CHILD sp1_l9KsRK37QFGCD7yI4vwbYw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:49:59.156469Z DEBUG sp1_core_executor_runner::native: CHILD sp1_l9KsRK37QFGCD7yI4vwbYw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:49:59.156476Z DEBUG sp1_core_executor_runner::native: CHILD sp1_l9KsRK37QFGCD7yI4vwbYw==: stderr: stack backtrace: -2026-04-20T10:49:59.156482Z DEBUG sp1_core_executor_runner::native: CHILD sp1_l9KsRK37QFGCD7yI4vwbYw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:49:59.156488Z DEBUG sp1_core_executor_runner::native: CHILD sp1_l9KsRK37QFGCD7yI4vwbYw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:49:59.156549Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:49:59.157310Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:49:59.157630Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:49:59.231466Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:49:59.231513Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:49:59.231690Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:49:59.232267Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=156 blob_id=2147876983900598710424263051488171569 -2026-04-20T10:50:04.283679Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=100 prev_hash=0x2089de0099fee261764922d4026be532539c319188e69e2f374471b278c8a4c9 hash=0x0fba30205f89d65c397364265be3bdc5319607677ffa7b255e7a2261508d7d25 producing_time=1.329452ms -2026-04-20T10:50:04.291348Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=100 current_state_root="730a141a9e545f5766aad1dc5f835083f7f8b37480aa060d046367ab608a32880835b4689b980c8c5ff26e1931f846fb72cf18ca2a439a2d2333856a923e88d2" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd2d0b0c4bf1c35c08e7f23725667eaa6ddae97b7477781e6f514aba9e012af31, len=625"] -2026-04-20T10:50:04.291677Z DEBUG StfBlueprint::apply_slot{context=Node da_height=100}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=730a141a9e545f5766aad1dc5f835083f7f8b37480aa060d046367ab608a32880835b4689b980c8c5ff26e1931f846fb72cf18ca2a439a2d2333856a923e88d2 next_version=100 sesssion_starting_time=47.06µs -2026-04-20T10:50:04.292437Z DEBUG StfBlueprint::apply_slot{context=Node da_height=100}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=730a141a9e545f5766aad1dc5f835083f7f8b37480aa060d046367ab608a32887c35ad7f54f62eebffabf13ab0e755508b9a51a6bf9f88154a42337c77bbc342 next_version=100 time=824.994µs accesses_build_time=16.289µs finishing_session_time=714.595µs -2026-04-20T10:50:04.292502Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="730a141a9e545f5766aad1dc5f835083f7f8b37480aa060d046367ab608a32880835b4689b980c8c5ff26e1931f846fb72cf18ca2a439a2d2333856a923e88d2" next_state_root="730a141a9e545f5766aad1dc5f835083f7f8b37480aa060d046367ab608a32887c35ad7f54f62eebffabf13ab0e755508b9a51a6bf9f88154a42337c77bbc342" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:50:04.292890Z DEBUG sov_stf_runner::runner: Block execution complete time=5.983272983s -2026-04-20T10:50:04.292917Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:50:04.292968Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 100, latest_finalized_slot_number: 99, sync_status: Syncing { synced_da_height: 99, target_da_height: 100 }, .. } -2026-04-20T10:50:04.293061Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=65 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 100, latest_finalized_slot_number: 99, sync_status: Syncing { synced_da_height: 99, target_da_height: 100 }, .. } -2026-04-20T10:50:04.293122Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=65 -2026-04-20T10:50:04.293367Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:50:04.293441Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=61 -2026-04-20T10:50:04.293564Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=95 -2026-04-20T10:50:04.293700Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:50:04.294040Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=95 sequence_number=157 -2026-04-20T10:50:04.294061Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=157 blob_id=2147876990021442396029403362187684331 visible_slot_number_after_increase=95 visible_slots_to_advance=2 -2026-04-20T10:50:04.294120Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:50:04.294581Z DEBUG compute_state_update{scope="sequencer" rollup_height=66 slot_number=95}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=730a141a9e545f5766aad1dc5f835083f7f8b37480aa060d046367ab608a32887c35ad7f54f62eebffabf13ab0e755508b9a51a6bf9f88154a42337c77bbc342 next_version=101 sesssion_starting_time=44.16µs -2026-04-20T10:50:04.295243Z DEBUG compute_state_update{scope="sequencer" rollup_height=66 slot_number=95}: sov_state::nomt::prover_storage: computed next state root state_root=238e94447d90dc49e7d4f58d7a1b8d1d6c1ccd5fd11e05eac0bbba7d95dbbdd86c2a45959c50a70e46df61b6bd2ba9afc58b2804f12680b1a128e9f07b9ba5c0 next_version=101 time=721.755µs accesses_build_time=14.17µs finishing_session_time=616.146µs -2026-04-20T10:50:04.295999Z DEBUG manage_blob_submission_inside_task{blob_id=2147876990021442396029403362187684331 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x378ca423b24f3fcd771c7618629b48f6e94c6eb339fee4927fe76074d22ece0f sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=101 include_at=101 bytes=13 time=748.525µs -2026-04-20T10:50:10.286561Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=101 prev_hash=0x0fba30205f89d65c397364265be3bdc5319607677ffa7b255e7a2261508d7d25 hash=0xefd9e864a999799efd8752db81f62b0013ef3ec6fcd2ae8802b1d045b7d93237 producing_time=1.401821ms -2026-04-20T10:50:10.294375Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=101 current_state_root="730a141a9e545f5766aad1dc5f835083f7f8b37480aa060d046367ab608a32887c35ad7f54f62eebffabf13ab0e755508b9a51a6bf9f88154a42337c77bbc342" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x378ca423b24f3fcd771c7618629b48f6e94c6eb339fee4927fe76074d22ece0f"] proof_blobs=[] -2026-04-20T10:50:10.294658Z DEBUG StfBlueprint::apply_slot{context=Node da_height=101}: sov_chain_state: Setting next visible slot number next_visible_slot_number=95 -2026-04-20T10:50:10.294921Z DEBUG StfBlueprint::apply_slot{context=Node da_height=101}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x378ca423b24f3fcd771c7618629b48f6e94c6eb339fee4927fe76074d22ece0f}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:50:10.295133Z DEBUG StfBlueprint::apply_slot{context=Node da_height=101}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=730a141a9e545f5766aad1dc5f835083f7f8b37480aa060d046367ab608a32887c35ad7f54f62eebffabf13ab0e755508b9a51a6bf9f88154a42337c77bbc342 next_version=101 sesssion_starting_time=51.729µs -2026-04-20T10:50:10.295919Z DEBUG StfBlueprint::apply_slot{context=Node da_height=101}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=238e94447d90dc49e7d4f58d7a1b8d1d6c1ccd5fd11e05eac0bbba7d95dbbdd83f29cb35054933d7035c5175f30fed10c289b9f834d18c06607edd7a27bb8b10 next_version=101 time=876.454µs accesses_build_time=37.5µs finishing_session_time=762.285µs -2026-04-20T10:50:10.296092Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ec6360d6e7699b0ccdf3cc12332c1dcce5c7fc7edbd949e28dcd5493a15e31c0" -2026-04-20T10:50:10.296108Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="b06eda7b359e3847f24b323a50b3236578b96ea51d0e61e292730d52ec980288" -2026-04-20T10:50:10.296118Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="d2d0b0c4bf1c35c08e7f23725667eaa6ddae97b7477781e6f514aba9e012af31" -2026-04-20T10:50:10.296130Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="730a141a9e545f5766aad1dc5f835083f7f8b37480aa060d046367ab608a32880835b4689b980c8c5ff26e1931f846fb72cf18ca2a439a2d2333856a923e88d2" next_state_root="238e94447d90dc49e7d4f58d7a1b8d1d6c1ccd5fd11e05eac0bbba7d95dbbdd83f29cb35054933d7035c5175f30fed10c289b9f834d18c06607edd7a27bb8b10" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:50:10.296659Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 101, latest_finalized_slot_number: 100, sync_status: Syncing { synced_da_height: 100, target_da_height: 101 }, .. } -2026-04-20T10:50:10.296756Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=66 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 101, latest_finalized_slot_number: 100, sync_status: Syncing { synced_da_height: 100, target_da_height: 101 }, .. } -2026-04-20T10:50:10.296831Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=66 -2026-04-20T10:50:10.297047Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:50:10.297107Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=62 -2026-04-20T10:50:10.297195Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=96 -2026-04-20T10:50:10.297328Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:50:10.297482Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=96 sequence_number=158 -2026-04-20T10:50:10.297500Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=158 blob_id=2147876997278571259863921321863529513 visible_slot_number_after_increase=96 visible_slots_to_advance=1 -2026-04-20T10:50:10.297528Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:50:10.299070Z DEBUG manage_blob_submission_inside_task{blob_id=2147876997278571259863921321863529513 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x9f829aeeeb5dbe6da420bef757f58a4e7103a0c0fc6dcbe5de91c35182402a7f sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=102 include_at=102 bytes=13 time=546.576µs -2026-04-20T10:50:10.302853Z DEBUG compute_state_update{scope="sequencer" rollup_height=67 slot_number=96}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:50:10.302894Z DEBUG sov_stf_runner::runner: Block execution complete time=6.009978221s -2026-04-20T10:50:10.302911Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:50:10.302916Z DEBUG compute_state_update{scope="sequencer" rollup_height=67 slot_number=96}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=238e94447d90dc49e7d4f58d7a1b8d1d6c1ccd5fd11e05eac0bbba7d95dbbdd83f29cb35054933d7035c5175f30fed10c289b9f834d18c06607edd7a27bb8b10 next_version=102 sesssion_starting_time=5.036287ms -2026-04-20T10:50:10.303116Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:50:10.303181Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:50:10.303409Z DEBUG compute_state_update{scope="sequencer" rollup_height=67 slot_number=96}: sov_state::nomt::prover_storage: computed next state root state_root=501d4b9cdd41b8425d79c342c9deadb0b4c2cc739599f7fcef15775af0b320d9674e480a0e3fa4cea758016345045d6394d3a1d1cb18bb61670af062e7ab8cea next_version=102 time=5.542154ms accesses_build_time=12.26µs finishing_session_time=463.947µs -2026-04-20T10:50:10.851441Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QM_3WH-sT0O1UGyWQxB6ZQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:50:10.865093Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:50:10.876883Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1911647 cycles -2026-04-20T10:50:10.879608Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [2, 9, 154, 196, 51, 114, 122, 46, 203, 233, 111, 59, 12, 103, 118, 192, 219, 88, 235, 78, 17, 98, 99, 114, 148, 195, 222, 140, 143, 59, 117, 115, 0, 2, 155, 84, 221, 47, 72, 136, 228, 79, 227, 103, 2, 69, 90, 204, 41, 164, 46, 170, 236, 20, 77, 119, 200, 221, 1, 131, 218, 175, 78, 135, 15, 213, 62, 151, 251, 13, 39, 116, 149, 196, 241, 190, 214, 249, 59, 123, 247, 25, 27, 64, 54, 86, 39, 62, 127, 143, 98, 180, 101, 107, 40, 24, 61, 14, 132, 171, 84, 242, 77, 46, 21, 88, 187, 255, 56, 77, 194, 178, 152, 175, 185, 60, 168, 11, 169, 105, 230, 34, 90, 156, 232, 37, 246, 7, 170, 200, 143, 37, 97, 65, 31, 236, 193, 212, 50, 164, 99, 228, 145, 230, 146, 174, 88, 74, 249, 81, 156, 255, 239, 6, 111, 14, 8, 131, 3, 196, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:50:10.972597Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:50:10.972635Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:50:11.011197Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:50:11.045218Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PYHW-32kROihXgCZMkvm0A==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:50:11.048088Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PYHW-32kROihXgCZMkvm0A==: stderr: -2026-04-20T10:50:11.048112Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PYHW-32kROihXgCZMkvm0A==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:50:11.048123Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PYHW-32kROihXgCZMkvm0A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:50:11.048143Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PYHW-32kROihXgCZMkvm0A==: stderr: stack backtrace: -2026-04-20T10:50:11.048150Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PYHW-32kROihXgCZMkvm0A==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:50:11.048157Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PYHW-32kROihXgCZMkvm0A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:50:11.048176Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:50:11.049027Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:50:11.049332Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:50:11.117665Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:50:11.117707Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:50:11.117880Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:50:11.118040Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:50:11.118107Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:50:11.118489Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=159 blob_id=2147876998269885670620360570423635315 -2026-04-20T10:50:11.682475Z DEBUG sp1_core_executor_runner::native: CHILD sp1_uhuUNpU2QiWHrYasQSFwig==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:50:11.689052Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:50:11.699546Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1007541 cycles -2026-04-20T10:50:11.702274Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [10, 25, 60, 65, 31, 82, 164, 11, 181, 115, 223, 28, 39, 201, 146, 222, 242, 232, 231, 125, 44, 131, 98, 191, 192, 88, 19, 228, 238, 176, 66, 95, 115, 119, 123, 4, 118, 27, 126, 61, 109, 252, 51, 54, 250, 112, 57, 100, 102, 15, 254, 92, 247, 90, 91, 236, 158, 246, 230, 24, 39, 110, 94, 200, 10, 25, 60, 65, 31, 82, 164, 11, 181, 115, 223, 28, 39, 201, 146, 222, 242, 232, 231, 125, 44, 131, 98, 191, 192, 88, 19, 228, 238, 176, 66, 95, 49, 113, 140, 121, 205, 233, 92, 100, 155, 231, 182, 224, 228, 112, 246, 252, 212, 252, 79, 230, 60, 92, 48, 142, 203, 11, 34, 172, 190, 221, 122, 79, 129, 97, 153, 253, 138, 219, 161, 67, 49, 56, 162, 222, 205, 235, 209, 70, 167, 182, 34, 176, 169, 220, 209, 82, 25, 212, 227, 60, 158, 94, 152, 46, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:50:11.757939Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:50:11.757982Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:50:11.824797Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:50:11.859143Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3bJR9Py9TPy-5TaxuCLb0A==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:50:11.861989Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3bJR9Py9TPy-5TaxuCLb0A==: stderr: -2026-04-20T10:50:11.862004Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3bJR9Py9TPy-5TaxuCLb0A==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:50:11.862012Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3bJR9Py9TPy-5TaxuCLb0A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:50:11.862021Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3bJR9Py9TPy-5TaxuCLb0A==: stderr: stack backtrace: -2026-04-20T10:50:11.862027Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3bJR9Py9TPy-5TaxuCLb0A==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:50:11.862034Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3bJR9Py9TPy-5TaxuCLb0A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:50:11.862160Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:50:11.862935Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:50:11.863245Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:50:11.929809Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:50:11.929849Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:50:11.930017Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:50:11.930561Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=160 blob_id=2147876999252765125514702628760896116 -2026-04-20T10:50:16.289697Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=102 prev_hash=0xefd9e864a999799efd8752db81f62b0013ef3ec6fcd2ae8802b1d045b7d93237 hash=0xaad5ed752fb99e81c84584e6bf066c4cc428ec6e4fe7e1b978b898bf21722408 producing_time=1.356581ms -2026-04-20T10:50:16.294408Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=102 current_state_root="238e94447d90dc49e7d4f58d7a1b8d1d6c1ccd5fd11e05eac0bbba7d95dbbdd83f29cb35054933d7035c5175f30fed10c289b9f834d18c06607edd7a27bb8b10" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9f829aeeeb5dbe6da420bef757f58a4e7103a0c0fc6dcbe5de91c35182402a7f"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xbd3e91b4327a98dcad141f29e6422f5c3f833508ee12bdf04050774dabc2e500, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf9b4ee876d9fee2db64e01c79873ce53f4c3dae53db46fe5ede16d3dbbca5e0d, len=625"] -2026-04-20T10:50:16.294652Z DEBUG StfBlueprint::apply_slot{context=Node da_height=102}: sov_chain_state: Setting next visible slot number next_visible_slot_number=96 -2026-04-20T10:50:16.294792Z DEBUG StfBlueprint::apply_slot{context=Node da_height=102}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x9f829aeeeb5dbe6da420bef757f58a4e7103a0c0fc6dcbe5de91c35182402a7f}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:50:16.294977Z DEBUG StfBlueprint::apply_slot{context=Node da_height=102}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=238e94447d90dc49e7d4f58d7a1b8d1d6c1ccd5fd11e05eac0bbba7d95dbbdd83f29cb35054933d7035c5175f30fed10c289b9f834d18c06607edd7a27bb8b10 next_version=102 sesssion_starting_time=51.199µs -2026-04-20T10:50:16.295829Z DEBUG StfBlueprint::apply_slot{context=Node da_height=102}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=501d4b9cdd41b8425d79c342c9deadb0b4c2cc739599f7fcef15775af0b320d91a343a7a0e6f70d5f6f87b7e0da0aba0986320207b0f4e6d87e8e23121186b6b next_version=102 time=939.604µs accesses_build_time=34.72µs finishing_session_time=829.865µs -2026-04-20T10:50:16.296007Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="730a141a9e545f5766aad1dc5f835083f7f8b37480aa060d046367ab608a32887c35ad7f54f62eebffabf13ab0e755508b9a51a6bf9f88154a42337c77bbc342" next_state_root="501d4b9cdd41b8425d79c342c9deadb0b4c2cc739599f7fcef15775af0b320d91a343a7a0e6f70d5f6f87b7e0da0aba0986320207b0f4e6d87e8e23121186b6b" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:50:16.296506Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 102, latest_finalized_slot_number: 101, sync_status: Syncing { synced_da_height: 101, target_da_height: 102 }, .. } -2026-04-20T10:50:16.296573Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=67 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 102, latest_finalized_slot_number: 101, sync_status: Syncing { synced_da_height: 101, target_da_height: 102 }, .. } -2026-04-20T10:50:16.296639Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=67 -2026-04-20T10:50:16.307635Z DEBUG sov_stf_runner::runner: Block execution complete time=6.004724585s -2026-04-20T10:50:16.307671Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:50:16.307835Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:50:16.307903Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:50:16.868195Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wEPf1CDrQ8Clx5j9Z5UHaA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:50:16.885969Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:50:16.900383Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2602607 cycles -2026-04-20T10:50:16.903151Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [10, 25, 60, 65, 31, 82, 164, 11, 181, 115, 223, 28, 39, 201, 146, 222, 242, 232, 231, 125, 44, 131, 98, 191, 192, 88, 19, 228, 238, 176, 66, 95, 103, 39, 17, 241, 249, 199, 123, 191, 94, 110, 250, 250, 255, 99, 101, 34, 205, 0, 255, 217, 157, 212, 57, 123, 16, 69, 123, 255, 131, 237, 62, 199, 97, 249, 47, 149, 158, 235, 208, 43, 36, 211, 240, 107, 124, 199, 182, 168, 151, 202, 90, 33, 125, 126, 12, 22, 150, 205, 254, 251, 137, 159, 2, 62, 123, 233, 169, 64, 236, 146, 235, 25, 109, 173, 211, 71, 164, 116, 154, 152, 211, 80, 151, 62, 247, 188, 23, 104, 183, 118, 197, 97, 16, 160, 210, 93, 159, 136, 42, 8, 141, 98, 94, 158, 108, 108, 90, 103, 189, 93, 19, 114, 207, 200, 210, 211, 240, 123, 62, 33, 213, 235, 13, 210, 61, 195, 62, 110, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:50:17.010200Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:50:17.010234Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:50:17.115783Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:50:17.151006Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rXB8tsxgTqOCbxTxPMwPRA==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:50:17.153873Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rXB8tsxgTqOCbxTxPMwPRA==: stderr: -2026-04-20T10:50:17.153897Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rXB8tsxgTqOCbxTxPMwPRA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:50:17.153920Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rXB8tsxgTqOCbxTxPMwPRA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:50:17.153928Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rXB8tsxgTqOCbxTxPMwPRA==: stderr: stack backtrace: -2026-04-20T10:50:17.153934Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rXB8tsxgTqOCbxTxPMwPRA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:50:17.153942Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rXB8tsxgTqOCbxTxPMwPRA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:50:17.154040Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:50:17.154860Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:50:17.155150Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:50:17.222510Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:50:17.222556Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:50:17.222726Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:50:17.223258Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=161 blob_id=2147877005650405265002031224446244393 -2026-04-20T10:50:22.292340Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=103 prev_hash=0xaad5ed752fb99e81c84584e6bf066c4cc428ec6e4fe7e1b978b898bf21722408 hash=0x5ddec9506c09d1fd5b0e695b7d1810b095d4f394f5a33b8da72d2c7f479f1a87 producing_time=1.790008ms -2026-04-20T10:50:22.299039Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=103 current_state_root="501d4b9cdd41b8425d79c342c9deadb0b4c2cc739599f7fcef15775af0b320d91a343a7a0e6f70d5f6f87b7e0da0aba0986320207b0f4e6d87e8e23121186b6b" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xafff6721155a181607090e5061e4fa38e8117878a285dfd774d7ecd0ee515484, len=625"] -2026-04-20T10:50:22.299388Z DEBUG StfBlueprint::apply_slot{context=Node da_height=103}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=501d4b9cdd41b8425d79c342c9deadb0b4c2cc739599f7fcef15775af0b320d91a343a7a0e6f70d5f6f87b7e0da0aba0986320207b0f4e6d87e8e23121186b6b next_version=103 sesssion_starting_time=48.18µs -2026-04-20T10:50:22.300293Z DEBUG StfBlueprint::apply_slot{context=Node da_height=103}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=501d4b9cdd41b8425d79c342c9deadb0b4c2cc739599f7fcef15775af0b320d96cb6f380d260dedde261ac1146cc507174715a45f446e6ba4c93ed331a6c4597 next_version=103 time=982.534µs accesses_build_time=28.46µs finishing_session_time=868.954µs -2026-04-20T10:50:22.300399Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="238e94447d90dc49e7d4f58d7a1b8d1d6c1ccd5fd11e05eac0bbba7d95dbbdd83f29cb35054933d7035c5175f30fed10c289b9f834d18c06607edd7a27bb8b10" next_state_root="501d4b9cdd41b8425d79c342c9deadb0b4c2cc739599f7fcef15775af0b320d96cb6f380d260dedde261ac1146cc507174715a45f446e6ba4c93ed331a6c4597" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:50:22.300907Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 103, latest_finalized_slot_number: 102, sync_status: Synced { synced_da_height: 102 }, .. } -2026-04-20T10:50:22.300984Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=67 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 103, latest_finalized_slot_number: 102, sync_status: Synced { synced_da_height: 102 }, .. } -2026-04-20T10:50:22.301055Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=67 -2026-04-20T10:50:22.301372Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:50:22.301470Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=63 -2026-04-20T10:50:22.301564Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=98 -2026-04-20T10:50:22.301691Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:50:22.301982Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=98 sequence_number=162 -2026-04-20T10:50:22.302011Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=162 blob_id=2147877011790559573931616310332059284 visible_slot_number_after_increase=98 visible_slots_to_advance=2 -2026-04-20T10:50:22.302038Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:50:22.303878Z DEBUG manage_blob_submission_inside_task{blob_id=2147877011790559573931616310332059284 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xa1ef40364e64aa10836903cefa86355635640b924a5e4ea8acb936a741e01cff sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=104 include_at=104 bytes=13 time=718.985µs -2026-04-20T10:50:22.312215Z  INFO sov_db::storage_manager::nomt_based::groups: Starting pruner task iteration versions_to_keep=20 -2026-04-20T10:50:22.312226Z DEBUG compute_state_update{scope="sequencer" rollup_height=68 slot_number=98}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:50:22.312305Z DEBUG compute_state_update{scope="sequencer" rollup_height=68 slot_number=98}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=501d4b9cdd41b8425d79c342c9deadb0b4c2cc739599f7fcef15775af0b320d96cb6f380d260dedde261ac1146cc507174715a45f446e6ba4c93ed331a6c4597 next_version=104 sesssion_starting_time=9.781237ms -2026-04-20T10:50:22.312413Z  WARN sov_db::storage_manager::nomt_based::groups: Pruning temporarily disabled -2026-04-20T10:50:22.312424Z DEBUG sov_stf_runner::runner: Block execution complete time=6.004755376s -2026-04-20T10:50:22.312470Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:50:22.313014Z DEBUG compute_state_update{scope="sequencer" rollup_height=68 slot_number=98}: sov_state::nomt::prover_storage: computed next state root state_root=3ccb6cfaf58382405fe346d7b3fe0fdfca89419c7672725a7997a1674825143e418e44901cb8be48cc74c310c5bbdfcb3d6c76f869a8c13661682a8fe06682be next_version=104 time=10.508222ms accesses_build_time=16.5µs finishing_session_time=668.396µs -2026-04-20T10:50:28.295545Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=104 prev_hash=0x5ddec9506c09d1fd5b0e695b7d1810b095d4f394f5a33b8da72d2c7f479f1a87 hash=0x210d290f524fee864e8b867e43a978ea856f964ed8db7fa946eae544f74b7773 producing_time=1.241282ms -2026-04-20T10:50:28.304240Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=104 current_state_root="501d4b9cdd41b8425d79c342c9deadb0b4c2cc739599f7fcef15775af0b320d96cb6f380d260dedde261ac1146cc507174715a45f446e6ba4c93ed331a6c4597" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa1ef40364e64aa10836903cefa86355635640b924a5e4ea8acb936a741e01cff"] proof_blobs=[] -2026-04-20T10:50:28.304537Z DEBUG StfBlueprint::apply_slot{context=Node da_height=104}: sov_chain_state: Setting next visible slot number next_visible_slot_number=98 -2026-04-20T10:50:28.304807Z DEBUG StfBlueprint::apply_slot{context=Node da_height=104}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xa1ef40364e64aa10836903cefa86355635640b924a5e4ea8acb936a741e01cff}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:50:28.304990Z DEBUG StfBlueprint::apply_slot{context=Node da_height=104}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=501d4b9cdd41b8425d79c342c9deadb0b4c2cc739599f7fcef15775af0b320d96cb6f380d260dedde261ac1146cc507174715a45f446e6ba4c93ed331a6c4597 next_version=104 sesssion_starting_time=48.21µs -2026-04-20T10:50:28.306044Z DEBUG StfBlueprint::apply_slot{context=Node da_height=104}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3ccb6cfaf58382405fe346d7b3fe0fdfca89419c7672725a7997a1674825143e3ba9e0cfdb30a5a3a2114a04e975d591a2e610a9f1893159dc6504d1a3c9d9c5 next_version=104 time=1.140462ms accesses_build_time=36.19µs finishing_session_time=1.031423ms -2026-04-20T10:50:28.306208Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="bd3e91b4327a98dcad141f29e6422f5c3f833508ee12bdf04050774dabc2e500" -2026-04-20T10:50:28.306224Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="f9b4ee876d9fee2db64e01c79873ce53f4c3dae53db46fe5ede16d3dbbca5e0d" -2026-04-20T10:50:28.306234Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="afff6721155a181607090e5061e4fa38e8117878a285dfd774d7ecd0ee515484" -2026-04-20T10:50:28.306245Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="501d4b9cdd41b8425d79c342c9deadb0b4c2cc739599f7fcef15775af0b320d91a343a7a0e6f70d5f6f87b7e0da0aba0986320207b0f4e6d87e8e23121186b6b" next_state_root="3ccb6cfaf58382405fe346d7b3fe0fdfca89419c7672725a7997a1674825143e3ba9e0cfdb30a5a3a2114a04e975d591a2e610a9f1893159dc6504d1a3c9d9c5" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:50:28.306842Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 104, latest_finalized_slot_number: 103, sync_status: Synced { synced_da_height: 103 }, .. } -2026-04-20T10:50:28.306929Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=68 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 104, latest_finalized_slot_number: 103, sync_status: Synced { synced_da_height: 103 }, .. } -2026-04-20T10:50:28.307002Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=68 -2026-04-20T10:50:28.307215Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:50:28.307272Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=64 -2026-04-20T10:50:28.307364Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=99 -2026-04-20T10:50:28.307484Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:50:28.307623Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=99 sequence_number=163 -2026-04-20T10:50:28.307645Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=163 blob_id=2147877019051371291620746411478460754 visible_slot_number_after_increase=99 visible_slots_to_advance=1 -2026-04-20T10:50:28.307676Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:50:28.309432Z DEBUG manage_blob_submission_inside_task{blob_id=2147877019051371291620746411478460754 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x38099bfe9e2b3f96beeaeaba2e2cdc0693a8fecdc59ed76328bea56b32a386bd sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=105 include_at=105 bytes=13 time=689.805µs -2026-04-20T10:50:28.313584Z  INFO sov_db::storage_manager::nomt_based::groups: Pruner task has completed historical_state.hit_size_limit=false accessory_state.hit_size_limit=false -2026-04-20T10:50:28.313626Z DEBUG compute_state_update{scope="sequencer" rollup_height=69 slot_number=99}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:50:28.313711Z DEBUG compute_state_update{scope="sequencer" rollup_height=69 slot_number=99}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3ccb6cfaf58382405fe346d7b3fe0fdfca89419c7672725a7997a1674825143e3ba9e0cfdb30a5a3a2114a04e975d591a2e610a9f1893159dc6504d1a3c9d9c5 next_version=105 sesssion_starting_time=5.663694ms -2026-04-20T10:50:28.313885Z DEBUG sov_stf_runner::runner: Block execution complete time=6.001417177s -2026-04-20T10:50:28.313904Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:50:28.314116Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:50:28.314203Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:50:28.314302Z DEBUG compute_state_update{scope="sequencer" rollup_height=69 slot_number=99}: sov_state::nomt::prover_storage: computed next state root state_root=58c4c087c0400d987b77a7dc085d159d8990b4e30ea425e8541c7eb5a63b35911fffe380c7928e7ee588171d111f13a28a0b2dd89a900181ef26130161abb5ef next_version=105 time=6.26895ms accesses_build_time=12.68µs finishing_session_time=553.797µs -2026-04-20T10:50:28.873597Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XG017BjIQj6q8aJqZkcuzg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:50:28.887054Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:50:28.898440Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1889267 cycles -2026-04-20T10:50:28.901187Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [16, 25, 240, 146, 230, 97, 161, 42, 153, 134, 82, 210, 152, 205, 226, 80, 225, 254, 183, 105, 180, 69, 145, 181, 129, 105, 129, 123, 183, 20, 219, 75, 66, 194, 246, 11, 87, 58, 249, 159, 186, 54, 81, 102, 57, 147, 182, 43, 105, 231, 51, 86, 144, 49, 0, 211, 156, 198, 38, 77, 241, 89, 28, 132, 123, 68, 181, 224, 22, 129, 72, 137, 241, 194, 228, 93, 151, 80, 178, 54, 178, 98, 30, 221, 244, 117, 248, 144, 197, 124, 243, 121, 247, 89, 248, 179, 67, 228, 114, 25, 139, 164, 225, 44, 172, 4, 165, 244, 164, 235, 135, 174, 86, 58, 39, 20, 177, 95, 215, 234, 79, 208, 233, 5, 203, 209, 22, 75, 84, 236, 187, 116, 83, 200, 124, 156, 10, 142, 115, 118, 103, 162, 114, 78, 30, 171, 174, 167, 47, 96, 173, 142, 244, 110, 145, 21, 50, 214, 222, 234, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:50:28.993042Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:50:28.993079Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:50:29.021355Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:50:29.055198Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xyfr9HGpR--cMochKCRgxQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:50:29.058059Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xyfr9HGpR--cMochKCRgxQ==: stderr: -2026-04-20T10:50:29.058098Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xyfr9HGpR--cMochKCRgxQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:50:29.058109Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xyfr9HGpR--cMochKCRgxQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:50:29.058117Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xyfr9HGpR--cMochKCRgxQ==: stderr: stack backtrace: -2026-04-20T10:50:29.058124Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xyfr9HGpR--cMochKCRgxQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:50:29.058131Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xyfr9HGpR--cMochKCRgxQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:50:29.058206Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:50:29.059005Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:50:29.059329Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:50:29.125880Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:50:29.125923Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:50:29.126058Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:50:29.126210Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:50:29.126275Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:50:29.126605Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=164 blob_id=2147877020041432822982492141134001766 -2026-04-20T10:50:29.693287Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4wmXeam_QdiRxDQeRGlrkQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:50:29.699970Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:50:29.710568Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1014396 cycles -2026-04-20T10:50:29.713032Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [101, 85, 252, 187, 44, 74, 106, 220, 105, 150, 129, 229, 249, 74, 225, 76, 162, 170, 65, 221, 73, 170, 102, 170, 83, 227, 204, 37, 72, 100, 103, 235, 97, 194, 182, 11, 108, 34, 126, 37, 113, 228, 23, 40, 17, 131, 119, 244, 88, 196, 49, 140, 88, 137, 186, 123, 45, 203, 198, 119, 21, 48, 130, 222, 101, 85, 252, 187, 44, 74, 106, 220, 105, 150, 129, 229, 249, 74, 225, 76, 162, 170, 65, 221, 73, 170, 102, 170, 83, 227, 204, 37, 72, 100, 103, 235, 68, 65, 22, 251, 65, 63, 185, 13, 249, 37, 211, 45, 209, 248, 137, 30, 124, 91, 245, 22, 49, 45, 87, 48, 235, 222, 210, 105, 119, 25, 143, 92, 138, 159, 172, 3, 44, 2, 108, 17, 17, 112, 73, 167, 14, 212, 220, 219, 245, 196, 68, 124, 186, 146, 152, 216, 24, 82, 205, 254, 61, 91, 102, 164, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:50:29.769761Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:50:29.769808Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:50:29.833429Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:50:29.868270Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0TXj1gfBR9irapRvlCpO0Q==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:50:29.871097Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0TXj1gfBR9irapRvlCpO0Q==: stderr: -2026-04-20T10:50:29.871110Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0TXj1gfBR9irapRvlCpO0Q==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:50:29.871118Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0TXj1gfBR9irapRvlCpO0Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:50:29.871127Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0TXj1gfBR9irapRvlCpO0Q==: stderr: stack backtrace: -2026-04-20T10:50:29.871134Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0TXj1gfBR9irapRvlCpO0Q==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:50:29.871140Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0TXj1gfBR9irapRvlCpO0Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:50:29.871250Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:50:29.872038Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:50:29.872331Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:50:29.940555Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:50:29.940602Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:50:29.940756Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:50:29.941520Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=165 blob_id=2147877021025529447902429757966356017 -2026-04-20T10:50:34.297928Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=105 prev_hash=0x210d290f524fee864e8b867e43a978ea856f964ed8db7fa946eae544f74b7773 hash=0x58d201e1a4ff76221c379fc08179dc5525dfd04cacc89534da7f59410b237ae7 producing_time=1.442301ms -2026-04-20T10:50:34.305732Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=105 current_state_root="3ccb6cfaf58382405fe346d7b3fe0fdfca89419c7672725a7997a1674825143e3ba9e0cfdb30a5a3a2114a04e975d591a2e610a9f1893159dc6504d1a3c9d9c5" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x38099bfe9e2b3f96beeaeaba2e2cdc0693a8fecdc59ed76328bea56b32a386bd"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x146b73c4b05db1e46c7fe84447c5af4b62527b3bb21be1132570f213e985fc3f, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x2ed0b095cb38eedbd51f33095ba6e89ef813a58decd88301d40a0c24e0d30615, len=625"] -2026-04-20T10:50:34.305959Z DEBUG StfBlueprint::apply_slot{context=Node da_height=105}: sov_chain_state: Setting next visible slot number next_visible_slot_number=99 -2026-04-20T10:50:34.306095Z DEBUG StfBlueprint::apply_slot{context=Node da_height=105}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x38099bfe9e2b3f96beeaeaba2e2cdc0693a8fecdc59ed76328bea56b32a386bd}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:50:34.306283Z DEBUG StfBlueprint::apply_slot{context=Node da_height=105}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3ccb6cfaf58382405fe346d7b3fe0fdfca89419c7672725a7997a1674825143e3ba9e0cfdb30a5a3a2114a04e975d591a2e610a9f1893159dc6504d1a3c9d9c5 next_version=105 sesssion_starting_time=48.039µs -2026-04-20T10:50:34.307335Z DEBUG StfBlueprint::apply_slot{context=Node da_height=105}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=58c4c087c0400d987b77a7dc085d159d8990b4e30ea425e8541c7eb5a63b35916a0ea069c7238948d44ffc2aaf673b7de573addc99ae0432862ffe0cbb1a112c next_version=105 time=1.132442ms accesses_build_time=31.429µs finishing_session_time=1.022984ms -2026-04-20T10:50:34.307568Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="501d4b9cdd41b8425d79c342c9deadb0b4c2cc739599f7fcef15775af0b320d96cb6f380d260dedde261ac1146cc507174715a45f446e6ba4c93ed331a6c4597" next_state_root="58c4c087c0400d987b77a7dc085d159d8990b4e30ea425e8541c7eb5a63b35916a0ea069c7238948d44ffc2aaf673b7de573addc99ae0432862ffe0cbb1a112c" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:50:34.308115Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 105, latest_finalized_slot_number: 104, sync_status: Synced { synced_da_height: 104 }, .. } -2026-04-20T10:50:34.308188Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=69 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 105, latest_finalized_slot_number: 104, sync_status: Synced { synced_da_height: 104 }, .. } -2026-04-20T10:50:34.308246Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=69 -2026-04-20T10:50:34.319554Z DEBUG sov_stf_runner::runner: Block execution complete time=6.0056506s -2026-04-20T10:50:34.319590Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:50:34.319802Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:50:34.319882Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:50:34.881886Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CN72Ou6QQuK0SnVq7K1PPg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:50:34.899471Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:50:34.911328Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2596999 cycles -2026-04-20T10:50:34.913992Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [101, 85, 252, 187, 44, 74, 106, 220, 105, 150, 129, 229, 249, 74, 225, 76, 162, 170, 65, 221, 73, 170, 102, 170, 83, 227, 204, 37, 72, 100, 103, 235, 14, 89, 239, 110, 79, 236, 0, 211, 50, 104, 5, 53, 169, 82, 41, 145, 42, 192, 79, 253, 139, 202, 75, 54, 98, 199, 255, 52, 229, 157, 149, 22, 66, 130, 106, 218, 139, 20, 66, 42, 178, 208, 253, 173, 174, 102, 26, 23, 72, 173, 51, 160, 231, 252, 207, 182, 155, 58, 83, 12, 202, 21, 87, 28, 26, 224, 103, 33, 218, 50, 19, 75, 221, 76, 46, 12, 182, 188, 207, 199, 170, 130, 188, 30, 220, 188, 103, 201, 2, 230, 75, 67, 10, 198, 215, 106, 77, 99, 117, 111, 210, 210, 125, 108, 100, 234, 119, 241, 49, 57, 216, 80, 28, 246, 23, 225, 247, 201, 160, 127, 168, 119, 219, 111, 87, 23, 108, 42, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:50:35.024689Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:50:35.024728Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:50:35.129103Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:50:35.166509Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SeiibJ0rQ5mtDEJgR6DZVQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:50:35.169390Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SeiibJ0rQ5mtDEJgR6DZVQ==: stderr: -2026-04-20T10:50:35.169404Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SeiibJ0rQ5mtDEJgR6DZVQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:50:35.169416Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SeiibJ0rQ5mtDEJgR6DZVQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:50:35.169423Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SeiibJ0rQ5mtDEJgR6DZVQ==: stderr: stack backtrace: -2026-04-20T10:50:35.169431Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SeiibJ0rQ5mtDEJgR6DZVQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:50:35.169437Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SeiibJ0rQ5mtDEJgR6DZVQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:50:35.169569Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:50:35.170475Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:50:35.170777Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:50:35.237478Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:50:35.237525Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:50:35.237700Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:50:35.238211Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=166 blob_id=2147877027429240488425162728629210257 -2026-04-20T10:50:40.299978Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=106 prev_hash=0x58d201e1a4ff76221c379fc08179dc5525dfd04cacc89534da7f59410b237ae7 hash=0x1a8a3ce08fbae961cd8a9c14716ffeadc77461ce1a7038c62641f03288f7fb92 producing_time=1.257301ms -2026-04-20T10:50:40.301567Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=106 current_state_root="58c4c087c0400d987b77a7dc085d159d8990b4e30ea425e8541c7eb5a63b35916a0ea069c7238948d44ffc2aaf673b7de573addc99ae0432862ffe0cbb1a112c" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x2aa0c3e447e35296b8374611c4200269dceae44a3d2dbc076d248350d68cb724, len=625"] -2026-04-20T10:50:40.301888Z DEBUG StfBlueprint::apply_slot{context=Node da_height=106}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=58c4c087c0400d987b77a7dc085d159d8990b4e30ea425e8541c7eb5a63b35916a0ea069c7238948d44ffc2aaf673b7de573addc99ae0432862ffe0cbb1a112c next_version=106 sesssion_starting_time=50.839µs -2026-04-20T10:50:40.302602Z DEBUG StfBlueprint::apply_slot{context=Node da_height=106}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=58c4c087c0400d987b77a7dc085d159d8990b4e30ea425e8541c7eb5a63b35915f27df051930271fd3917aad09cbfa3bdd28d3f27864477524704b64915c2737 next_version=106 time=782.074µs accesses_build_time=15.81µs finishing_session_time=668.426µs -2026-04-20T10:50:40.302666Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3ccb6cfaf58382405fe346d7b3fe0fdfca89419c7672725a7997a1674825143e3ba9e0cfdb30a5a3a2114a04e975d591a2e610a9f1893159dc6504d1a3c9d9c5" next_state_root="58c4c087c0400d987b77a7dc085d159d8990b4e30ea425e8541c7eb5a63b35915f27df051930271fd3917aad09cbfa3bdd28d3f27864477524704b64915c2737" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:50:40.303082Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 106, latest_finalized_slot_number: 105, sync_status: Synced { synced_da_height: 105 }, .. } -2026-04-20T10:50:40.303126Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=69 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 106, latest_finalized_slot_number: 105, sync_status: Synced { synced_da_height: 105 }, .. } -2026-04-20T10:50:40.303162Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=69 -2026-04-20T10:50:40.303303Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:50:40.303344Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=65 -2026-04-20T10:50:40.303456Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=101 -2026-04-20T10:50:40.303581Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:50:40.303844Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=101 sequence_number=167 -2026-04-20T10:50:40.303857Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=167 blob_id=2147877033553657248919473694440125327 visible_slot_number_after_increase=101 visible_slots_to_advance=2 -2026-04-20T10:50:40.303883Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:50:40.305444Z DEBUG manage_blob_submission_inside_task{blob_id=2147877033553657248919473694440125327 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x62bb76401487b23e0393117361a3132b9dc2d6ddccc35bc24906a133c5e0b6a1 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=107 include_at=107 bytes=13 time=645.426µs -2026-04-20T10:50:40.314472Z DEBUG compute_state_update{scope="sequencer" rollup_height=70 slot_number=101}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:50:40.314508Z DEBUG sov_stf_runner::runner: Block execution complete time=5.99492034s -2026-04-20T10:50:40.314534Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:50:40.314565Z DEBUG compute_state_update{scope="sequencer" rollup_height=70 slot_number=101}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=58c4c087c0400d987b77a7dc085d159d8990b4e30ea425e8541c7eb5a63b35915f27df051930271fd3917aad09cbfa3bdd28d3f27864477524704b64915c2737 next_version=107 sesssion_starting_time=10.323003ms -2026-04-20T10:50:40.315180Z DEBUG compute_state_update{scope="sequencer" rollup_height=70 slot_number=101}: sov_state::nomt::prover_storage: computed next state root state_root=52fb7edd0cd0baa07d1bcf0e5e2c264058707ea9dce500280c9a2e379887396b7f31aa672d065cd2acfb3970f985370ab25c2bff8209747ec093d7556d42e983 next_version=107 time=10.953089ms accesses_build_time=13.08µs finishing_session_time=593.476µs -2026-04-20T10:50:46.301841Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=107 prev_hash=0x1a8a3ce08fbae961cd8a9c14716ffeadc77461ce1a7038c62641f03288f7fb92 hash=0xc501bba34f1f0ae3afb518290d7c7756c5ea33d4c28bb7ef8eca6f920c132cea producing_time=1.279142ms -2026-04-20T10:50:46.306443Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=107 current_state_root="58c4c087c0400d987b77a7dc085d159d8990b4e30ea425e8541c7eb5a63b35915f27df051930271fd3917aad09cbfa3bdd28d3f27864477524704b64915c2737" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x62bb76401487b23e0393117361a3132b9dc2d6ddccc35bc24906a133c5e0b6a1"] proof_blobs=[] -2026-04-20T10:50:46.306715Z DEBUG StfBlueprint::apply_slot{context=Node da_height=107}: sov_chain_state: Setting next visible slot number next_visible_slot_number=101 -2026-04-20T10:50:46.306980Z DEBUG StfBlueprint::apply_slot{context=Node da_height=107}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x62bb76401487b23e0393117361a3132b9dc2d6ddccc35bc24906a133c5e0b6a1}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:50:46.307163Z DEBUG StfBlueprint::apply_slot{context=Node da_height=107}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=58c4c087c0400d987b77a7dc085d159d8990b4e30ea425e8541c7eb5a63b35915f27df051930271fd3917aad09cbfa3bdd28d3f27864477524704b64915c2737 next_version=107 sesssion_starting_time=47.699µs -2026-04-20T10:50:46.308176Z DEBUG StfBlueprint::apply_slot{context=Node da_height=107}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=52fb7edd0cd0baa07d1bcf0e5e2c264058707ea9dce500280c9a2e379887396b03ce2387143a7987a9f98f78372732d76a29f07a4169d948b89b332388a3871a next_version=107 time=1.099123ms accesses_build_time=36.849µs finishing_session_time=989.474µs -2026-04-20T10:50:46.308373Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="146b73c4b05db1e46c7fe84447c5af4b62527b3bb21be1132570f213e985fc3f" -2026-04-20T10:50:46.308393Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="2ed0b095cb38eedbd51f33095ba6e89ef813a58decd88301d40a0c24e0d30615" -2026-04-20T10:50:46.308403Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="2aa0c3e447e35296b8374611c4200269dceae44a3d2dbc076d248350d68cb724" -2026-04-20T10:50:46.308414Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="58c4c087c0400d987b77a7dc085d159d8990b4e30ea425e8541c7eb5a63b35916a0ea069c7238948d44ffc2aaf673b7de573addc99ae0432862ffe0cbb1a112c" next_state_root="52fb7edd0cd0baa07d1bcf0e5e2c264058707ea9dce500280c9a2e379887396b03ce2387143a7987a9f98f78372732d76a29f07a4169d948b89b332388a3871a" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:50:46.308931Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 107, latest_finalized_slot_number: 106, sync_status: Synced { synced_da_height: 106 }, .. } -2026-04-20T10:50:46.309024Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=70 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 107, latest_finalized_slot_number: 106, sync_status: Synced { synced_da_height: 106 }, .. } -2026-04-20T10:50:46.309084Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=70 -2026-04-20T10:50:46.309304Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:50:46.309384Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=66 -2026-04-20T10:50:46.309486Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=102 -2026-04-20T10:50:46.309608Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:50:46.309743Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=102 sequence_number=168 -2026-04-20T10:50:46.309758Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=168 blob_id=2147877040814444469748398088586669337 visible_slot_number_after_increase=102 visible_slots_to_advance=1 -2026-04-20T10:50:46.309785Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:50:46.311550Z DEBUG manage_blob_submission_inside_task{blob_id=2147877040814444469748398088586669337 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xac3e7e932f88453fbfeda71f57caab1cc10c8208204fb0b54827f8b3d1d0cb19 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=108 include_at=108 bytes=13 time=695.316µs -2026-04-20T10:50:46.315994Z DEBUG compute_state_update{scope="sequencer" rollup_height=71 slot_number=102}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:50:46.316026Z DEBUG sov_stf_runner::runner: Block execution complete time=6.001494527s -2026-04-20T10:50:46.316045Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:50:46.316078Z DEBUG compute_state_update{scope="sequencer" rollup_height=71 slot_number=102}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=52fb7edd0cd0baa07d1bcf0e5e2c264058707ea9dce500280c9a2e379887396b03ce2387143a7987a9f98f78372732d76a29f07a4169d948b89b332388a3871a next_version=108 sesssion_starting_time=5.926162ms -2026-04-20T10:50:46.316335Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:50:46.316436Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:50:46.316760Z DEBUG compute_state_update{scope="sequencer" rollup_height=71 slot_number=102}: sov_state::nomt::prover_storage: computed next state root state_root=3f64f663c97a742f69c34e84d95102c7ba0438658ca470de9ac207599866e83f49aaa390cc76a717c85036c118f95c0f8170c10e03e40f187410081069482473 next_version=108 time=6.621047ms accesses_build_time=12.14µs finishing_session_time=645.766µs -2026-04-20T10:50:46.876361Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PgEkia_AQbGr9n8XYm1GCw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:50:46.890110Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:50:46.901613Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1896064 cycles -2026-04-20T10:50:46.904200Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [68, 49, 101, 24, 63, 27, 234, 74, 81, 207, 142, 193, 69, 85, 10, 132, 113, 203, 20, 137, 150, 51, 128, 180, 255, 109, 46, 57, 46, 108, 249, 130, 99, 107, 36, 180, 163, 90, 44, 48, 83, 103, 47, 246, 178, 31, 131, 67, 82, 208, 43, 223, 218, 154, 2, 231, 229, 118, 248, 132, 170, 126, 56, 95, 111, 184, 21, 101, 240, 209, 44, 0, 8, 79, 228, 255, 135, 178, 16, 81, 44, 117, 34, 161, 158, 45, 118, 220, 156, 178, 41, 121, 171, 4, 105, 5, 43, 123, 35, 118, 237, 225, 183, 199, 27, 233, 236, 100, 89, 42, 129, 236, 69, 131, 107, 168, 242, 221, 212, 249, 80, 28, 50, 67, 54, 22, 68, 196, 32, 137, 222, 0, 153, 254, 226, 97, 118, 73, 34, 212, 2, 107, 229, 50, 83, 156, 49, 145, 136, 230, 158, 47, 55, 68, 113, 178, 120, 200, 164, 201, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:50:46.994420Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:50:46.994459Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:50:47.023425Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:50:47.057959Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ewMr8DaUTDeHx1sbjjKKFw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:50:47.060791Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ewMr8DaUTDeHx1sbjjKKFw==: stderr: -2026-04-20T10:50:47.060816Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ewMr8DaUTDeHx1sbjjKKFw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:50:47.060840Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ewMr8DaUTDeHx1sbjjKKFw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:50:47.060848Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ewMr8DaUTDeHx1sbjjKKFw==: stderr: stack backtrace: -2026-04-20T10:50:47.060854Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ewMr8DaUTDeHx1sbjjKKFw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:50:47.060862Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ewMr8DaUTDeHx1sbjjKKFw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:50:47.060963Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:50:47.061734Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:50:47.062052Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:50:47.128953Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:50:47.128998Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:50:47.129163Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:50:47.129348Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:50:47.129413Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:50:47.129790Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=169 blob_id=2147877041805728538185520362928312026 -2026-04-20T10:50:47.699939Z DEBUG sp1_core_executor_runner::native: CHILD sp1_09aYwyP4QpeoNxiQC4XCGQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:50:47.706630Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:50:47.717644Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1007492 cycles -2026-04-20T10:50:47.720197Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [115, 10, 20, 26, 158, 84, 95, 87, 102, 170, 209, 220, 95, 131, 80, 131, 247, 248, 179, 116, 128, 170, 6, 13, 4, 99, 103, 171, 96, 138, 50, 136, 8, 53, 180, 104, 155, 152, 12, 140, 95, 242, 110, 25, 49, 248, 70, 251, 114, 207, 24, 202, 42, 67, 154, 45, 35, 51, 133, 106, 146, 62, 136, 210, 115, 10, 20, 26, 158, 84, 95, 87, 102, 170, 209, 220, 95, 131, 80, 131, 247, 248, 179, 116, 128, 170, 6, 13, 4, 99, 103, 171, 96, 138, 50, 136, 35, 103, 163, 116, 181, 8, 115, 68, 185, 43, 91, 57, 45, 48, 131, 110, 194, 241, 65, 255, 129, 18, 2, 111, 186, 250, 124, 149, 229, 40, 160, 100, 15, 186, 48, 32, 95, 137, 214, 92, 57, 115, 100, 38, 91, 227, 189, 197, 49, 150, 7, 103, 127, 250, 123, 37, 94, 122, 34, 97, 80, 141, 125, 37, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:50:47.775782Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:50:47.775821Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:50:47.836262Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:50:47.870366Z DEBUG sp1_core_executor_runner::native: CHILD sp1_I8VyioKpSBm36Wrw2D8itw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:50:47.873183Z DEBUG sp1_core_executor_runner::native: CHILD sp1_I8VyioKpSBm36Wrw2D8itw==: stderr: -2026-04-20T10:50:47.873195Z DEBUG sp1_core_executor_runner::native: CHILD sp1_I8VyioKpSBm36Wrw2D8itw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:50:47.873204Z DEBUG sp1_core_executor_runner::native: CHILD sp1_I8VyioKpSBm36Wrw2D8itw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:50:47.873211Z DEBUG sp1_core_executor_runner::native: CHILD sp1_I8VyioKpSBm36Wrw2D8itw==: stderr: stack backtrace: -2026-04-20T10:50:47.873218Z DEBUG sp1_core_executor_runner::native: CHILD sp1_I8VyioKpSBm36Wrw2D8itw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:50:47.873224Z DEBUG sp1_core_executor_runner::native: CHILD sp1_I8VyioKpSBm36Wrw2D8itw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:50:47.873395Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:50:47.874145Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:50:47.874467Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:50:47.940336Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:50:47.940380Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:50:47.940525Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:50:47.941060Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=170 blob_id=2147877042786219583898215922240058068 -2026-04-20T10:50:52.304227Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=108 prev_hash=0xc501bba34f1f0ae3afb518290d7c7756c5ea33d4c28bb7ef8eca6f920c132cea hash=0x92b67a6420e0d4877f6477238779b896df015feae6d3df85103966823e2eba81 producing_time=1.329282ms -2026-04-20T10:50:52.307873Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=108 current_state_root="52fb7edd0cd0baa07d1bcf0e5e2c264058707ea9dce500280c9a2e379887396b03ce2387143a7987a9f98f78372732d76a29f07a4169d948b89b332388a3871a" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xac3e7e932f88453fbfeda71f57caab1cc10c8208204fb0b54827f8b3d1d0cb19"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xb60ea786f168ac68773b289422fe1ee26da9f9a02c89128bd535472b5cba939f, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x41cea13d7cc24c1da501e702e2d28e149577bb1f9de57f1f6ddea7e4357c7b7f, len=625"] -2026-04-20T10:50:52.308094Z DEBUG StfBlueprint::apply_slot{context=Node da_height=108}: sov_chain_state: Setting next visible slot number next_visible_slot_number=102 -2026-04-20T10:50:52.308231Z DEBUG StfBlueprint::apply_slot{context=Node da_height=108}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xac3e7e932f88453fbfeda71f57caab1cc10c8208204fb0b54827f8b3d1d0cb19}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:50:52.308431Z DEBUG StfBlueprint::apply_slot{context=Node da_height=108}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=52fb7edd0cd0baa07d1bcf0e5e2c264058707ea9dce500280c9a2e379887396b03ce2387143a7987a9f98f78372732d76a29f07a4169d948b89b332388a3871a next_version=108 sesssion_starting_time=48.429µs -2026-04-20T10:50:52.309420Z DEBUG StfBlueprint::apply_slot{context=Node da_height=108}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3f64f663c97a742f69c34e84d95102c7ba0438658ca470de9ac207599866e83f3eed51de760125fe48e81353f8624dee0cf39a90b1e1e5ac1b6eb5016dbe7842 next_version=108 time=1.069733ms accesses_build_time=31.66µs finishing_session_time=954.854µs -2026-04-20T10:50:52.309642Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="58c4c087c0400d987b77a7dc085d159d8990b4e30ea425e8541c7eb5a63b35915f27df051930271fd3917aad09cbfa3bdd28d3f27864477524704b64915c2737" next_state_root="3f64f663c97a742f69c34e84d95102c7ba0438658ca470de9ac207599866e83f3eed51de760125fe48e81353f8624dee0cf39a90b1e1e5ac1b6eb5016dbe7842" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:50:52.310133Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 108, latest_finalized_slot_number: 107, sync_status: Synced { synced_da_height: 107 }, .. } -2026-04-20T10:50:52.310233Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=71 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 108, latest_finalized_slot_number: 107, sync_status: Synced { synced_da_height: 107 }, .. } -2026-04-20T10:50:52.310300Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=71 -2026-04-20T10:50:52.321589Z DEBUG sov_stf_runner::runner: Block execution complete time=6.005544691s -2026-04-20T10:50:52.321622Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:50:52.321892Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:50:52.321977Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:50:52.887490Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zkbeS3edRuGjfasc7GyEWA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:50:52.905749Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:50:52.917762Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2640040 cycles -2026-04-20T10:50:52.920508Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [115, 10, 20, 26, 158, 84, 95, 87, 102, 170, 209, 220, 95, 131, 80, 131, 247, 248, 179, 116, 128, 170, 6, 13, 4, 99, 103, 171, 96, 138, 50, 136, 124, 53, 173, 127, 84, 246, 46, 235, 255, 171, 241, 58, 176, 231, 85, 80, 139, 154, 81, 166, 191, 159, 136, 21, 74, 66, 51, 124, 119, 187, 195, 66, 115, 66, 95, 149, 183, 190, 198, 91, 148, 95, 214, 85, 153, 137, 64, 244, 226, 97, 69, 59, 62, 135, 165, 160, 31, 145, 4, 148, 126, 25, 68, 183, 64, 87, 92, 145, 212, 161, 81, 149, 193, 193, 143, 147, 12, 92, 232, 77, 96, 208, 104, 56, 103, 92, 73, 55, 180, 232, 29, 54, 243, 171, 252, 98, 239, 217, 232, 100, 169, 153, 121, 158, 253, 135, 82, 219, 129, 246, 43, 0, 19, 239, 62, 198, 252, 210, 174, 136, 2, 177, 208, 69, 183, 217, 50, 55, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:50:53.030789Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:50:53.030828Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:50:53.131759Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:50:53.166043Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qz2pkEMlTjOcxRpLvVNabw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:50:53.168865Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qz2pkEMlTjOcxRpLvVNabw==: stderr: -2026-04-20T10:50:53.168879Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qz2pkEMlTjOcxRpLvVNabw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:50:53.168900Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qz2pkEMlTjOcxRpLvVNabw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:50:53.168909Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qz2pkEMlTjOcxRpLvVNabw==: stderr: stack backtrace: -2026-04-20T10:50:53.168916Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qz2pkEMlTjOcxRpLvVNabw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:50:53.168922Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qz2pkEMlTjOcxRpLvVNabw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:50:53.169049Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:50:53.169846Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:50:53.170142Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:50:53.240465Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:50:53.240510Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:50:53.240625Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:50:53.241130Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=171 blob_id=2147877049193473283792495039184818695 -2026-04-20T10:50:58.307790Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=109 prev_hash=0x92b67a6420e0d4877f6477238779b896df015feae6d3df85103966823e2eba81 hash=0x74f1a157e519fec5bc34f3cde343bc82d54836aac86be1fb3bb393f1527cc58b producing_time=2.689453ms -2026-04-20T10:50:58.313267Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=109 current_state_root="3f64f663c97a742f69c34e84d95102c7ba0438658ca470de9ac207599866e83f3eed51de760125fe48e81353f8624dee0cf39a90b1e1e5ac1b6eb5016dbe7842" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x4c2ae0c414dc2e4b3a4a9adb75d3fcc2bf0c4f24e62b5a95fc150f36959dd173, len=625"] -2026-04-20T10:50:58.313543Z DEBUG StfBlueprint::apply_slot{context=Node da_height=109}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3f64f663c97a742f69c34e84d95102c7ba0438658ca470de9ac207599866e83f3eed51de760125fe48e81353f8624dee0cf39a90b1e1e5ac1b6eb5016dbe7842 next_version=109 sesssion_starting_time=39.36µs -2026-04-20T10:50:58.314251Z DEBUG StfBlueprint::apply_slot{context=Node da_height=109}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3f64f663c97a742f69c34e84d95102c7ba0438658ca470de9ac207599866e83f450221554296a28c09585e008773bf2cf4caac0a4d3f3e1811e0774de8320fd0 next_version=109 time=761.555µs accesses_build_time=13.46µs finishing_session_time=669.176µs -2026-04-20T10:50:58.314311Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="52fb7edd0cd0baa07d1bcf0e5e2c264058707ea9dce500280c9a2e379887396b03ce2387143a7987a9f98f78372732d76a29f07a4169d948b89b332388a3871a" next_state_root="3f64f663c97a742f69c34e84d95102c7ba0438658ca470de9ac207599866e83f450221554296a28c09585e008773bf2cf4caac0a4d3f3e1811e0774de8320fd0" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:50:58.314874Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 109, latest_finalized_slot_number: 108, sync_status: Synced { synced_da_height: 108 }, .. } -2026-04-20T10:50:58.314959Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=71 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 109, latest_finalized_slot_number: 108, sync_status: Synced { synced_da_height: 108 }, .. } -2026-04-20T10:50:58.315031Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=71 -2026-04-20T10:50:58.315296Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:50:58.315393Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=67 -2026-04-20T10:50:58.315507Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=104 -2026-04-20T10:50:58.315640Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:50:58.315944Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=104 sequence_number=172 -2026-04-20T10:50:58.315964Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=172 blob_id=2147877055328829961980829739758611635 visible_slot_number_after_increase=104 visible_slots_to_advance=2 -2026-04-20T10:50:58.315993Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:50:58.317854Z DEBUG manage_blob_submission_inside_task{blob_id=2147877055328829961980829739758611635 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xaa014e3b4281f56b1b3c808924d298bfd30c400c8ca847c31f7a6dc98db718fe sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=110 include_at=110 bytes=13 time=757.485µs -2026-04-20T10:50:58.326172Z DEBUG compute_state_update{scope="sequencer" rollup_height=72 slot_number=104}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:50:58.326200Z DEBUG sov_stf_runner::runner: Block execution complete time=6.004579238s -2026-04-20T10:50:58.326221Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:50:58.326256Z DEBUG compute_state_update{scope="sequencer" rollup_height=72 slot_number=104}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3f64f663c97a742f69c34e84d95102c7ba0438658ca470de9ac207599866e83f450221554296a28c09585e008773bf2cf4caac0a4d3f3e1811e0774de8320fd0 next_version=110 sesssion_starting_time=9.820427ms -2026-04-20T10:50:58.327004Z DEBUG compute_state_update{scope="sequencer" rollup_height=72 slot_number=104}: sov_state::nomt::prover_storage: computed next state root state_root=1ce37323ca26e0c207e9919a25ca383b07d1b943b0aee3d78afe73a35f6689b54a0187ed2114e46bc8fc6c5544abdf7d285fc5e855f18bf1892fd063d46b9a86 next_version=110 time=10.583411ms accesses_build_time=14.019µs finishing_session_time=718.275µs -2026-04-20T10:51:04.310159Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=110 prev_hash=0x74f1a157e519fec5bc34f3cde343bc82d54836aac86be1fb3bb393f1527cc58b hash=0xe91b960a402cbc764ed174cfe4a2d10e1cb4a1b8330777b76c8990cbe1c2c307 producing_time=1.240592ms -2026-04-20T10:51:04.317817Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=110 current_state_root="3f64f663c97a742f69c34e84d95102c7ba0438658ca470de9ac207599866e83f450221554296a28c09585e008773bf2cf4caac0a4d3f3e1811e0774de8320fd0" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xaa014e3b4281f56b1b3c808924d298bfd30c400c8ca847c31f7a6dc98db718fe"] proof_blobs=[] -2026-04-20T10:51:04.318090Z DEBUG StfBlueprint::apply_slot{context=Node da_height=110}: sov_chain_state: Setting next visible slot number next_visible_slot_number=104 -2026-04-20T10:51:04.318358Z DEBUG StfBlueprint::apply_slot{context=Node da_height=110}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xaa014e3b4281f56b1b3c808924d298bfd30c400c8ca847c31f7a6dc98db718fe}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:51:04.318583Z DEBUG StfBlueprint::apply_slot{context=Node da_height=110}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3f64f663c97a742f69c34e84d95102c7ba0438658ca470de9ac207599866e83f450221554296a28c09585e008773bf2cf4caac0a4d3f3e1811e0774de8320fd0 next_version=110 sesssion_starting_time=47.08µs -2026-04-20T10:51:04.319702Z DEBUG StfBlueprint::apply_slot{context=Node da_height=110}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=1ce37323ca26e0c207e9919a25ca383b07d1b943b0aee3d78afe73a35f6689b5786f7a865b264dab13c7b8e78bbe14620788cd182ad444b643809570b20f7d6c next_version=110 time=1.205512ms accesses_build_time=37.79µs finishing_session_time=1.088463ms -2026-04-20T10:51:04.319927Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="b60ea786f168ac68773b289422fe1ee26da9f9a02c89128bd535472b5cba939f" -2026-04-20T10:51:04.319950Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="41cea13d7cc24c1da501e702e2d28e149577bb1f9de57f1f6ddea7e4357c7b7f" -2026-04-20T10:51:04.319960Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="4c2ae0c414dc2e4b3a4a9adb75d3fcc2bf0c4f24e62b5a95fc150f36959dd173" -2026-04-20T10:51:04.319972Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3f64f663c97a742f69c34e84d95102c7ba0438658ca470de9ac207599866e83f3eed51de760125fe48e81353f8624dee0cf39a90b1e1e5ac1b6eb5016dbe7842" next_state_root="1ce37323ca26e0c207e9919a25ca383b07d1b943b0aee3d78afe73a35f6689b5786f7a865b264dab13c7b8e78bbe14620788cd182ad444b643809570b20f7d6c" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:51:04.320580Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 110, latest_finalized_slot_number: 109, sync_status: Synced { synced_da_height: 109 }, .. } -2026-04-20T10:51:04.320671Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=72 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 110, latest_finalized_slot_number: 109, sync_status: Synced { synced_da_height: 109 }, .. } -2026-04-20T10:51:04.320761Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=72 -2026-04-20T10:51:04.321031Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:51:04.321112Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=68 -2026-04-20T10:51:04.321245Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=105 -2026-04-20T10:51:04.321431Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:51:04.321608Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=105 sequence_number=173 -2026-04-20T10:51:04.321628Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=173 blob_id=2147877062589572044858592742059575139 visible_slot_number_after_increase=105 visible_slots_to_advance=1 -2026-04-20T10:51:04.321668Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:51:04.323152Z DEBUG manage_blob_submission_inside_task{blob_id=2147877062589572044858592742059575139 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x59b6d6fc67ecee33953308c1076c8cf258de128805b997e90171a4908dbd955e sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=111 include_at=111 bytes=13 time=546.927µs -2026-04-20T10:51:04.326534Z DEBUG compute_state_update{scope="sequencer" rollup_height=73 slot_number=105}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:51:04.326584Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000364286s -2026-04-20T10:51:04.326607Z DEBUG compute_state_update{scope="sequencer" rollup_height=73 slot_number=105}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1ce37323ca26e0c207e9919a25ca383b07d1b943b0aee3d78afe73a35f6689b5786f7a865b264dab13c7b8e78bbe14620788cd182ad444b643809570b20f7d6c next_version=111 sesssion_starting_time=4.505411ms -2026-04-20T10:51:04.326618Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:51:04.326843Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:51:04.326925Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:51:04.327301Z DEBUG compute_state_update{scope="sequencer" rollup_height=73 slot_number=105}: sov_state::nomt::prover_storage: computed next state root state_root=3b0522ac026d195da3a8ac244bc04a8985361578bed534726d65bf67618daa2f3638a2a7e170793431cb20812df5e095984874a6619c9161ec4f6627275e6ec4 next_version=111 time=5.212827ms accesses_build_time=11.5µs finishing_session_time=661.706µs -2026-04-20T10:51:04.883913Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3DfocVSrQLOitOOTk0g5JQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:51:04.897382Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:51:04.909440Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1888039 cycles -2026-04-20T10:51:04.912104Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [35, 142, 148, 68, 125, 144, 220, 73, 231, 212, 245, 141, 122, 27, 141, 29, 108, 28, 205, 95, 209, 30, 5, 234, 192, 187, 186, 125, 149, 219, 189, 216, 63, 41, 203, 53, 5, 73, 51, 215, 3, 92, 81, 117, 243, 15, 237, 16, 194, 137, 185, 248, 52, 209, 140, 6, 96, 126, 221, 122, 39, 187, 139, 16, 112, 179, 69, 195, 52, 252, 23, 47, 34, 33, 176, 113, 72, 228, 177, 100, 220, 164, 57, 181, 90, 176, 93, 245, 180, 64, 80, 8, 241, 55, 188, 112, 69, 164, 148, 14, 31, 162, 100, 232, 61, 225, 105, 207, 197, 64, 164, 170, 189, 133, 240, 164, 208, 71, 79, 58, 109, 2, 13, 173, 238, 188, 166, 78, 170, 213, 237, 117, 47, 185, 158, 129, 200, 69, 132, 230, 191, 6, 108, 76, 196, 40, 236, 110, 79, 231, 225, 185, 120, 184, 152, 191, 33, 114, 36, 8, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:51:05.001058Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:51:05.001093Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:51:05.033733Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:51:05.068403Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aAe2AxMRR9iMlo_m1ZxOWg==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:51:05.071286Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aAe2AxMRR9iMlo_m1ZxOWg==: stderr: -2026-04-20T10:51:05.071310Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aAe2AxMRR9iMlo_m1ZxOWg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:51:05.071335Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aAe2AxMRR9iMlo_m1ZxOWg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:51:05.071357Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aAe2AxMRR9iMlo_m1ZxOWg==: stderr: stack backtrace: -2026-04-20T10:51:05.071364Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aAe2AxMRR9iMlo_m1ZxOWg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:51:05.071370Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aAe2AxMRR9iMlo_m1ZxOWg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:51:05.071394Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:51:05.073850Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:51:05.074170Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:51:05.139061Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:51:05.139103Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:51:05.139224Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:51:05.139408Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:51:05.139447Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:51:05.140059Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=174 blob_id=2147877063578544791921220406794975809 -2026-04-20T10:51:05.684835Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aBXOEpoUTV6SbTa0vyu9Ww==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:51:05.691384Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:51:05.702041Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 995309 cycles -2026-04-20T10:51:05.704691Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [80, 29, 75, 156, 221, 65, 184, 66, 93, 121, 195, 66, 201, 222, 173, 176, 180, 194, 204, 115, 149, 153, 247, 252, 239, 21, 119, 90, 240, 179, 32, 217, 26, 52, 58, 122, 14, 111, 112, 213, 246, 248, 123, 126, 13, 160, 171, 160, 152, 99, 32, 32, 123, 15, 78, 109, 135, 232, 226, 49, 33, 24, 107, 107, 80, 29, 75, 156, 221, 65, 184, 66, 93, 121, 195, 66, 201, 222, 173, 176, 180, 194, 204, 115, 149, 153, 247, 252, 239, 21, 119, 90, 240, 179, 32, 217, 56, 145, 12, 16, 11, 78, 74, 250, 194, 154, 162, 255, 53, 235, 53, 78, 245, 95, 55, 97, 21, 169, 198, 246, 219, 106, 196, 146, 50, 138, 123, 87, 93, 222, 201, 80, 108, 9, 209, 253, 91, 14, 105, 91, 125, 24, 16, 176, 149, 212, 243, 148, 245, 163, 59, 141, 167, 45, 44, 127, 71, 159, 26, 135, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:51:05.760570Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:51:05.760620Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:51:05.847390Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:51:05.870357Z DEBUG sp1_core_executor_runner::native: CHILD sp1_I9hcb1lGSvSMygcoBEEXuw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:51:05.873380Z DEBUG sp1_core_executor_runner::native: CHILD sp1_I9hcb1lGSvSMygcoBEEXuw==: stderr: -2026-04-20T10:51:05.873393Z DEBUG sp1_core_executor_runner::native: CHILD sp1_I9hcb1lGSvSMygcoBEEXuw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:51:05.873398Z DEBUG sp1_core_executor_runner::native: CHILD sp1_I9hcb1lGSvSMygcoBEEXuw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:51:05.873402Z DEBUG sp1_core_executor_runner::native: CHILD sp1_I9hcb1lGSvSMygcoBEEXuw==: stderr: stack backtrace: -2026-04-20T10:51:05.873405Z DEBUG sp1_core_executor_runner::native: CHILD sp1_I9hcb1lGSvSMygcoBEEXuw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:51:05.873408Z DEBUG sp1_core_executor_runner::native: CHILD sp1_I9hcb1lGSvSMygcoBEEXuw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:51:05.873457Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:51:05.874389Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:51:05.874510Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:51:05.901413Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:51:05.901437Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:51:05.901519Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:51:05.902029Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=175 blob_id=2147877064499680466716451669795593410 -2026-04-20T10:51:10.312019Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=111 prev_hash=0xe91b960a402cbc764ed174cfe4a2d10e1cb4a1b8330777b76c8990cbe1c2c307 hash=0x2417b962a1ef2d35bcb5cf0ad8503d795a1efce4f391d341881c7e182c684f90 producing_time=1.132572ms -2026-04-20T10:51:10.318637Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=111 current_state_root="1ce37323ca26e0c207e9919a25ca383b07d1b943b0aee3d78afe73a35f6689b5786f7a865b264dab13c7b8e78bbe14620788cd182ad444b643809570b20f7d6c" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x59b6d6fc67ecee33953308c1076c8cf258de128805b997e90171a4908dbd955e"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x780d7c634dc47fdae0085996b65d0b6db0c9cd2914d51cd60c0b6b091f19dfe7, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x3590d23f7f527b4119e925bd71d03c6e2d192d9967230475d1001bdc3bc91f8d, len=625"] -2026-04-20T10:51:10.318881Z DEBUG StfBlueprint::apply_slot{context=Node da_height=111}: sov_chain_state: Setting next visible slot number next_visible_slot_number=105 -2026-04-20T10:51:10.319016Z DEBUG StfBlueprint::apply_slot{context=Node da_height=111}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x59b6d6fc67ecee33953308c1076c8cf258de128805b997e90171a4908dbd955e}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:51:10.319188Z DEBUG StfBlueprint::apply_slot{context=Node da_height=111}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1ce37323ca26e0c207e9919a25ca383b07d1b943b0aee3d78afe73a35f6689b5786f7a865b264dab13c7b8e78bbe14620788cd182ad444b643809570b20f7d6c next_version=111 sesssion_starting_time=46.139µs -2026-04-20T10:51:10.320184Z DEBUG StfBlueprint::apply_slot{context=Node da_height=111}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3b0522ac026d195da3a8ac244bc04a8985361578bed534726d65bf67618daa2f32672ae1501a437c739e7c21b1ebd546fab20defefa1766261f13b366e25bfa7 next_version=111 time=1.074373ms accesses_build_time=31.429µs finishing_session_time=972.304µs -2026-04-20T10:51:10.320383Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3f64f663c97a742f69c34e84d95102c7ba0438658ca470de9ac207599866e83f450221554296a28c09585e008773bf2cf4caac0a4d3f3e1811e0774de8320fd0" next_state_root="3b0522ac026d195da3a8ac244bc04a8985361578bed534726d65bf67618daa2f32672ae1501a437c739e7c21b1ebd546fab20defefa1766261f13b366e25bfa7" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:51:10.320879Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 111, latest_finalized_slot_number: 110, sync_status: Synced { synced_da_height: 110 }, .. } -2026-04-20T10:51:10.320953Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=73 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 111, latest_finalized_slot_number: 110, sync_status: Synced { synced_da_height: 110 }, .. } -2026-04-20T10:51:10.321034Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=73 -2026-04-20T10:51:10.332772Z DEBUG sov_stf_runner::runner: Block execution complete time=6.006155939s -2026-04-20T10:51:10.332806Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:51:10.333010Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:51:10.333093Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:51:10.894075Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nj3umvTYRLyTpgkN5LRFDQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:51:10.911873Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:51:10.922881Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2638742 cycles -2026-04-20T10:51:10.925627Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [80, 29, 75, 156, 221, 65, 184, 66, 93, 121, 195, 66, 201, 222, 173, 176, 180, 194, 204, 115, 149, 153, 247, 252, 239, 21, 119, 90, 240, 179, 32, 217, 108, 182, 243, 128, 210, 96, 222, 221, 226, 97, 172, 17, 70, 204, 80, 113, 116, 113, 90, 69, 244, 70, 230, 186, 76, 147, 237, 51, 26, 108, 69, 151, 40, 177, 222, 234, 129, 47, 141, 36, 87, 169, 54, 209, 53, 47, 143, 50, 210, 234, 164, 143, 13, 7, 117, 253, 126, 217, 224, 129, 227, 191, 216, 67, 25, 227, 182, 166, 125, 191, 16, 94, 142, 106, 216, 141, 39, 19, 55, 242, 84, 43, 134, 80, 88, 12, 103, 134, 3, 81, 31, 48, 30, 31, 248, 178, 33, 13, 41, 15, 82, 79, 238, 134, 78, 139, 134, 126, 67, 169, 120, 234, 133, 111, 150, 78, 216, 219, 127, 169, 70, 234, 229, 68, 247, 75, 119, 115, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:51:11.036851Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:51:11.036889Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:51:11.141865Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:51:11.175940Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ZDmWRnqQRNmX6hP2RR5lIw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:51:11.178765Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ZDmWRnqQRNmX6hP2RR5lIw==: stderr: -2026-04-20T10:51:11.178792Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ZDmWRnqQRNmX6hP2RR5lIw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:51:11.178817Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ZDmWRnqQRNmX6hP2RR5lIw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:51:11.178824Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ZDmWRnqQRNmX6hP2RR5lIw==: stderr: stack backtrace: -2026-04-20T10:51:11.178832Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ZDmWRnqQRNmX6hP2RR5lIw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:51:11.178838Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ZDmWRnqQRNmX6hP2RR5lIw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:51:11.178866Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:51:11.179716Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:51:11.180036Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:51:11.240966Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:51:11.241011Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:51:11.241815Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:51:11.242484Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=176 blob_id=2147877070955338752779673486680713283 -2026-04-20T10:51:16.314527Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=112 prev_hash=0x2417b962a1ef2d35bcb5cf0ad8503d795a1efce4f391d341881c7e182c684f90 hash=0xcff835e5814e7f17bfce89595a5a2ef463c944d2e9423d5b972a2c87ec6d1ede producing_time=1.50411ms -2026-04-20T10:51:16.324337Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=112 current_state_root="3b0522ac026d195da3a8ac244bc04a8985361578bed534726d65bf67618daa2f32672ae1501a437c739e7c21b1ebd546fab20defefa1766261f13b366e25bfa7" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xad9b80b477f9875984650c7d95bc41bb985430f3ea699a3a52b3178a5b174ccc, len=625"] -2026-04-20T10:51:16.324705Z DEBUG StfBlueprint::apply_slot{context=Node da_height=112}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3b0522ac026d195da3a8ac244bc04a8985361578bed534726d65bf67618daa2f32672ae1501a437c739e7c21b1ebd546fab20defefa1766261f13b366e25bfa7 next_version=112 sesssion_starting_time=51.19µs -2026-04-20T10:51:16.325554Z DEBUG StfBlueprint::apply_slot{context=Node da_height=112}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3b0522ac026d195da3a8ac244bc04a8985361578bed534726d65bf67618daa2f22e07922167c6171be40b2af73ac4f81b02a13381f0d206335cd2479c97ad581 next_version=112 time=916.064µs accesses_build_time=15.42µs finishing_session_time=811.525µs -2026-04-20T10:51:16.325650Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="1ce37323ca26e0c207e9919a25ca383b07d1b943b0aee3d78afe73a35f6689b5786f7a865b264dab13c7b8e78bbe14620788cd182ad444b643809570b20f7d6c" next_state_root="3b0522ac026d195da3a8ac244bc04a8985361578bed534726d65bf67618daa2f22e07922167c6171be40b2af73ac4f81b02a13381f0d206335cd2479c97ad581" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:51:16.326257Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 112, latest_finalized_slot_number: 111, sync_status: Synced { synced_da_height: 111 }, .. } -2026-04-20T10:51:16.326353Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=73 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 112, latest_finalized_slot_number: 111, sync_status: Synced { synced_da_height: 111 }, .. } -2026-04-20T10:51:16.326425Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=73 -2026-04-20T10:51:16.326673Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:51:16.326736Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=69 -2026-04-20T10:51:16.326835Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=107 -2026-04-20T10:51:16.326987Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:51:16.327344Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=107 sequence_number=177 -2026-04-20T10:51:16.327378Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=177 blob_id=2147877077104003334722618898859638103 visible_slot_number_after_increase=107 visible_slots_to_advance=2 -2026-04-20T10:51:16.327400Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:51:16.329028Z DEBUG manage_blob_submission_inside_task{blob_id=2147877077104003334722618898859638103 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xd3485e6add6066aa71843f72b000cc8c5e3bb7ded34eae875d467c5a7ac4645d sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=113 include_at=113 bytes=13 time=557.777µs -2026-04-20T10:51:16.340697Z DEBUG compute_state_update{scope="sequencer" rollup_height=74 slot_number=107}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:51:16.340739Z DEBUG sov_stf_runner::runner: Block execution complete time=6.007934807s -2026-04-20T10:51:16.340774Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:51:16.340818Z DEBUG compute_state_update{scope="sequencer" rollup_height=74 slot_number=107}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3b0522ac026d195da3a8ac244bc04a8985361578bed534726d65bf67618daa2f22e07922167c6171be40b2af73ac4f81b02a13381f0d206335cd2479c97ad581 next_version=113 sesssion_starting_time=12.857567ms -2026-04-20T10:51:16.341599Z DEBUG compute_state_update{scope="sequencer" rollup_height=74 slot_number=107}: sov_state::nomt::prover_storage: computed next state root state_root=78f2755ac3b58e7cbeab3fb2284890d66212a0b466e9c28b372aafec01098ae27fdc63071b163c7c9e8b607189ab63054f8ba4522124f941b3cea3dd9133de22 next_version=113 time=13.661072ms accesses_build_time=20.95µs finishing_session_time=754.635µs -2026-04-20T10:51:22.317106Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=113 prev_hash=0xcff835e5814e7f17bfce89595a5a2ef463c944d2e9423d5b972a2c87ec6d1ede hash=0x71ad59b752d5a0f8f4ec3e711edd367d43e0eb544037baf38da3516276caa939 producing_time=1.241012ms -2026-04-20T10:51:22.322974Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=113 current_state_root="3b0522ac026d195da3a8ac244bc04a8985361578bed534726d65bf67618daa2f22e07922167c6171be40b2af73ac4f81b02a13381f0d206335cd2479c97ad581" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd3485e6add6066aa71843f72b000cc8c5e3bb7ded34eae875d467c5a7ac4645d"] proof_blobs=[] -2026-04-20T10:51:22.323258Z DEBUG StfBlueprint::apply_slot{context=Node da_height=113}: sov_chain_state: Setting next visible slot number next_visible_slot_number=107 -2026-04-20T10:51:22.323532Z DEBUG StfBlueprint::apply_slot{context=Node da_height=113}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xd3485e6add6066aa71843f72b000cc8c5e3bb7ded34eae875d467c5a7ac4645d}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:51:22.323743Z DEBUG StfBlueprint::apply_slot{context=Node da_height=113}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3b0522ac026d195da3a8ac244bc04a8985361578bed534726d65bf67618daa2f22e07922167c6171be40b2af73ac4f81b02a13381f0d206335cd2479c97ad581 next_version=113 sesssion_starting_time=49.889µs -2026-04-20T10:51:22.324880Z DEBUG StfBlueprint::apply_slot{context=Node da_height=113}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=78f2755ac3b58e7cbeab3fb2284890d66212a0b466e9c28b372aafec01098ae20e34fdf8e9a8e642f040b2f21111cba5ea1fc4322aee6a5ab7d0757cec3cba1a next_version=113 time=1.223682ms accesses_build_time=35.869µs finishing_session_time=1.111763ms -2026-04-20T10:51:22.325066Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="780d7c634dc47fdae0085996b65d0b6db0c9cd2914d51cd60c0b6b091f19dfe7" -2026-04-20T10:51:22.325083Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="3590d23f7f527b4119e925bd71d03c6e2d192d9967230475d1001bdc3bc91f8d" -2026-04-20T10:51:22.325093Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ad9b80b477f9875984650c7d95bc41bb985430f3ea699a3a52b3178a5b174ccc" -2026-04-20T10:51:22.325104Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3b0522ac026d195da3a8ac244bc04a8985361578bed534726d65bf67618daa2f32672ae1501a437c739e7c21b1ebd546fab20defefa1766261f13b366e25bfa7" next_state_root="78f2755ac3b58e7cbeab3fb2284890d66212a0b466e9c28b372aafec01098ae20e34fdf8e9a8e642f040b2f21111cba5ea1fc4322aee6a5ab7d0757cec3cba1a" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:51:22.325775Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 113, latest_finalized_slot_number: 112, sync_status: Synced { synced_da_height: 112 }, .. } -2026-04-20T10:51:22.325871Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=74 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 113, latest_finalized_slot_number: 112, sync_status: Synced { synced_da_height: 112 }, .. } -2026-04-20T10:51:22.325981Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=74 -2026-04-20T10:51:22.326284Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:51:22.326389Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=70 -2026-04-20T10:51:22.326531Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=108 -2026-04-20T10:51:22.326666Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:51:22.326815Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=108 sequence_number=178 -2026-04-20T10:51:22.326841Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=178 blob_id=2147877084356303269503050230246106243 visible_slot_number_after_increase=108 visible_slots_to_advance=1 -2026-04-20T10:51:22.326870Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:51:22.328629Z DEBUG manage_blob_submission_inside_task{blob_id=2147877084356303269503050230246106243 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x4058c4be7a8c10cfb16eab1e13f10e1fafccc5ff518ed55158626be764b6f8bc sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=114 include_at=114 bytes=13 time=617.976µs -2026-04-20T10:51:22.332652Z DEBUG compute_state_update{scope="sequencer" rollup_height=75 slot_number=108}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:51:22.332687Z DEBUG sov_stf_runner::runner: Block execution complete time=5.99191462s -2026-04-20T10:51:22.332708Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:51:22.332735Z DEBUG compute_state_update{scope="sequencer" rollup_height=75 slot_number=108}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=78f2755ac3b58e7cbeab3fb2284890d66212a0b466e9c28b372aafec01098ae20e34fdf8e9a8e642f040b2f21111cba5ea1fc4322aee6a5ab7d0757cec3cba1a next_version=114 sesssion_starting_time=5.379205ms -2026-04-20T10:51:22.332829Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:51:22.332913Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:51:22.333467Z DEBUG compute_state_update{scope="sequencer" rollup_height=75 slot_number=108}: sov_state::nomt::prover_storage: computed next state root state_root=04a81a566e0ffcf1e43a9763b88dafe8eaf82c20c86c876cc2e00ac8f4d9af7b51380dafe99ba77dc373cb8534513ddd486e8f1a9100cef7337f52a066ee6a0b next_version=114 time=6.127071ms accesses_build_time=15.21µs finishing_session_time=695.145µs -2026-04-20T10:51:22.890994Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RDZ1uxvoQ92VoLaftPRBpg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:51:22.904788Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:51:22.916100Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1928852 cycles -2026-04-20T10:51:22.918869Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [60, 203, 108, 250, 245, 131, 130, 64, 95, 227, 70, 215, 179, 254, 15, 223, 202, 137, 65, 156, 118, 114, 114, 90, 121, 151, 161, 103, 72, 37, 20, 62, 59, 169, 224, 207, 219, 48, 165, 163, 162, 17, 74, 4, 233, 117, 213, 145, 162, 230, 16, 169, 241, 137, 49, 89, 220, 101, 4, 209, 163, 201, 217, 197, 110, 9, 141, 5, 81, 208, 26, 74, 164, 163, 42, 53, 199, 98, 132, 181, 183, 249, 25, 8, 95, 225, 169, 62, 170, 207, 55, 236, 65, 242, 88, 208, 43, 46, 53, 166, 1, 92, 197, 69, 179, 63, 155, 222, 0, 28, 153, 93, 226, 110, 221, 223, 185, 108, 125, 144, 160, 141, 120, 205, 45, 88, 184, 141, 88, 210, 1, 225, 164, 255, 118, 34, 28, 55, 159, 192, 129, 121, 220, 85, 37, 223, 208, 76, 172, 200, 149, 52, 218, 127, 89, 65, 11, 35, 122, 231, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:51:23.012039Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:51:23.012077Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:51:23.042168Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:51:23.075824Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JionDds2R1qwVYe28dr0fQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:51:23.078656Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JionDds2R1qwVYe28dr0fQ==: stderr: -2026-04-20T10:51:23.078669Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JionDds2R1qwVYe28dr0fQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:51:23.078678Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JionDds2R1qwVYe28dr0fQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:51:23.078686Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JionDds2R1qwVYe28dr0fQ==: stderr: stack backtrace: -2026-04-20T10:51:23.078705Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JionDds2R1qwVYe28dr0fQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:51:23.078711Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JionDds2R1qwVYe28dr0fQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:51:23.078815Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:51:23.079579Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:51:23.079879Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:51:23.151596Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:51:23.151643Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:51:23.151775Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:51:23.151943Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:51:23.151991Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:51:23.152392Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=179 blob_id=2147877085353678912349881912648659992 -2026-04-20T10:51:23.713535Z DEBUG sp1_core_executor_runner::native: CHILD sp1_atw9xnCgT7WjycyMTaif1A==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:51:23.720650Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:51:23.730763Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1072288 cycles -2026-04-20T10:51:23.733369Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [88, 196, 192, 135, 192, 64, 13, 152, 123, 119, 167, 220, 8, 93, 21, 157, 137, 144, 180, 227, 14, 164, 37, 232, 84, 28, 126, 181, 166, 59, 53, 145, 106, 14, 160, 105, 199, 35, 137, 72, 212, 79, 252, 42, 175, 103, 59, 125, 229, 115, 173, 220, 153, 174, 4, 50, 134, 47, 254, 12, 187, 26, 17, 44, 88, 196, 192, 135, 192, 64, 13, 152, 123, 119, 167, 220, 8, 93, 21, 157, 137, 144, 180, 227, 14, 164, 37, 232, 84, 28, 126, 181, 166, 59, 53, 145, 15, 108, 151, 16, 231, 11, 132, 211, 33, 60, 130, 10, 154, 24, 176, 90, 166, 84, 192, 249, 10, 101, 205, 29, 7, 251, 17, 195, 12, 92, 167, 171, 26, 138, 60, 224, 143, 186, 233, 97, 205, 138, 156, 20, 113, 111, 254, 173, 199, 116, 97, 206, 26, 112, 56, 198, 38, 65, 240, 50, 136, 247, 251, 146, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:51:23.792503Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:51:23.792561Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:51:23.860041Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:51:23.894025Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hcDckjuwTCCnvxK0QT185Q==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:51:23.896871Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hcDckjuwTCCnvxK0QT185Q==: stderr: -2026-04-20T10:51:23.896884Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hcDckjuwTCCnvxK0QT185Q==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:51:23.896893Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hcDckjuwTCCnvxK0QT185Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:51:23.896901Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hcDckjuwTCCnvxK0QT185Q==: stderr: stack backtrace: -2026-04-20T10:51:23.896907Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hcDckjuwTCCnvxK0QT185Q==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:51:23.896913Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hcDckjuwTCCnvxK0QT185Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:51:23.897049Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:51:23.897858Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:51:23.898196Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:51:23.972185Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:51:23.972230Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:51:23.972342Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:51:23.972729Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=180 blob_id=2147877086346214665675591373616549828 -2026-04-20T10:51:28.319599Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=114 prev_hash=0x71ad59b752d5a0f8f4ec3e711edd367d43e0eb544037baf38da3516276caa939 hash=0x6b4a3b948b9509b2f062729fcedfbe9f66b2924b9c3ed1b93d928997ef09db73 producing_time=1.336592ms -2026-04-20T10:51:28.324411Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=114 current_state_root="78f2755ac3b58e7cbeab3fb2284890d66212a0b466e9c28b372aafec01098ae20e34fdf8e9a8e642f040b2f21111cba5ea1fc4322aee6a5ab7d0757cec3cba1a" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x4058c4be7a8c10cfb16eab1e13f10e1fafccc5ff518ed55158626be764b6f8bc"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xfa8a0228dacddd88b0d1449ebf9f7c540e5a319d40c2f51cd563dabcdba3eb99, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x5dc9b7a10719a68320c1d86c0d0a1a320fbedf220b3e685b60cb448fc1a9351d, len=625"] -2026-04-20T10:51:28.324664Z DEBUG StfBlueprint::apply_slot{context=Node da_height=114}: sov_chain_state: Setting next visible slot number next_visible_slot_number=108 -2026-04-20T10:51:28.324798Z DEBUG StfBlueprint::apply_slot{context=Node da_height=114}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x4058c4be7a8c10cfb16eab1e13f10e1fafccc5ff518ed55158626be764b6f8bc}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:51:28.324971Z DEBUG StfBlueprint::apply_slot{context=Node da_height=114}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=78f2755ac3b58e7cbeab3fb2284890d66212a0b466e9c28b372aafec01098ae20e34fdf8e9a8e642f040b2f21111cba5ea1fc4322aee6a5ab7d0757cec3cba1a next_version=114 sesssion_starting_time=48.08µs -2026-04-20T10:51:28.326012Z DEBUG StfBlueprint::apply_slot{context=Node da_height=114}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=04a81a566e0ffcf1e43a9763b88dafe8eaf82c20c86c876cc2e00ac8f4d9af7b3899daa1c8a4d669b04d9381b2ce293a53cb2e920ae86cdb3a747ecd3d9ac5b8 next_version=114 time=1.120593ms accesses_build_time=31.21µs finishing_session_time=1.016563ms -2026-04-20T10:51:28.326201Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3b0522ac026d195da3a8ac244bc04a8985361578bed534726d65bf67618daa2f22e07922167c6171be40b2af73ac4f81b02a13381f0d206335cd2479c97ad581" next_state_root="04a81a566e0ffcf1e43a9763b88dafe8eaf82c20c86c876cc2e00ac8f4d9af7b3899daa1c8a4d669b04d9381b2ce293a53cb2e920ae86cdb3a747ecd3d9ac5b8" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:51:28.326731Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 114, latest_finalized_slot_number: 113, sync_status: Synced { synced_da_height: 113 }, .. } -2026-04-20T10:51:28.326820Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=75 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 114, latest_finalized_slot_number: 113, sync_status: Synced { synced_da_height: 113 }, .. } -2026-04-20T10:51:28.326907Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=75 -2026-04-20T10:51:28.341237Z DEBUG sov_stf_runner::runner: Block execution complete time=6.008531284s -2026-04-20T10:51:28.341264Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:51:28.341461Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:51:28.341544Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:51:28.894796Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qvRu7-d5TM-N0AU18LrfIA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:51:28.912044Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:51:28.924019Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2553961 cycles -2026-04-20T10:51:28.926807Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [88, 196, 192, 135, 192, 64, 13, 152, 123, 119, 167, 220, 8, 93, 21, 157, 137, 144, 180, 227, 14, 164, 37, 232, 84, 28, 126, 181, 166, 59, 53, 145, 95, 39, 223, 5, 25, 48, 39, 31, 211, 145, 122, 173, 9, 203, 250, 59, 221, 40, 211, 242, 120, 100, 71, 117, 36, 112, 75, 100, 145, 92, 39, 55, 123, 60, 137, 157, 202, 148, 3, 82, 29, 91, 100, 175, 67, 81, 147, 56, 106, 239, 226, 75, 220, 150, 255, 172, 50, 230, 196, 187, 111, 20, 41, 120, 104, 38, 247, 143, 146, 191, 86, 95, 137, 11, 195, 79, 195, 47, 3, 41, 95, 89, 39, 102, 115, 162, 116, 50, 39, 66, 209, 16, 43, 175, 158, 125, 197, 1, 187, 163, 79, 31, 10, 227, 175, 181, 24, 41, 13, 124, 119, 86, 197, 234, 51, 212, 194, 139, 183, 239, 142, 202, 111, 146, 12, 19, 44, 234, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:51:29.036474Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:51:29.036511Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:51:29.047771Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:51:29.082854Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Q4j2oZYNQkOJl-fGerT1yg==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:51:29.085690Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Q4j2oZYNQkOJl-fGerT1yg==: stderr: -2026-04-20T10:51:29.085714Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Q4j2oZYNQkOJl-fGerT1yg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:51:29.085725Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Q4j2oZYNQkOJl-fGerT1yg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:51:29.085746Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Q4j2oZYNQkOJl-fGerT1yg==: stderr: stack backtrace: -2026-04-20T10:51:29.085753Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Q4j2oZYNQkOJl-fGerT1yg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:51:29.085759Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Q4j2oZYNQkOJl-fGerT1yg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:51:29.085814Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:51:29.086654Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:51:29.086945Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:51:29.138733Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:51:29.138773Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:51:29.138888Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:51:29.139617Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=181 blob_id=2147877092591527478366683737813122355 -2026-04-20T10:51:34.322898Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=115 prev_hash=0x6b4a3b948b9509b2f062729fcedfbe9f66b2924b9c3ed1b93d928997ef09db73 hash=0x78d790fe9b3ef74c9fd7f6bba0b17c344eedc72d14a29eee2dca7228423e59fd producing_time=1.628209ms -2026-04-20T10:51:34.332721Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=115 current_state_root="04a81a566e0ffcf1e43a9763b88dafe8eaf82c20c86c876cc2e00ac8f4d9af7b3899daa1c8a4d669b04d9381b2ce293a53cb2e920ae86cdb3a747ecd3d9ac5b8" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xecfc8c23f4881752831995d25a1767767609617fe8f002f3cb70043bda2194e7, len=625"] -2026-04-20T10:51:34.333048Z DEBUG StfBlueprint::apply_slot{context=Node da_height=115}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=04a81a566e0ffcf1e43a9763b88dafe8eaf82c20c86c876cc2e00ac8f4d9af7b3899daa1c8a4d669b04d9381b2ce293a53cb2e920ae86cdb3a747ecd3d9ac5b8 next_version=115 sesssion_starting_time=49.71µs -2026-04-20T10:51:34.333810Z DEBUG StfBlueprint::apply_slot{context=Node da_height=115}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=04a81a566e0ffcf1e43a9763b88dafe8eaf82c20c86c876cc2e00ac8f4d9af7b5758c85bfc79a89579fc5eb1e1c9202310966c6337f7a10ac5468c8be796336d next_version=115 time=828.225µs accesses_build_time=15.85µs finishing_session_time=727.125µs -2026-04-20T10:51:34.333903Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="78f2755ac3b58e7cbeab3fb2284890d66212a0b466e9c28b372aafec01098ae20e34fdf8e9a8e642f040b2f21111cba5ea1fc4322aee6a5ab7d0757cec3cba1a" next_state_root="04a81a566e0ffcf1e43a9763b88dafe8eaf82c20c86c876cc2e00ac8f4d9af7b5758c85bfc79a89579fc5eb1e1c9202310966c6337f7a10ac5468c8be796336d" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:51:34.334423Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 115, latest_finalized_slot_number: 115, sync_status: Synced { synced_da_height: 114 }, .. } -2026-04-20T10:51:34.334504Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=75 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 115, latest_finalized_slot_number: 115, sync_status: Synced { synced_da_height: 114 }, .. } -2026-04-20T10:51:34.334564Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=75 -2026-04-20T10:51:34.334791Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=3 -2026-04-20T10:51:34.334851Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=71 -2026-04-20T10:51:34.334953Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=111 -2026-04-20T10:51:34.335126Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:51:34.335445Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=3 visible_slot_number_after_increase=111 sequence_number=182 -2026-04-20T10:51:34.335469Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=182 blob_id=2147877098874296700199067366582937020 visible_slot_number_after_increase=111 visible_slots_to_advance=3 -2026-04-20T10:51:34.335497Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:51:34.337476Z DEBUG manage_blob_submission_inside_task{blob_id=2147877098874296700199067366582937020 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x9367e1a992792e330d6ed60d617cec769e8ef3b0d4e657a99ae9f3bdb502d4cd sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=116 include_at=116 bytes=13 time=798.695µs -2026-04-20T10:51:34.347273Z DEBUG sov_stf_runner::runner: Block execution complete time=6.0060109s -2026-04-20T10:51:34.347292Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:51:34.347265Z DEBUG compute_state_update{scope="sequencer" rollup_height=76 slot_number=111}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:51:34.347310Z DEBUG compute_state_update{scope="sequencer" rollup_height=76 slot_number=111}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:51:34.347398Z DEBUG compute_state_update{scope="sequencer" rollup_height=76 slot_number=111}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=04a81a566e0ffcf1e43a9763b88dafe8eaf82c20c86c876cc2e00ac8f4d9af7b5758c85bfc79a89579fc5eb1e1c9202310966c6337f7a10ac5468c8be796336d next_version=116 sesssion_starting_time=11.382357ms -2026-04-20T10:51:34.348102Z DEBUG compute_state_update{scope="sequencer" rollup_height=76 slot_number=111}: sov_state::nomt::prover_storage: computed next state root state_root=3d7d39f7cde6fcdd37345d2476be65e890e84e66d2604d61f267aa1748dd75f2599146078f922f2362aec60c6d2fd2656de9ccb08d3bbf5e7c66371ff7a2bc2e next_version=116 time=12.107212ms accesses_build_time=19.799µs finishing_session_time=678.796µs -2026-04-20T10:51:40.325446Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=116 prev_hash=0x78d790fe9b3ef74c9fd7f6bba0b17c344eedc72d14a29eee2dca7228423e59fd hash=0xe7d1efe398013651b9b05f7275c60c2cad989cb9d48f196705f6b12961244ed9 producing_time=1.506311ms -2026-04-20T10:51:40.328444Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=116 current_state_root="04a81a566e0ffcf1e43a9763b88dafe8eaf82c20c86c876cc2e00ac8f4d9af7b5758c85bfc79a89579fc5eb1e1c9202310966c6337f7a10ac5468c8be796336d" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9367e1a992792e330d6ed60d617cec769e8ef3b0d4e657a99ae9f3bdb502d4cd"] proof_blobs=[] -2026-04-20T10:51:40.328797Z DEBUG StfBlueprint::apply_slot{context=Node da_height=116}: sov_chain_state: Setting next visible slot number next_visible_slot_number=111 -2026-04-20T10:51:40.329068Z DEBUG StfBlueprint::apply_slot{context=Node da_height=116}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x9367e1a992792e330d6ed60d617cec769e8ef3b0d4e657a99ae9f3bdb502d4cd}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:51:40.329289Z DEBUG StfBlueprint::apply_slot{context=Node da_height=116}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=04a81a566e0ffcf1e43a9763b88dafe8eaf82c20c86c876cc2e00ac8f4d9af7b5758c85bfc79a89579fc5eb1e1c9202310966c6337f7a10ac5468c8be796336d next_version=116 sesssion_starting_time=55.47µs -2026-04-20T10:51:40.330129Z DEBUG StfBlueprint::apply_slot{context=Node da_height=116}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3d7d39f7cde6fcdd37345d2476be65e890e84e66d2604d61f267aa1748dd75f25f9966a361ebe5697864bd3db8b1140e84d8170ec4c631b7807475957d69ae34 next_version=116 time=936.073µs accesses_build_time=39.439µs finishing_session_time=815.074µs -2026-04-20T10:51:40.330331Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="fa8a0228dacddd88b0d1449ebf9f7c540e5a319d40c2f51cd563dabcdba3eb99" -2026-04-20T10:51:40.330352Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="5dc9b7a10719a68320c1d86c0d0a1a320fbedf220b3e685b60cb448fc1a9351d" -2026-04-20T10:51:40.330362Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ecfc8c23f4881752831995d25a1767767609617fe8f002f3cb70043bda2194e7" -2026-04-20T10:51:40.330374Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="04a81a566e0ffcf1e43a9763b88dafe8eaf82c20c86c876cc2e00ac8f4d9af7b5758c85bfc79a89579fc5eb1e1c9202310966c6337f7a10ac5468c8be796336d" next_state_root="3d7d39f7cde6fcdd37345d2476be65e890e84e66d2604d61f267aa1748dd75f25f9966a361ebe5697864bd3db8b1140e84d8170ec4c631b7807475957d69ae34" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:51:40.330923Z DEBUG sov_stf_runner::runner: Block execution complete time=5.983631774s -2026-04-20T10:51:40.330947Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:51:40.331036Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 116, latest_finalized_slot_number: 115, sync_status: Synced { synced_da_height: 115 }, .. } -2026-04-20T10:51:40.331117Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=76 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 116, latest_finalized_slot_number: 115, sync_status: Synced { synced_da_height: 115 }, .. } -2026-04-20T10:51:40.331198Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=76 -2026-04-20T10:51:40.331206Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:51:40.331285Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:51:40.331465Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:51:40.331540Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=72 -2026-04-20T10:51:40.331660Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=112 -2026-04-20T10:51:40.331806Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:51:40.331967Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=112 sequence_number=183 -2026-04-20T10:51:40.331991Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=183 blob_id=2147877106122992618027150940151399907 visible_slot_number_after_increase=112 visible_slots_to_advance=1 -2026-04-20T10:51:40.332026Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:51:40.332681Z DEBUG compute_state_update{scope="sequencer" rollup_height=77 slot_number=112}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3d7d39f7cde6fcdd37345d2476be65e890e84e66d2604d61f267aa1748dd75f25f9966a361ebe5697864bd3db8b1140e84d8170ec4c631b7807475957d69ae34 next_version=117 sesssion_starting_time=67.58µs -2026-04-20T10:51:40.333356Z DEBUG compute_state_update{scope="sequencer" rollup_height=77 slot_number=112}: sov_state::nomt::prover_storage: computed next state root state_root=511a65b4c08f35d78bbb36c4a67cb7db17cda8ef2f1993f6fd2dfc6a132640af5660bab77cd5cbe1a7db709b4781381be8f411300bd770193e84fd5197dc7520 next_version=117 time=760.885µs accesses_build_time=16.24µs finishing_session_time=624.116µs -2026-04-20T10:51:40.334022Z DEBUG manage_blob_submission_inside_task{blob_id=2147877106122992618027150940151399907 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x042435b2fb42cd55d01b5c337bdfb9b68d784ef8af6c1a0e13cd5785c7f60186 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=117 include_at=117 bytes=13 time=763.675µs -2026-04-20T10:51:40.884447Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ifHKLvYjTYqUxdPSdhAZ7g==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:51:40.897808Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:51:40.910116Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1881449 cycles -2026-04-20T10:51:40.912708Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [82, 251, 126, 221, 12, 208, 186, 160, 125, 27, 207, 14, 94, 44, 38, 64, 88, 112, 126, 169, 220, 229, 0, 40, 12, 154, 46, 55, 152, 135, 57, 107, 3, 206, 35, 135, 20, 58, 121, 135, 169, 249, 143, 120, 55, 39, 50, 215, 106, 41, 240, 122, 65, 105, 217, 72, 184, 155, 51, 35, 136, 163, 135, 26, 85, 67, 66, 155, 29, 205, 218, 126, 187, 126, 99, 120, 226, 22, 149, 0, 101, 165, 97, 78, 212, 174, 206, 195, 2, 3, 12, 108, 76, 201, 231, 194, 90, 47, 86, 246, 4, 217, 197, 89, 144, 95, 200, 154, 150, 238, 128, 76, 141, 26, 228, 0, 192, 227, 136, 113, 71, 219, 83, 207, 8, 29, 8, 180, 146, 182, 122, 100, 32, 224, 212, 135, 127, 100, 119, 35, 135, 121, 184, 150, 223, 1, 95, 234, 230, 211, 223, 133, 16, 57, 102, 130, 62, 46, 186, 129, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:51:41.003927Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:51:41.003967Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:51:41.038116Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:51:41.073633Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Gg3Yp25ARdGi1tNqnA76IQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:51:41.076453Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Gg3Yp25ARdGi1tNqnA76IQ==: stderr: -2026-04-20T10:51:41.076466Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Gg3Yp25ARdGi1tNqnA76IQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:51:41.076475Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Gg3Yp25ARdGi1tNqnA76IQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:51:41.076483Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Gg3Yp25ARdGi1tNqnA76IQ==: stderr: stack backtrace: -2026-04-20T10:51:41.076490Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Gg3Yp25ARdGi1tNqnA76IQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:51:41.076509Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Gg3Yp25ARdGi1tNqnA76IQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:51:41.076583Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:51:41.077423Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:51:41.077715Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:51:41.142232Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:51:41.142272Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:51:41.142420Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:51:41.142595Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:51:41.142646Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:51:41.143059Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=184 blob_id=2147877107103490170676229044245828944 -2026-04-20T10:51:41.701713Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5A3ViGfLSkGErOm4Uh3dgg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:51:41.708305Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:51:41.718455Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 999666 cycles -2026-04-20T10:51:41.721121Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [63, 100, 246, 99, 201, 122, 116, 47, 105, 195, 78, 132, 217, 81, 2, 199, 186, 4, 56, 101, 140, 164, 112, 222, 154, 194, 7, 89, 152, 102, 232, 63, 62, 237, 81, 222, 118, 1, 37, 254, 72, 232, 19, 83, 248, 98, 77, 238, 12, 243, 154, 144, 177, 225, 229, 172, 27, 110, 181, 1, 109, 190, 120, 66, 63, 100, 246, 99, 201, 122, 116, 47, 105, 195, 78, 132, 217, 81, 2, 199, 186, 4, 56, 101, 140, 164, 112, 222, 154, 194, 7, 89, 152, 102, 232, 63, 126, 244, 32, 153, 144, 168, 191, 35, 78, 165, 152, 36, 12, 88, 117, 24, 190, 3, 108, 107, 164, 159, 88, 179, 144, 64, 61, 189, 196, 115, 139, 161, 116, 241, 161, 87, 229, 25, 254, 197, 188, 52, 243, 205, 227, 67, 188, 130, 213, 72, 54, 170, 200, 107, 225, 251, 59, 179, 147, 241, 82, 124, 197, 139, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:51:41.745199Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:51:41.745230Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:51:41.849990Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:51:41.885783Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AEc6XH2TTtOleSzJ664l2A==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:51:41.888619Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AEc6XH2TTtOleSzJ664l2A==: stderr: -2026-04-20T10:51:41.888632Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AEc6XH2TTtOleSzJ664l2A==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:51:41.888643Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AEc6XH2TTtOleSzJ664l2A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:51:41.888650Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AEc6XH2TTtOleSzJ664l2A==: stderr: stack backtrace: -2026-04-20T10:51:41.888656Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AEc6XH2TTtOleSzJ664l2A==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:51:41.888662Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AEc6XH2TTtOleSzJ664l2A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:51:41.888798Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:51:41.889561Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:51:41.889871Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:51:41.956833Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:51:41.956876Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:51:41.957008Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:51:41.957201Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:51:41.957263Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:51:41.957730Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=185 blob_id=2147877108088765028612685445635497572 -2026-04-20T10:51:42.506774Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VPjw9bX_QT-7w9OXYL4b5Q==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:51:42.524424Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:51:42.535534Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2617794 cycles -2026-04-20T10:51:42.538110Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [63, 100, 246, 99, 201, 122, 116, 47, 105, 195, 78, 132, 217, 81, 2, 199, 186, 4, 56, 101, 140, 164, 112, 222, 154, 194, 7, 89, 152, 102, 232, 63, 69, 2, 33, 85, 66, 150, 162, 140, 9, 88, 94, 0, 135, 115, 191, 44, 244, 202, 172, 10, 77, 63, 62, 24, 17, 224, 119, 77, 232, 50, 15, 208, 70, 241, 143, 28, 178, 167, 45, 157, 57, 162, 8, 149, 188, 16, 232, 143, 133, 126, 196, 116, 53, 212, 189, 68, 169, 240, 200, 218, 171, 45, 166, 166, 5, 23, 127, 238, 44, 96, 110, 36, 24, 250, 7, 50, 77, 83, 202, 253, 16, 160, 118, 97, 43, 211, 28, 159, 104, 158, 167, 113, 192, 52, 150, 91, 233, 27, 150, 10, 64, 44, 188, 118, 78, 209, 116, 207, 228, 162, 209, 14, 28, 180, 161, 184, 51, 7, 119, 183, 108, 137, 144, 203, 225, 194, 195, 7, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:51:42.598763Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:51:42.598797Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:51:42.664773Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:51:42.695614Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5BcynI49T524XV7Q-qQwuA==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:51:42.698447Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5BcynI49T524XV7Q-qQwuA==: stderr: -2026-04-20T10:51:42.698458Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5BcynI49T524XV7Q-qQwuA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:51:42.698467Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5BcynI49T524XV7Q-qQwuA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:51:42.698474Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5BcynI49T524XV7Q-qQwuA==: stderr: stack backtrace: -2026-04-20T10:51:42.698480Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5BcynI49T524XV7Q-qQwuA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:51:42.698486Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5BcynI49T524XV7Q-qQwuA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:51:42.698609Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:51:42.699456Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:51:42.699751Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:51:42.764586Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:51:42.764626Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:51:42.764745Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:51:42.765358Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=186 blob_id=2147877109064370192040043006783987139 -2026-04-20T10:51:46.328456Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=4 height=117 prev_hash=0xe7d1efe398013651b9b05f7275c60c2cad989cb9d48f196705f6b12961244ed9 hash=0x79c8fc8cb77c1f3221650d2fa0316e4527c10d5f02c15c1bbacfee4e19fad4a3 producing_time=1.222822ms -2026-04-20T10:51:46.332201Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=117 current_state_root="3d7d39f7cde6fcdd37345d2476be65e890e84e66d2604d61f267aa1748dd75f25f9966a361ebe5697864bd3db8b1140e84d8170ec4c631b7807475957d69ae34" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x042435b2fb42cd55d01b5c337bdfb9b68d784ef8af6c1a0e13cd5785c7f60186"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xad858790a1deba1cf54a9e7cb391a03eafe74276db58d35d7325f65727dc6be6, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc8ff7eda3d832b6fa2e352e05d6a22d7ec4f2c2bdb64fa679ee3d48bc75b8842, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9f367fef1c3d19de682ec32377a1098571b1f239eb6d8bcd252ec161091b0744, len=625"] -2026-04-20T10:51:46.332448Z DEBUG StfBlueprint::apply_slot{context=Node da_height=117}: sov_chain_state: Setting next visible slot number next_visible_slot_number=112 -2026-04-20T10:51:46.332581Z DEBUG StfBlueprint::apply_slot{context=Node da_height=117}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x042435b2fb42cd55d01b5c337bdfb9b68d784ef8af6c1a0e13cd5785c7f60186}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:51:46.332756Z DEBUG StfBlueprint::apply_slot{context=Node da_height=117}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3d7d39f7cde6fcdd37345d2476be65e890e84e66d2604d61f267aa1748dd75f25f9966a361ebe5697864bd3db8b1140e84d8170ec4c631b7807475957d69ae34 next_version=117 sesssion_starting_time=47.86µs -2026-04-20T10:51:46.333604Z DEBUG StfBlueprint::apply_slot{context=Node da_height=117}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=511a65b4c08f35d78bbb36c4a67cb7db17cda8ef2f1993f6fd2dfc6a132640af376d2b4d37d9295b76367bec651c0c83a422a790f7545fd5722960bed1c32bdf next_version=117 time=929.443µs accesses_build_time=31.459µs finishing_session_time=822.805µs -2026-04-20T10:51:46.333805Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="04a81a566e0ffcf1e43a9763b88dafe8eaf82c20c86c876cc2e00ac8f4d9af7b5758c85bfc79a89579fc5eb1e1c9202310966c6337f7a10ac5468c8be796336d" next_state_root="511a65b4c08f35d78bbb36c4a67cb7db17cda8ef2f1993f6fd2dfc6a132640af376d2b4d37d9295b76367bec651c0c83a422a790f7545fd5722960bed1c32bdf" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:51:46.334371Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 117, latest_finalized_slot_number: 117, sync_status: Synced { synced_da_height: 116 }, .. } -2026-04-20T10:51:46.334474Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=77 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 117, latest_finalized_slot_number: 117, sync_status: Synced { synced_da_height: 116 }, .. } -2026-04-20T10:51:46.334537Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=77 -2026-04-20T10:51:46.350765Z DEBUG sov_stf_runner::runner: Block execution complete time=6.019820542s -2026-04-20T10:51:46.350785Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:51:46.350986Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:51:46.351066Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:51:46.915166Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hpLpBx-HRt-9G4Qor-53sg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:51:46.928613Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:51:46.940256Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1886398 cycles -2026-04-20T10:51:46.942851Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [28, 227, 115, 35, 202, 38, 224, 194, 7, 233, 145, 154, 37, 202, 56, 59, 7, 209, 185, 67, 176, 174, 227, 215, 138, 254, 115, 163, 95, 102, 137, 181, 120, 111, 122, 134, 91, 38, 77, 171, 19, 199, 184, 231, 139, 190, 20, 98, 7, 136, 205, 24, 42, 212, 68, 182, 67, 128, 149, 112, 178, 15, 125, 108, 7, 127, 145, 24, 18, 66, 26, 110, 74, 254, 224, 104, 57, 209, 119, 63, 26, 158, 108, 64, 255, 26, 70, 31, 146, 206, 51, 82, 131, 62, 14, 156, 42, 15, 85, 148, 77, 73, 121, 162, 244, 80, 248, 210, 113, 230, 109, 232, 65, 203, 223, 100, 85, 24, 228, 0, 207, 223, 89, 58, 114, 42, 27, 53, 36, 23, 185, 98, 161, 239, 45, 53, 188, 181, 207, 10, 216, 80, 61, 121, 90, 30, 252, 228, 243, 145, 211, 65, 136, 28, 126, 24, 44, 104, 79, 144, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:51:47.035672Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:51:47.035722Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:51:47.057550Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:51:47.094329Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vMrPe5zBSxCKou4ozqFpkw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:51:47.097169Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vMrPe5zBSxCKou4ozqFpkw==: stderr: -2026-04-20T10:51:47.097182Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vMrPe5zBSxCKou4ozqFpkw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:51:47.097191Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vMrPe5zBSxCKou4ozqFpkw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:51:47.097200Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vMrPe5zBSxCKou4ozqFpkw==: stderr: stack backtrace: -2026-04-20T10:51:47.097206Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vMrPe5zBSxCKou4ozqFpkw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:51:47.097212Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vMrPe5zBSxCKou4ozqFpkw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:51:47.097298Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:51:47.098103Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:51:47.098231Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:51:47.168856Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:51:47.168902Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:51:47.169057Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:51:47.169480Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=187 blob_id=2147877114389623202554405735707050817 -2026-04-20T10:51:52.331229Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=118 prev_hash=0x79c8fc8cb77c1f3221650d2fa0316e4527c10d5f02c15c1bbacfee4e19fad4a3 hash=0xe284b5338e25d18bf9ff85b18ac394f1834670e43a9ff8e20c8f9ddcf595c3f1 producing_time=1.351461ms -2026-04-20T10:51:52.332912Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=118 current_state_root="511a65b4c08f35d78bbb36c4a67cb7db17cda8ef2f1993f6fd2dfc6a132640af376d2b4d37d9295b76367bec651c0c83a422a790f7545fd5722960bed1c32bdf" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xb7360daf4bdc75d52e9f717519a255cce6ff12019f85cb5b28ec54711cff873b, len=625"] -2026-04-20T10:51:52.333289Z DEBUG StfBlueprint::apply_slot{context=Node da_height=118}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=511a65b4c08f35d78bbb36c4a67cb7db17cda8ef2f1993f6fd2dfc6a132640af376d2b4d37d9295b76367bec651c0c83a422a790f7545fd5722960bed1c32bdf next_version=118 sesssion_starting_time=48.6µs -2026-04-20T10:51:52.334145Z DEBUG StfBlueprint::apply_slot{context=Node da_height=118}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=511a65b4c08f35d78bbb36c4a67cb7db17cda8ef2f1993f6fd2dfc6a132640af3fb45e781f9a977e225ef8df5446309498d3479f38add1bff37796731ea1a755 next_version=118 time=922.523µs accesses_build_time=17.289µs finishing_session_time=809.355µs -2026-04-20T10:51:52.334217Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="511a65b4c08f35d78bbb36c4a67cb7db17cda8ef2f1993f6fd2dfc6a132640af376d2b4d37d9295b76367bec651c0c83a422a790f7545fd5722960bed1c32bdf" next_state_root="511a65b4c08f35d78bbb36c4a67cb7db17cda8ef2f1993f6fd2dfc6a132640af3fb45e781f9a977e225ef8df5446309498d3479f38add1bff37796731ea1a755" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:51:52.334811Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 118, latest_finalized_slot_number: 118, sync_status: Synced { synced_da_height: 117 }, .. } -2026-04-20T10:51:52.334912Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=77 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 118, latest_finalized_slot_number: 118, sync_status: Synced { synced_da_height: 117 }, .. } -2026-04-20T10:51:52.334975Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=77 -2026-04-20T10:51:52.335254Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:51:52.335336Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=73 -2026-04-20T10:51:52.335441Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=114 -2026-04-20T10:51:52.335582Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:51:52.335940Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=114 sequence_number=188 -2026-04-20T10:51:52.335969Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=188 blob_id=2147877120634980361121018530938988588 visible_slot_number_after_increase=114 visible_slots_to_advance=2 -2026-04-20T10:51:52.336004Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=4 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:51:52.337683Z DEBUG manage_blob_submission_inside_task{blob_id=2147877120634980361121018530938988588 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x972bf731e856a7c10083235d114a32658700172e101fd19c31d12d22f6d78e61 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=119 include_at=119 bytes=13 time=555.217µs -2026-04-20T10:51:52.342074Z DEBUG compute_state_update{scope="sequencer" rollup_height=78 slot_number=114}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:51:52.342096Z DEBUG sov_stf_runner::runner: Block execution complete time=5.991310115s -2026-04-20T10:51:52.342145Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:51:52.342171Z DEBUG compute_state_update{scope="sequencer" rollup_height=78 slot_number=114}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=511a65b4c08f35d78bbb36c4a67cb7db17cda8ef2f1993f6fd2dfc6a132640af3fb45e781f9a977e225ef8df5446309498d3479f38add1bff37796731ea1a755 next_version=119 sesssion_starting_time=5.696873ms -2026-04-20T10:51:52.342904Z DEBUG compute_state_update{scope="sequencer" rollup_height=78 slot_number=114}: sov_state::nomt::prover_storage: computed next state root state_root=2605e752f2079522dee5a28df1322bb892dc59a0be380ddf98f93048933624210abcd0db2ac4d40d8b4898807a2cee4e76bd466d69acbb376a39849cc8c26d8d next_version=119 time=6.450079ms accesses_build_time=19.811µs finishing_session_time=704.656µs -2026-04-20T10:51:58.334011Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=119 prev_hash=0xe284b5338e25d18bf9ff85b18ac394f1834670e43a9ff8e20c8f9ddcf595c3f1 hash=0x920b910067963d514aa8c35c2af739bfe1f93569c9aa44aa3598d4e02ff75cda producing_time=1.298951ms -2026-04-20T10:51:58.343999Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=119 current_state_root="511a65b4c08f35d78bbb36c4a67cb7db17cda8ef2f1993f6fd2dfc6a132640af3fb45e781f9a977e225ef8df5446309498d3479f38add1bff37796731ea1a755" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x972bf731e856a7c10083235d114a32658700172e101fd19c31d12d22f6d78e61"] proof_blobs=[] -2026-04-20T10:51:58.344391Z DEBUG StfBlueprint::apply_slot{context=Node da_height=119}: sov_chain_state: Setting next visible slot number next_visible_slot_number=114 -2026-04-20T10:51:58.344677Z DEBUG StfBlueprint::apply_slot{context=Node da_height=119}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x972bf731e856a7c10083235d114a32658700172e101fd19c31d12d22f6d78e61}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=4 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:51:58.344857Z DEBUG StfBlueprint::apply_slot{context=Node da_height=119}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=511a65b4c08f35d78bbb36c4a67cb7db17cda8ef2f1993f6fd2dfc6a132640af3fb45e781f9a977e225ef8df5446309498d3479f38add1bff37796731ea1a755 next_version=119 sesssion_starting_time=46.2µs -2026-04-20T10:51:58.345903Z DEBUG StfBlueprint::apply_slot{context=Node da_height=119}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2605e752f2079522dee5a28df1322bb892dc59a0be380ddf98f93048933624215632595e01cb89da0bf02ebfccd140e9337353f9eee58aefdccf88559daa9399 next_version=119 time=1.129482ms accesses_build_time=36.38µs finishing_session_time=1.022413ms -2026-04-20T10:51:58.346097Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ad858790a1deba1cf54a9e7cb391a03eafe74276db58d35d7325f65727dc6be6" -2026-04-20T10:51:58.346113Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="c8ff7eda3d832b6fa2e352e05d6a22d7ec4f2c2bdb64fa679ee3d48bc75b8842" -2026-04-20T10:51:58.346122Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="9f367fef1c3d19de682ec32377a1098571b1f239eb6d8bcd252ec161091b0744" -2026-04-20T10:51:58.346131Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="b7360daf4bdc75d52e9f717519a255cce6ff12019f85cb5b28ec54711cff873b" -2026-04-20T10:51:58.346154Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="511a65b4c08f35d78bbb36c4a67cb7db17cda8ef2f1993f6fd2dfc6a132640af3fb45e781f9a977e225ef8df5446309498d3479f38add1bff37796731ea1a755" next_state_root="2605e752f2079522dee5a28df1322bb892dc59a0be380ddf98f93048933624215632595e01cb89da0bf02ebfccd140e9337353f9eee58aefdccf88559daa9399" aggregated_proofs=0 proof_receipts=4 -2026-04-20T10:51:58.346669Z DEBUG sov_stf_runner::runner: Block execution complete time=6.004526631s -2026-04-20T10:51:58.346699Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:51:58.346759Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 119, latest_finalized_slot_number: 118, sync_status: Syncing { synced_da_height: 118, target_da_height: 119 }, .. } -2026-04-20T10:51:58.346858Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=78 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 119, latest_finalized_slot_number: 118, sync_status: Syncing { synced_da_height: 118, target_da_height: 119 }, .. } -2026-04-20T10:51:58.346922Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=78 -2026-04-20T10:51:58.346940Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:51:58.347020Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:51:58.906433Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ti4QQFCGQPm4Ih-4pIaZIw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:51:58.912675Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:51:58.924031Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 969036 cycles -2026-04-20T10:51:58.926676Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [59, 5, 34, 172, 2, 109, 25, 93, 163, 168, 172, 36, 75, 192, 74, 137, 133, 54, 21, 120, 190, 213, 52, 114, 109, 101, 191, 103, 97, 141, 170, 47, 50, 103, 42, 225, 80, 26, 67, 124, 115, 158, 124, 33, 177, 235, 213, 70, 250, 178, 13, 239, 239, 161, 118, 98, 97, 241, 59, 54, 110, 37, 191, 167, 59, 5, 34, 172, 2, 109, 25, 93, 163, 168, 172, 36, 75, 192, 74, 137, 133, 54, 21, 120, 190, 213, 52, 114, 109, 101, 191, 103, 97, 141, 170, 47, 59, 243, 82, 241, 133, 216, 75, 185, 17, 34, 100, 198, 67, 223, 165, 126, 189, 98, 227, 218, 109, 26, 154, 197, 22, 64, 155, 241, 141, 166, 33, 119, 207, 248, 53, 229, 129, 78, 127, 23, 191, 206, 137, 89, 90, 90, 46, 244, 99, 201, 68, 210, 233, 66, 61, 91, 151, 42, 44, 135, 236, 109, 30, 222, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:51:58.980658Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:51:58.980714Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:51:59.054470Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:51:59.089531Z DEBUG sp1_core_executor_runner::native: CHILD sp1_t3xlvv7uSZ6nKxziEBPgww==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:51:59.092374Z DEBUG sp1_core_executor_runner::native: CHILD sp1_t3xlvv7uSZ6nKxziEBPgww==: stderr: -2026-04-20T10:51:59.092399Z DEBUG sp1_core_executor_runner::native: CHILD sp1_t3xlvv7uSZ6nKxziEBPgww==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:51:59.092409Z DEBUG sp1_core_executor_runner::native: CHILD sp1_t3xlvv7uSZ6nKxziEBPgww==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:51:59.092416Z DEBUG sp1_core_executor_runner::native: CHILD sp1_t3xlvv7uSZ6nKxziEBPgww==: stderr: stack backtrace: -2026-04-20T10:51:59.092422Z DEBUG sp1_core_executor_runner::native: CHILD sp1_t3xlvv7uSZ6nKxziEBPgww==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:51:59.092428Z DEBUG sp1_core_executor_runner::native: CHILD sp1_t3xlvv7uSZ6nKxziEBPgww==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:51:59.092497Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:51:59.093307Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:51:59.093619Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:51:59.164789Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:51:59.164832Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:51:59.164954Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:51:59.165160Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:51:59.165214Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:51:59.165595Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=189 blob_id=2147877128891956657445328722460090375 -2026-04-20T10:51:59.731168Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Gr4Use3qR-WlE4LByY8R2g==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:51:59.749389Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:51:59.761019Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2670227 cycles -2026-04-20T10:51:59.763721Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [59, 5, 34, 172, 2, 109, 25, 93, 163, 168, 172, 36, 75, 192, 74, 137, 133, 54, 21, 120, 190, 213, 52, 114, 109, 101, 191, 103, 97, 141, 170, 47, 34, 224, 121, 34, 22, 124, 97, 113, 190, 64, 178, 175, 115, 172, 79, 129, 176, 42, 19, 56, 31, 13, 32, 99, 53, 205, 36, 121, 201, 122, 213, 129, 64, 148, 212, 160, 100, 227, 192, 210, 20, 145, 79, 173, 175, 245, 206, 180, 175, 249, 66, 101, 199, 199, 126, 115, 35, 205, 247, 103, 191, 202, 218, 91, 6, 220, 8, 89, 116, 222, 226, 3, 117, 219, 128, 228, 101, 108, 168, 39, 35, 224, 251, 133, 168, 32, 75, 195, 247, 18, 47, 56, 150, 134, 229, 185, 113, 173, 89, 183, 82, 213, 160, 248, 244, 236, 62, 113, 30, 221, 54, 125, 67, 224, 235, 84, 64, 55, 186, 243, 141, 163, 81, 98, 118, 202, 169, 57, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:51:59.877729Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:51:59.877763Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:51:59.974219Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:52:00.008977Z DEBUG sp1_core_executor_runner::native: CHILD sp1_D6dNzAvoRZOIvixRk-a1ZA==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:52:00.011816Z DEBUG sp1_core_executor_runner::native: CHILD sp1_D6dNzAvoRZOIvixRk-a1ZA==: stderr: -2026-04-20T10:52:00.011829Z DEBUG sp1_core_executor_runner::native: CHILD sp1_D6dNzAvoRZOIvixRk-a1ZA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:52:00.011838Z DEBUG sp1_core_executor_runner::native: CHILD sp1_D6dNzAvoRZOIvixRk-a1ZA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:52:00.011847Z DEBUG sp1_core_executor_runner::native: CHILD sp1_D6dNzAvoRZOIvixRk-a1ZA==: stderr: stack backtrace: -2026-04-20T10:52:00.011853Z DEBUG sp1_core_executor_runner::native: CHILD sp1_D6dNzAvoRZOIvixRk-a1ZA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:52:00.011859Z DEBUG sp1_core_executor_runner::native: CHILD sp1_D6dNzAvoRZOIvixRk-a1ZA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:52:00.011914Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:52:00.012725Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:52:00.013011Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:52:00.081109Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:52:00.081152Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:52:00.081300Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:52:00.082060Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=190 blob_id=2147877129999339241646272721030140597 -2026-04-20T10:52:04.336637Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=120 prev_hash=0x920b910067963d514aa8c35c2af739bfe1f93569c9aa44aa3598d4e02ff75cda hash=0x3a59526aee0914e564268f3da396269be944a182982fd9147a9724b2d1fe1c36 producing_time=1.341011ms -2026-04-20T10:52:04.338512Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=120 current_state_root="2605e752f2079522dee5a28df1322bb892dc59a0be380ddf98f93048933624215632595e01cb89da0bf02ebfccd140e9337353f9eee58aefdccf88559daa9399" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x771580e1d22b996788b53057242a4c1dc4deed9b7a7d5ba01d6dca4f221ba935, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0913957cf33f44ad806a235c778756e1388577729dd72dba7bf1af34cb18bc27, len=625"] -2026-04-20T10:52:04.338849Z DEBUG StfBlueprint::apply_slot{context=Node da_height=120}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2605e752f2079522dee5a28df1322bb892dc59a0be380ddf98f93048933624215632595e01cb89da0bf02ebfccd140e9337353f9eee58aefdccf88559daa9399 next_version=120 sesssion_starting_time=48.33µs -2026-04-20T10:52:04.339675Z DEBUG StfBlueprint::apply_slot{context=Node da_height=120}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2605e752f2079522dee5a28df1322bb892dc59a0be380ddf98f930489336242100485354bf1828a6e40d827d5859b0052842499c627b61fb72af135a0546cea0 next_version=120 time=893.174µs accesses_build_time=17.99µs finishing_session_time=791.864µs -2026-04-20T10:52:04.339761Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="511a65b4c08f35d78bbb36c4a67cb7db17cda8ef2f1993f6fd2dfc6a132640af3fb45e781f9a977e225ef8df5446309498d3479f38add1bff37796731ea1a755" next_state_root="2605e752f2079522dee5a28df1322bb892dc59a0be380ddf98f930489336242100485354bf1828a6e40d827d5859b0052842499c627b61fb72af135a0546cea0" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:52:04.340359Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 120, latest_finalized_slot_number: 119, sync_status: Synced { synced_da_height: 119 }, .. } -2026-04-20T10:52:04.340473Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=78 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 120, latest_finalized_slot_number: 119, sync_status: Synced { synced_da_height: 119 }, .. } -2026-04-20T10:52:04.340564Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=78 -2026-04-20T10:52:04.351254Z DEBUG sov_stf_runner::runner: Block execution complete time=6.004557241s -2026-04-20T10:52:04.351279Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:52:10.339498Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=121 prev_hash=0x3a59526aee0914e564268f3da396269be944a182982fd9147a9724b2d1fe1c36 hash=0x4267161c9e40c530d423a4ddafac26dec3ea854ed0c285ba997a253d2acffa14 producing_time=1.387701ms -2026-04-20T10:52:10.342389Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=121 current_state_root="2605e752f2079522dee5a28df1322bb892dc59a0be380ddf98f930489336242100485354bf1828a6e40d827d5859b0052842499c627b61fb72af135a0546cea0" batch_blobs=[] proof_blobs=[] -2026-04-20T10:52:10.342735Z DEBUG StfBlueprint::apply_slot{context=Node da_height=121}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2605e752f2079522dee5a28df1322bb892dc59a0be380ddf98f930489336242100485354bf1828a6e40d827d5859b0052842499c627b61fb72af135a0546cea0 next_version=121 sesssion_starting_time=46.06µs -2026-04-20T10:52:10.343550Z DEBUG StfBlueprint::apply_slot{context=Node da_height=121}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2605e752f2079522dee5a28df1322bb892dc59a0be380ddf98f9304893362421391f83fbe52348155fcf61958395fd90a7aef7694a485a5797599f6b23c8577c next_version=121 time=878.365µs accesses_build_time=16.75µs finishing_session_time=781.095µs -2026-04-20T10:52:10.343620Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2605e752f2079522dee5a28df1322bb892dc59a0be380ddf98f93048933624215632595e01cb89da0bf02ebfccd140e9337353f9eee58aefdccf88559daa9399" next_state_root="2605e752f2079522dee5a28df1322bb892dc59a0be380ddf98f9304893362421391f83fbe52348155fcf61958395fd90a7aef7694a485a5797599f6b23c8577c" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:52:10.344191Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 121, latest_finalized_slot_number: 120, sync_status: Syncing { synced_da_height: 120, target_da_height: 121 }, .. } -2026-04-20T10:52:10.344284Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=78 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 121, latest_finalized_slot_number: 120, sync_status: Syncing { synced_da_height: 120, target_da_height: 121 }, .. } -2026-04-20T10:52:10.344391Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=78 -2026-04-20T10:52:10.344737Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:52:10.344822Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=74 -2026-04-20T10:52:10.344965Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=116 -2026-04-20T10:52:10.345144Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:52:10.345449Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=116 sequence_number=191 -2026-04-20T10:52:10.345498Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=191 blob_id=2147877142407690046311627544748944897 visible_slot_number_after_increase=116 visible_slots_to_advance=2 -2026-04-20T10:52:10.345507Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=2 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:52:10.347206Z DEBUG manage_blob_submission_inside_task{blob_id=2147877142407690046311627544748944897 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x074ed2c0124f94666c3a5d7915909abb14df9ce81ba51be0324f23bbb0634999 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=122 include_at=122 bytes=13 time=558.256µs -2026-04-20T10:52:10.350662Z DEBUG compute_state_update{scope="sequencer" rollup_height=79 slot_number=116}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:52:10.350690Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999412304s -2026-04-20T10:52:10.350730Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:52:10.350761Z DEBUG compute_state_update{scope="sequencer" rollup_height=79 slot_number=116}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2605e752f2079522dee5a28df1322bb892dc59a0be380ddf98f9304893362421391f83fbe52348155fcf61958395fd90a7aef7694a485a5797599f6b23c8577c next_version=122 sesssion_starting_time=4.771989ms -2026-04-20T10:52:10.351539Z DEBUG compute_state_update{scope="sequencer" rollup_height=79 slot_number=116}: sov_state::nomt::prover_storage: computed next state root state_root=29ebd4e97ab62c1b4556e2b8819d7aceda5e1235187f10153868fa6abf2dbdd2503c5ba2873bd641e335eb0df0e5759911e02a7c24912a2b4b4e5df488a84467 next_version=122 time=5.568284ms accesses_build_time=16.81µs finishing_session_time=730.235µs -2026-04-20T10:52:16.341667Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=122 prev_hash=0x4267161c9e40c530d423a4ddafac26dec3ea854ed0c285ba997a253d2acffa14 hash=0x87429bd54b273169da44a98c9db1dc479337dd2c9d9f8726496c843f33041a2e producing_time=927.084µs -2026-04-20T10:52:16.342027Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=122 current_state_root="2605e752f2079522dee5a28df1322bb892dc59a0be380ddf98f9304893362421391f83fbe52348155fcf61958395fd90a7aef7694a485a5797599f6b23c8577c" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x074ed2c0124f94666c3a5d7915909abb14df9ce81ba51be0324f23bbb0634999"] proof_blobs=[] -2026-04-20T10:52:16.342268Z DEBUG StfBlueprint::apply_slot{context=Node da_height=122}: sov_chain_state: Setting next visible slot number next_visible_slot_number=116 -2026-04-20T10:52:16.342462Z DEBUG StfBlueprint::apply_slot{context=Node da_height=122}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x074ed2c0124f94666c3a5d7915909abb14df9ce81ba51be0324f23bbb0634999}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=2 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:52:16.342612Z DEBUG StfBlueprint::apply_slot{context=Node da_height=122}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2605e752f2079522dee5a28df1322bb892dc59a0be380ddf98f9304893362421391f83fbe52348155fcf61958395fd90a7aef7694a485a5797599f6b23c8577c next_version=122 sesssion_starting_time=41.21µs -2026-04-20T10:52:16.343422Z DEBUG StfBlueprint::apply_slot{context=Node da_height=122}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=29ebd4e97ab62c1b4556e2b8819d7aceda5e1235187f10153868fa6abf2dbdd23d5dd1fd9dfe47ec0dc407467abd78405ebf351ae6081aaf4a36d6c0c0944f51 next_version=122 time=881.885µs accesses_build_time=28.95µs finishing_session_time=791.095µs -2026-04-20T10:52:16.343591Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="771580e1d22b996788b53057242a4c1dc4deed9b7a7d5ba01d6dca4f221ba935" -2026-04-20T10:52:16.343604Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="0913957cf33f44ad806a235c778756e1388577729dd72dba7bf1af34cb18bc27" -2026-04-20T10:52:16.343614Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2605e752f2079522dee5a28df1322bb892dc59a0be380ddf98f930489336242100485354bf1828a6e40d827d5859b0052842499c627b61fb72af135a0546cea0" next_state_root="29ebd4e97ab62c1b4556e2b8819d7aceda5e1235187f10153868fa6abf2dbdd23d5dd1fd9dfe47ec0dc407467abd78405ebf351ae6081aaf4a36d6c0c0944f51" aggregated_proofs=0 proof_receipts=2 -2026-04-20T10:52:16.344003Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 122, latest_finalized_slot_number: 121, sync_status: Synced { synced_da_height: 121 }, .. } -2026-04-20T10:52:16.344074Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=79 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 122, latest_finalized_slot_number: 121, sync_status: Synced { synced_da_height: 121 }, .. } -2026-04-20T10:52:16.344131Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=79 -2026-04-20T10:52:16.344381Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:52:16.344450Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=75 -2026-04-20T10:52:16.344513Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=117 -2026-04-20T10:52:16.344571Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:52:16.344692Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=117 sequence_number=192 -2026-04-20T10:52:16.344706Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=192 blob_id=2147877149660040484038446355021960253 visible_slot_number_after_increase=117 visible_slots_to_advance=1 -2026-04-20T10:52:16.344750Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:52:16.346291Z DEBUG manage_blob_submission_inside_task{blob_id=2147877149660040484038446355021960253 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xc7d5b2a744d233695f0a0afba3b858d1c45ca4eaa47dab2cebb412b5061f9b9e sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=123 include_at=123 bytes=13 time=507.376µs -2026-04-20T10:52:16.350371Z DEBUG compute_state_update{scope="sequencer" rollup_height=80 slot_number=117}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:52:16.350384Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999655553s -2026-04-20T10:52:16.350412Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:52:16.350461Z DEBUG compute_state_update{scope="sequencer" rollup_height=80 slot_number=117}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=29ebd4e97ab62c1b4556e2b8819d7aceda5e1235187f10153868fa6abf2dbdd23d5dd1fd9dfe47ec0dc407467abd78405ebf351ae6081aaf4a36d6c0c0944f51 next_version=123 sesssion_starting_time=5.444674ms -2026-04-20T10:52:16.350680Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:52:16.350759Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:52:16.350934Z DEBUG compute_state_update{scope="sequencer" rollup_height=80 slot_number=117}: sov_state::nomt::prover_storage: computed next state root state_root=1a2bddb5ff3960d6403839ab1ac327a814ca8a31d3678d5bca4d200843ed87f33eab2f42b4677d01871b0f640237cd798a325f6b8d1ae36401ea621cdec96506 next_version=123 time=5.925761ms accesses_build_time=7.62µs finishing_session_time=448.647µs -2026-04-20T10:52:16.905546Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sGHGzXIHREKg9jLSFz6fiA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:52:16.919044Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:52:16.930596Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1882094 cycles -2026-04-20T10:52:16.933183Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [120, 242, 117, 90, 195, 181, 142, 124, 190, 171, 63, 178, 40, 72, 144, 214, 98, 18, 160, 180, 102, 233, 194, 139, 55, 42, 175, 236, 1, 9, 138, 226, 14, 52, 253, 248, 233, 168, 230, 66, 240, 64, 178, 242, 17, 17, 203, 165, 234, 31, 196, 50, 42, 238, 106, 90, 183, 208, 117, 124, 236, 60, 186, 26, 21, 135, 60, 158, 222, 77, 9, 169, 233, 195, 21, 178, 148, 1, 210, 21, 204, 228, 106, 37, 98, 233, 225, 45, 83, 108, 25, 6, 112, 81, 136, 146, 84, 71, 55, 198, 115, 3, 217, 110, 72, 175, 35, 34, 10, 153, 131, 230, 102, 248, 249, 75, 88, 121, 139, 41, 56, 62, 11, 83, 180, 97, 205, 5, 107, 74, 59, 148, 139, 149, 9, 178, 240, 98, 114, 159, 206, 223, 190, 159, 102, 178, 146, 75, 156, 62, 209, 185, 61, 146, 137, 151, 239, 9, 219, 115, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:52:17.025421Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:52:17.025452Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:52:17.058819Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:52:17.094614Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JtXS1lVpS5e7z5AzubKc1w==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:52:17.097456Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JtXS1lVpS5e7z5AzubKc1w==: stderr: -2026-04-20T10:52:17.097481Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JtXS1lVpS5e7z5AzubKc1w==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:52:17.097494Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JtXS1lVpS5e7z5AzubKc1w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:52:17.097503Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JtXS1lVpS5e7z5AzubKc1w==: stderr: stack backtrace: -2026-04-20T10:52:17.097512Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JtXS1lVpS5e7z5AzubKc1w==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:52:17.097521Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JtXS1lVpS5e7z5AzubKc1w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:52:17.097548Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:52:17.098394Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:52:17.098706Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:52:17.163484Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:52:17.163530Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:52:17.163676Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:52:17.163817Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:52:17.163868Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:52:17.164152Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=193 blob_id=2147877150650210976406096334628794024 -2026-04-20T10:52:17.714794Z DEBUG sp1_core_executor_runner::native: CHILD sp1_k6us73DnT_eaPjPjrPbAmQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:52:17.721615Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:52:17.732417Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1023606 cycles -2026-04-20T10:52:17.735059Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [4, 168, 26, 86, 110, 15, 252, 241, 228, 58, 151, 99, 184, 141, 175, 232, 234, 248, 44, 32, 200, 108, 135, 108, 194, 224, 10, 200, 244, 217, 175, 123, 56, 153, 218, 161, 200, 164, 214, 105, 176, 77, 147, 129, 178, 206, 41, 58, 83, 203, 46, 146, 10, 232, 108, 219, 58, 116, 126, 205, 61, 154, 197, 184, 4, 168, 26, 86, 110, 15, 252, 241, 228, 58, 151, 99, 184, 141, 175, 232, 234, 248, 44, 32, 200, 108, 135, 108, 194, 224, 10, 200, 244, 217, 175, 123, 56, 41, 41, 157, 62, 225, 47, 82, 110, 105, 64, 51, 73, 12, 193, 197, 30, 181, 84, 204, 193, 197, 147, 14, 86, 199, 43, 86, 213, 41, 23, 236, 120, 215, 144, 254, 155, 62, 247, 76, 159, 215, 246, 187, 160, 177, 124, 52, 78, 237, 199, 45, 20, 162, 158, 238, 45, 202, 114, 40, 66, 62, 89, 253, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:52:17.793309Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:52:17.793363Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:52:17.871106Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:52:17.905827Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VDQErzH5S6alJf8IgpAmBg==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:52:17.908723Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VDQErzH5S6alJf8IgpAmBg==: stderr: -2026-04-20T10:52:17.908750Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VDQErzH5S6alJf8IgpAmBg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:52:17.908762Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VDQErzH5S6alJf8IgpAmBg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:52:17.908771Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VDQErzH5S6alJf8IgpAmBg==: stderr: stack backtrace: -2026-04-20T10:52:17.908779Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VDQErzH5S6alJf8IgpAmBg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:52:17.908788Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VDQErzH5S6alJf8IgpAmBg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:52:17.908884Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:52:17.909712Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:52:17.910028Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:52:17.963681Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:52:17.963720Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:52:17.963881Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:52:17.964588Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=194 blob_id=2147877151617342463950207228075702112 -2026-04-20T10:52:22.344029Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=123 prev_hash=0x87429bd54b273169da44a98c9db1dc479337dd2c9d9f8726496c843f33041a2e hash=0x1a0764ef2df3f0d2f0a366f7ee26114278483bdfbf3f582a7e6507d0145e1491 producing_time=1.255622ms -2026-04-20T10:52:22.352839Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=123 current_state_root="29ebd4e97ab62c1b4556e2b8819d7aceda5e1235187f10153868fa6abf2dbdd23d5dd1fd9dfe47ec0dc407467abd78405ebf351ae6081aaf4a36d6c0c0944f51" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc7d5b2a744d233695f0a0afba3b858d1c45ca4eaa47dab2cebb412b5061f9b9e"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x6a99d8b6555f88baf362d9df89e7885319ea668b7a53bae19eff563a2a9b3fb1, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc851efb1891a2a4ea52962bdeb87821349033f2e79d740ccae8b74bff0796739, len=625"] -2026-04-20T10:52:22.353065Z DEBUG StfBlueprint::apply_slot{context=Node da_height=123}: sov_chain_state: Setting next visible slot number next_visible_slot_number=117 -2026-04-20T10:52:22.353199Z DEBUG StfBlueprint::apply_slot{context=Node da_height=123}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xc7d5b2a744d233695f0a0afba3b858d1c45ca4eaa47dab2cebb412b5061f9b9e}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:52:22.353391Z DEBUG StfBlueprint::apply_slot{context=Node da_height=123}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=29ebd4e97ab62c1b4556e2b8819d7aceda5e1235187f10153868fa6abf2dbdd23d5dd1fd9dfe47ec0dc407467abd78405ebf351ae6081aaf4a36d6c0c0944f51 next_version=123 sesssion_starting_time=49.359µs -2026-04-20T10:52:22.354340Z DEBUG StfBlueprint::apply_slot{context=Node da_height=123}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=1a2bddb5ff3960d6403839ab1ac327a814ca8a31d3678d5bca4d200843ed87f370c48aa47494d3f544edf08a420fe4cc5eef8dab272f7bbd5d3bf75da5f25f77 next_version=123 time=1.045573ms accesses_build_time=46.019µs finishing_session_time=904.634µs -2026-04-20T10:52:22.354532Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2605e752f2079522dee5a28df1322bb892dc59a0be380ddf98f9304893362421391f83fbe52348155fcf61958395fd90a7aef7694a485a5797599f6b23c8577c" next_state_root="1a2bddb5ff3960d6403839ab1ac327a814ca8a31d3678d5bca4d200843ed87f370c48aa47494d3f544edf08a420fe4cc5eef8dab272f7bbd5d3bf75da5f25f77" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:52:22.355160Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 123, latest_finalized_slot_number: 122, sync_status: Synced { synced_da_height: 122 }, .. } -2026-04-20T10:52:22.355251Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=80 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 123, latest_finalized_slot_number: 122, sync_status: Synced { synced_da_height: 122 }, .. } -2026-04-20T10:52:22.355328Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=80 -2026-04-20T10:52:22.370042Z DEBUG sov_stf_runner::runner: Block execution complete time=6.019630474s -2026-04-20T10:52:22.370077Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:52:22.370346Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:52:22.370444Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:52:22.929423Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Uo2JmP5CTZa3stayD71K7w==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:52:22.947989Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:52:22.959113Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2723298 cycles -2026-04-20T10:52:22.961793Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [4, 168, 26, 86, 110, 15, 252, 241, 228, 58, 151, 99, 184, 141, 175, 232, 234, 248, 44, 32, 200, 108, 135, 108, 194, 224, 10, 200, 244, 217, 175, 123, 87, 88, 200, 91, 252, 121, 168, 149, 121, 252, 94, 177, 225, 201, 32, 35, 16, 150, 108, 99, 55, 247, 161, 10, 197, 70, 140, 139, 231, 150, 51, 109, 39, 167, 227, 163, 191, 120, 241, 71, 91, 138, 158, 58, 154, 54, 41, 124, 224, 45, 44, 221, 160, 95, 29, 146, 38, 120, 8, 21, 146, 92, 96, 133, 5, 42, 204, 172, 194, 19, 84, 24, 22, 191, 73, 182, 5, 231, 206, 94, 204, 30, 207, 170, 186, 246, 53, 132, 202, 26, 155, 163, 116, 129, 101, 154, 231, 209, 239, 227, 152, 1, 54, 81, 185, 176, 95, 114, 117, 198, 12, 44, 173, 152, 156, 185, 212, 143, 25, 103, 5, 246, 177, 41, 97, 36, 78, 217, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:52:23.075757Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:52:23.075798Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:52:23.179109Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:52:23.214270Z DEBUG sp1_core_executor_runner::native: CHILD sp1_lJ5cz70tSBy1hf4mdlKWRQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:52:23.217127Z DEBUG sp1_core_executor_runner::native: CHILD sp1_lJ5cz70tSBy1hf4mdlKWRQ==: stderr: -2026-04-20T10:52:23.217141Z DEBUG sp1_core_executor_runner::native: CHILD sp1_lJ5cz70tSBy1hf4mdlKWRQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:52:23.217151Z DEBUG sp1_core_executor_runner::native: CHILD sp1_lJ5cz70tSBy1hf4mdlKWRQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:52:23.217161Z DEBUG sp1_core_executor_runner::native: CHILD sp1_lJ5cz70tSBy1hf4mdlKWRQ==: stderr: stack backtrace: -2026-04-20T10:52:23.217171Z DEBUG sp1_core_executor_runner::native: CHILD sp1_lJ5cz70tSBy1hf4mdlKWRQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:52:23.217180Z DEBUG sp1_core_executor_runner::native: CHILD sp1_lJ5cz70tSBy1hf4mdlKWRQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:52:23.217296Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:52:23.218072Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:52:23.218372Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:52:23.271520Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:52:23.271563Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:52:23.271686Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:52:23.272229Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=195 blob_id=2147877158034282070283577449205909695 -2026-04-20T10:52:28.345862Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=124 prev_hash=0x1a0764ef2df3f0d2f0a366f7ee26114278483bdfbf3f582a7e6507d0145e1491 hash=0xbc6f52730e7d87411e48be7671debf3c464a8cb07556270b148e2efac3c5e677 producing_time=1.101013ms -2026-04-20T10:52:28.351734Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=124 current_state_root="1a2bddb5ff3960d6403839ab1ac327a814ca8a31d3678d5bca4d200843ed87f370c48aa47494d3f544edf08a420fe4cc5eef8dab272f7bbd5d3bf75da5f25f77" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x351bb33ac0e42b4b6d744b44c6d05e28441745cb4fe328e0c7af4f51518e0be7, len=625"] -2026-04-20T10:52:28.352103Z DEBUG StfBlueprint::apply_slot{context=Node da_height=124}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1a2bddb5ff3960d6403839ab1ac327a814ca8a31d3678d5bca4d200843ed87f370c48aa47494d3f544edf08a420fe4cc5eef8dab272f7bbd5d3bf75da5f25f77 next_version=124 sesssion_starting_time=49.32µs -2026-04-20T10:52:28.352892Z DEBUG StfBlueprint::apply_slot{context=Node da_height=124}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=1a2bddb5ff3960d6403839ab1ac327a814ca8a31d3678d5bca4d200843ed87f32e4c34696ad4299d73b1900840b03b9b6d03f7e533cd6ed698c2aa041317de7a next_version=124 time=856.544µs accesses_build_time=17.24µs finishing_session_time=755.995µs -2026-04-20T10:52:28.352961Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="29ebd4e97ab62c1b4556e2b8819d7aceda5e1235187f10153868fa6abf2dbdd23d5dd1fd9dfe47ec0dc407467abd78405ebf351ae6081aaf4a36d6c0c0944f51" next_state_root="1a2bddb5ff3960d6403839ab1ac327a814ca8a31d3678d5bca4d200843ed87f32e4c34696ad4299d73b1900840b03b9b6d03f7e533cd6ed698c2aa041317de7a" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:52:28.353526Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 124, latest_finalized_slot_number: 123, sync_status: Synced { synced_da_height: 123 }, .. } -2026-04-20T10:52:28.353633Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=80 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 124, latest_finalized_slot_number: 123, sync_status: Synced { synced_da_height: 123 }, .. } -2026-04-20T10:52:28.353704Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=80 -2026-04-20T10:52:28.354038Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:52:28.354108Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=76 -2026-04-20T10:52:28.354205Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=119 -2026-04-20T10:52:28.354359Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:52:28.354687Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=119 sequence_number=196 -2026-04-20T10:52:28.354731Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=196 blob_id=2147877164179270899879794572540400376 visible_slot_number_after_increase=119 visible_slots_to_advance=2 -2026-04-20T10:52:28.354739Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:52:28.356442Z DEBUG manage_blob_submission_inside_task{blob_id=2147877164179270899879794572540400376 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x15a5d4bbd0aec444a2f3b94a187ec5a03e39108b454ef29c67e13e6bbf428936 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=125 include_at=125 bytes=13 time=572.206µs -2026-04-20T10:52:28.367155Z DEBUG compute_state_update{scope="sequencer" rollup_height=81 slot_number=119}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:52:28.367187Z DEBUG sov_stf_runner::runner: Block execution complete time=5.997113459s -2026-04-20T10:52:28.367206Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:52:28.367232Z DEBUG compute_state_update{scope="sequencer" rollup_height=81 slot_number=119}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1a2bddb5ff3960d6403839ab1ac327a814ca8a31d3678d5bca4d200843ed87f32e4c34696ad4299d73b1900840b03b9b6d03f7e533cd6ed698c2aa041317de7a next_version=125 sesssion_starting_time=12.067202ms -2026-04-20T10:52:28.367957Z DEBUG compute_state_update{scope="sequencer" rollup_height=81 slot_number=119}: sov_state::nomt::prover_storage: computed next state root state_root=44dc64cac1c586abf01d0cb1ab8f304ec585c9f80adee79db3e3e1f83671fb361c6ef42ef89a8466cafecd1418059b696b4d9d6f1fe60f0ef8207d85e7a26634 next_version=125 time=12.808997ms accesses_build_time=15.449µs finishing_session_time=708.625µs -2026-04-20T10:52:34.348187Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=125 prev_hash=0xbc6f52730e7d87411e48be7671debf3c464a8cb07556270b148e2efac3c5e677 hash=0x2147e9444fa0cdcd7672fb3d67dc05381b708fd0ce9c8e57a8ec1c4e70574463 producing_time=1.285032ms -2026-04-20T10:52:34.359114Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=125 current_state_root="1a2bddb5ff3960d6403839ab1ac327a814ca8a31d3678d5bca4d200843ed87f32e4c34696ad4299d73b1900840b03b9b6d03f7e533cd6ed698c2aa041317de7a" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x15a5d4bbd0aec444a2f3b94a187ec5a03e39108b454ef29c67e13e6bbf428936"] proof_blobs=[] -2026-04-20T10:52:34.359408Z DEBUG StfBlueprint::apply_slot{context=Node da_height=125}: sov_chain_state: Setting next visible slot number next_visible_slot_number=119 -2026-04-20T10:52:34.359662Z DEBUG StfBlueprint::apply_slot{context=Node da_height=125}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x15a5d4bbd0aec444a2f3b94a187ec5a03e39108b454ef29c67e13e6bbf428936}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:52:34.359847Z DEBUG StfBlueprint::apply_slot{context=Node da_height=125}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1a2bddb5ff3960d6403839ab1ac327a814ca8a31d3678d5bca4d200843ed87f32e4c34696ad4299d73b1900840b03b9b6d03f7e533cd6ed698c2aa041317de7a next_version=125 sesssion_starting_time=48.869µs -2026-04-20T10:52:34.360803Z DEBUG StfBlueprint::apply_slot{context=Node da_height=125}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=44dc64cac1c586abf01d0cb1ab8f304ec585c9f80adee79db3e3e1f83671fb367f49c0858d2c1826d431d2b18af7fbabd9d6d1eed5530ef8eee79da112360155 next_version=125 time=1.042573ms accesses_build_time=36.14µs finishing_session_time=929.894µs -2026-04-20T10:52:34.360990Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="6a99d8b6555f88baf362d9df89e7885319ea668b7a53bae19eff563a2a9b3fb1" -2026-04-20T10:52:34.361026Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="c851efb1891a2a4ea52962bdeb87821349033f2e79d740ccae8b74bff0796739" -2026-04-20T10:52:34.361036Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="351bb33ac0e42b4b6d744b44c6d05e28441745cb4fe328e0c7af4f51518e0be7" -2026-04-20T10:52:34.361048Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="1a2bddb5ff3960d6403839ab1ac327a814ca8a31d3678d5bca4d200843ed87f370c48aa47494d3f544edf08a420fe4cc5eef8dab272f7bbd5d3bf75da5f25f77" next_state_root="44dc64cac1c586abf01d0cb1ab8f304ec585c9f80adee79db3e3e1f83671fb367f49c0858d2c1826d431d2b18af7fbabd9d6d1eed5530ef8eee79da112360155" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:52:34.361644Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 125, latest_finalized_slot_number: 124, sync_status: Synced { synced_da_height: 124 }, .. } -2026-04-20T10:52:34.361750Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=81 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 125, latest_finalized_slot_number: 124, sync_status: Synced { synced_da_height: 124 }, .. } -2026-04-20T10:52:34.361812Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=81 -2026-04-20T10:52:34.362074Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:52:34.362142Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=77 -2026-04-20T10:52:34.362237Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=120 -2026-04-20T10:52:34.362388Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:52:34.362546Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=120 sequence_number=197 -2026-04-20T10:52:34.362572Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=197 blob_id=2147877171442483312860187876593940697 visible_slot_number_after_increase=120 visible_slots_to_advance=1 -2026-04-20T10:52:34.362599Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:52:34.364337Z DEBUG manage_blob_submission_inside_task{blob_id=2147877171442483312860187876593940697 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xe6569f2d96b373361fa8a943827fb714709cc17cba6c37eb114672f50ec2cccf sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=126 include_at=126 bytes=13 time=467.666µs -2026-04-20T10:52:34.371098Z DEBUG compute_state_update{scope="sequencer" rollup_height=82 slot_number=120}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:52:34.371135Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003930835s -2026-04-20T10:52:34.371153Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:52:34.371188Z DEBUG compute_state_update{scope="sequencer" rollup_height=82 slot_number=120}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=44dc64cac1c586abf01d0cb1ab8f304ec585c9f80adee79db3e3e1f83671fb367f49c0858d2c1826d431d2b18af7fbabd9d6d1eed5530ef8eee79da112360155 next_version=126 sesssion_starting_time=8.111538ms -2026-04-20T10:52:34.371418Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:52:34.371521Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:52:34.371856Z DEBUG compute_state_update{scope="sequencer" rollup_height=82 slot_number=120}: sov_state::nomt::prover_storage: computed next state root state_root=4418d4ccfdb1337dd9f6c776d2e0074bc2b1319bc17da952785f279da26c821c70793736045cb96c3936b9c5dd474e851f113c90ada6a5cb3705a3e42310d108 next_version=126 time=8.796693ms accesses_build_time=15.149µs finishing_session_time=642.256µs -2026-04-20T10:52:34.929737Z DEBUG sp1_core_executor_runner::native: CHILD sp1_S6Zvfa0bSGCWZRokfFkmAA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:52:34.943579Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:52:34.955360Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1943024 cycles -2026-04-20T10:52:34.958030Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [61, 125, 57, 247, 205, 230, 252, 221, 55, 52, 93, 36, 118, 190, 101, 232, 144, 232, 78, 102, 210, 96, 77, 97, 242, 103, 170, 23, 72, 221, 117, 242, 95, 153, 102, 163, 97, 235, 229, 105, 120, 100, 189, 61, 184, 177, 20, 14, 132, 216, 23, 14, 196, 198, 49, 183, 128, 116, 117, 149, 125, 105, 174, 52, 36, 24, 11, 180, 76, 115, 128, 94, 253, 192, 57, 247, 159, 218, 225, 163, 240, 246, 126, 25, 107, 200, 142, 187, 126, 58, 54, 19, 237, 79, 133, 242, 96, 39, 154, 225, 212, 8, 150, 83, 110, 2, 101, 255, 3, 40, 255, 60, 63, 73, 185, 193, 17, 45, 35, 103, 166, 147, 91, 3, 156, 197, 89, 121, 121, 200, 252, 140, 183, 124, 31, 50, 33, 101, 13, 47, 160, 49, 110, 69, 39, 193, 13, 95, 2, 193, 92, 27, 186, 207, 238, 78, 25, 250, 212, 163, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:52:35.051945Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:52:35.051985Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:52:35.077722Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:52:35.112199Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Mtb6tkz8TaOnGXgFv-K79g==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:52:35.115024Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Mtb6tkz8TaOnGXgFv-K79g==: stderr: -2026-04-20T10:52:35.115037Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Mtb6tkz8TaOnGXgFv-K79g==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:52:35.115046Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Mtb6tkz8TaOnGXgFv-K79g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:52:35.115054Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Mtb6tkz8TaOnGXgFv-K79g==: stderr: stack backtrace: -2026-04-20T10:52:35.115061Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Mtb6tkz8TaOnGXgFv-K79g==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:52:35.115067Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Mtb6tkz8TaOnGXgFv-K79g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:52:35.115227Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:52:35.115936Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:52:35.116226Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:52:35.182674Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:52:35.182714Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:52:35.182833Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:52:35.182991Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:52:35.183028Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:52:35.183473Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=198 blob_id=2147877172433798352398948325691668636 -2026-04-20T10:52:35.722343Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BR0Ro49tT-SuELZI5bMXfg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:52:35.729148Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:52:35.739669Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1037366 cycles -2026-04-20T10:52:35.742362Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [81, 26, 101, 180, 192, 143, 53, 215, 139, 187, 54, 196, 166, 124, 183, 219, 23, 205, 168, 239, 47, 25, 147, 246, 253, 45, 252, 106, 19, 38, 64, 175, 55, 109, 43, 77, 55, 217, 41, 91, 118, 54, 123, 236, 101, 28, 12, 131, 164, 34, 167, 144, 247, 84, 95, 213, 114, 41, 96, 190, 209, 195, 43, 223, 81, 26, 101, 180, 192, 143, 53, 215, 139, 187, 54, 196, 166, 124, 183, 219, 23, 205, 168, 239, 47, 25, 147, 246, 253, 45, 252, 106, 19, 38, 64, 175, 10, 38, 234, 170, 166, 75, 234, 129, 131, 232, 183, 251, 107, 109, 149, 217, 113, 47, 90, 44, 53, 191, 247, 15, 251, 128, 73, 60, 98, 249, 0, 130, 226, 132, 181, 51, 142, 37, 209, 139, 249, 255, 133, 177, 138, 195, 148, 241, 131, 70, 112, 228, 58, 159, 248, 226, 12, 143, 157, 220, 245, 149, 195, 241, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:52:35.811883Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:52:35.811932Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:52:35.890192Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:52:35.924418Z DEBUG sp1_core_executor_runner::native: CHILD sp1_N38-N0UiTKSqTTInwcfMnQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:52:35.927269Z DEBUG sp1_core_executor_runner::native: CHILD sp1_N38-N0UiTKSqTTInwcfMnQ==: stderr: -2026-04-20T10:52:35.927294Z DEBUG sp1_core_executor_runner::native: CHILD sp1_N38-N0UiTKSqTTInwcfMnQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:52:35.927304Z DEBUG sp1_core_executor_runner::native: CHILD sp1_N38-N0UiTKSqTTInwcfMnQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:52:35.927311Z DEBUG sp1_core_executor_runner::native: CHILD sp1_N38-N0UiTKSqTTInwcfMnQ==: stderr: stack backtrace: -2026-04-20T10:52:35.927333Z DEBUG sp1_core_executor_runner::native: CHILD sp1_N38-N0UiTKSqTTInwcfMnQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:52:35.927340Z DEBUG sp1_core_executor_runner::native: CHILD sp1_N38-N0UiTKSqTTInwcfMnQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:52:35.927384Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:52:35.928191Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:52:35.928497Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:52:35.977617Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:52:35.977655Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:52:35.977815Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:52:35.978580Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=199 blob_id=2147877173394883181778515962790937905 -2026-04-20T10:52:40.349942Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=126 prev_hash=0x2147e9444fa0cdcd7672fb3d67dc05381b708fd0ce9c8e57a8ec1c4e70574463 hash=0x5dc8cde9ef6c1b7a3467b78f5f1457ceff09fe013a3d829d5f1f0c65efbb7bf5 producing_time=1.383421ms -2026-04-20T10:52:40.352795Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=126 current_state_root="44dc64cac1c586abf01d0cb1ab8f304ec585c9f80adee79db3e3e1f83671fb367f49c0858d2c1826d431d2b18af7fbabd9d6d1eed5530ef8eee79da112360155" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe6569f2d96b373361fa8a943827fb714709cc17cba6c37eb114672f50ec2cccf"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xdcc2de55d681fcf46574dd6535d3963cb041f75a3e2cd6b40ea7d46014b90653, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe8d62bab98820d0679b38c6240f193f41ec1dc2ad66018a0fa16b3a658372354, len=625"] -2026-04-20T10:52:40.353057Z DEBUG StfBlueprint::apply_slot{context=Node da_height=126}: sov_chain_state: Setting next visible slot number next_visible_slot_number=120 -2026-04-20T10:52:40.353196Z DEBUG StfBlueprint::apply_slot{context=Node da_height=126}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xe6569f2d96b373361fa8a943827fb714709cc17cba6c37eb114672f50ec2cccf}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:52:40.353421Z DEBUG StfBlueprint::apply_slot{context=Node da_height=126}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=44dc64cac1c586abf01d0cb1ab8f304ec585c9f80adee79db3e3e1f83671fb367f49c0858d2c1826d431d2b18af7fbabd9d6d1eed5530ef8eee79da112360155 next_version=126 sesssion_starting_time=57.109µs -2026-04-20T10:52:40.354378Z DEBUG StfBlueprint::apply_slot{context=Node da_height=126}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4418d4ccfdb1337dd9f6c776d2e0074bc2b1319bc17da952785f279da26c821c545194bf48c955c9fd3df6464621fdee69fa8b9fc1414e10c7d241706fd9e70a next_version=126 time=1.067793ms accesses_build_time=52.019µs finishing_session_time=896.724µs -2026-04-20T10:52:40.354585Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="1a2bddb5ff3960d6403839ab1ac327a814ca8a31d3678d5bca4d200843ed87f32e4c34696ad4299d73b1900840b03b9b6d03f7e533cd6ed698c2aa041317de7a" next_state_root="4418d4ccfdb1337dd9f6c776d2e0074bc2b1319bc17da952785f279da26c821c545194bf48c955c9fd3df6464621fdee69fa8b9fc1414e10c7d241706fd9e70a" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:52:40.355123Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 126, latest_finalized_slot_number: 125, sync_status: Synced { synced_da_height: 125 }, .. } -2026-04-20T10:52:40.355210Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=82 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 126, latest_finalized_slot_number: 125, sync_status: Synced { synced_da_height: 125 }, .. } -2026-04-20T10:52:40.355276Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=82 -2026-04-20T10:52:40.367020Z DEBUG sov_stf_runner::runner: Block execution complete time=5.995868207s -2026-04-20T10:52:40.367054Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:52:40.367306Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:52:40.367428Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:52:40.929291Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9JcPkeL8R-GSoZNm6N8B1A==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:52:40.948104Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:52:40.959857Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2830465 cycles -2026-04-20T10:52:40.962634Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [81, 26, 101, 180, 192, 143, 53, 215, 139, 187, 54, 196, 166, 124, 183, 219, 23, 205, 168, 239, 47, 25, 147, 246, 253, 45, 252, 106, 19, 38, 64, 175, 63, 180, 94, 120, 31, 154, 151, 126, 34, 94, 248, 223, 84, 70, 48, 148, 152, 211, 71, 159, 56, 173, 209, 191, 243, 119, 150, 115, 30, 161, 167, 85, 113, 164, 62, 22, 153, 36, 21, 150, 75, 156, 96, 70, 233, 81, 70, 146, 135, 209, 190, 255, 116, 230, 160, 60, 237, 94, 51, 8, 71, 65, 27, 174, 69, 178, 145, 193, 246, 41, 51, 91, 195, 201, 151, 196, 226, 245, 190, 137, 247, 255, 197, 219, 15, 131, 150, 106, 224, 106, 248, 31, 66, 47, 118, 160, 146, 11, 145, 0, 103, 150, 61, 81, 74, 168, 195, 92, 42, 247, 57, 191, 225, 249, 53, 105, 201, 170, 68, 170, 53, 152, 212, 224, 47, 247, 92, 218, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:52:41.078031Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:52:41.078071Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:52:41.176612Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:52:41.210954Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3sclxzCBRveJPbVA2eKqpg==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:52:41.213789Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3sclxzCBRveJPbVA2eKqpg==: stderr: -2026-04-20T10:52:41.213801Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3sclxzCBRveJPbVA2eKqpg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:52:41.213810Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3sclxzCBRveJPbVA2eKqpg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:52:41.213818Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3sclxzCBRveJPbVA2eKqpg==: stderr: stack backtrace: -2026-04-20T10:52:41.213825Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3sclxzCBRveJPbVA2eKqpg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:52:41.213831Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3sclxzCBRveJPbVA2eKqpg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:52:41.213950Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:52:41.214740Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:52:41.215036Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:52:41.283984Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:52:41.284027Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:52:41.284149Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:52:41.284733Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=200 blob_id=2147877179810648652278723571996010327 -2026-04-20T10:52:46.351983Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=127 prev_hash=0x5dc8cde9ef6c1b7a3467b78f5f1457ceff09fe013a3d829d5f1f0c65efbb7bf5 hash=0x7afbf9df57e504a328d6a30a3a718ceb7a80b22dccebf6ffd307a9d88c6d841a producing_time=1.365241ms -2026-04-20T10:52:46.358791Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=127 current_state_root="4418d4ccfdb1337dd9f6c776d2e0074bc2b1319bc17da952785f279da26c821c545194bf48c955c9fd3df6464621fdee69fa8b9fc1414e10c7d241706fd9e70a" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0e4d5a9de477d981cd4b664cb896e88ba10016d2348ffb968f9ca15e509732b7, len=625"] -2026-04-20T10:52:46.359175Z DEBUG StfBlueprint::apply_slot{context=Node da_height=127}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4418d4ccfdb1337dd9f6c776d2e0074bc2b1319bc17da952785f279da26c821c545194bf48c955c9fd3df6464621fdee69fa8b9fc1414e10c7d241706fd9e70a next_version=127 sesssion_starting_time=50.029µs -2026-04-20T10:52:46.359998Z DEBUG StfBlueprint::apply_slot{context=Node da_height=127}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4418d4ccfdb1337dd9f6c776d2e0074bc2b1319bc17da952785f279da26c821c7e47a26efcd16786d98edb2e22f2dde582ac8b9b02e616790966508a749a0698 next_version=127 time=891.464µs accesses_build_time=16.93µs finishing_session_time=787.465µs -2026-04-20T10:52:46.360078Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="44dc64cac1c586abf01d0cb1ab8f304ec585c9f80adee79db3e3e1f83671fb367f49c0858d2c1826d431d2b18af7fbabd9d6d1eed5530ef8eee79da112360155" next_state_root="4418d4ccfdb1337dd9f6c776d2e0074bc2b1319bc17da952785f279da26c821c7e47a26efcd16786d98edb2e22f2dde582ac8b9b02e616790966508a749a0698" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:52:46.360665Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 127, latest_finalized_slot_number: 126, sync_status: Synced { synced_da_height: 126 }, .. } -2026-04-20T10:52:46.360787Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=82 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 127, latest_finalized_slot_number: 126, sync_status: Synced { synced_da_height: 126 }, .. } -2026-04-20T10:52:46.360852Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=82 -2026-04-20T10:52:46.361183Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:52:46.361274Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=78 -2026-04-20T10:52:46.361390Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=122 -2026-04-20T10:52:46.361576Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:52:46.361875Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=122 sequence_number=201 -2026-04-20T10:52:46.361928Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=201 blob_id=2147877185948390162599734815752305993 visible_slot_number_after_increase=122 visible_slots_to_advance=2 -2026-04-20T10:52:46.361924Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:52:46.363779Z DEBUG manage_blob_submission_inside_task{blob_id=2147877185948390162599734815752305993 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x6b04157623add49dccca7c6479ae103697f1332b8ec4ce84f82c5a1053a88d34 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=128 include_at=128 bytes=13 time=652.956µs -2026-04-20T10:52:46.372249Z DEBUG compute_state_update{scope="sequencer" rollup_height=83 slot_number=122}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:52:46.372281Z DEBUG sov_stf_runner::runner: Block execution complete time=6.005229568s -2026-04-20T10:52:46.372301Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:52:46.372342Z DEBUG compute_state_update{scope="sequencer" rollup_height=83 slot_number=122}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4418d4ccfdb1337dd9f6c776d2e0074bc2b1319bc17da952785f279da26c821c7e47a26efcd16786d98edb2e22f2dde582ac8b9b02e616790966508a749a0698 next_version=128 sesssion_starting_time=9.879616ms -2026-04-20T10:52:46.372981Z DEBUG compute_state_update{scope="sequencer" rollup_height=83 slot_number=122}: sov_state::nomt::prover_storage: computed next state root state_root=700f5460e0f40dfde4508af21d931f6416a619a0365748c96fe669976451fb7b31da6c48485a278050e8ae947599e865383613d5940533666573ee79e377b3b5 next_version=128 time=10.537652ms accesses_build_time=17.849µs finishing_session_time=605.826µs -2026-04-20T10:52:52.353952Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=128 prev_hash=0x7afbf9df57e504a328d6a30a3a718ceb7a80b22dccebf6ffd307a9d88c6d841a hash=0x3092967555a1a2e170d1771477abb26865f55c3e41a12f837286823eed106602 producing_time=1.237382ms -2026-04-20T10:52:52.363881Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=128 current_state_root="4418d4ccfdb1337dd9f6c776d2e0074bc2b1319bc17da952785f279da26c821c7e47a26efcd16786d98edb2e22f2dde582ac8b9b02e616790966508a749a0698" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x6b04157623add49dccca7c6479ae103697f1332b8ec4ce84f82c5a1053a88d34"] proof_blobs=[] -2026-04-20T10:52:52.364188Z DEBUG StfBlueprint::apply_slot{context=Node da_height=128}: sov_chain_state: Setting next visible slot number next_visible_slot_number=122 -2026-04-20T10:52:52.364461Z DEBUG StfBlueprint::apply_slot{context=Node da_height=128}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x6b04157623add49dccca7c6479ae103697f1332b8ec4ce84f82c5a1053a88d34}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:52:52.364649Z DEBUG StfBlueprint::apply_slot{context=Node da_height=128}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4418d4ccfdb1337dd9f6c776d2e0074bc2b1319bc17da952785f279da26c821c7e47a26efcd16786d98edb2e22f2dde582ac8b9b02e616790966508a749a0698 next_version=128 sesssion_starting_time=49.28µs -2026-04-20T10:52:52.365696Z DEBUG StfBlueprint::apply_slot{context=Node da_height=128}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=700f5460e0f40dfde4508af21d931f6416a619a0365748c96fe669976451fb7b152cfe1da9f70bbbe678ef3b758d6bc5bd4fc8003dd28f1f682c166d68c0f686 next_version=128 time=1.133043ms accesses_build_time=36.11µs finishing_session_time=1.020553ms -2026-04-20T10:52:52.365889Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="dcc2de55d681fcf46574dd6535d3963cb041f75a3e2cd6b40ea7d46014b90653" -2026-04-20T10:52:52.365908Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="e8d62bab98820d0679b38c6240f193f41ec1dc2ad66018a0fa16b3a658372354" -2026-04-20T10:52:52.365941Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="0e4d5a9de477d981cd4b664cb896e88ba10016d2348ffb968f9ca15e509732b7" -2026-04-20T10:52:52.365954Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4418d4ccfdb1337dd9f6c776d2e0074bc2b1319bc17da952785f279da26c821c545194bf48c955c9fd3df6464621fdee69fa8b9fc1414e10c7d241706fd9e70a" next_state_root="700f5460e0f40dfde4508af21d931f6416a619a0365748c96fe669976451fb7b152cfe1da9f70bbbe678ef3b758d6bc5bd4fc8003dd28f1f682c166d68c0f686" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:52:52.366570Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 128, latest_finalized_slot_number: 127, sync_status: Synced { synced_da_height: 127 }, .. } -2026-04-20T10:52:52.366664Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=83 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 128, latest_finalized_slot_number: 127, sync_status: Synced { synced_da_height: 127 }, .. } -2026-04-20T10:52:52.366737Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=83 -2026-04-20T10:52:52.367006Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:52:52.367088Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=79 -2026-04-20T10:52:52.367201Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=123 -2026-04-20T10:52:52.367371Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:52:52.367562Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=123 sequence_number=202 -2026-04-20T10:52:52.367587Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=202 blob_id=2147877193209207784078904061568658723 visible_slot_number_after_increase=123 visible_slots_to_advance=1 -2026-04-20T10:52:52.367617Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:52:52.369396Z DEBUG manage_blob_submission_inside_task{blob_id=2147877193209207784078904061568658723 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xdc1e43158fdfca7353dcabb6e04e70ccc66e5e2dd1a9806a3115d730cf9eef29 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=129 include_at=129 bytes=13 time=671.195µs -2026-04-20T10:52:52.372768Z DEBUG compute_state_update{scope="sequencer" rollup_height=84 slot_number=123}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:52:52.372818Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000518038s -2026-04-20T10:52:52.372845Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:52:52.372851Z DEBUG compute_state_update{scope="sequencer" rollup_height=84 slot_number=123}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=700f5460e0f40dfde4508af21d931f6416a619a0365748c96fe669976451fb7b152cfe1da9f70bbbe678ef3b758d6bc5bd4fc8003dd28f1f682c166d68c0f686 next_version=129 sesssion_starting_time=4.763569ms -2026-04-20T10:52:52.373039Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:52:52.373120Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:52:52.373413Z DEBUG compute_state_update{scope="sequencer" rollup_height=84 slot_number=123}: sov_state::nomt::prover_storage: computed next state root state_root=480912c344668dddd49b01dd7f458821b1f0b6c4b6fd38cb5338ab2f8474b079331374884e68bf4a727b8f8f4c67980689913618573637d668a0b466bdf58d7c next_version=129 time=5.342846ms accesses_build_time=16.45µs finishing_session_time=539.617µs -2026-04-20T10:52:52.931836Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VY_g56BjQH2AvjTRHWX2Fg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:52:52.938809Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:52:52.952580Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1052410 cycles -2026-04-20T10:52:52.955219Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [38, 5, 231, 82, 242, 7, 149, 34, 222, 229, 162, 141, 241, 50, 43, 184, 146, 220, 89, 160, 190, 56, 13, 223, 152, 249, 48, 72, 147, 54, 36, 33, 86, 50, 89, 94, 1, 203, 137, 218, 11, 240, 46, 191, 204, 209, 64, 233, 51, 115, 83, 249, 238, 229, 138, 239, 220, 207, 136, 85, 157, 170, 147, 153, 38, 5, 231, 82, 242, 7, 149, 34, 222, 229, 162, 141, 241, 50, 43, 184, 146, 220, 89, 160, 190, 56, 13, 223, 152, 249, 48, 72, 147, 54, 36, 33, 59, 115, 121, 215, 241, 156, 246, 159, 78, 206, 56, 142, 24, 119, 234, 98, 161, 10, 84, 121, 204, 5, 60, 164, 32, 227, 248, 147, 209, 22, 209, 115, 58, 89, 82, 106, 238, 9, 20, 229, 100, 38, 143, 61, 163, 150, 38, 155, 233, 68, 161, 130, 152, 47, 217, 20, 122, 151, 36, 178, 209, 254, 28, 54, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:52:53.010050Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:52:53.010099Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:52:53.080172Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:52:53.114361Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1Vb17FnhS_G3pI-lR1A2DA==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:52:53.117206Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1Vb17FnhS_G3pI-lR1A2DA==: stderr: -2026-04-20T10:52:53.117230Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1Vb17FnhS_G3pI-lR1A2DA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:52:53.117240Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1Vb17FnhS_G3pI-lR1A2DA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:52:53.117247Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1Vb17FnhS_G3pI-lR1A2DA==: stderr: stack backtrace: -2026-04-20T10:52:53.117253Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1Vb17FnhS_G3pI-lR1A2DA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:52:53.117259Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1Vb17FnhS_G3pI-lR1A2DA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:52:53.117398Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:52:53.118142Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:52:53.118434Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:52:53.171369Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:52:53.171406Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:52:53.171564Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:52:53.171726Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:52:53.171761Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:52:53.172249Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=203 blob_id=2147877194181157266227708277971350536 -2026-04-20T10:52:53.730011Z DEBUG sp1_core_executor_runner::native: CHILD sp1_faSavFTQSvyewTZsAiukiQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:52:53.736209Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:52:53.747587Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 944796 cycles -2026-04-20T10:52:53.750300Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [38, 5, 231, 82, 242, 7, 149, 34, 222, 229, 162, 141, 241, 50, 43, 184, 146, 220, 89, 160, 190, 56, 13, 223, 152, 249, 48, 72, 147, 54, 36, 33, 0, 72, 83, 84, 191, 24, 40, 166, 228, 13, 130, 125, 88, 89, 176, 5, 40, 66, 73, 156, 98, 123, 97, 251, 114, 175, 19, 90, 5, 70, 206, 160, 38, 5, 231, 82, 242, 7, 149, 34, 222, 229, 162, 141, 241, 50, 43, 184, 146, 220, 89, 160, 190, 56, 13, 223, 152, 249, 48, 72, 147, 54, 36, 33, 7, 162, 41, 218, 185, 82, 109, 70, 40, 78, 221, 4, 104, 195, 5, 221, 6, 233, 141, 182, 212, 198, 45, 211, 112, 107, 211, 105, 76, 149, 113, 233, 66, 103, 22, 28, 158, 64, 197, 48, 212, 35, 164, 221, 175, 172, 38, 222, 195, 234, 133, 78, 208, 194, 133, 186, 153, 122, 37, 61, 42, 207, 250, 20, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:52:53.800425Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:52:53.800457Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:52:53.879364Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:52:53.911848Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xBca3xdHRv-Y5fX0tkLL6g==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:52:53.914730Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xBca3xdHRv-Y5fX0tkLL6g==: stderr: -2026-04-20T10:52:53.914743Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xBca3xdHRv-Y5fX0tkLL6g==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:52:53.914752Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xBca3xdHRv-Y5fX0tkLL6g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:52:53.914761Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xBca3xdHRv-Y5fX0tkLL6g==: stderr: stack backtrace: -2026-04-20T10:52:53.914767Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xBca3xdHRv-Y5fX0tkLL6g==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:52:53.914773Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xBca3xdHRv-Y5fX0tkLL6g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:52:53.914866Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:52:53.915713Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:52:53.916016Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:52:53.988032Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:52:53.988074Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:52:53.988216Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:52:53.988796Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=204 blob_id=2147877195168865285240420314208946633 -2026-04-20T10:52:58.356195Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=129 prev_hash=0x3092967555a1a2e170d1771477abb26865f55c3e41a12f837286823eed106602 hash=0xcab93c3e67943fe03df2a437121045b5cb022e930ccc8ff97b286de0ee261eac producing_time=1.162342ms -2026-04-20T10:52:58.364816Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=129 current_state_root="700f5460e0f40dfde4508af21d931f6416a619a0365748c96fe669976451fb7b152cfe1da9f70bbbe678ef3b758d6bc5bd4fc8003dd28f1f682c166d68c0f686" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xdc1e43158fdfca7353dcabb6e04e70ccc66e5e2dd1a9806a3115d730cf9eef29"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x022fcf9f9a742dea5986227a568480f315b73fdfca64b5ddc048c93eb1f927b3, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x33448d816c6e70ae0a837076f275f843a263a3c0820e0be05db8f44bf72408ad, len=625"] -2026-04-20T10:52:58.365066Z DEBUG StfBlueprint::apply_slot{context=Node da_height=129}: sov_chain_state: Setting next visible slot number next_visible_slot_number=123 -2026-04-20T10:52:58.365204Z DEBUG StfBlueprint::apply_slot{context=Node da_height=129}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xdc1e43158fdfca7353dcabb6e04e70ccc66e5e2dd1a9806a3115d730cf9eef29}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:52:58.365403Z DEBUG StfBlueprint::apply_slot{context=Node da_height=129}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=700f5460e0f40dfde4508af21d931f6416a619a0365748c96fe669976451fb7b152cfe1da9f70bbbe678ef3b758d6bc5bd4fc8003dd28f1f682c166d68c0f686 next_version=129 sesssion_starting_time=48.13µs -2026-04-20T10:52:58.366409Z DEBUG StfBlueprint::apply_slot{context=Node da_height=129}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=480912c344668dddd49b01dd7f458821b1f0b6c4b6fd38cb5338ab2f8474b0791732a3c9887b57dcc8ea86add0e5fd65fa4d9cb3c50d567d45292c614e073149 next_version=129 time=1.108172ms accesses_build_time=53.169µs finishing_session_time=955.533µs -2026-04-20T10:52:58.366608Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4418d4ccfdb1337dd9f6c776d2e0074bc2b1319bc17da952785f279da26c821c7e47a26efcd16786d98edb2e22f2dde582ac8b9b02e616790966508a749a0698" next_state_root="480912c344668dddd49b01dd7f458821b1f0b6c4b6fd38cb5338ab2f8474b0791732a3c9887b57dcc8ea86add0e5fd65fa4d9cb3c50d567d45292c614e073149" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:52:58.367099Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 129, latest_finalized_slot_number: 128, sync_status: Synced { synced_da_height: 128 }, .. } -2026-04-20T10:52:58.367177Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=84 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 129, latest_finalized_slot_number: 128, sync_status: Synced { synced_da_height: 128 }, .. } -2026-04-20T10:52:58.367235Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=84 -2026-04-20T10:52:58.377937Z DEBUG sov_stf_runner::runner: Block execution complete time=6.005094909s -2026-04-20T10:52:58.377955Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:52:58.378201Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:52:58.378282Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:52:58.935415Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pLUCKHS7QF-cLVpi42YamQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:52:58.952206Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:52:58.963738Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2416033 cycles -2026-04-20T10:52:58.966447Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [38, 5, 231, 82, 242, 7, 149, 34, 222, 229, 162, 141, 241, 50, 43, 184, 146, 220, 89, 160, 190, 56, 13, 223, 152, 249, 48, 72, 147, 54, 36, 33, 57, 31, 131, 251, 229, 35, 72, 21, 95, 207, 97, 149, 131, 149, 253, 144, 167, 174, 247, 105, 74, 72, 90, 87, 151, 89, 159, 107, 35, 200, 87, 124, 79, 100, 50, 227, 82, 160, 115, 59, 55, 135, 195, 188, 251, 155, 114, 5, 57, 40, 98, 18, 235, 124, 90, 177, 99, 120, 162, 136, 111, 10, 240, 99, 54, 115, 197, 220, 255, 119, 63, 130, 121, 32, 95, 251, 151, 103, 210, 241, 207, 224, 98, 118, 55, 71, 59, 49, 77, 238, 104, 81, 136, 110, 254, 63, 135, 66, 155, 213, 75, 39, 49, 105, 218, 68, 169, 140, 157, 177, 220, 71, 147, 55, 221, 44, 157, 159, 135, 38, 73, 108, 132, 63, 51, 4, 26, 46, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:52:59.072785Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:52:59.072824Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:52:59.086194Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:52:59.120602Z DEBUG sp1_core_executor_runner::native: CHILD sp1_6TwR7ZctQvCe3s5NQkXrlQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:52:59.123439Z DEBUG sp1_core_executor_runner::native: CHILD sp1_6TwR7ZctQvCe3s5NQkXrlQ==: stderr: -2026-04-20T10:52:59.123452Z DEBUG sp1_core_executor_runner::native: CHILD sp1_6TwR7ZctQvCe3s5NQkXrlQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:52:59.123461Z DEBUG sp1_core_executor_runner::native: CHILD sp1_6TwR7ZctQvCe3s5NQkXrlQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:52:59.123469Z DEBUG sp1_core_executor_runner::native: CHILD sp1_6TwR7ZctQvCe3s5NQkXrlQ==: stderr: stack backtrace: -2026-04-20T10:52:59.123475Z DEBUG sp1_core_executor_runner::native: CHILD sp1_6TwR7ZctQvCe3s5NQkXrlQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:52:59.123481Z DEBUG sp1_core_executor_runner::native: CHILD sp1_6TwR7ZctQvCe3s5NQkXrlQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:52:59.123558Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:52:59.124348Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:52:59.124636Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:52:59.195625Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:52:59.195668Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:52:59.195806Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:52:59.196302Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=205 blob_id=2147877201463745868458251650058751305 -2026-04-20T10:53:04.358005Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=130 prev_hash=0xcab93c3e67943fe03df2a437121045b5cb022e930ccc8ff97b286de0ee261eac hash=0x87d2d8362342d108a20d9650b507fafcacab0526fa05d8c4b169e449efde3e5c producing_time=1.098783ms -2026-04-20T10:53:04.359756Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=130 current_state_root="480912c344668dddd49b01dd7f458821b1f0b6c4b6fd38cb5338ab2f8474b0791732a3c9887b57dcc8ea86add0e5fd65fa4d9cb3c50d567d45292c614e073149" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x243d7c6e08d0fa0686227c0f525481c25cab420e8396838789253d1536930567, len=625"] -2026-04-20T10:53:04.360071Z DEBUG StfBlueprint::apply_slot{context=Node da_height=130}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=480912c344668dddd49b01dd7f458821b1f0b6c4b6fd38cb5338ab2f8474b0791732a3c9887b57dcc8ea86add0e5fd65fa4d9cb3c50d567d45292c614e073149 next_version=130 sesssion_starting_time=47.25µs -2026-04-20T10:53:04.360943Z DEBUG StfBlueprint::apply_slot{context=Node da_height=130}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=480912c344668dddd49b01dd7f458821b1f0b6c4b6fd38cb5338ab2f8474b07901fd3814b38adba91dd303388afd9a8bae372426b21899aea5ea39919658fb5d next_version=130 time=935.794µs accesses_build_time=15.41µs finishing_session_time=844.215µs -2026-04-20T10:53:04.361013Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="700f5460e0f40dfde4508af21d931f6416a619a0365748c96fe669976451fb7b152cfe1da9f70bbbe678ef3b758d6bc5bd4fc8003dd28f1f682c166d68c0f686" next_state_root="480912c344668dddd49b01dd7f458821b1f0b6c4b6fd38cb5338ab2f8474b07901fd3814b38adba91dd303388afd9a8bae372426b21899aea5ea39919658fb5d" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:53:04.361558Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 130, latest_finalized_slot_number: 129, sync_status: Synced { synced_da_height: 129 }, .. } -2026-04-20T10:53:04.361654Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=84 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 130, latest_finalized_slot_number: 129, sync_status: Synced { synced_da_height: 129 }, .. } -2026-04-20T10:53:04.361716Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=84 -2026-04-20T10:53:04.361998Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:53:04.362064Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=80 -2026-04-20T10:53:04.362169Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=125 -2026-04-20T10:53:04.362327Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:53:04.362659Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=125 sequence_number=206 -2026-04-20T10:53:04.362701Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=206 blob_id=2147877207710269097813361622158260778 visible_slot_number_after_increase=125 visible_slots_to_advance=2 -2026-04-20T10:53:04.362704Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:53:04.364293Z DEBUG manage_blob_submission_inside_task{blob_id=2147877207710269097813361622158260778 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xfb56d1ecde4950c3e7cd25c0db2be2f2f80babad2d30f32121b10d321d6481b8 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=131 include_at=131 bytes=13 time=534.276µs -2026-04-20T10:53:04.372060Z DEBUG compute_state_update{scope="sequencer" rollup_height=85 slot_number=125}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:53:04.372095Z DEBUG sov_stf_runner::runner: Block execution complete time=5.99414082s -2026-04-20T10:53:04.372123Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:53:04.372136Z DEBUG compute_state_update{scope="sequencer" rollup_height=85 slot_number=125}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=480912c344668dddd49b01dd7f458821b1f0b6c4b6fd38cb5338ab2f8474b07901fd3814b38adba91dd303388afd9a8bae372426b21899aea5ea39919658fb5d next_version=131 sesssion_starting_time=9.056932ms -2026-04-20T10:53:04.372919Z DEBUG compute_state_update{scope="sequencer" rollup_height=85 slot_number=125}: sov_state::nomt::prover_storage: computed next state root state_root=1c785ab426d67b0556240986575a4c9a67d48301761938f31046e6203752bf4d3ea61af2f82c9158b9945744d05ff0994f3265671a8175810f11ad92ab4182c1 next_version=131 time=9.854907ms accesses_build_time=14.08µs finishing_session_time=761.545µs -2026-04-20T10:53:10.360229Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=131 prev_hash=0x87d2d8362342d108a20d9650b507fafcacab0526fa05d8c4b169e449efde3e5c hash=0x208ddbb8b14723eb06ba49cd5202ccdfac0355e66ad1004898d61f7723ccf29d producing_time=1.218392ms -2026-04-20T10:53:10.364023Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=131 current_state_root="480912c344668dddd49b01dd7f458821b1f0b6c4b6fd38cb5338ab2f8474b07901fd3814b38adba91dd303388afd9a8bae372426b21899aea5ea39919658fb5d" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xfb56d1ecde4950c3e7cd25c0db2be2f2f80babad2d30f32121b10d321d6481b8"] proof_blobs=[] -2026-04-20T10:53:10.364342Z DEBUG StfBlueprint::apply_slot{context=Node da_height=131}: sov_chain_state: Setting next visible slot number next_visible_slot_number=125 -2026-04-20T10:53:10.364600Z DEBUG StfBlueprint::apply_slot{context=Node da_height=131}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xfb56d1ecde4950c3e7cd25c0db2be2f2f80babad2d30f32121b10d321d6481b8}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:53:10.364778Z DEBUG StfBlueprint::apply_slot{context=Node da_height=131}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=480912c344668dddd49b01dd7f458821b1f0b6c4b6fd38cb5338ab2f8474b07901fd3814b38adba91dd303388afd9a8bae372426b21899aea5ea39919658fb5d next_version=131 sesssion_starting_time=48.01µs -2026-04-20T10:53:10.365692Z DEBUG StfBlueprint::apply_slot{context=Node da_height=131}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=1c785ab426d67b0556240986575a4c9a67d48301761938f31046e6203752bf4d6b35e36922a58e7f831648c430b92e1929dd1a05a4ccff2447e2e572951fdd0b next_version=131 time=998.134µs accesses_build_time=34.83µs finishing_session_time=890.964µs -2026-04-20T10:53:10.365873Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="022fcf9f9a742dea5986227a568480f315b73fdfca64b5ddc048c93eb1f927b3" -2026-04-20T10:53:10.365890Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="33448d816c6e70ae0a837076f275f843a263a3c0820e0be05db8f44bf72408ad" -2026-04-20T10:53:10.365913Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="243d7c6e08d0fa0686227c0f525481c25cab420e8396838789253d1536930567" -2026-04-20T10:53:10.365925Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="480912c344668dddd49b01dd7f458821b1f0b6c4b6fd38cb5338ab2f8474b0791732a3c9887b57dcc8ea86add0e5fd65fa4d9cb3c50d567d45292c614e073149" next_state_root="1c785ab426d67b0556240986575a4c9a67d48301761938f31046e6203752bf4d6b35e36922a58e7f831648c430b92e1929dd1a05a4ccff2447e2e572951fdd0b" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:53:10.366483Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 131, latest_finalized_slot_number: 130, sync_status: Synced { synced_da_height: 130 }, .. } -2026-04-20T10:53:10.366561Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=85 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 131, latest_finalized_slot_number: 130, sync_status: Synced { synced_da_height: 130 }, .. } -2026-04-20T10:53:10.366621Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=85 -2026-04-20T10:53:10.366850Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:53:10.366911Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=81 -2026-04-20T10:53:10.367016Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=126 -2026-04-20T10:53:10.367155Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:53:10.367332Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=126 sequence_number=207 -2026-04-20T10:53:10.367370Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=207 blob_id=2147877214969838245483788708906131404 visible_slot_number_after_increase=126 visible_slots_to_advance=1 -2026-04-20T10:53:10.367390Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:53:10.369274Z DEBUG manage_blob_submission_inside_task{blob_id=2147877214969838245483788708906131404 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x8b510bb2bae3303b3860d10248e9148f49285cd6b79e050c61915b59cee155aa sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=132 include_at=132 bytes=13 time=513.847µs -2026-04-20T10:53:10.372502Z DEBUG compute_state_update{scope="sequencer" rollup_height=86 slot_number=126}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:53:10.372517Z DEBUG sov_stf_runner::runner: Block execution complete time=6.0003973s -2026-04-20T10:53:10.372552Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:53:10.372590Z DEBUG compute_state_update{scope="sequencer" rollup_height=86 slot_number=126}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1c785ab426d67b0556240986575a4c9a67d48301761938f31046e6203752bf4d6b35e36922a58e7f831648c430b92e1929dd1a05a4ccff2447e2e572951fdd0b next_version=132 sesssion_starting_time=4.769189ms -2026-04-20T10:53:10.372782Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:53:10.372863Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:53:10.373179Z DEBUG compute_state_update{scope="sequencer" rollup_height=86 slot_number=126}: sov_state::nomt::prover_storage: computed next state root state_root=6a165eba5480b08acaccf1e018170b97756d1dee411260344e00a20317a7117d75e7c9f6bc253b07966540086079bce7fdc51fed2f369f4246afd62856243aee next_version=132 time=5.372395ms accesses_build_time=12.46µs finishing_session_time=563.237µs -2026-04-20T10:53:10.929113Z DEBUG sp1_core_executor_runner::native: CHILD sp1_UsJ5vr2zQQ65irPpTRWKUA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:53:10.942560Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:53:10.954662Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1884596 cycles -2026-04-20T10:53:10.957268Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [41, 235, 212, 233, 122, 182, 44, 27, 69, 86, 226, 184, 129, 157, 122, 206, 218, 94, 18, 53, 24, 127, 16, 21, 56, 104, 250, 106, 191, 45, 189, 210, 61, 93, 209, 253, 157, 254, 71, 236, 13, 196, 7, 70, 122, 189, 120, 64, 94, 191, 53, 26, 230, 8, 26, 175, 74, 54, 214, 192, 192, 148, 79, 81, 106, 82, 217, 203, 40, 148, 91, 107, 196, 66, 29, 13, 79, 207, 175, 212, 21, 134, 71, 229, 14, 102, 48, 203, 195, 105, 203, 205, 201, 173, 165, 170, 30, 253, 16, 56, 142, 166, 226, 110, 240, 93, 181, 241, 224, 76, 4, 228, 133, 72, 248, 61, 175, 14, 243, 157, 124, 231, 168, 37, 122, 85, 231, 188, 26, 7, 100, 239, 45, 243, 240, 210, 240, 163, 102, 247, 238, 38, 17, 66, 120, 72, 59, 223, 191, 63, 88, 42, 126, 101, 7, 208, 20, 94, 20, 145, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:53:11.046966Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:53:11.047005Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:53:11.081434Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:53:11.116354Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-uej1XBtTTqcTmguD88J4w==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:53:11.119222Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-uej1XBtTTqcTmguD88J4w==: stderr: -2026-04-20T10:53:11.119245Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-uej1XBtTTqcTmguD88J4w==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:53:11.119254Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-uej1XBtTTqcTmguD88J4w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:53:11.119261Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-uej1XBtTTqcTmguD88J4w==: stderr: stack backtrace: -2026-04-20T10:53:11.119267Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-uej1XBtTTqcTmguD88J4w==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:53:11.119276Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-uej1XBtTTqcTmguD88J4w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:53:11.119339Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:53:11.120174Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:53:11.120498Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:53:11.147453Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:53:11.147476Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:53:11.147634Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:53:11.147811Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:53:11.147856Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:53:11.148215Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=208 blob_id=2147877215912817540378757561356975613 -2026-04-20T10:53:11.709293Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Jk_UPvRpQtGIfUVY03U8hw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:53:11.715794Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:53:11.727540Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 987776 cycles -2026-04-20T10:53:11.729998Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [26, 43, 221, 181, 255, 57, 96, 214, 64, 56, 57, 171, 26, 195, 39, 168, 20, 202, 138, 49, 211, 103, 141, 91, 202, 77, 32, 8, 67, 237, 135, 243, 112, 196, 138, 164, 116, 148, 211, 245, 68, 237, 240, 138, 66, 15, 228, 204, 94, 239, 141, 171, 39, 47, 123, 189, 93, 59, 247, 93, 165, 242, 95, 119, 26, 43, 221, 181, 255, 57, 96, 214, 64, 56, 57, 171, 26, 195, 39, 168, 20, 202, 138, 49, 211, 103, 141, 91, 202, 77, 32, 8, 67, 237, 135, 243, 72, 22, 113, 51, 142, 204, 245, 120, 224, 195, 130, 226, 238, 64, 58, 64, 170, 80, 239, 221, 147, 24, 107, 16, 111, 107, 165, 241, 220, 61, 34, 137, 188, 111, 82, 115, 14, 125, 135, 65, 30, 72, 190, 118, 113, 222, 191, 60, 70, 74, 140, 176, 117, 86, 39, 11, 20, 142, 46, 250, 195, 197, 230, 119, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:53:11.784220Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:53:11.784266Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:53:11.855938Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:53:11.891019Z DEBUG sp1_core_executor_runner::native: CHILD sp1_j7inKdr-Qc6fdgp9TwlN2g==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:53:11.893854Z DEBUG sp1_core_executor_runner::native: CHILD sp1_j7inKdr-Qc6fdgp9TwlN2g==: stderr: -2026-04-20T10:53:11.893867Z DEBUG sp1_core_executor_runner::native: CHILD sp1_j7inKdr-Qc6fdgp9TwlN2g==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:53:11.893876Z DEBUG sp1_core_executor_runner::native: CHILD sp1_j7inKdr-Qc6fdgp9TwlN2g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:53:11.893882Z DEBUG sp1_core_executor_runner::native: CHILD sp1_j7inKdr-Qc6fdgp9TwlN2g==: stderr: stack backtrace: -2026-04-20T10:53:11.893890Z DEBUG sp1_core_executor_runner::native: CHILD sp1_j7inKdr-Qc6fdgp9TwlN2g==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:53:11.893895Z DEBUG sp1_core_executor_runner::native: CHILD sp1_j7inKdr-Qc6fdgp9TwlN2g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:53:11.894020Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:53:11.894808Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:53:11.895098Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:53:11.961691Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:53:11.961745Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:53:11.961906Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:53:11.962459Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=209 blob_id=2147877216896928906616758736527533816 -2026-04-20T10:53:16.362410Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=132 prev_hash=0x208ddbb8b14723eb06ba49cd5202ccdfac0355e66ad1004898d61f7723ccf29d hash=0xa0307095fa21796588410d3de783e8ff2dff96e5b9e9d48ba6fe92615289c92d producing_time=1.479281ms -2026-04-20T10:53:16.364294Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=132 current_state_root="1c785ab426d67b0556240986575a4c9a67d48301761938f31046e6203752bf4d6b35e36922a58e7f831648c430b92e1929dd1a05a4ccff2447e2e572951fdd0b" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x8b510bb2bae3303b3860d10248e9148f49285cd6b79e050c61915b59cee155aa"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xbfa8812eb8749e8ce1fd9a73c7f6408fbba42faee09972b447373036a22d70a0, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x2bb9a54930004e8bbf09e91ba784cee8994163f5c4cf099f2b0ca4f7a22adafd, len=625"] -2026-04-20T10:53:16.364567Z DEBUG StfBlueprint::apply_slot{context=Node da_height=132}: sov_chain_state: Setting next visible slot number next_visible_slot_number=126 -2026-04-20T10:53:16.364701Z DEBUG StfBlueprint::apply_slot{context=Node da_height=132}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x8b510bb2bae3303b3860d10248e9148f49285cd6b79e050c61915b59cee155aa}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:53:16.364876Z DEBUG StfBlueprint::apply_slot{context=Node da_height=132}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1c785ab426d67b0556240986575a4c9a67d48301761938f31046e6203752bf4d6b35e36922a58e7f831648c430b92e1929dd1a05a4ccff2447e2e572951fdd0b next_version=132 sesssion_starting_time=46.45µs -2026-04-20T10:53:16.365794Z DEBUG StfBlueprint::apply_slot{context=Node da_height=132}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6a165eba5480b08acaccf1e018170b97756d1dee411260344e00a20317a7117d6db1fb15ea546e4d866d6b96ea1c574f60dcc74887a27fe61f7d73622b662838 next_version=132 time=997.783µs accesses_build_time=32.819µs finishing_session_time=891.634µs -2026-04-20T10:53:16.366003Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="480912c344668dddd49b01dd7f458821b1f0b6c4b6fd38cb5338ab2f8474b07901fd3814b38adba91dd303388afd9a8bae372426b21899aea5ea39919658fb5d" next_state_root="6a165eba5480b08acaccf1e018170b97756d1dee411260344e00a20317a7117d6db1fb15ea546e4d866d6b96ea1c574f60dcc74887a27fe61f7d73622b662838" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:53:16.366583Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 132, latest_finalized_slot_number: 131, sync_status: Synced { synced_da_height: 131 }, .. } -2026-04-20T10:53:16.366678Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=86 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 132, latest_finalized_slot_number: 131, sync_status: Synced { synced_da_height: 131 }, .. } -2026-04-20T10:53:16.366739Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=86 -2026-04-20T10:53:16.377354Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00480282s -2026-04-20T10:53:16.377383Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:53:16.377640Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:53:16.377724Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:53:16.949966Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EtLMqIDaTEK7OXR4ptjhHw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:53:16.967506Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:53:16.979552Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2589799 cycles -2026-04-20T10:53:16.982324Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [26, 43, 221, 181, 255, 57, 96, 214, 64, 56, 57, 171, 26, 195, 39, 168, 20, 202, 138, 49, 211, 103, 141, 91, 202, 77, 32, 8, 67, 237, 135, 243, 46, 76, 52, 105, 106, 212, 41, 157, 115, 177, 144, 8, 64, 176, 59, 155, 109, 3, 247, 229, 51, 205, 110, 214, 152, 194, 170, 4, 19, 23, 222, 122, 39, 18, 46, 238, 203, 143, 87, 43, 200, 66, 251, 14, 237, 192, 213, 112, 20, 6, 80, 134, 20, 24, 227, 152, 35, 77, 233, 245, 11, 160, 120, 10, 61, 208, 249, 5, 216, 201, 192, 206, 213, 6, 222, 132, 34, 233, 92, 114, 56, 205, 107, 79, 171, 125, 195, 233, 192, 123, 97, 225, 127, 200, 29, 107, 33, 71, 233, 68, 79, 160, 205, 205, 118, 114, 251, 61, 103, 220, 5, 56, 27, 112, 143, 208, 206, 156, 142, 87, 168, 236, 28, 78, 112, 87, 68, 99, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:53:17.091593Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:53:17.091626Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:53:17.187635Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:53:17.222959Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3764FJ_oSPWcl4LvdpEeYA==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:53:17.225830Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3764FJ_oSPWcl4LvdpEeYA==: stderr: -2026-04-20T10:53:17.225854Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3764FJ_oSPWcl4LvdpEeYA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:53:17.225865Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3764FJ_oSPWcl4LvdpEeYA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:53:17.225871Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3764FJ_oSPWcl4LvdpEeYA==: stderr: stack backtrace: -2026-04-20T10:53:17.225878Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3764FJ_oSPWcl4LvdpEeYA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:53:17.225884Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3764FJ_oSPWcl4LvdpEeYA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:53:17.225964Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:53:17.226776Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:53:17.227077Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:53:17.295093Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:53:17.295137Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:53:17.295355Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:53:17.295903Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=210 blob_id=2147877223345313808635377955847446580 -2026-04-20T10:53:22.365127Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=133 prev_hash=0xa0307095fa21796588410d3de783e8ff2dff96e5b9e9d48ba6fe92615289c92d hash=0x27a3ccdda8dc040d567a3b7fae4550fa30f4162a643e34654ae2985fe90632d8 producing_time=1.410491ms -2026-04-20T10:53:22.370005Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=133 current_state_root="6a165eba5480b08acaccf1e018170b97756d1dee411260344e00a20317a7117d6db1fb15ea546e4d866d6b96ea1c574f60dcc74887a27fe61f7d73622b662838" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x8fbfe061d1250734b3fc940b844039bd58d0b5ac5872de0609f625c8af8a8a60, len=625"] -2026-04-20T10:53:22.370378Z DEBUG StfBlueprint::apply_slot{context=Node da_height=133}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6a165eba5480b08acaccf1e018170b97756d1dee411260344e00a20317a7117d6db1fb15ea546e4d866d6b96ea1c574f60dcc74887a27fe61f7d73622b662838 next_version=133 sesssion_starting_time=48.039µs -2026-04-20T10:53:22.371272Z DEBUG StfBlueprint::apply_slot{context=Node da_height=133}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6a165eba5480b08acaccf1e018170b97756d1dee411260344e00a20317a7117d5fde22500958e920c2e7f6c75a1d1ec89e525eb3a8edde14aeb0889b29e2cf3d next_version=133 time=974.253µs accesses_build_time=31.269µs finishing_session_time=851.925µs -2026-04-20T10:53:22.371359Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="1c785ab426d67b0556240986575a4c9a67d48301761938f31046e6203752bf4d6b35e36922a58e7f831648c430b92e1929dd1a05a4ccff2447e2e572951fdd0b" next_state_root="6a165eba5480b08acaccf1e018170b97756d1dee411260344e00a20317a7117d5fde22500958e920c2e7f6c75a1d1ec89e525eb3a8edde14aeb0889b29e2cf3d" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:53:22.371933Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 133, latest_finalized_slot_number: 132, sync_status: Synced { synced_da_height: 132 }, .. } -2026-04-20T10:53:22.372020Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=86 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 133, latest_finalized_slot_number: 132, sync_status: Synced { synced_da_height: 132 }, .. } -2026-04-20T10:53:22.372092Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=86 -2026-04-20T10:53:22.372328Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:53:22.372413Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=82 -2026-04-20T10:53:22.372555Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=128 -2026-04-20T10:53:22.372752Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:53:22.373068Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=128 sequence_number=211 -2026-04-20T10:53:22.373103Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=211 blob_id=2147877229484229102116670266934314224 visible_slot_number_after_increase=128 visible_slots_to_advance=2 -2026-04-20T10:53:22.373130Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:53:22.374638Z DEBUG manage_blob_submission_inside_task{blob_id=2147877229484229102116670266934314224 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x187223f3ea6a6e68608f39eace246f33ec689da3d949bbe557c000023c83188a sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=134 include_at=134 bytes=13 time=507.387µs -2026-04-20T10:53:22.386265Z DEBUG compute_state_update{scope="sequencer" rollup_height=87 slot_number=128}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:53:22.386303Z DEBUG sov_stf_runner::runner: Block execution complete time=6.008921165s -2026-04-20T10:53:22.386349Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:53:22.386350Z DEBUG compute_state_update{scope="sequencer" rollup_height=87 slot_number=128}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6a165eba5480b08acaccf1e018170b97756d1dee411260344e00a20317a7117d5fde22500958e920c2e7f6c75a1d1ec89e525eb3a8edde14aeb0889b29e2cf3d next_version=134 sesssion_starting_time=12.771307ms -2026-04-20T10:53:22.387038Z DEBUG compute_state_update{scope="sequencer" rollup_height=87 slot_number=128}: sov_state::nomt::prover_storage: computed next state root state_root=4f007741e8be2bb0a5dd19ff3ad32ca2fa5b4ba9e1b43676f35e17c7ce305f975ac5b45bbc5f266d614665b8e9207014cf10bf7ae7d0ed902b659f55fa79e4c3 next_version=134 time=13.476443ms accesses_build_time=16.099µs finishing_session_time=666.386µs -2026-04-20T10:53:28.367190Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=134 prev_hash=0x27a3ccdda8dc040d567a3b7fae4550fa30f4162a643e34654ae2985fe90632d8 hash=0x2ab96fd299ceefc812840403506d961507ef88670bc3e961e56e49f53cc0203e producing_time=1.637559ms -2026-04-20T10:53:28.367803Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=134 current_state_root="6a165eba5480b08acaccf1e018170b97756d1dee411260344e00a20317a7117d5fde22500958e920c2e7f6c75a1d1ec89e525eb3a8edde14aeb0889b29e2cf3d" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x187223f3ea6a6e68608f39eace246f33ec689da3d949bbe557c000023c83188a"] proof_blobs=[] -2026-04-20T10:53:28.368073Z DEBUG StfBlueprint::apply_slot{context=Node da_height=134}: sov_chain_state: Setting next visible slot number next_visible_slot_number=128 -2026-04-20T10:53:28.368343Z DEBUG StfBlueprint::apply_slot{context=Node da_height=134}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x187223f3ea6a6e68608f39eace246f33ec689da3d949bbe557c000023c83188a}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:53:28.368536Z DEBUG StfBlueprint::apply_slot{context=Node da_height=134}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6a165eba5480b08acaccf1e018170b97756d1dee411260344e00a20317a7117d5fde22500958e920c2e7f6c75a1d1ec89e525eb3a8edde14aeb0889b29e2cf3d next_version=134 sesssion_starting_time=49.309µs -2026-04-20T10:53:28.369491Z DEBUG StfBlueprint::apply_slot{context=Node da_height=134}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4f007741e8be2bb0a5dd19ff3ad32ca2fa5b4ba9e1b43676f35e17c7ce305f9745c665fcce84defaafb04f47c8177dac584b9e363e897a861cc9111b78950551 next_version=134 time=1.041243ms accesses_build_time=36.09µs finishing_session_time=931.524µs -2026-04-20T10:53:28.369680Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="bfa8812eb8749e8ce1fd9a73c7f6408fbba42faee09972b447373036a22d70a0" -2026-04-20T10:53:28.369697Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="2bb9a54930004e8bbf09e91ba784cee8994163f5c4cf099f2b0ca4f7a22adafd" -2026-04-20T10:53:28.369707Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="8fbfe061d1250734b3fc940b844039bd58d0b5ac5872de0609f625c8af8a8a60" -2026-04-20T10:53:28.369735Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6a165eba5480b08acaccf1e018170b97756d1dee411260344e00a20317a7117d6db1fb15ea546e4d866d6b96ea1c574f60dcc74887a27fe61f7d73622b662838" next_state_root="4f007741e8be2bb0a5dd19ff3ad32ca2fa5b4ba9e1b43676f35e17c7ce305f9745c665fcce84defaafb04f47c8177dac584b9e363e897a861cc9111b78950551" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:53:28.370234Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 134, latest_finalized_slot_number: 133, sync_status: Synced { synced_da_height: 133 }, .. } -2026-04-20T10:53:28.370309Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=87 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 134, latest_finalized_slot_number: 133, sync_status: Synced { synced_da_height: 133 }, .. } -2026-04-20T10:53:28.370402Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=87 -2026-04-20T10:53:28.370671Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:53:28.370758Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=83 -2026-04-20T10:53:28.370846Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=129 -2026-04-20T10:53:28.370956Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:53:28.371103Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=129 sequence_number=212 -2026-04-20T10:53:28.371126Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=212 blob_id=2147877236735392178400574985840287585 visible_slot_number_after_increase=129 visible_slots_to_advance=1 -2026-04-20T10:53:28.371151Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:53:28.372784Z DEBUG manage_blob_submission_inside_task{blob_id=2147877236735392178400574985840287585 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x483a2a82f49b780ca43a9d9b475299b1d0e94bfd8f128c5b9a47a322dd7604cd sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=135 include_at=135 bytes=13 time=596.866µs -2026-04-20T10:53:28.380594Z DEBUG compute_state_update{scope="sequencer" rollup_height=88 slot_number=129}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:53:28.380633Z DEBUG sov_stf_runner::runner: Block execution complete time=5.99428768s -2026-04-20T10:53:28.380652Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:53:28.380658Z DEBUG compute_state_update{scope="sequencer" rollup_height=88 slot_number=129}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4f007741e8be2bb0a5dd19ff3ad32ca2fa5b4ba9e1b43676f35e17c7ce305f9745c665fcce84defaafb04f47c8177dac584b9e363e897a861cc9111b78950551 next_version=135 sesssion_starting_time=9.076031ms -2026-04-20T10:53:28.380837Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:53:28.380943Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:53:28.381304Z DEBUG compute_state_update{scope="sequencer" rollup_height=88 slot_number=129}: sov_state::nomt::prover_storage: computed next state root state_root=4c67498b64d324427bdbd72bcf998948382febb2c3dbe190cf6f0ea06ee262d8635ff8a4844d81b878a7ca48a58692e2964c82a1b249f94fc562f1991db68ded next_version=135 time=9.736307ms accesses_build_time=13.73µs finishing_session_time=627.546µs -2026-04-20T10:53:28.937599Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zxLNWmGGSQ2NXywYfg5nuw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:53:28.950515Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:53:28.962507Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1837552 cycles -2026-04-20T10:53:28.965079Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [68, 220, 100, 202, 193, 197, 134, 171, 240, 29, 12, 177, 171, 143, 48, 78, 197, 133, 201, 248, 10, 222, 231, 157, 179, 227, 225, 248, 54, 113, 251, 54, 127, 73, 192, 133, 141, 44, 24, 38, 212, 49, 210, 177, 138, 247, 251, 171, 217, 214, 209, 238, 213, 83, 14, 248, 238, 231, 157, 161, 18, 54, 1, 85, 94, 190, 211, 3, 211, 232, 132, 216, 54, 252, 178, 229, 104, 235, 174, 48, 238, 187, 29, 100, 44, 10, 165, 85, 200, 238, 9, 4, 206, 215, 98, 120, 123, 46, 182, 152, 11, 207, 94, 10, 199, 172, 17, 216, 93, 213, 10, 31, 253, 200, 233, 223, 41, 138, 155, 163, 227, 8, 221, 17, 81, 206, 231, 153, 93, 200, 205, 233, 239, 108, 27, 122, 52, 103, 183, 143, 95, 20, 87, 206, 255, 9, 254, 1, 58, 61, 130, 157, 95, 31, 12, 101, 239, 187, 123, 245, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:53:29.055969Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:53:29.056019Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:53:29.088661Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:53:29.123053Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QLJH7r8cQimHCQ564fcBtg==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:53:29.125864Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QLJH7r8cQimHCQ564fcBtg==: stderr: -2026-04-20T10:53:29.125877Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QLJH7r8cQimHCQ564fcBtg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:53:29.125888Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QLJH7r8cQimHCQ564fcBtg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:53:29.125894Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QLJH7r8cQimHCQ564fcBtg==: stderr: stack backtrace: -2026-04-20T10:53:29.125900Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QLJH7r8cQimHCQ564fcBtg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:53:29.125906Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QLJH7r8cQimHCQ564fcBtg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:53:29.126007Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:53:29.126817Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:53:29.127113Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:53:29.192422Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:53:29.192466Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:53:29.192622Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:53:29.192771Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:53:29.192828Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:53:29.193179Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=213 blob_id=2147877237727896077607461843137229852 -2026-04-20T10:53:29.759217Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hUvuCgp5R7WepcTYaEj-ZA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:53:29.765920Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:53:29.776208Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1007319 cycles -2026-04-20T10:53:29.778897Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [68, 24, 212, 204, 253, 177, 51, 125, 217, 246, 199, 118, 210, 224, 7, 75, 194, 177, 49, 155, 193, 125, 169, 82, 120, 95, 39, 157, 162, 108, 130, 28, 84, 81, 148, 191, 72, 201, 85, 201, 253, 61, 246, 70, 70, 33, 253, 238, 105, 250, 139, 159, 193, 65, 78, 16, 199, 210, 65, 112, 111, 217, 231, 10, 68, 24, 212, 204, 253, 177, 51, 125, 217, 246, 199, 118, 210, 224, 7, 75, 194, 177, 49, 155, 193, 125, 169, 82, 120, 95, 39, 157, 162, 108, 130, 28, 23, 131, 193, 151, 239, 208, 167, 247, 97, 255, 177, 22, 34, 237, 196, 121, 145, 200, 243, 187, 75, 219, 156, 64, 154, 11, 20, 31, 104, 113, 246, 209, 122, 251, 249, 223, 87, 229, 4, 163, 40, 214, 163, 10, 58, 113, 140, 235, 122, 128, 178, 45, 204, 235, 246, 255, 211, 7, 169, 216, 140, 109, 132, 26, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:53:29.835564Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:53:29.835605Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:53:29.900304Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:53:29.935098Z DEBUG sp1_core_executor_runner::native: CHILD sp1_80lkAQeTSyiHCXmB_X6Z6g==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:53:29.937927Z DEBUG sp1_core_executor_runner::native: CHILD sp1_80lkAQeTSyiHCXmB_X6Z6g==: stderr: -2026-04-20T10:53:29.937940Z DEBUG sp1_core_executor_runner::native: CHILD sp1_80lkAQeTSyiHCXmB_X6Z6g==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:53:29.937951Z DEBUG sp1_core_executor_runner::native: CHILD sp1_80lkAQeTSyiHCXmB_X6Z6g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:53:29.937958Z DEBUG sp1_core_executor_runner::native: CHILD sp1_80lkAQeTSyiHCXmB_X6Z6g==: stderr: stack backtrace: -2026-04-20T10:53:29.937964Z DEBUG sp1_core_executor_runner::native: CHILD sp1_80lkAQeTSyiHCXmB_X6Z6g==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:53:29.937970Z DEBUG sp1_core_executor_runner::native: CHILD sp1_80lkAQeTSyiHCXmB_X6Z6g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:53:29.938106Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:53:29.938891Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:53:29.939188Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:53:30.004706Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:53:30.004750Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:53:30.004929Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:53:30.005458Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=214 blob_id=2147877238709529915165898823085703537 -2026-04-20T10:53:34.369982Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=135 prev_hash=0x2ab96fd299ceefc812840403506d961507ef88670bc3e961e56e49f53cc0203e hash=0xd9194d13037423a58698d70a4b90c60bf255a53b3c8c1f3bef78ef1d9ae5830a producing_time=1.57048ms -2026-04-20T10:53:34.372756Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=135 current_state_root="4f007741e8be2bb0a5dd19ff3ad32ca2fa5b4ba9e1b43676f35e17c7ce305f9745c665fcce84defaafb04f47c8177dac584b9e363e897a861cc9111b78950551" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x483a2a82f49b780ca43a9d9b475299b1d0e94bfd8f128c5b9a47a322dd7604cd"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x376e38540f94760ca8fed9d5bcd6174a48ffe69917e3522cef9298ef9b8d763d, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0cd4bb32c16dc6d1cd46b994d2fb6cae174596ca5eb3ff7dd88cabc5767cbe0e, len=625"] -2026-04-20T10:53:34.373006Z DEBUG StfBlueprint::apply_slot{context=Node da_height=135}: sov_chain_state: Setting next visible slot number next_visible_slot_number=129 -2026-04-20T10:53:34.373142Z DEBUG StfBlueprint::apply_slot{context=Node da_height=135}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x483a2a82f49b780ca43a9d9b475299b1d0e94bfd8f128c5b9a47a322dd7604cd}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:53:34.373341Z DEBUG StfBlueprint::apply_slot{context=Node da_height=135}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4f007741e8be2bb0a5dd19ff3ad32ca2fa5b4ba9e1b43676f35e17c7ce305f9745c665fcce84defaafb04f47c8177dac584b9e363e897a861cc9111b78950551 next_version=135 sesssion_starting_time=68.2µs -2026-04-20T10:53:34.374401Z DEBUG StfBlueprint::apply_slot{context=Node da_height=135}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4c67498b64d324427bdbd72bcf998948382febb2c3dbe190cf6f0ea06ee262d85aa9768806f1827bf64fe942e59555ebfe8e8c47d55a8369272f54a1ae2a884e next_version=135 time=1.162052ms accesses_build_time=33.14µs finishing_session_time=1.028864ms -2026-04-20T10:53:34.374606Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6a165eba5480b08acaccf1e018170b97756d1dee411260344e00a20317a7117d5fde22500958e920c2e7f6c75a1d1ec89e525eb3a8edde14aeb0889b29e2cf3d" next_state_root="4c67498b64d324427bdbd72bcf998948382febb2c3dbe190cf6f0ea06ee262d85aa9768806f1827bf64fe942e59555ebfe8e8c47d55a8369272f54a1ae2a884e" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:53:34.375082Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 135, latest_finalized_slot_number: 134, sync_status: Synced { synced_da_height: 134 }, .. } -2026-04-20T10:53:34.375166Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=88 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 135, latest_finalized_slot_number: 134, sync_status: Synced { synced_da_height: 134 }, .. } -2026-04-20T10:53:34.375225Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=88 -2026-04-20T10:53:34.389422Z DEBUG sov_stf_runner::runner: Block execution complete time=6.008770837s -2026-04-20T10:53:34.389460Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:53:34.389661Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:53:34.389745Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:53:34.946790Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aUhvFsRmSrm_3K7Ja8hCdQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:53:34.964227Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:53:34.975065Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2566722 cycles -2026-04-20T10:53:34.977566Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [68, 24, 212, 204, 253, 177, 51, 125, 217, 246, 199, 118, 210, 224, 7, 75, 194, 177, 49, 155, 193, 125, 169, 82, 120, 95, 39, 157, 162, 108, 130, 28, 126, 71, 162, 110, 252, 209, 103, 134, 217, 142, 219, 46, 34, 242, 221, 229, 130, 172, 139, 155, 2, 230, 22, 121, 9, 102, 80, 138, 116, 154, 6, 152, 94, 77, 94, 235, 60, 151, 39, 87, 179, 144, 205, 68, 66, 24, 205, 198, 177, 130, 139, 101, 65, 148, 51, 212, 42, 178, 87, 18, 143, 224, 110, 247, 101, 147, 139, 242, 209, 186, 122, 19, 85, 36, 146, 0, 186, 147, 29, 191, 131, 184, 86, 143, 238, 71, 231, 169, 168, 254, 183, 182, 178, 48, 185, 147, 48, 146, 150, 117, 85, 161, 162, 225, 112, 209, 119, 20, 119, 171, 178, 104, 101, 245, 92, 62, 65, 161, 47, 131, 114, 134, 130, 62, 237, 16, 102, 2, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:53:35.091020Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:53:35.091059Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:53:35.197819Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:53:35.232475Z DEBUG sp1_core_executor_runner::native: CHILD sp1_J53YGiAARNm1LObDGroyfQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:53:35.235331Z DEBUG sp1_core_executor_runner::native: CHILD sp1_J53YGiAARNm1LObDGroyfQ==: stderr: -2026-04-20T10:53:35.235356Z DEBUG sp1_core_executor_runner::native: CHILD sp1_J53YGiAARNm1LObDGroyfQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:53:35.235367Z DEBUG sp1_core_executor_runner::native: CHILD sp1_J53YGiAARNm1LObDGroyfQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:53:35.235373Z DEBUG sp1_core_executor_runner::native: CHILD sp1_J53YGiAARNm1LObDGroyfQ==: stderr: stack backtrace: -2026-04-20T10:53:35.235380Z DEBUG sp1_core_executor_runner::native: CHILD sp1_J53YGiAARNm1LObDGroyfQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:53:35.235386Z DEBUG sp1_core_executor_runner::native: CHILD sp1_J53YGiAARNm1LObDGroyfQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:53:35.235527Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:53:35.236274Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:53:35.236575Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:53:35.308181Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:53:35.308224Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:53:35.308421Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:53:35.309122Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=215 blob_id=2147877245121717672895875323203023729 -2026-04-20T10:53:40.371928Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=136 prev_hash=0xd9194d13037423a58698d70a4b90c60bf255a53b3c8c1f3bef78ef1d9ae5830a hash=0x1b56506e93dbed9322562861c0f003ab8e941d6d12aee90318e9ce664f827be2 producing_time=1.301971ms -2026-04-20T10:53:40.381772Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=136 current_state_root="4c67498b64d324427bdbd72bcf998948382febb2c3dbe190cf6f0ea06ee262d85aa9768806f1827bf64fe942e59555ebfe8e8c47d55a8369272f54a1ae2a884e" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x08089079fc2bbbef02aa8455e20813bde40616aec4754f8179df23e447878895, len=625"] -2026-04-20T10:53:40.382111Z DEBUG StfBlueprint::apply_slot{context=Node da_height=136}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4c67498b64d324427bdbd72bcf998948382febb2c3dbe190cf6f0ea06ee262d85aa9768806f1827bf64fe942e59555ebfe8e8c47d55a8369272f54a1ae2a884e next_version=136 sesssion_starting_time=46.819µs -2026-04-20T10:53:40.382965Z DEBUG StfBlueprint::apply_slot{context=Node da_height=136}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4c67498b64d324427bdbd72bcf998948382febb2c3dbe190cf6f0ea06ee262d859a07a45a208fa503b440049288744052f0506907528321cb0622ac417af6408 next_version=136 time=917.904µs accesses_build_time=16.47µs finishing_session_time=824.185µs -2026-04-20T10:53:40.383049Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4f007741e8be2bb0a5dd19ff3ad32ca2fa5b4ba9e1b43676f35e17c7ce305f9745c665fcce84defaafb04f47c8177dac584b9e363e897a861cc9111b78950551" next_state_root="4c67498b64d324427bdbd72bcf998948382febb2c3dbe190cf6f0ea06ee262d859a07a45a208fa503b440049288744052f0506907528321cb0622ac417af6408" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:53:40.383571Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 136, latest_finalized_slot_number: 136, sync_status: Synced { synced_da_height: 135 }, .. } -2026-04-20T10:53:40.383655Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=88 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 136, latest_finalized_slot_number: 136, sync_status: Synced { synced_da_height: 135 }, .. } -2026-04-20T10:53:40.383715Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=88 -2026-04-20T10:53:40.383940Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=3 -2026-04-20T10:53:40.384000Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=84 -2026-04-20T10:53:40.384091Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=132 -2026-04-20T10:53:40.384245Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:53:40.384575Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=3 visible_slot_number_after_increase=132 sequence_number=216 -2026-04-20T10:53:40.384615Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=216 blob_id=2147877251258190250736638065071148541 visible_slot_number_after_increase=132 visible_slots_to_advance=3 -2026-04-20T10:53:40.384631Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:53:40.386277Z DEBUG manage_blob_submission_inside_task{blob_id=2147877251258190250736638065071148541 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x83726b194f616f8d82df0185f7a95ed5f4c804121ec538941ceafb26c8a71124 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=137 include_at=137 bytes=13 time=565.276µs -2026-04-20T10:53:40.403322Z DEBUG compute_state_update{scope="sequencer" rollup_height=89 slot_number=132}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:53:40.403351Z DEBUG compute_state_update{scope="sequencer" rollup_height=89 slot_number=132}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:53:40.403362Z DEBUG sov_stf_runner::runner: Block execution complete time=6.013903324s -2026-04-20T10:53:40.403382Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:53:40.403411Z DEBUG compute_state_update{scope="sequencer" rollup_height=89 slot_number=132}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4c67498b64d324427bdbd72bcf998948382febb2c3dbe190cf6f0ea06ee262d859a07a45a208fa503b440049288744052f0506907528321cb0622ac417af6408 next_version=137 sesssion_starting_time=18.388602ms -2026-04-20T10:53:40.404159Z DEBUG compute_state_update{scope="sequencer" rollup_height=89 slot_number=132}: sov_state::nomt::prover_storage: computed next state root state_root=28f86d794dabf654ed30984deae73eadae21938915f6e37428692dad7b0cc38f112e040f8a89463a7f652a19f25bb35491310c3b3f3c155b03d2f25fa9975f31 next_version=137 time=19.154966ms accesses_build_time=17.12µs finishing_session_time=726.445µs -2026-04-20T10:53:46.374213Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=137 prev_hash=0x1b56506e93dbed9322562861c0f003ab8e941d6d12aee90318e9ce664f827be2 hash=0x9b89643084277310c142b5771ee3853f0af0e733982234979a4058535f384447 producing_time=1.179572ms -2026-04-20T10:53:46.375842Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=137 current_state_root="4c67498b64d324427bdbd72bcf998948382febb2c3dbe190cf6f0ea06ee262d859a07a45a208fa503b440049288744052f0506907528321cb0622ac417af6408" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x83726b194f616f8d82df0185f7a95ed5f4c804121ec538941ceafb26c8a71124"] proof_blobs=[] -2026-04-20T10:53:46.376163Z DEBUG StfBlueprint::apply_slot{context=Node da_height=137}: sov_chain_state: Setting next visible slot number next_visible_slot_number=132 -2026-04-20T10:53:46.376443Z DEBUG StfBlueprint::apply_slot{context=Node da_height=137}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x83726b194f616f8d82df0185f7a95ed5f4c804121ec538941ceafb26c8a71124}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:53:46.376653Z DEBUG StfBlueprint::apply_slot{context=Node da_height=137}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4c67498b64d324427bdbd72bcf998948382febb2c3dbe190cf6f0ea06ee262d859a07a45a208fa503b440049288744052f0506907528321cb0622ac417af6408 next_version=137 sesssion_starting_time=48.309µs -2026-04-20T10:53:46.377679Z DEBUG StfBlueprint::apply_slot{context=Node da_height=137}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=28f86d794dabf654ed30984deae73eadae21938915f6e37428692dad7b0cc38f4c6d8441d0f57c02b0e0c27cc1fbdf69e51c583700116ef41c6bc2cd968e2267 next_version=137 time=1.112973ms accesses_build_time=37.409µs finishing_session_time=997.354µs -2026-04-20T10:53:46.377898Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="376e38540f94760ca8fed9d5bcd6174a48ffe69917e3522cef9298ef9b8d763d" -2026-04-20T10:53:46.377921Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="0cd4bb32c16dc6d1cd46b994d2fb6cae174596ca5eb3ff7dd88cabc5767cbe0e" -2026-04-20T10:53:46.377930Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="08089079fc2bbbef02aa8455e20813bde40616aec4754f8179df23e447878895" -2026-04-20T10:53:46.377959Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4c67498b64d324427bdbd72bcf998948382febb2c3dbe190cf6f0ea06ee262d859a07a45a208fa503b440049288744052f0506907528321cb0622ac417af6408" next_state_root="28f86d794dabf654ed30984deae73eadae21938915f6e37428692dad7b0cc38f4c6d8441d0f57c02b0e0c27cc1fbdf69e51c583700116ef41c6bc2cd968e2267" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:53:46.378476Z DEBUG sov_stf_runner::runner: Block execution complete time=5.975096215s -2026-04-20T10:53:46.378510Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:53:46.378543Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 137, latest_finalized_slot_number: 136, sync_status: Synced { synced_da_height: 136 }, .. } -2026-04-20T10:53:46.378617Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=89 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 137, latest_finalized_slot_number: 136, sync_status: Synced { synced_da_height: 136 }, .. } -2026-04-20T10:53:46.378678Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=89 -2026-04-20T10:53:46.378760Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:53:46.378848Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:53:46.378919Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:53:46.378979Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=85 -2026-04-20T10:53:46.379059Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=133 -2026-04-20T10:53:46.379153Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:53:46.379286Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=133 sequence_number=217 -2026-04-20T10:53:46.379339Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:53:46.379347Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=217 blob_id=2147877258505714448900053239086444424 visible_slot_number_after_increase=133 visible_slots_to_advance=1 -2026-04-20T10:53:46.379808Z DEBUG compute_state_update{scope="sequencer" rollup_height=90 slot_number=133}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=28f86d794dabf654ed30984deae73eadae21938915f6e37428692dad7b0cc38f4c6d8441d0f57c02b0e0c27cc1fbdf69e51c583700116ef41c6bc2cd968e2267 next_version=138 sesssion_starting_time=52.15µs -2026-04-20T10:53:46.380542Z DEBUG compute_state_update{scope="sequencer" rollup_height=90 slot_number=133}: sov_state::nomt::prover_storage: computed next state root state_root=1347c6072ff9d22a62c8eca9c6f563d0d88c50f4fb5d2883c2c6540295367d22053dff27bd0ba7814f708e07c9b861fd206f196f13f6c9187c38a27aa2b47be6 next_version=138 time=801.665µs accesses_build_time=13.76µs finishing_session_time=690.455µs -2026-04-20T10:53:46.381390Z DEBUG manage_blob_submission_inside_task{blob_id=2147877258505714448900053239086444424 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xa706e4662110a908a9f53d27858d227502a44366b0be1d0d7f8869d550e62e61 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=138 include_at=138 bytes=13 time=510.117µs -2026-04-20T10:53:46.935632Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ir8C4edQTaKpiEN-Rtuw1w==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:53:46.949404Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:53:46.961074Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1935164 cycles -2026-04-20T10:53:46.963452Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [112, 15, 84, 96, 224, 244, 13, 253, 228, 80, 138, 242, 29, 147, 31, 100, 22, 166, 25, 160, 54, 87, 72, 201, 111, 230, 105, 151, 100, 81, 251, 123, 21, 44, 254, 29, 169, 247, 11, 187, 230, 120, 239, 59, 117, 141, 107, 197, 189, 79, 200, 0, 61, 210, 143, 31, 104, 44, 22, 109, 104, 192, 246, 134, 110, 207, 51, 180, 112, 6, 226, 32, 251, 95, 203, 104, 124, 170, 199, 49, 139, 232, 216, 180, 109, 169, 179, 122, 138, 90, 84, 114, 229, 247, 132, 147, 37, 59, 131, 98, 44, 205, 210, 214, 137, 240, 233, 141, 22, 104, 17, 101, 178, 99, 4, 254, 82, 61, 103, 56, 169, 167, 166, 169, 148, 50, 230, 227, 202, 185, 60, 62, 103, 148, 63, 224, 61, 242, 164, 55, 18, 16, 69, 181, 203, 2, 46, 147, 12, 204, 143, 249, 123, 40, 109, 224, 238, 38, 30, 172, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:53:47.056732Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:53:47.056781Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:53:47.086853Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:53:47.120795Z DEBUG sp1_core_executor_runner::native: CHILD sp1_o3BYmLNvSNSsv1WvICLsjg==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:53:47.123662Z DEBUG sp1_core_executor_runner::native: CHILD sp1_o3BYmLNvSNSsv1WvICLsjg==: stderr: -2026-04-20T10:53:47.123686Z DEBUG sp1_core_executor_runner::native: CHILD sp1_o3BYmLNvSNSsv1WvICLsjg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:53:47.123697Z DEBUG sp1_core_executor_runner::native: CHILD sp1_o3BYmLNvSNSsv1WvICLsjg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:53:47.123704Z DEBUG sp1_core_executor_runner::native: CHILD sp1_o3BYmLNvSNSsv1WvICLsjg==: stderr: stack backtrace: -2026-04-20T10:53:47.123710Z DEBUG sp1_core_executor_runner::native: CHILD sp1_o3BYmLNvSNSsv1WvICLsjg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:53:47.123716Z DEBUG sp1_core_executor_runner::native: CHILD sp1_o3BYmLNvSNSsv1WvICLsjg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:53:47.123835Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:53:47.124587Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:53:47.124885Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:53:47.191054Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:53:47.191100Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:53:47.191237Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:53:47.191397Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:53:47.191464Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:53:47.191820Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=218 blob_id=2147877259487323272630879595376323937 -2026-04-20T10:53:47.756045Z DEBUG sp1_core_executor_runner::native: CHILD sp1_w5C7TP5WSeWh2RUJEd5PWw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:53:47.762834Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:53:47.774570Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1030881 cycles -2026-04-20T10:53:47.777286Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 9, 18, 195, 68, 102, 141, 221, 212, 155, 1, 221, 127, 69, 136, 33, 177, 240, 182, 196, 182, 253, 56, 203, 83, 56, 171, 47, 132, 116, 176, 121, 23, 50, 163, 201, 136, 123, 87, 220, 200, 234, 134, 173, 208, 229, 253, 101, 250, 77, 156, 179, 197, 13, 86, 125, 69, 41, 44, 97, 78, 7, 49, 73, 72, 9, 18, 195, 68, 102, 141, 221, 212, 155, 1, 221, 127, 69, 136, 33, 177, 240, 182, 196, 182, 253, 56, 203, 83, 56, 171, 47, 132, 116, 176, 121, 103, 87, 198, 130, 64, 78, 88, 239, 27, 51, 16, 5, 117, 39, 240, 28, 140, 94, 48, 130, 36, 111, 32, 19, 141, 113, 73, 211, 250, 224, 191, 36, 135, 210, 216, 54, 35, 66, 209, 8, 162, 13, 150, 80, 181, 7, 250, 252, 172, 171, 5, 38, 250, 5, 216, 196, 177, 105, 228, 73, 239, 222, 62, 92, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:53:47.833661Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:53:47.833706Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:53:47.900216Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:53:47.932041Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VZiPKYYbTV6KXCHNPjd0EQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:53:47.934916Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VZiPKYYbTV6KXCHNPjd0EQ==: stderr: -2026-04-20T10:53:47.934941Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VZiPKYYbTV6KXCHNPjd0EQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:53:47.934951Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VZiPKYYbTV6KXCHNPjd0EQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:53:47.934958Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VZiPKYYbTV6KXCHNPjd0EQ==: stderr: stack backtrace: -2026-04-20T10:53:47.934964Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VZiPKYYbTV6KXCHNPjd0EQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:53:47.934971Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VZiPKYYbTV6KXCHNPjd0EQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:53:47.935076Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:53:47.935861Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:53:47.936181Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:53:48.002809Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:53:48.002854Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:53:48.003020Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:53:48.003246Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:53:48.003330Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:53:48.003762Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=219 blob_id=2147877260468986643235216787486770080 -2026-04-20T10:53:48.554207Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Fphn0WEtT0CHepp6t92g0Q==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:53:48.571637Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:53:48.582146Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2579943 cycles -2026-04-20T10:53:48.584307Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 9, 18, 195, 68, 102, 141, 221, 212, 155, 1, 221, 127, 69, 136, 33, 177, 240, 182, 196, 182, 253, 56, 203, 83, 56, 171, 47, 132, 116, 176, 121, 1, 253, 56, 20, 179, 138, 219, 169, 29, 211, 3, 56, 138, 253, 154, 139, 174, 55, 36, 38, 178, 24, 153, 174, 165, 234, 57, 145, 150, 88, 251, 93, 14, 175, 214, 74, 113, 206, 20, 43, 17, 92, 154, 233, 201, 26, 5, 142, 108, 245, 251, 61, 224, 22, 156, 82, 171, 238, 121, 97, 231, 21, 175, 78, 48, 13, 35, 192, 75, 3, 111, 87, 74, 62, 77, 107, 105, 242, 226, 160, 15, 200, 177, 97, 145, 0, 121, 136, 68, 158, 72, 172, 231, 44, 90, 73, 32, 141, 219, 184, 177, 71, 35, 235, 6, 186, 73, 205, 82, 2, 204, 223, 172, 3, 85, 230, 106, 209, 0, 72, 152, 214, 31, 119, 35, 204, 242, 157, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:53:48.698397Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:53:48.698431Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:53:48.712099Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:53:48.746072Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Nbw3tRR1STu8E7AeeTVQZw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:53:48.748935Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Nbw3tRR1STu8E7AeeTVQZw==: stderr: -2026-04-20T10:53:48.748948Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Nbw3tRR1STu8E7AeeTVQZw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:53:48.748957Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Nbw3tRR1STu8E7AeeTVQZw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:53:48.748966Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Nbw3tRR1STu8E7AeeTVQZw==: stderr: stack backtrace: -2026-04-20T10:53:48.748972Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Nbw3tRR1STu8E7AeeTVQZw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:53:48.748992Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Nbw3tRR1STu8E7AeeTVQZw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:53:48.749106Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:53:48.749925Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:53:48.750244Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:53:48.817323Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:53:48.817368Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:53:48.817509Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:53:48.817974Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=220 blob_id=2147877261453094744499416869808040538 -2026-04-20T10:53:52.375827Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=4 height=138 prev_hash=0x9b89643084277310c142b5771ee3853f0af0e733982234979a4058535f384447 hash=0xbe18079666b84bcb8c7d50a18ce91827c7eae57f59815cf5bf9e45fa6a130fc4 producing_time=1.147272ms -2026-04-20T10:53:52.380667Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=138 current_state_root="28f86d794dabf654ed30984deae73eadae21938915f6e37428692dad7b0cc38f4c6d8441d0f57c02b0e0c27cc1fbdf69e51c583700116ef41c6bc2cd968e2267" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa706e4662110a908a9f53d27858d227502a44366b0be1d0d7f8869d550e62e61"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x368872ea40c5f92bea423509546892d404774de9a413c60a2b5c0f6ad9c4fdba, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc92978bf2af0c5ac9fa017e1d2de505f18b64236fcd84e41043eb04719b6300f, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0a68f6f565a5c5760dad07b9d6bb2ebe3a8897327f828f03085c4f886771bf0d, len=625"] -2026-04-20T10:53:52.380919Z DEBUG StfBlueprint::apply_slot{context=Node da_height=138}: sov_chain_state: Setting next visible slot number next_visible_slot_number=133 -2026-04-20T10:53:52.381052Z DEBUG StfBlueprint::apply_slot{context=Node da_height=138}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xa706e4662110a908a9f53d27858d227502a44366b0be1d0d7f8869d550e62e61}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:53:52.381244Z DEBUG StfBlueprint::apply_slot{context=Node da_height=138}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=28f86d794dabf654ed30984deae73eadae21938915f6e37428692dad7b0cc38f4c6d8441d0f57c02b0e0c27cc1fbdf69e51c583700116ef41c6bc2cd968e2267 next_version=138 sesssion_starting_time=47.6µs -2026-04-20T10:53:52.382248Z DEBUG StfBlueprint::apply_slot{context=Node da_height=138}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=1347c6072ff9d22a62c8eca9c6f563d0d88c50f4fb5d2883c2c6540295367d2250ecb8470c822874dd7df7e434d3dc5d15b6af068f58407b86e94c37616de74f next_version=138 time=1.085943ms accesses_build_time=33.7µs finishing_session_time=979.953µs -2026-04-20T10:53:52.382489Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4c67498b64d324427bdbd72bcf998948382febb2c3dbe190cf6f0ea06ee262d859a07a45a208fa503b440049288744052f0506907528321cb0622ac417af6408" next_state_root="1347c6072ff9d22a62c8eca9c6f563d0d88c50f4fb5d2883c2c6540295367d2250ecb8470c822874dd7df7e434d3dc5d15b6af068f58407b86e94c37616de74f" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:53:52.383042Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 138, latest_finalized_slot_number: 138, sync_status: Synced { synced_da_height: 137 }, .. } -2026-04-20T10:53:52.383121Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=90 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 138, latest_finalized_slot_number: 138, sync_status: Synced { synced_da_height: 137 }, .. } -2026-04-20T10:53:52.383180Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=90 -2026-04-20T10:53:52.400013Z DEBUG sov_stf_runner::runner: Block execution complete time=6.021506715s -2026-04-20T10:53:52.400034Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:53:52.400265Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:53:52.400361Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:53:52.965027Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zkq-fyjORwywUAIlXY-JEg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:53:52.978961Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:53:52.990409Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1945001 cycles -2026-04-20T10:53:52.993188Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [28, 120, 90, 180, 38, 214, 123, 5, 86, 36, 9, 134, 87, 90, 76, 154, 103, 212, 131, 1, 118, 25, 56, 243, 16, 70, 230, 32, 55, 82, 191, 77, 107, 53, 227, 105, 34, 165, 142, 127, 131, 22, 72, 196, 48, 185, 46, 25, 41, 221, 26, 5, 164, 204, 255, 36, 71, 226, 229, 114, 149, 31, 221, 11, 94, 187, 28, 207, 193, 145, 234, 54, 208, 75, 94, 29, 164, 6, 137, 229, 74, 32, 242, 87, 80, 100, 242, 200, 160, 48, 51, 141, 50, 218, 24, 164, 24, 226, 191, 86, 30, 33, 142, 235, 133, 181, 168, 203, 143, 68, 85, 27, 207, 108, 97, 128, 189, 135, 40, 144, 130, 75, 128, 31, 76, 194, 95, 83, 160, 48, 112, 149, 250, 33, 121, 101, 136, 65, 13, 61, 231, 131, 232, 255, 45, 255, 150, 229, 185, 233, 212, 139, 166, 254, 146, 97, 82, 137, 201, 45, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:53:53.084215Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:53:53.084255Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:53:53.106912Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:53:53.140652Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oyxp9xxnRra0JR4u3VTGug==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:53:53.143469Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oyxp9xxnRra0JR4u3VTGug==: stderr: -2026-04-20T10:53:53.143495Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oyxp9xxnRra0JR4u3VTGug==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:53:53.143508Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oyxp9xxnRra0JR4u3VTGug==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:53:53.143517Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oyxp9xxnRra0JR4u3VTGug==: stderr: stack backtrace: -2026-04-20T10:53:53.143525Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oyxp9xxnRra0JR4u3VTGug==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:53:53.143533Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oyxp9xxnRra0JR4u3VTGug==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:53:53.143605Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:53:53.144385Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:53:53.144677Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:53:53.211393Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:53:53.211454Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:53:53.211623Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:53:53.212174Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=221 blob_id=2147877266765105386666314813433404739 -2026-04-20T10:53:58.378670Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=139 prev_hash=0xbe18079666b84bcb8c7d50a18ce91827c7eae57f59815cf5bf9e45fa6a130fc4 hash=0xc856fb8ced51990ed11ed05215c360e05f7f8ba499096c02581958c46d2a6514 producing_time=1.299061ms -2026-04-20T10:53:58.381446Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=139 current_state_root="1347c6072ff9d22a62c8eca9c6f563d0d88c50f4fb5d2883c2c6540295367d2250ecb8470c822874dd7df7e434d3dc5d15b6af068f58407b86e94c37616de74f" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xedf499ce7ae8af8d891c7b77454911cee1932d1d09f9d7197434d923f3cb7e57, len=625"] -2026-04-20T10:53:58.381798Z DEBUG StfBlueprint::apply_slot{context=Node da_height=139}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1347c6072ff9d22a62c8eca9c6f563d0d88c50f4fb5d2883c2c6540295367d2250ecb8470c822874dd7df7e434d3dc5d15b6af068f58407b86e94c37616de74f next_version=139 sesssion_starting_time=46.62µs -2026-04-20T10:53:58.382700Z DEBUG StfBlueprint::apply_slot{context=Node da_height=139}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=1347c6072ff9d22a62c8eca9c6f563d0d88c50f4fb5d2883c2c6540295367d225e22c48f894566bd2f49ffa79545f47ce6fbf670863009624dcac46eb214b9e3 next_version=139 time=968.113µs accesses_build_time=17.609µs finishing_session_time=867.764µs -2026-04-20T10:53:58.382765Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="1347c6072ff9d22a62c8eca9c6f563d0d88c50f4fb5d2883c2c6540295367d2250ecb8470c822874dd7df7e434d3dc5d15b6af068f58407b86e94c37616de74f" next_state_root="1347c6072ff9d22a62c8eca9c6f563d0d88c50f4fb5d2883c2c6540295367d225e22c48f894566bd2f49ffa79545f47ce6fbf670863009624dcac46eb214b9e3" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:53:58.383247Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 139, latest_finalized_slot_number: 139, sync_status: Synced { synced_da_height: 138 }, .. } -2026-04-20T10:53:58.383346Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=90 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 139, latest_finalized_slot_number: 139, sync_status: Synced { synced_da_height: 138 }, .. } -2026-04-20T10:53:58.383441Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=90 -2026-04-20T10:53:58.383732Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:53:58.383812Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=86 -2026-04-20T10:53:58.383913Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=135 -2026-04-20T10:53:58.384040Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:53:58.384397Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=135 sequence_number=222 -2026-04-20T10:53:58.384418Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=222 blob_id=2147877273018825248786088297171321852 visible_slot_number_after_increase=135 visible_slots_to_advance=2 -2026-04-20T10:53:58.384461Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=4 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:53:58.386088Z DEBUG manage_blob_submission_inside_task{blob_id=2147877273018825248786088297171321852 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x3ba43ad7977992b6533e8679eb739e2016de2b9243577ab68ad93b0c5624b5e6 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=140 include_at=140 bytes=13 time=536.677µs -2026-04-20T10:53:58.393387Z DEBUG compute_state_update{scope="sequencer" rollup_height=91 slot_number=135}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:53:58.393418Z DEBUG sov_stf_runner::runner: Block execution complete time=5.993384597s -2026-04-20T10:53:58.393437Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:53:58.393455Z DEBUG compute_state_update{scope="sequencer" rollup_height=91 slot_number=135}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1347c6072ff9d22a62c8eca9c6f563d0d88c50f4fb5d2883c2c6540295367d225e22c48f894566bd2f49ffa79545f47ce6fbf670863009624dcac46eb214b9e3 next_version=140 sesssion_starting_time=8.595675ms -2026-04-20T10:53:58.394091Z DEBUG compute_state_update{scope="sequencer" rollup_height=91 slot_number=135}: sov_state::nomt::prover_storage: computed next state root state_root=603c762404fede7b8e4f3f43023e985fdca46f18b785c4379e3e40c377e0581f0f998ec25961ee09a62f700639b495b8f37f6d8a29da6d9b639027bd1958da10 next_version=140 time=9.245221ms accesses_build_time=13.2µs finishing_session_time=599.466µs -2026-04-20T10:54:04.381007Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=140 prev_hash=0xc856fb8ced51990ed11ed05215c360e05f7f8ba499096c02581958c46d2a6514 hash=0x4a5e204e8b1fc3891d51cfb191453b9f1909d78c2d3e80acaf27ba1c317358a4 producing_time=1.183803ms -2026-04-20T10:54:04.384968Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=140 current_state_root="1347c6072ff9d22a62c8eca9c6f563d0d88c50f4fb5d2883c2c6540295367d225e22c48f894566bd2f49ffa79545f47ce6fbf670863009624dcac46eb214b9e3" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x3ba43ad7977992b6533e8679eb739e2016de2b9243577ab68ad93b0c5624b5e6"] proof_blobs=[] -2026-04-20T10:54:04.385327Z DEBUG StfBlueprint::apply_slot{context=Node da_height=140}: sov_chain_state: Setting next visible slot number next_visible_slot_number=135 -2026-04-20T10:54:04.385610Z DEBUG StfBlueprint::apply_slot{context=Node da_height=140}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x3ba43ad7977992b6533e8679eb739e2016de2b9243577ab68ad93b0c5624b5e6}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=4 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:54:04.385793Z DEBUG StfBlueprint::apply_slot{context=Node da_height=140}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1347c6072ff9d22a62c8eca9c6f563d0d88c50f4fb5d2883c2c6540295367d225e22c48f894566bd2f49ffa79545f47ce6fbf670863009624dcac46eb214b9e3 next_version=140 sesssion_starting_time=46.66µs -2026-04-20T10:54:04.386892Z DEBUG StfBlueprint::apply_slot{context=Node da_height=140}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=603c762404fede7b8e4f3f43023e985fdca46f18b785c4379e3e40c377e0581f5e452cce7862b824ac275d84f1b23bccdb53fae985fd6ef562abfe9d58769190 next_version=140 time=1.182742ms accesses_build_time=35.7µs finishing_session_time=1.071984ms -2026-04-20T10:54:04.387096Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="368872ea40c5f92bea423509546892d404774de9a413c60a2b5c0f6ad9c4fdba" -2026-04-20T10:54:04.387112Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="c92978bf2af0c5ac9fa017e1d2de505f18b64236fcd84e41043eb04719b6300f" -2026-04-20T10:54:04.387123Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="0a68f6f565a5c5760dad07b9d6bb2ebe3a8897327f828f03085c4f886771bf0d" -2026-04-20T10:54:04.387131Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="edf499ce7ae8af8d891c7b77454911cee1932d1d09f9d7197434d923f3cb7e57" -2026-04-20T10:54:04.387143Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="1347c6072ff9d22a62c8eca9c6f563d0d88c50f4fb5d2883c2c6540295367d225e22c48f894566bd2f49ffa79545f47ce6fbf670863009624dcac46eb214b9e3" next_state_root="603c762404fede7b8e4f3f43023e985fdca46f18b785c4379e3e40c377e0581f5e452cce7862b824ac275d84f1b23bccdb53fae985fd6ef562abfe9d58769190" aggregated_proofs=0 proof_receipts=4 -2026-04-20T10:54:04.387678Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 140, latest_finalized_slot_number: 140, sync_status: Synced { synced_da_height: 139 }, .. } -2026-04-20T10:54:04.387760Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=91 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 140, latest_finalized_slot_number: 140, sync_status: Synced { synced_da_height: 139 }, .. } -2026-04-20T10:54:04.387826Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=91 -2026-04-20T10:54:04.399382Z DEBUG sov_stf_runner::runner: Block execution complete time=6.005945776s -2026-04-20T10:54:04.399413Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:54:04.399595Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:54:04.399669Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:54:04.962525Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ZQClP6gSRbiRQsa3B6wLoQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:54:04.969374Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:54:04.980937Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1034530 cycles -2026-04-20T10:54:04.983712Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [106, 22, 94, 186, 84, 128, 176, 138, 202, 204, 241, 224, 24, 23, 11, 151, 117, 109, 29, 238, 65, 18, 96, 52, 78, 0, 162, 3, 23, 167, 17, 125, 109, 177, 251, 21, 234, 84, 110, 77, 134, 109, 107, 150, 234, 28, 87, 79, 96, 220, 199, 72, 135, 162, 127, 230, 31, 125, 115, 98, 43, 102, 40, 56, 106, 22, 94, 186, 84, 128, 176, 138, 202, 204, 241, 224, 24, 23, 11, 151, 117, 109, 29, 238, 65, 18, 96, 52, 78, 0, 162, 3, 23, 167, 17, 125, 86, 92, 121, 73, 104, 90, 159, 118, 131, 130, 240, 203, 74, 187, 79, 213, 197, 159, 232, 138, 103, 60, 51, 37, 136, 84, 188, 21, 116, 227, 212, 232, 39, 163, 204, 221, 168, 220, 4, 13, 86, 122, 59, 127, 174, 69, 80, 250, 48, 244, 22, 42, 100, 62, 52, 101, 74, 226, 152, 95, 233, 6, 50, 216, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:54:05.040721Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:54:05.040770Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:54:05.107437Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:54:05.142087Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RGPMP2U-TySEl6Us10H_wA==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:54:05.144937Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RGPMP2U-TySEl6Us10H_wA==: stderr: -2026-04-20T10:54:05.144951Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RGPMP2U-TySEl6Us10H_wA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:54:05.144960Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RGPMP2U-TySEl6Us10H_wA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:54:05.144968Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RGPMP2U-TySEl6Us10H_wA==: stderr: stack backtrace: -2026-04-20T10:54:05.144974Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RGPMP2U-TySEl6Us10H_wA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:54:05.144980Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RGPMP2U-TySEl6Us10H_wA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:54:05.145088Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:54:05.145864Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:54:05.146273Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:54:05.212879Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:54:05.212922Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:54:05.213116Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:54:05.213300Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:54:05.213406Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:54:05.213956Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=223 blob_id=2147877281274624516666794466505460047 -2026-04-20T10:54:05.771328Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PvFsjnbLS2q5CBzF2Z-39Q==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:54:05.788944Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:54:05.801143Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2608814 cycles -2026-04-20T10:54:05.803929Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [106, 22, 94, 186, 84, 128, 176, 138, 202, 204, 241, 224, 24, 23, 11, 151, 117, 109, 29, 238, 65, 18, 96, 52, 78, 0, 162, 3, 23, 167, 17, 125, 95, 222, 34, 80, 9, 88, 233, 32, 194, 231, 246, 199, 90, 29, 30, 200, 158, 82, 94, 179, 168, 237, 222, 20, 174, 176, 136, 155, 41, 226, 207, 61, 0, 102, 21, 89, 123, 250, 248, 145, 206, 208, 65, 254, 72, 162, 44, 44, 181, 118, 66, 28, 3, 209, 237, 25, 126, 16, 249, 149, 211, 234, 69, 85, 64, 174, 89, 131, 205, 32, 118, 46, 29, 52, 174, 11, 70, 98, 148, 47, 90, 209, 54, 8, 244, 83, 210, 37, 152, 160, 154, 249, 187, 211, 201, 185, 42, 185, 111, 210, 153, 206, 239, 200, 18, 132, 4, 3, 80, 109, 150, 21, 7, 239, 136, 103, 11, 195, 233, 97, 229, 110, 73, 245, 60, 192, 32, 62, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:54:05.914013Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:54:05.914049Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:54:05.920153Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:54:05.954337Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8z_VfhW_Qeu4K6A3MNOn9A==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:54:05.957171Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8z_VfhW_Qeu4K6A3MNOn9A==: stderr: -2026-04-20T10:54:05.957184Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8z_VfhW_Qeu4K6A3MNOn9A==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:54:05.957193Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8z_VfhW_Qeu4K6A3MNOn9A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:54:05.957201Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8z_VfhW_Qeu4K6A3MNOn9A==: stderr: stack backtrace: -2026-04-20T10:54:05.957220Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8z_VfhW_Qeu4K6A3MNOn9A==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:54:05.957227Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8z_VfhW_Qeu4K6A3MNOn9A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:54:05.957294Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:54:05.958081Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:54:05.958408Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:54:06.026285Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:54:06.026339Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:54:06.026501Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:54:06.027111Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=224 blob_id=2147877282257490044049330370299169297 -2026-04-20T10:54:10.383521Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=141 prev_hash=0x4a5e204e8b1fc3891d51cfb191453b9f1909d78c2d3e80acaf27ba1c317358a4 hash=0xa8c51d23d455da0ab13f3812a7b4e59de980d44ff5a1e85f49b345a97d66c847 producing_time=1.260702ms -2026-04-20T10:54:10.391242Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=141 current_state_root="603c762404fede7b8e4f3f43023e985fdca46f18b785c4379e3e40c377e0581f5e452cce7862b824ac275d84f1b23bccdb53fae985fd6ef562abfe9d58769190" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x30770adee6a8064a9c18895854cfee89e3539c984d081c6ffe91193a465aa02c, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xae39fa1fdcac93a46ebf83ba4d381d8dd39628442b8c227f4b239cac2577f91d, len=625"] -2026-04-20T10:54:10.391612Z DEBUG StfBlueprint::apply_slot{context=Node da_height=141}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=603c762404fede7b8e4f3f43023e985fdca46f18b785c4379e3e40c377e0581f5e452cce7862b824ac275d84f1b23bccdb53fae985fd6ef562abfe9d58769190 next_version=141 sesssion_starting_time=46.46µs -2026-04-20T10:54:10.392407Z DEBUG StfBlueprint::apply_slot{context=Node da_height=141}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=603c762404fede7b8e4f3f43023e985fdca46f18b785c4379e3e40c377e0581f0b6fdee58e1d16684a1a18f81c60c3a8fd19d3eef1df19c46b1706721193d63e next_version=141 time=862.355µs accesses_build_time=19.82µs finishing_session_time=759.115µs -2026-04-20T10:54:10.392509Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="603c762404fede7b8e4f3f43023e985fdca46f18b785c4379e3e40c377e0581f5e452cce7862b824ac275d84f1b23bccdb53fae985fd6ef562abfe9d58769190" next_state_root="603c762404fede7b8e4f3f43023e985fdca46f18b785c4379e3e40c377e0581f0b6fdee58e1d16684a1a18f81c60c3a8fd19d3eef1df19c46b1706721193d63e" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:54:10.392969Z DEBUG sov_stf_runner::runner: Block execution complete time=5.993557576s -2026-04-20T10:54:10.392991Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:54:10.393044Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 141, latest_finalized_slot_number: 140, sync_status: Syncing { synced_da_height: 140, target_da_height: 141 }, .. } -2026-04-20T10:54:10.393114Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=91 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 141, latest_finalized_slot_number: 140, sync_status: Syncing { synced_da_height: 140, target_da_height: 141 }, .. } -2026-04-20T10:54:10.393171Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=91 -2026-04-20T10:54:10.393415Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:54:10.393482Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=87 -2026-04-20T10:54:10.393580Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=136 -2026-04-20T10:54:10.393700Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:54:10.393968Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=136 sequence_number=225 -2026-04-20T10:54:10.393990Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=225 blob_id=2147877287536884187852326265019902905 visible_slot_number_after_increase=136 visible_slots_to_advance=1 -2026-04-20T10:54:10.394012Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=2 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:54:10.394464Z DEBUG compute_state_update{scope="sequencer" rollup_height=92 slot_number=136}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=603c762404fede7b8e4f3f43023e985fdca46f18b785c4379e3e40c377e0581f0b6fdee58e1d16684a1a18f81c60c3a8fd19d3eef1df19c46b1706721193d63e next_version=142 sesssion_starting_time=53.819µs -2026-04-20T10:54:10.395292Z DEBUG compute_state_update{scope="sequencer" rollup_height=92 slot_number=136}: sov_state::nomt::prover_storage: computed next state root state_root=4b7ed40e0b99d2b0248708925362a4f1e9da578bde5214a83d830cdeb78ea73e4d2ffe441fb02a35d5c38bd1d3fad4935f8608808a5b849342d6489d3eb7c683 next_version=142 time=897.164µs accesses_build_time=13.38µs finishing_session_time=779.665µs -2026-04-20T10:54:10.395743Z DEBUG manage_blob_submission_inside_task{blob_id=2147877287536884187852326265019902905 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x23d724b916b4f8989527d1d8ec323a06d76c4749d2d537c3b78ec5bb472e0717 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=142 include_at=142 bytes=13 time=583.396µs -2026-04-20T10:54:16.386226Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=142 prev_hash=0xa8c51d23d455da0ab13f3812a7b4e59de980d44ff5a1e85f49b345a97d66c847 hash=0x1b69f75eef2712ae441293ac60b5b11a192776e963427a8dbe7b20ab286dd0c4 producing_time=1.293072ms -2026-04-20T10:54:16.394136Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=142 current_state_root="603c762404fede7b8e4f3f43023e985fdca46f18b785c4379e3e40c377e0581f0b6fdee58e1d16684a1a18f81c60c3a8fd19d3eef1df19c46b1706721193d63e" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x23d724b916b4f8989527d1d8ec323a06d76c4749d2d537c3b78ec5bb472e0717"] proof_blobs=[] -2026-04-20T10:54:16.394400Z DEBUG StfBlueprint::apply_slot{context=Node da_height=142}: sov_chain_state: Setting next visible slot number next_visible_slot_number=136 -2026-04-20T10:54:16.394629Z DEBUG StfBlueprint::apply_slot{context=Node da_height=142}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x23d724b916b4f8989527d1d8ec323a06d76c4749d2d537c3b78ec5bb472e0717}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=2 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:54:16.394848Z DEBUG StfBlueprint::apply_slot{context=Node da_height=142}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=603c762404fede7b8e4f3f43023e985fdca46f18b785c4379e3e40c377e0581f0b6fdee58e1d16684a1a18f81c60c3a8fd19d3eef1df19c46b1706721193d63e next_version=142 sesssion_starting_time=47.429µs -2026-04-20T10:54:16.395906Z DEBUG StfBlueprint::apply_slot{context=Node da_height=142}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4b7ed40e0b99d2b0248708925362a4f1e9da578bde5214a83d830cdeb78ea73e3a2fffc0f1e6b74b7236cca8a16d1ffe7251dc26f9b179236e30bd31a9879782 next_version=142 time=1.142313ms accesses_build_time=35.3µs finishing_session_time=1.033784ms -2026-04-20T10:54:16.396094Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="30770adee6a8064a9c18895854cfee89e3539c984d081c6ffe91193a465aa02c" -2026-04-20T10:54:16.396111Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ae39fa1fdcac93a46ebf83ba4d381d8dd39628442b8c227f4b239cac2577f91d" -2026-04-20T10:54:16.396123Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="603c762404fede7b8e4f3f43023e985fdca46f18b785c4379e3e40c377e0581f5e452cce7862b824ac275d84f1b23bccdb53fae985fd6ef562abfe9d58769190" next_state_root="4b7ed40e0b99d2b0248708925362a4f1e9da578bde5214a83d830cdeb78ea73e3a2fffc0f1e6b74b7236cca8a16d1ffe7251dc26f9b179236e30bd31a9879782" aggregated_proofs=0 proof_receipts=2 -2026-04-20T10:54:16.396700Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 142, latest_finalized_slot_number: 141, sync_status: Syncing { synced_da_height: 141, target_da_height: 142 }, .. } -2026-04-20T10:54:16.396782Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=92 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 142, latest_finalized_slot_number: 141, sync_status: Syncing { synced_da_height: 141, target_da_height: 142 }, .. } -2026-04-20T10:54:16.396850Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=92 -2026-04-20T10:54:16.397106Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:54:16.397184Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=88 -2026-04-20T10:54:16.397265Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=137 -2026-04-20T10:54:16.397409Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:54:16.397578Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=137 sequence_number=226 -2026-04-20T10:54:16.397615Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=226 blob_id=2147877294795232287335820098138288078 visible_slot_number_after_increase=137 visible_slots_to_advance=1 -2026-04-20T10:54:16.397649Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:54:16.399598Z DEBUG manage_blob_submission_inside_task{blob_id=2147877294795232287335820098138288078 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xacddf2a0300faa7ea992592a9a05b2b5e18d50698035a1e01f04bbb0e0723b46 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=143 include_at=143 bytes=13 time=580.756µs -2026-04-20T10:54:16.403814Z DEBUG compute_state_update{scope="sequencer" rollup_height=93 slot_number=137}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:54:16.403844Z DEBUG sov_stf_runner::runner: Block execution complete time=6.010853805s -2026-04-20T10:54:16.403865Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:54:16.403896Z DEBUG compute_state_update{scope="sequencer" rollup_height=93 slot_number=137}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4b7ed40e0b99d2b0248708925362a4f1e9da578bde5214a83d830cdeb78ea73e3a2fffc0f1e6b74b7236cca8a16d1ffe7251dc26f9b179236e30bd31a9879782 next_version=143 sesssion_starting_time=5.756353ms -2026-04-20T10:54:16.404123Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:54:16.404207Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:54:16.404531Z DEBUG compute_state_update{scope="sequencer" rollup_height=93 slot_number=137}: sov_state::nomt::prover_storage: computed next state root state_root=4afb249ed3060d2b53b8d8fe87db52a542f2cfb587eaa09bb057c6dafc545dc37f7384439569254e7017f4eb5b289ad17d2b7cc19b25e3c0629d3986d12ab5ec next_version=143 time=6.405239ms accesses_build_time=13.04µs finishing_session_time=612.486µs -2026-04-20T10:54:16.963436Z DEBUG sp1_core_executor_runner::native: CHILD sp1_DWG7Gg-3TBKIrGV1oJ8XVQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:54:16.977202Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:54:16.988933Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1929956 cycles -2026-04-20T10:54:16.991820Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [79, 0, 119, 65, 232, 190, 43, 176, 165, 221, 25, 255, 58, 211, 44, 162, 250, 91, 75, 169, 225, 180, 54, 118, 243, 94, 23, 199, 206, 48, 95, 151, 69, 198, 101, 252, 206, 132, 222, 250, 175, 176, 79, 71, 200, 23, 125, 172, 88, 75, 158, 54, 62, 137, 122, 134, 28, 201, 17, 27, 120, 149, 5, 81, 4, 90, 21, 59, 142, 99, 235, 85, 232, 186, 194, 50, 142, 5, 126, 207, 221, 123, 5, 35, 167, 238, 78, 177, 53, 206, 185, 124, 215, 124, 203, 97, 34, 2, 153, 186, 67, 31, 13, 99, 220, 71, 148, 96, 242, 220, 122, 111, 251, 162, 96, 254, 14, 183, 50, 242, 184, 133, 166, 185, 196, 27, 23, 232, 217, 25, 77, 19, 3, 116, 35, 165, 134, 152, 215, 10, 75, 144, 198, 11, 242, 85, 165, 59, 60, 140, 31, 59, 239, 120, 239, 29, 154, 229, 131, 10, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:54:17.085858Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:54:17.085897Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:54:17.110727Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:54:17.135595Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ClNQD5IaTHWct9OqfBDzIA==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:54:17.138420Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ClNQD5IaTHWct9OqfBDzIA==: stderr: -2026-04-20T10:54:17.138429Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ClNQD5IaTHWct9OqfBDzIA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:54:17.138434Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ClNQD5IaTHWct9OqfBDzIA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:54:17.138438Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ClNQD5IaTHWct9OqfBDzIA==: stderr: stack backtrace: -2026-04-20T10:54:17.138441Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ClNQD5IaTHWct9OqfBDzIA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:54:17.138444Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ClNQD5IaTHWct9OqfBDzIA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:54:17.138559Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:54:17.139308Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:54:17.139647Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:54:17.206594Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:54:17.206637Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:54:17.206763Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:54:17.207284Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=227 blob_id=2147877295773270360249616551761435119 -2026-04-20T10:54:22.387944Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=143 prev_hash=0x1b69f75eef2712ae441293ac60b5b11a192776e963427a8dbe7b20ab286dd0c4 hash=0x6d3fe28c7cee126013a22c483b057f84f7eafcce48687ba4a0d67b2572c4cd53 producing_time=1.151602ms -2026-04-20T10:54:22.395783Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=143 current_state_root="4b7ed40e0b99d2b0248708925362a4f1e9da578bde5214a83d830cdeb78ea73e3a2fffc0f1e6b74b7236cca8a16d1ffe7251dc26f9b179236e30bd31a9879782" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xacddf2a0300faa7ea992592a9a05b2b5e18d50698035a1e01f04bbb0e0723b46"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x27d9e10f36ef690699941fd87281929ee793060ba5eeb411ca6b2df1f636e048, len=625"] -2026-04-20T10:54:22.396013Z DEBUG StfBlueprint::apply_slot{context=Node da_height=143}: sov_chain_state: Setting next visible slot number next_visible_slot_number=137 -2026-04-20T10:54:22.396153Z DEBUG StfBlueprint::apply_slot{context=Node da_height=143}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xacddf2a0300faa7ea992592a9a05b2b5e18d50698035a1e01f04bbb0e0723b46}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:54:22.396345Z DEBUG StfBlueprint::apply_slot{context=Node da_height=143}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4b7ed40e0b99d2b0248708925362a4f1e9da578bde5214a83d830cdeb78ea73e3a2fffc0f1e6b74b7236cca8a16d1ffe7251dc26f9b179236e30bd31a9879782 next_version=143 sesssion_starting_time=62.25µs -2026-04-20T10:54:22.397257Z DEBUG StfBlueprint::apply_slot{context=Node da_height=143}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4afb249ed3060d2b53b8d8fe87db52a542f2cfb587eaa09bb057c6dafc545dc37fafa9e851645d806a67cac86b49de84a4f93eac65be42fd00c4daff9cf2aba1 next_version=143 time=1.005563ms accesses_build_time=30.359µs finishing_session_time=859.914µs -2026-04-20T10:54:22.397459Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="603c762404fede7b8e4f3f43023e985fdca46f18b785c4379e3e40c377e0581f0b6fdee58e1d16684a1a18f81c60c3a8fd19d3eef1df19c46b1706721193d63e" next_state_root="4afb249ed3060d2b53b8d8fe87db52a542f2cfb587eaa09bb057c6dafc545dc37fafa9e851645d806a67cac86b49de84a4f93eac65be42fd00c4daff9cf2aba1" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:54:22.398016Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 143, latest_finalized_slot_number: 142, sync_status: Syncing { synced_da_height: 142, target_da_height: 143 }, .. } -2026-04-20T10:54:22.398084Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=93 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 143, latest_finalized_slot_number: 142, sync_status: Syncing { synced_da_height: 142, target_da_height: 143 }, .. } -2026-04-20T10:54:22.398141Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=93 -2026-04-20T10:54:22.409391Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00552744s -2026-04-20T10:54:22.409428Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:54:22.409628Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:54:22.409700Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:54:22.979394Z DEBUG sp1_core_executor_runner::native: CHILD sp1_J0Jig8pCRwSyNqICUc0Eqw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:54:22.986390Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:54:22.998009Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1048283 cycles -2026-04-20T10:54:23.000639Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [76, 103, 73, 139, 100, 211, 36, 66, 123, 219, 215, 43, 207, 153, 137, 72, 56, 47, 235, 178, 195, 219, 225, 144, 207, 111, 14, 160, 110, 226, 98, 216, 90, 169, 118, 136, 6, 241, 130, 123, 246, 79, 233, 66, 229, 149, 85, 235, 254, 142, 140, 71, 213, 90, 131, 105, 39, 47, 84, 161, 174, 42, 136, 78, 76, 103, 73, 139, 100, 211, 36, 66, 123, 219, 215, 43, 207, 153, 137, 72, 56, 47, 235, 178, 195, 219, 225, 144, 207, 111, 14, 160, 110, 226, 98, 216, 108, 226, 100, 120, 232, 176, 243, 199, 162, 152, 166, 247, 137, 60, 199, 188, 161, 214, 122, 43, 175, 73, 182, 28, 105, 99, 120, 129, 160, 211, 239, 79, 27, 86, 80, 110, 147, 219, 237, 147, 34, 86, 40, 97, 192, 240, 3, 171, 142, 148, 29, 109, 18, 174, 233, 3, 24, 233, 206, 102, 79, 130, 123, 226, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:54:23.056701Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:54:23.056751Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:54:23.116921Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:54:23.151498Z DEBUG sp1_core_executor_runner::native: CHILD sp1_A5cebpMaSbusCl4yJWG4Ug==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:54:23.154322Z DEBUG sp1_core_executor_runner::native: CHILD sp1_A5cebpMaSbusCl4yJWG4Ug==: stderr: -2026-04-20T10:54:23.154335Z DEBUG sp1_core_executor_runner::native: CHILD sp1_A5cebpMaSbusCl4yJWG4Ug==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:54:23.154345Z DEBUG sp1_core_executor_runner::native: CHILD sp1_A5cebpMaSbusCl4yJWG4Ug==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:54:23.154351Z DEBUG sp1_core_executor_runner::native: CHILD sp1_A5cebpMaSbusCl4yJWG4Ug==: stderr: stack backtrace: -2026-04-20T10:54:23.154357Z DEBUG sp1_core_executor_runner::native: CHILD sp1_A5cebpMaSbusCl4yJWG4Ug==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:54:23.154363Z DEBUG sp1_core_executor_runner::native: CHILD sp1_A5cebpMaSbusCl4yJWG4Ug==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:54:23.154536Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:54:23.155279Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:54:23.155578Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:54:23.227226Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:54:23.227272Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:54:23.227438Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:54:23.227952Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=228 blob_id=2147877303052215984593954605534389966 -2026-04-20T10:54:28.389642Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=144 prev_hash=0x6d3fe28c7cee126013a22c483b057f84f7eafcce48687ba4a0d67b2572c4cd53 hash=0x330bd9b3fe759e2d17c1739533e29c6ccb8e1eaabf9de9c2a53590c726fef5b9 producing_time=1.148142ms -2026-04-20T10:54:28.391365Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=144 current_state_root="4afb249ed3060d2b53b8d8fe87db52a542f2cfb587eaa09bb057c6dafc545dc37fafa9e851645d806a67cac86b49de84a4f93eac65be42fd00c4daff9cf2aba1" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x117292103cb1c2c2b629b5238e9e3099b0e528d4c50e476652d0669b659ade82, len=625"] -2026-04-20T10:54:28.391722Z DEBUG StfBlueprint::apply_slot{context=Node da_height=144}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4afb249ed3060d2b53b8d8fe87db52a542f2cfb587eaa09bb057c6dafc545dc37fafa9e851645d806a67cac86b49de84a4f93eac65be42fd00c4daff9cf2aba1 next_version=144 sesssion_starting_time=49.48µs -2026-04-20T10:54:28.392538Z DEBUG StfBlueprint::apply_slot{context=Node da_height=144}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4afb249ed3060d2b53b8d8fe87db52a542f2cfb587eaa09bb057c6dafc545dc30bc6a37884d7c50d38858a1609f15e4c40d70f05f94105c263259a38a1cd9779 next_version=144 time=885.534µs accesses_build_time=18.719µs finishing_session_time=779.565µs -2026-04-20T10:54:28.392609Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4b7ed40e0b99d2b0248708925362a4f1e9da578bde5214a83d830cdeb78ea73e3a2fffc0f1e6b74b7236cca8a16d1ffe7251dc26f9b179236e30bd31a9879782" next_state_root="4afb249ed3060d2b53b8d8fe87db52a542f2cfb587eaa09bb057c6dafc545dc30bc6a37884d7c50d38858a1609f15e4c40d70f05f94105c263259a38a1cd9779" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:54:28.393066Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 144, latest_finalized_slot_number: 143, sync_status: Syncing { synced_da_height: 143, target_da_height: 144 }, .. } -2026-04-20T10:54:28.393144Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=93 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 144, latest_finalized_slot_number: 143, sync_status: Syncing { synced_da_height: 143, target_da_height: 144 }, .. } -2026-04-20T10:54:28.393204Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=93 -2026-04-20T10:54:28.393441Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:54:28.393529Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=89 -2026-04-20T10:54:28.393615Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=139 -2026-04-20T10:54:28.393744Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:54:28.394016Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=139 sequence_number=229 -2026-04-20T10:54:28.394033Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=229 blob_id=2147877309298747810455435186084115498 visible_slot_number_after_increase=139 visible_slots_to_advance=2 -2026-04-20T10:54:28.394060Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=2 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:54:28.395672Z DEBUG manage_blob_submission_inside_task{blob_id=2147877309298747810455435186084115498 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x80cb35fdffb22bdabf5062aa0ab7e8b0c6d0d1a35504d1d1baab11983f336314 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=145 include_at=145 bytes=13 time=596.666µs -2026-04-20T10:54:28.404034Z DEBUG compute_state_update{scope="sequencer" rollup_height=94 slot_number=139}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:54:28.404062Z DEBUG sov_stf_runner::runner: Block execution complete time=5.994636769s -2026-04-20T10:54:28.404083Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:54:28.404101Z DEBUG compute_state_update{scope="sequencer" rollup_height=94 slot_number=139}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4afb249ed3060d2b53b8d8fe87db52a542f2cfb587eaa09bb057c6dafc545dc30bc6a37884d7c50d38858a1609f15e4c40d70f05f94105c263259a38a1cd9779 next_version=145 sesssion_starting_time=9.649297ms -2026-04-20T10:54:28.404929Z DEBUG compute_state_update{scope="sequencer" rollup_height=94 slot_number=139}: sov_state::nomt::prover_storage: computed next state root state_root=0bd13075da83533e0cb09d2e0e5b765f58ac0a75643bdb6b01c93663a34d7f94176bb49478798664cff3a83f3de2fe47979968a6ec7c280287b0fe583cd22bce next_version=145 time=10.490922ms accesses_build_time=12.689µs finishing_session_time=806.765µs -2026-04-20T10:54:34.391757Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=145 prev_hash=0x330bd9b3fe759e2d17c1739533e29c6ccb8e1eaabf9de9c2a53590c726fef5b9 hash=0x9d935899c9b6c3fa1ff92773d91b20ba4b190562f51c3795b8dd0775d419d604 producing_time=1.113252ms -2026-04-20T10:54:34.395393Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=145 current_state_root="4afb249ed3060d2b53b8d8fe87db52a542f2cfb587eaa09bb057c6dafc545dc30bc6a37884d7c50d38858a1609f15e4c40d70f05f94105c263259a38a1cd9779" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x80cb35fdffb22bdabf5062aa0ab7e8b0c6d0d1a35504d1d1baab11983f336314"] proof_blobs=[] -2026-04-20T10:54:34.395661Z DEBUG StfBlueprint::apply_slot{context=Node da_height=145}: sov_chain_state: Setting next visible slot number next_visible_slot_number=139 -2026-04-20T10:54:34.395896Z DEBUG StfBlueprint::apply_slot{context=Node da_height=145}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x80cb35fdffb22bdabf5062aa0ab7e8b0c6d0d1a35504d1d1baab11983f336314}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=2 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:54:34.396086Z DEBUG StfBlueprint::apply_slot{context=Node da_height=145}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4afb249ed3060d2b53b8d8fe87db52a542f2cfb587eaa09bb057c6dafc545dc30bc6a37884d7c50d38858a1609f15e4c40d70f05f94105c263259a38a1cd9779 next_version=145 sesssion_starting_time=51.199µs -2026-04-20T10:54:34.397109Z DEBUG StfBlueprint::apply_slot{context=Node da_height=145}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=0bd13075da83533e0cb09d2e0e5b765f58ac0a75643bdb6b01c93663a34d7f943eb30be1d77fdb4cc3df9391b1a3491775820281df862fc2f279a18c3fe5bd80 next_version=145 time=1.110983ms accesses_build_time=36.26µs finishing_session_time=996.064µs -2026-04-20T10:54:34.397309Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="27d9e10f36ef690699941fd87281929ee793060ba5eeb411ca6b2df1f636e048" -2026-04-20T10:54:34.397349Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="117292103cb1c2c2b629b5238e9e3099b0e528d4c50e476652d0669b659ade82" -2026-04-20T10:54:34.397397Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4afb249ed3060d2b53b8d8fe87db52a542f2cfb587eaa09bb057c6dafc545dc37fafa9e851645d806a67cac86b49de84a4f93eac65be42fd00c4daff9cf2aba1" next_state_root="0bd13075da83533e0cb09d2e0e5b765f58ac0a75643bdb6b01c93663a34d7f943eb30be1d77fdb4cc3df9391b1a3491775820281df862fc2f279a18c3fe5bd80" aggregated_proofs=0 proof_receipts=2 -2026-04-20T10:54:34.397936Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 145, latest_finalized_slot_number: 144, sync_status: Synced { synced_da_height: 144 }, .. } -2026-04-20T10:54:34.398022Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=94 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 145, latest_finalized_slot_number: 144, sync_status: Synced { synced_da_height: 144 }, .. } -2026-04-20T10:54:34.398081Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=94 -2026-04-20T10:54:34.398302Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:54:34.398377Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=90 -2026-04-20T10:54:34.398481Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=140 -2026-04-20T10:54:34.398616Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:54:34.398785Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=140 sequence_number=230 -2026-04-20T10:54:34.398804Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=230 blob_id=2147877316557107462744376638883530147 visible_slot_number_after_increase=140 visible_slots_to_advance=1 -2026-04-20T10:54:34.398831Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:54:34.400355Z DEBUG manage_blob_submission_inside_task{blob_id=2147877316557107462744376638883530147 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x78ccfaaba0267dbd62b1bb346ed81994c9bf3b902fa0324dfbf0bdff8f606f7f sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=146 include_at=146 bytes=13 time=494.347µs -2026-04-20T10:54:34.404650Z DEBUG compute_state_update{scope="sequencer" rollup_height=95 slot_number=140}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:54:34.404686Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000604592s -2026-04-20T10:54:34.404704Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:54:34.404718Z DEBUG compute_state_update{scope="sequencer" rollup_height=95 slot_number=140}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0bd13075da83533e0cb09d2e0e5b765f58ac0a75643bdb6b01c93663a34d7f943eb30be1d77fdb4cc3df9391b1a3491775820281df862fc2f279a18c3fe5bd80 next_version=146 sesssion_starting_time=5.537124ms -2026-04-20T10:54:34.404922Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:54:34.405011Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:54:34.405384Z DEBUG compute_state_update{scope="sequencer" rollup_height=95 slot_number=140}: sov_state::nomt::prover_storage: computed next state root state_root=55ca26e0b52f783103978f0f5ddf9c6c5a630c46be6ced7915bb5ae486959ed021dc7e4daeda63f3b82de606a8c218178366e3e3e17485427fbbff83994d0fcd next_version=146 time=6.215259ms accesses_build_time=11.409µs finishing_session_time=647.525µs -2026-04-20T10:54:34.962124Z DEBUG sp1_core_executor_runner::native: CHILD sp1_h6kNKoP8TVOKF2gbtGDjjw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:54:34.979335Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:54:34.990935Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2571778 cycles -2026-04-20T10:54:34.993735Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [76, 103, 73, 139, 100, 211, 36, 66, 123, 219, 215, 43, 207, 153, 137, 72, 56, 47, 235, 178, 195, 219, 225, 144, 207, 111, 14, 160, 110, 226, 98, 216, 89, 160, 122, 69, 162, 8, 250, 80, 59, 68, 0, 73, 40, 135, 68, 5, 47, 5, 6, 144, 117, 40, 50, 28, 176, 98, 42, 196, 23, 175, 100, 8, 71, 166, 113, 5, 150, 247, 227, 32, 28, 47, 58, 122, 38, 37, 119, 181, 55, 207, 27, 75, 181, 15, 25, 116, 68, 55, 63, 30, 103, 106, 195, 146, 98, 71, 179, 138, 61, 222, 219, 50, 50, 167, 29, 53, 77, 100, 35, 216, 198, 230, 94, 250, 194, 245, 112, 116, 12, 171, 156, 183, 230, 48, 156, 129, 155, 137, 100, 48, 132, 39, 115, 16, 193, 66, 181, 119, 30, 227, 133, 63, 10, 240, 231, 51, 152, 34, 52, 151, 154, 64, 88, 83, 95, 56, 68, 71, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:54:35.102339Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:54:35.102385Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:54:35.111724Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:54:35.147727Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BtPiq7MbQe-sUZnfAu1DLw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:54:35.150554Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BtPiq7MbQe-sUZnfAu1DLw==: stderr: -2026-04-20T10:54:35.150567Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BtPiq7MbQe-sUZnfAu1DLw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:54:35.150575Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BtPiq7MbQe-sUZnfAu1DLw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:54:35.150584Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BtPiq7MbQe-sUZnfAu1DLw==: stderr: stack backtrace: -2026-04-20T10:54:35.150590Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BtPiq7MbQe-sUZnfAu1DLw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:54:35.150596Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BtPiq7MbQe-sUZnfAu1DLw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:54:35.150683Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:54:35.151513Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:54:35.151812Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:54:35.218507Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:54:35.218550Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:54:35.218673Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:54:35.218848Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:54:35.218907Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:54:35.219289Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=231 blob_id=2147877317548441333622506105962426885 -2026-04-20T10:54:35.784455Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Ozt471s5TvGo8o-plVVDwg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:54:35.798391Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:54:35.810339Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1965059 cycles -2026-04-20T10:54:35.813007Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [40, 248, 109, 121, 77, 171, 246, 84, 237, 48, 152, 77, 234, 231, 62, 173, 174, 33, 147, 137, 21, 246, 227, 116, 40, 105, 45, 173, 123, 12, 195, 143, 76, 109, 132, 65, 208, 245, 124, 2, 176, 224, 194, 124, 193, 251, 223, 105, 229, 28, 88, 55, 0, 17, 110, 244, 28, 107, 194, 205, 150, 142, 34, 103, 125, 152, 129, 149, 205, 9, 249, 227, 227, 22, 160, 253, 76, 121, 243, 207, 219, 186, 155, 0, 179, 169, 66, 60, 84, 250, 181, 123, 247, 233, 192, 236, 89, 147, 31, 198, 218, 98, 15, 189, 1, 207, 98, 204, 33, 242, 30, 120, 193, 51, 127, 229, 108, 24, 255, 149, 109, 56, 92, 39, 41, 165, 24, 184, 190, 24, 7, 150, 102, 184, 75, 203, 140, 125, 80, 161, 140, 233, 24, 39, 199, 234, 229, 127, 89, 129, 92, 245, 191, 158, 69, 250, 106, 19, 15, 196, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:54:35.856907Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:54:35.856935Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:54:35.925923Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:54:35.960951Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pGDD2WLWTF6ZCXUt7b_SHg==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:54:35.963797Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pGDD2WLWTF6ZCXUt7b_SHg==: stderr: -2026-04-20T10:54:35.963811Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pGDD2WLWTF6ZCXUt7b_SHg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:54:35.963820Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pGDD2WLWTF6ZCXUt7b_SHg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:54:35.963828Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pGDD2WLWTF6ZCXUt7b_SHg==: stderr: stack backtrace: -2026-04-20T10:54:35.963835Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pGDD2WLWTF6ZCXUt7b_SHg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:54:35.963841Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pGDD2WLWTF6ZCXUt7b_SHg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:54:35.963984Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:54:35.964765Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:54:35.965058Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:54:36.031627Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:54:36.031670Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:54:36.031893Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:54:36.032645Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=232 blob_id=2147877318531273253992463057035511962 -2026-04-20T10:54:40.394609Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=146 prev_hash=0x9d935899c9b6c3fa1ff92773d91b20ba4b190562f51c3795b8dd0775d419d604 hash=0x7e35ff13c7b6e3fdc127698b0a9884f48c5fbf4c54c192f09be5d5e0c48d8441 producing_time=1.296452ms -2026-04-20T10:54:40.396392Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=146 current_state_root="0bd13075da83533e0cb09d2e0e5b765f58ac0a75643bdb6b01c93663a34d7f943eb30be1d77fdb4cc3df9391b1a3491775820281df862fc2f279a18c3fe5bd80" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x78ccfaaba0267dbd62b1bb346ed81994c9bf3b902fa0324dfbf0bdff8f606f7f"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x5fd2281dc590ae077d85ab956006b538bf7d2879b5116f77f567eedf92be1fc2, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x2643f5551d906bc58468bf29faf43beb6c0b3fe1c60b278fbae6e28e754e1a20, len=625"] -2026-04-20T10:54:40.396645Z DEBUG StfBlueprint::apply_slot{context=Node da_height=146}: sov_chain_state: Setting next visible slot number next_visible_slot_number=140 -2026-04-20T10:54:40.396781Z DEBUG StfBlueprint::apply_slot{context=Node da_height=146}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x78ccfaaba0267dbd62b1bb346ed81994c9bf3b902fa0324dfbf0bdff8f606f7f}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:54:40.396957Z DEBUG StfBlueprint::apply_slot{context=Node da_height=146}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0bd13075da83533e0cb09d2e0e5b765f58ac0a75643bdb6b01c93663a34d7f943eb30be1d77fdb4cc3df9391b1a3491775820281df862fc2f279a18c3fe5bd80 next_version=146 sesssion_starting_time=47.84µs -2026-04-20T10:54:40.397976Z DEBUG StfBlueprint::apply_slot{context=Node da_height=146}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=55ca26e0b52f783103978f0f5ddf9c6c5a630c46be6ced7915bb5ae486959ed0131f22b3b7c19d18a96721ba8dc142620e3e9729effc70fff453589f9d8a6f57 next_version=146 time=1.101163ms accesses_build_time=33.58µs finishing_session_time=993.594µs -2026-04-20T10:54:40.398182Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4afb249ed3060d2b53b8d8fe87db52a542f2cfb587eaa09bb057c6dafc545dc30bc6a37884d7c50d38858a1609f15e4c40d70f05f94105c263259a38a1cd9779" next_state_root="55ca26e0b52f783103978f0f5ddf9c6c5a630c46be6ced7915bb5ae486959ed0131f22b3b7c19d18a96721ba8dc142620e3e9729effc70fff453589f9d8a6f57" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:54:40.398690Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 146, latest_finalized_slot_number: 145, sync_status: Synced { synced_da_height: 145 }, .. } -2026-04-20T10:54:40.398793Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=95 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 146, latest_finalized_slot_number: 145, sync_status: Synced { synced_da_height: 145 }, .. } -2026-04-20T10:54:40.398865Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=95 -2026-04-20T10:54:40.415918Z DEBUG sov_stf_runner::runner: Block execution complete time=6.011215483s -2026-04-20T10:54:40.415946Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:54:40.416191Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:54:40.416262Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:54:40.976588Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ENSkbpv9RFOrye2O2JbIOw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:54:40.983512Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:54:40.994792Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1034510 cycles -2026-04-20T10:54:40.997435Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [19, 71, 198, 7, 47, 249, 210, 42, 98, 200, 236, 169, 198, 245, 99, 208, 216, 140, 80, 244, 251, 93, 40, 131, 194, 198, 84, 2, 149, 54, 125, 34, 80, 236, 184, 71, 12, 130, 40, 116, 221, 125, 247, 228, 52, 211, 220, 93, 21, 182, 175, 6, 143, 88, 64, 123, 134, 233, 76, 55, 97, 109, 231, 79, 19, 71, 198, 7, 47, 249, 210, 42, 98, 200, 236, 169, 198, 245, 99, 208, 216, 140, 80, 244, 251, 93, 40, 131, 194, 198, 84, 2, 149, 54, 125, 34, 96, 56, 137, 156, 94, 186, 73, 70, 9, 124, 91, 25, 11, 114, 231, 21, 225, 60, 236, 107, 229, 112, 190, 55, 28, 175, 102, 50, 83, 42, 156, 186, 200, 86, 251, 140, 237, 81, 153, 14, 209, 30, 208, 82, 21, 195, 96, 224, 95, 127, 139, 164, 153, 9, 108, 2, 88, 25, 88, 196, 109, 42, 101, 20, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:54:41.054076Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:54:41.054119Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:54:41.123230Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:54:41.156660Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kbZBtY5iTaGrEcV-0A4qsQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:54:41.159483Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kbZBtY5iTaGrEcV-0A4qsQ==: stderr: -2026-04-20T10:54:41.159497Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kbZBtY5iTaGrEcV-0A4qsQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:54:41.159505Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kbZBtY5iTaGrEcV-0A4qsQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:54:41.159513Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kbZBtY5iTaGrEcV-0A4qsQ==: stderr: stack backtrace: -2026-04-20T10:54:41.159519Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kbZBtY5iTaGrEcV-0A4qsQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:54:41.159525Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kbZBtY5iTaGrEcV-0A4qsQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:54:41.159663Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:54:41.160441Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:54:41.160741Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:54:41.233107Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:54:41.233151Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:54:41.233261Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:54:41.233804Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=233 blob_id=2147877324820149064573180335881792959 -2026-04-20T10:54:46.397132Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=147 prev_hash=0x7e35ff13c7b6e3fdc127698b0a9884f48c5fbf4c54c192f09be5d5e0c48d8441 hash=0x9a28619acfbe738f9c4722307fcb460d1b1900428e51b455e0f0927c5a4455ae producing_time=1.232232ms -2026-04-20T10:54:46.408046Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=147 current_state_root="55ca26e0b52f783103978f0f5ddf9c6c5a630c46be6ced7915bb5ae486959ed0131f22b3b7c19d18a96721ba8dc142620e3e9729effc70fff453589f9d8a6f57" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x839c7af944010729d0c13e03c812528dfa57711fe6904f9e40fa9f97b7d5ea03, len=625"] -2026-04-20T10:54:46.408410Z DEBUG StfBlueprint::apply_slot{context=Node da_height=147}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=55ca26e0b52f783103978f0f5ddf9c6c5a630c46be6ced7915bb5ae486959ed0131f22b3b7c19d18a96721ba8dc142620e3e9729effc70fff453589f9d8a6f57 next_version=147 sesssion_starting_time=48.839µs -2026-04-20T10:54:46.409242Z DEBUG StfBlueprint::apply_slot{context=Node da_height=147}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=55ca26e0b52f783103978f0f5ddf9c6c5a630c46be6ced7915bb5ae486959ed00a4f4be51403c2ce444a084f0bfdfc3f6c0cb21479120521838dc3379d407d53 next_version=147 time=898.644µs accesses_build_time=16.97µs finishing_session_time=794.805µs -2026-04-20T10:54:46.409322Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="0bd13075da83533e0cb09d2e0e5b765f58ac0a75643bdb6b01c93663a34d7f943eb30be1d77fdb4cc3df9391b1a3491775820281df862fc2f279a18c3fe5bd80" next_state_root="55ca26e0b52f783103978f0f5ddf9c6c5a630c46be6ced7915bb5ae486959ed00a4f4be51403c2ce444a084f0bfdfc3f6c0cb21479120521838dc3379d407d53" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:54:46.409865Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 147, latest_finalized_slot_number: 146, sync_status: Synced { synced_da_height: 146 }, .. } -2026-04-20T10:54:46.409940Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=95 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 147, latest_finalized_slot_number: 146, sync_status: Synced { synced_da_height: 146 }, .. } -2026-04-20T10:54:46.410008Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=95 -2026-04-20T10:54:46.410263Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:54:46.410353Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=91 -2026-04-20T10:54:46.410459Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=142 -2026-04-20T10:54:46.410604Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:54:46.410945Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=142 sequence_number=234 -2026-04-20T10:54:46.410968Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=234 blob_id=2147877331078722928632950794893472874 visible_slot_number_after_increase=142 visible_slots_to_advance=2 -2026-04-20T10:54:46.411014Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:54:46.412759Z DEBUG manage_blob_submission_inside_task{blob_id=2147877331078722928632950794893472874 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x15370817feeea08f0a5a87d58508145137add7f09a4ad05545370ce529809361 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=148 include_at=148 bytes=13 time=667.845µs -2026-04-20T10:54:46.419681Z DEBUG compute_state_update{scope="sequencer" rollup_height=96 slot_number=142}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:54:46.419706Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003762501s -2026-04-20T10:54:46.419715Z DEBUG compute_state_update{scope="sequencer" rollup_height=96 slot_number=142}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=55ca26e0b52f783103978f0f5ddf9c6c5a630c46be6ced7915bb5ae486959ed00a4f4be51403c2ce444a084f0bfdfc3f6c0cb21479120521838dc3379d407d53 next_version=148 sesssion_starting_time=8.261957ms -2026-04-20T10:54:46.419719Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:54:46.420419Z DEBUG compute_state_update{scope="sequencer" rollup_height=96 slot_number=142}: sov_state::nomt::prover_storage: computed next state root state_root=15e52608117bec27f4e3d8a835ebfd5272a6bf3472da49b27505ebf123de1af169f61a923f2194d04259da5fe07ae47ee42d509d7636256aedb4a1f1385c44e2 next_version=148 time=8.979662ms accesses_build_time=13.61µs finishing_session_time=694.536µs -2026-04-20T10:54:52.399076Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=148 prev_hash=0x9a28619acfbe738f9c4722307fcb460d1b1900428e51b455e0f0927c5a4455ae hash=0x3d0cc118f301665fc5aa011cfe5480073424925e1f73ff56b81117d1da3ae1c9 producing_time=1.184563ms -2026-04-20T10:54:52.401863Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=148 current_state_root="55ca26e0b52f783103978f0f5ddf9c6c5a630c46be6ced7915bb5ae486959ed00a4f4be51403c2ce444a084f0bfdfc3f6c0cb21479120521838dc3379d407d53" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x15370817feeea08f0a5a87d58508145137add7f09a4ad05545370ce529809361"] proof_blobs=[] -2026-04-20T10:54:52.402135Z DEBUG StfBlueprint::apply_slot{context=Node da_height=148}: sov_chain_state: Setting next visible slot number next_visible_slot_number=142 -2026-04-20T10:54:52.402398Z DEBUG StfBlueprint::apply_slot{context=Node da_height=148}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x15370817feeea08f0a5a87d58508145137add7f09a4ad05545370ce529809361}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:54:52.402604Z DEBUG StfBlueprint::apply_slot{context=Node da_height=148}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=55ca26e0b52f783103978f0f5ddf9c6c5a630c46be6ced7915bb5ae486959ed00a4f4be51403c2ce444a084f0bfdfc3f6c0cb21479120521838dc3379d407d53 next_version=148 sesssion_starting_time=47.67µs -2026-04-20T10:54:52.403628Z DEBUG StfBlueprint::apply_slot{context=Node da_height=148}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=15e52608117bec27f4e3d8a835ebfd5272a6bf3472da49b27505ebf123de1af1683059b8f99557a78e8c80f824ea503d8a2003afe22b4cf65f501d8864dfb2d9 next_version=148 time=1.111863ms accesses_build_time=38.15µs finishing_session_time=994.283µs -2026-04-20T10:54:52.403831Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="5fd2281dc590ae077d85ab956006b538bf7d2879b5116f77f567eedf92be1fc2" -2026-04-20T10:54:52.403852Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="2643f5551d906bc58468bf29faf43beb6c0b3fe1c60b278fbae6e28e754e1a20" -2026-04-20T10:54:52.403864Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="839c7af944010729d0c13e03c812528dfa57711fe6904f9e40fa9f97b7d5ea03" -2026-04-20T10:54:52.403879Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="55ca26e0b52f783103978f0f5ddf9c6c5a630c46be6ced7915bb5ae486959ed0131f22b3b7c19d18a96721ba8dc142620e3e9729effc70fff453589f9d8a6f57" next_state_root="15e52608117bec27f4e3d8a835ebfd5272a6bf3472da49b27505ebf123de1af1683059b8f99557a78e8c80f824ea503d8a2003afe22b4cf65f501d8864dfb2d9" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:54:52.404406Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 148, latest_finalized_slot_number: 147, sync_status: Synced { synced_da_height: 147 }, .. } -2026-04-20T10:54:52.404484Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=96 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 148, latest_finalized_slot_number: 147, sync_status: Synced { synced_da_height: 147 }, .. } -2026-04-20T10:54:52.404540Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=96 -2026-04-20T10:54:52.404793Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:54:52.404870Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=92 -2026-04-20T10:54:52.404963Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=143 -2026-04-20T10:54:52.405084Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:54:52.405262Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=143 sequence_number=235 -2026-04-20T10:54:52.405284Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=235 blob_id=2147877338326273065046167099731030912 visible_slot_number_after_increase=143 visible_slots_to_advance=1 -2026-04-20T10:54:52.405322Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:54:52.406887Z DEBUG manage_blob_submission_inside_task{blob_id=2147877338326273065046167099731030912 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xa8c4890cfb503cf6c4a3f3dd2f2386e717cad677fd35bd12435a3460a8d77b12 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=149 include_at=149 bytes=13 time=517.896µs -2026-04-20T10:54:52.410560Z DEBUG compute_state_update{scope="sequencer" rollup_height=97 slot_number=143}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:54:52.410604Z DEBUG sov_stf_runner::runner: Block execution complete time=5.990885324s -2026-04-20T10:54:52.410628Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:54:52.410639Z DEBUG compute_state_update{scope="sequencer" rollup_height=97 slot_number=143}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=15e52608117bec27f4e3d8a835ebfd5272a6bf3472da49b27505ebf123de1af1683059b8f99557a78e8c80f824ea503d8a2003afe22b4cf65f501d8864dfb2d9 next_version=149 sesssion_starting_time=4.923978ms -2026-04-20T10:54:52.410841Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:54:52.410928Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:54:52.411295Z DEBUG compute_state_update{scope="sequencer" rollup_height=97 slot_number=143}: sov_state::nomt::prover_storage: computed next state root state_root=6c7f48671874c3cc838093057abe43a8f65b6d3ecbfb991cc7704764eb0dd42b1cf9a31c8e9a270b98401bd145f4ad6b2c6f911c7d7b4d51ed25268e7bd8bbca next_version=149 time=5.596424ms accesses_build_time=14.46µs finishing_session_time=630.716µs -2026-04-20T10:54:52.968843Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RznnFn0KSh-YE7SWPFAwAg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:54:52.987568Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:54:52.999533Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2798550 cycles -2026-04-20T10:54:53.002199Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [19, 71, 198, 7, 47, 249, 210, 42, 98, 200, 236, 169, 198, 245, 99, 208, 216, 140, 80, 244, 251, 93, 40, 131, 194, 198, 84, 2, 149, 54, 125, 34, 94, 34, 196, 143, 137, 69, 102, 189, 47, 73, 255, 167, 149, 69, 244, 124, 230, 251, 246, 112, 134, 48, 9, 98, 77, 202, 196, 110, 178, 20, 185, 227, 48, 99, 105, 231, 164, 235, 160, 141, 173, 207, 185, 212, 189, 75, 111, 203, 14, 69, 120, 39, 196, 114, 2, 113, 118, 239, 18, 180, 115, 237, 59, 23, 69, 11, 20, 103, 203, 124, 57, 227, 43, 223, 139, 81, 225, 142, 209, 88, 136, 8, 115, 199, 254, 5, 124, 16, 220, 164, 36, 204, 17, 64, 62, 248, 74, 94, 32, 78, 139, 31, 195, 137, 29, 81, 207, 177, 145, 69, 59, 159, 25, 9, 215, 140, 45, 62, 128, 172, 175, 39, 186, 28, 49, 115, 88, 164, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:54:53.116642Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:54:53.116680Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:54:53.218905Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:54:53.254003Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nwSM47Q7SVmLtIzfZG7B9w==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:54:53.256820Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nwSM47Q7SVmLtIzfZG7B9w==: stderr: -2026-04-20T10:54:53.256832Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nwSM47Q7SVmLtIzfZG7B9w==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:54:53.256841Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nwSM47Q7SVmLtIzfZG7B9w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:54:53.256849Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nwSM47Q7SVmLtIzfZG7B9w==: stderr: stack backtrace: -2026-04-20T10:54:53.256855Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nwSM47Q7SVmLtIzfZG7B9w==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:54:53.256861Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nwSM47Q7SVmLtIzfZG7B9w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:54:53.256993Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:54:53.257783Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:54:53.258092Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:54:53.329464Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:54:53.329508Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:54:53.329679Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:54:53.329853Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:54:53.329911Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:54:53.330304Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=236 blob_id=2147877339443271509096247173024097405 -2026-04-20T10:54:53.883775Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wR_2oqrZRNGcHKbWb56ioA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:54:53.891351Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:54:53.902044Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1131992 cycles -2026-04-20T10:54:53.905101Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 60, 118, 36, 4, 254, 222, 123, 142, 79, 63, 67, 2, 62, 152, 95, 220, 164, 111, 24, 183, 133, 196, 55, 158, 62, 64, 195, 119, 224, 88, 31, 94, 69, 44, 206, 120, 98, 184, 36, 172, 39, 93, 132, 241, 178, 59, 204, 219, 83, 250, 233, 133, 253, 110, 245, 98, 171, 254, 157, 88, 118, 145, 144, 96, 60, 118, 36, 4, 254, 222, 123, 142, 79, 63, 67, 2, 62, 152, 95, 220, 164, 111, 24, 183, 133, 196, 55, 158, 62, 64, 195, 119, 224, 88, 31, 101, 161, 148, 230, 141, 168, 124, 158, 42, 42, 239, 9, 110, 244, 27, 109, 61, 164, 230, 76, 81, 81, 83, 126, 77, 25, 248, 4, 109, 153, 52, 182, 168, 197, 29, 35, 212, 85, 218, 10, 177, 63, 56, 18, 167, 180, 229, 157, 233, 128, 212, 79, 245, 161, 232, 95, 73, 179, 69, 169, 125, 102, 200, 71, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:54:53.966653Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:54:53.966699Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:54:54.038472Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:54:54.071553Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aQ0UumaLS4ySWpiavwryLw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:54:54.074392Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aQ0UumaLS4ySWpiavwryLw==: stderr: -2026-04-20T10:54:54.074416Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aQ0UumaLS4ySWpiavwryLw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:54:54.074426Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aQ0UumaLS4ySWpiavwryLw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:54:54.074433Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aQ0UumaLS4ySWpiavwryLw==: stderr: stack backtrace: -2026-04-20T10:54:54.074439Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aQ0UumaLS4ySWpiavwryLw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:54:54.074446Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aQ0UumaLS4ySWpiavwryLw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:54:54.074565Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:54:54.075301Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:54:54.075664Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:54:54.142203Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:54:54.142242Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:54:54.142376Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:54:54.142966Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=237 blob_id=2147877340426169817878720050294203091 -2026-04-20T10:54:58.400748Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=149 prev_hash=0x3d0cc118f301665fc5aa011cfe5480073424925e1f73ff56b81117d1da3ae1c9 hash=0x6d210379f5ee1223ec9979166cb95ad191cb45b38a5546c454d34eb9837ff1cf producing_time=1.169722ms -2026-04-20T10:54:58.402461Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=149 current_state_root="15e52608117bec27f4e3d8a835ebfd5272a6bf3472da49b27505ebf123de1af1683059b8f99557a78e8c80f824ea503d8a2003afe22b4cf65f501d8864dfb2d9" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa8c4890cfb503cf6c4a3f3dd2f2386e717cad677fd35bd12435a3460a8d77b12"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xca39df248d7ade79e887edb2e5b906e2d84a16b2a50455d9288a856f9ed48e5a, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x72283e8f9fd94f6e8c36752dacc5b368b42748c7a551e57b803776d3a44c7d2b, len=625"] -2026-04-20T10:54:58.402688Z DEBUG StfBlueprint::apply_slot{context=Node da_height=149}: sov_chain_state: Setting next visible slot number next_visible_slot_number=143 -2026-04-20T10:54:58.402823Z DEBUG StfBlueprint::apply_slot{context=Node da_height=149}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xa8c4890cfb503cf6c4a3f3dd2f2386e717cad677fd35bd12435a3460a8d77b12}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:54:58.402997Z DEBUG StfBlueprint::apply_slot{context=Node da_height=149}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=15e52608117bec27f4e3d8a835ebfd5272a6bf3472da49b27505ebf123de1af1683059b8f99557a78e8c80f824ea503d8a2003afe22b4cf65f501d8864dfb2d9 next_version=149 sesssion_starting_time=47.41µs -2026-04-20T10:54:58.404045Z DEBUG StfBlueprint::apply_slot{context=Node da_height=149}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6c7f48671874c3cc838093057abe43a8f65b6d3ecbfb991cc7704764eb0dd42b203f7aba2edba99e12d4530ae590af464d255144a1716e5d911627c52d4a565b next_version=149 time=1.128703ms accesses_build_time=32.21µs finishing_session_time=1.022613ms -2026-04-20T10:54:58.404268Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="55ca26e0b52f783103978f0f5ddf9c6c5a630c46be6ced7915bb5ae486959ed00a4f4be51403c2ce444a084f0bfdfc3f6c0cb21479120521838dc3379d407d53" next_state_root="6c7f48671874c3cc838093057abe43a8f65b6d3ecbfb991cc7704764eb0dd42b203f7aba2edba99e12d4530ae590af464d255144a1716e5d911627c52d4a565b" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:54:58.404754Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 149, latest_finalized_slot_number: 148, sync_status: Synced { synced_da_height: 148 }, .. } -2026-04-20T10:54:58.404842Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=97 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 149, latest_finalized_slot_number: 148, sync_status: Synced { synced_da_height: 148 }, .. } -2026-04-20T10:54:58.404900Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=97 -2026-04-20T10:54:58.419562Z DEBUG sov_stf_runner::runner: Block execution complete time=6.008936949s -2026-04-20T10:54:58.419578Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:54:58.419677Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:54:58.419764Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:54:58.975265Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QNhG3SDMTT-qk_GnqAXMnA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:54:58.991798Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:54:59.002661Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2397910 cycles -2026-04-20T10:54:59.005390Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 60, 118, 36, 4, 254, 222, 123, 142, 79, 63, 67, 2, 62, 152, 95, 220, 164, 111, 24, 183, 133, 196, 55, 158, 62, 64, 195, 119, 224, 88, 31, 11, 111, 222, 229, 142, 29, 22, 104, 74, 26, 24, 248, 28, 96, 195, 168, 253, 25, 211, 238, 241, 223, 25, 196, 107, 23, 6, 114, 17, 147, 214, 62, 13, 145, 30, 202, 33, 199, 41, 250, 223, 104, 60, 238, 41, 117, 207, 250, 96, 133, 121, 125, 49, 25, 97, 13, 250, 129, 166, 240, 162, 104, 176, 13, 84, 65, 67, 106, 102, 37, 122, 232, 77, 143, 62, 255, 38, 174, 76, 215, 156, 210, 157, 1, 152, 110, 4, 230, 242, 125, 134, 125, 58, 251, 153, 88, 27, 105, 247, 94, 239, 39, 18, 174, 68, 18, 147, 172, 96, 181, 177, 26, 25, 39, 118, 233, 99, 66, 122, 141, 190, 123, 32, 171, 40, 109, 208, 196, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:54:59.110364Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:54:59.110412Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:54:59.128117Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:54:59.160018Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ucqJM80_QXemyNGUeyz2rw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:54:59.162860Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ucqJM80_QXemyNGUeyz2rw==: stderr: -2026-04-20T10:54:59.162884Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ucqJM80_QXemyNGUeyz2rw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:54:59.162893Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ucqJM80_QXemyNGUeyz2rw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:54:59.162900Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ucqJM80_QXemyNGUeyz2rw==: stderr: stack backtrace: -2026-04-20T10:54:59.162906Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ucqJM80_QXemyNGUeyz2rw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:54:59.162913Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ucqJM80_QXemyNGUeyz2rw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:54:59.162986Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:54:59.163803Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:54:59.164101Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:54:59.190453Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:54:59.190478Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:54:59.190627Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:54:59.191136Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=238 blob_id=2147877346528774781839967374639754874 -2026-04-20T10:55:04.403213Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=150 prev_hash=0x6d210379f5ee1223ec9979166cb95ad191cb45b38a5546c454d34eb9837ff1cf hash=0x160e4e41814db0b6a7dd94b4333de384e8902a9dc413d4e318bb418880934aeb producing_time=1.283712ms -2026-04-20T10:55:04.412003Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=150 current_state_root="6c7f48671874c3cc838093057abe43a8f65b6d3ecbfb991cc7704764eb0dd42b203f7aba2edba99e12d4530ae590af464d255144a1716e5d911627c52d4a565b" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x01cc384253776f6b511dcf6e2c48500352bce83a9b8660ee21f1ea97102233e1, len=625"] -2026-04-20T10:55:04.412393Z DEBUG StfBlueprint::apply_slot{context=Node da_height=150}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6c7f48671874c3cc838093057abe43a8f65b6d3ecbfb991cc7704764eb0dd42b203f7aba2edba99e12d4530ae590af464d255144a1716e5d911627c52d4a565b next_version=150 sesssion_starting_time=50.64µs -2026-04-20T10:55:04.413243Z DEBUG StfBlueprint::apply_slot{context=Node da_height=150}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6c7f48671874c3cc838093057abe43a8f65b6d3ecbfb991cc7704764eb0dd42b48fcadc67d32a31355bcda321cf9ce4d45975ac52c8cdd6576dede2cc5aa746e next_version=150 time=933.294µs accesses_build_time=31.9µs finishing_session_time=816.875µs -2026-04-20T10:55:04.413297Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="15e52608117bec27f4e3d8a835ebfd5272a6bf3472da49b27505ebf123de1af1683059b8f99557a78e8c80f824ea503d8a2003afe22b4cf65f501d8864dfb2d9" next_state_root="6c7f48671874c3cc838093057abe43a8f65b6d3ecbfb991cc7704764eb0dd42b48fcadc67d32a31355bcda321cf9ce4d45975ac52c8cdd6576dede2cc5aa746e" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:55:04.413708Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 150, latest_finalized_slot_number: 149, sync_status: Synced { synced_da_height: 149 }, .. } -2026-04-20T10:55:04.413746Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=97 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 150, latest_finalized_slot_number: 149, sync_status: Synced { synced_da_height: 149 }, .. } -2026-04-20T10:55:04.413774Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=97 -2026-04-20T10:55:04.413888Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:55:04.413916Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=93 -2026-04-20T10:55:04.413991Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=145 -2026-04-20T10:55:04.414123Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:55:04.414509Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=239 blob_id=2147877352844223037241263022285076757 visible_slot_number_after_increase=145 visible_slots_to_advance=2 -2026-04-20T10:55:04.414504Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=145 sequence_number=239 -2026-04-20T10:55:04.414586Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:55:04.416171Z DEBUG manage_blob_submission_inside_task{blob_id=2147877352844223037241263022285076757 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xc4729da0da1779c7f4149eedabbd27f8f44c377aaa26831320375ab0d727f4bc sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=151 include_at=151 bytes=13 time=462.397µs -2026-04-20T10:55:04.425244Z DEBUG compute_state_update{scope="sequencer" rollup_height=98 slot_number=145}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:55:04.425285Z DEBUG sov_stf_runner::runner: Block execution complete time=6.005706989s -2026-04-20T10:55:04.425309Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:55:04.425334Z DEBUG compute_state_update{scope="sequencer" rollup_height=98 slot_number=145}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6c7f48671874c3cc838093057abe43a8f65b6d3ecbfb991cc7704764eb0dd42b48fcadc67d32a31355bcda321cf9ce4d45975ac52c8cdd6576dede2cc5aa746e next_version=151 sesssion_starting_time=10.324933ms -2026-04-20T10:55:04.426057Z DEBUG compute_state_update{scope="sequencer" rollup_height=98 slot_number=145}: sov_state::nomt::prover_storage: computed next state root state_root=670735e491031b3c81d6e5a019ff2126ac636f1e3644b696085e2fe7d93d779d517dc8632db1058f63c6844dd3fd9a24daa6e351e585c49eaf83c9971bcb554a next_version=151 time=11.062418ms accesses_build_time=13.78µs finishing_session_time=696.675µs -2026-04-20T10:55:10.405170Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=151 prev_hash=0x160e4e41814db0b6a7dd94b4333de384e8902a9dc413d4e318bb418880934aeb hash=0x900f0d2f873ed4dac4d3c52cd0c1f3af704437d64aa5d9177a6582da72debde9 producing_time=1.357301ms -2026-04-20T10:55:10.406980Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=151 current_state_root="6c7f48671874c3cc838093057abe43a8f65b6d3ecbfb991cc7704764eb0dd42b48fcadc67d32a31355bcda321cf9ce4d45975ac52c8cdd6576dede2cc5aa746e" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc4729da0da1779c7f4149eedabbd27f8f44c377aaa26831320375ab0d727f4bc"] proof_blobs=[] -2026-04-20T10:55:10.407326Z DEBUG StfBlueprint::apply_slot{context=Node da_height=151}: sov_chain_state: Setting next visible slot number next_visible_slot_number=145 -2026-04-20T10:55:10.407585Z DEBUG StfBlueprint::apply_slot{context=Node da_height=151}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xc4729da0da1779c7f4149eedabbd27f8f44c377aaa26831320375ab0d727f4bc}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:55:10.407785Z DEBUG StfBlueprint::apply_slot{context=Node da_height=151}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6c7f48671874c3cc838093057abe43a8f65b6d3ecbfb991cc7704764eb0dd42b48fcadc67d32a31355bcda321cf9ce4d45975ac52c8cdd6576dede2cc5aa746e next_version=151 sesssion_starting_time=48.8µs -2026-04-20T10:55:10.408823Z DEBUG StfBlueprint::apply_slot{context=Node da_height=151}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=670735e491031b3c81d6e5a019ff2126ac636f1e3644b696085e2fe7d93d779d7f753cc5561a442acef772bd3ea22fe47b8900b80f2f380df96b41352db2c30a next_version=151 time=1.123442ms accesses_build_time=34.52µs finishing_session_time=1.009963ms -2026-04-20T10:55:10.409025Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ca39df248d7ade79e887edb2e5b906e2d84a16b2a50455d9288a856f9ed48e5a" -2026-04-20T10:55:10.409045Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="72283e8f9fd94f6e8c36752dacc5b368b42748c7a551e57b803776d3a44c7d2b" -2026-04-20T10:55:10.409056Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="01cc384253776f6b511dcf6e2c48500352bce83a9b8660ee21f1ea97102233e1" -2026-04-20T10:55:10.409072Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6c7f48671874c3cc838093057abe43a8f65b6d3ecbfb991cc7704764eb0dd42b203f7aba2edba99e12d4530ae590af464d255144a1716e5d911627c52d4a565b" next_state_root="670735e491031b3c81d6e5a019ff2126ac636f1e3644b696085e2fe7d93d779d7f753cc5561a442acef772bd3ea22fe47b8900b80f2f380df96b41352db2c30a" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:55:10.409637Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 151, latest_finalized_slot_number: 150, sync_status: Synced { synced_da_height: 150 }, .. } -2026-04-20T10:55:10.409730Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=98 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 151, latest_finalized_slot_number: 150, sync_status: Synced { synced_da_height: 150 }, .. } -2026-04-20T10:55:10.409797Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=98 -2026-04-20T10:55:10.410017Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:55:10.410075Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=94 -2026-04-20T10:55:10.410163Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=146 -2026-04-20T10:55:10.410277Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:55:10.410424Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=146 sequence_number=240 -2026-04-20T10:55:10.410445Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=240 blob_id=2147877360092980655591588247138557156 visible_slot_number_after_increase=146 visible_slots_to_advance=1 -2026-04-20T10:55:10.410483Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:55:10.412016Z DEBUG manage_blob_submission_inside_task{blob_id=2147877360092980655591588247138557156 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x5a41e8d68de8a311df7c9d664b4b13610144005e1e4e48153ebd072aa0456030 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=152 include_at=152 bytes=13 time=437.697µs -2026-04-20T10:55:10.419556Z DEBUG compute_state_update{scope="sequencer" rollup_height=99 slot_number=146}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:55:10.419569Z DEBUG sov_stf_runner::runner: Block execution complete time=5.994262553s -2026-04-20T10:55:10.419608Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:55:10.419646Z DEBUG compute_state_update{scope="sequencer" rollup_height=99 slot_number=146}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=670735e491031b3c81d6e5a019ff2126ac636f1e3644b696085e2fe7d93d779d7f753cc5561a442acef772bd3ea22fe47b8900b80f2f380df96b41352db2c30a next_version=152 sesssion_starting_time=8.798064ms -2026-04-20T10:55:10.419709Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:55:10.419791Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:55:10.420351Z DEBUG compute_state_update{scope="sequencer" rollup_height=99 slot_number=146}: sov_state::nomt::prover_storage: computed next state root state_root=1b90b36f65c42cd5213f41433eff683740c9270646b955da5b739b39f7c6f670726cc81a9fd35d514cf48fc2818f5439c892eca746886bfa5fc3ec8eef22c1af next_version=152 time=9.517518ms accesses_build_time=12.42µs finishing_session_time=681.255µs -2026-04-20T10:55:10.972600Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gX8bj2WsQKGFlSGAsRMHWg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:55:10.985655Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:55:10.997027Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1837651 cycles -2026-04-20T10:55:10.999846Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [75, 126, 212, 14, 11, 153, 210, 176, 36, 135, 8, 146, 83, 98, 164, 241, 233, 218, 87, 139, 222, 82, 20, 168, 61, 131, 12, 222, 183, 142, 167, 62, 58, 47, 255, 192, 241, 230, 183, 75, 114, 54, 204, 168, 161, 109, 31, 254, 114, 81, 220, 38, 249, 177, 121, 35, 110, 48, 189, 49, 169, 135, 151, 130, 3, 182, 201, 197, 184, 196, 241, 236, 238, 221, 190, 138, 141, 24, 197, 184, 250, 102, 137, 246, 94, 64, 185, 29, 46, 216, 135, 172, 195, 5, 62, 170, 17, 20, 213, 44, 123, 34, 100, 149, 75, 133, 72, 130, 54, 110, 55, 254, 106, 253, 105, 210, 236, 20, 255, 164, 198, 16, 238, 218, 116, 146, 24, 155, 109, 63, 226, 140, 124, 238, 18, 96, 19, 162, 44, 72, 59, 5, 127, 132, 247, 234, 252, 206, 72, 104, 123, 164, 160, 214, 123, 37, 114, 196, 205, 83, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:55:11.091635Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:55:11.091671Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:55:11.127493Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:55:11.161772Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FpLfX-WGRx6YhsYOIGPgTw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:55:11.164665Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FpLfX-WGRx6YhsYOIGPgTw==: stderr: -2026-04-20T10:55:11.164692Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FpLfX-WGRx6YhsYOIGPgTw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:55:11.164702Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FpLfX-WGRx6YhsYOIGPgTw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:55:11.164709Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FpLfX-WGRx6YhsYOIGPgTw==: stderr: stack backtrace: -2026-04-20T10:55:11.164715Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FpLfX-WGRx6YhsYOIGPgTw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:55:11.164721Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FpLfX-WGRx6YhsYOIGPgTw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:55:11.164815Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:55:11.165588Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:55:11.165880Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:55:11.236645Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:55:11.236696Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:55:11.236812Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:55:11.236970Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:55:11.237027Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:55:11.237506Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=241 blob_id=2147877361091521819684762991269809778 -2026-04-20T10:55:11.802972Z DEBUG sp1_core_executor_runner::native: CHILD sp1_dGcKoUkBQKe4nn3AbUtyNQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:55:11.809849Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:55:11.820986Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1032226 cycles -2026-04-20T10:55:11.823656Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [74, 251, 36, 158, 211, 6, 13, 43, 83, 184, 216, 254, 135, 219, 82, 165, 66, 242, 207, 181, 135, 234, 160, 155, 176, 87, 198, 218, 252, 84, 93, 195, 127, 175, 169, 232, 81, 100, 93, 128, 106, 103, 202, 200, 107, 73, 222, 132, 164, 249, 62, 172, 101, 190, 66, 253, 0, 196, 218, 255, 156, 242, 171, 161, 74, 251, 36, 158, 211, 6, 13, 43, 83, 184, 216, 254, 135, 219, 82, 165, 66, 242, 207, 181, 135, 234, 160, 155, 176, 87, 198, 218, 252, 84, 93, 195, 38, 16, 218, 51, 91, 239, 54, 21, 15, 244, 39, 138, 226, 159, 14, 7, 147, 171, 177, 6, 11, 250, 98, 168, 125, 65, 236, 143, 97, 146, 8, 61, 51, 11, 217, 179, 254, 117, 158, 45, 23, 193, 115, 149, 51, 226, 156, 108, 203, 142, 30, 170, 191, 157, 233, 194, 165, 53, 144, 199, 38, 254, 245, 185, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:55:11.880679Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:55:11.880723Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:55:11.943963Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:55:11.978665Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2zq7Nwl6TNSFJRVhfaq8tQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:55:11.981522Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2zq7Nwl6TNSFJRVhfaq8tQ==: stderr: -2026-04-20T10:55:11.981548Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2zq7Nwl6TNSFJRVhfaq8tQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:55:11.981560Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2zq7Nwl6TNSFJRVhfaq8tQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:55:11.981568Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2zq7Nwl6TNSFJRVhfaq8tQ==: stderr: stack backtrace: -2026-04-20T10:55:11.981579Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2zq7Nwl6TNSFJRVhfaq8tQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:55:11.981587Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2zq7Nwl6TNSFJRVhfaq8tQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:55:11.981684Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:55:11.982530Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:55:11.982817Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:55:12.049363Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:55:12.049407Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:55:12.049553Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:55:12.050111Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=242 blob_id=2147877362074350161412428119302869431 -2026-04-20T10:55:16.407834Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=152 prev_hash=0x900f0d2f873ed4dac4d3c52cd0c1f3af704437d64aa5d9177a6582da72debde9 hash=0x04fb152c61f5a8aa40ca7a95004be3cc81dc14cb1308be4b61fc428d4de8b5c9 producing_time=1.58596ms -2026-04-20T10:55:16.411621Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=152 current_state_root="670735e491031b3c81d6e5a019ff2126ac636f1e3644b696085e2fe7d93d779d7f753cc5561a442acef772bd3ea22fe47b8900b80f2f380df96b41352db2c30a" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x5a41e8d68de8a311df7c9d664b4b13610144005e1e4e48153ebd072aa0456030"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x68956a03caea4b744e54dd01ab2f041432c66b2cb47572b5d4704b7d03c9138a, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x613aa52540ddf20877f28bbca79ab3e054b8c1f0e021f6d6dfc7567914c099de, len=625"] -2026-04-20T10:55:16.411873Z DEBUG StfBlueprint::apply_slot{context=Node da_height=152}: sov_chain_state: Setting next visible slot number next_visible_slot_number=146 -2026-04-20T10:55:16.412012Z DEBUG StfBlueprint::apply_slot{context=Node da_height=152}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x5a41e8d68de8a311df7c9d664b4b13610144005e1e4e48153ebd072aa0456030}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:55:16.412191Z DEBUG StfBlueprint::apply_slot{context=Node da_height=152}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=670735e491031b3c81d6e5a019ff2126ac636f1e3644b696085e2fe7d93d779d7f753cc5561a442acef772bd3ea22fe47b8900b80f2f380df96b41352db2c30a next_version=152 sesssion_starting_time=48.27µs -2026-04-20T10:55:16.413235Z DEBUG StfBlueprint::apply_slot{context=Node da_height=152}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=1b90b36f65c42cd5213f41433eff683740c9270646b955da5b739b39f7c6f6702a31ff425b1985d5f601575c65eab98afe3894b9f6867d5f9218d60aa1435944 next_version=152 time=1.126093ms accesses_build_time=32.19µs finishing_session_time=1.019983ms -2026-04-20T10:55:16.413423Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6c7f48671874c3cc838093057abe43a8f65b6d3ecbfb991cc7704764eb0dd42b48fcadc67d32a31355bcda321cf9ce4d45975ac52c8cdd6576dede2cc5aa746e" next_state_root="1b90b36f65c42cd5213f41433eff683740c9270646b955da5b739b39f7c6f6702a31ff425b1985d5f601575c65eab98afe3894b9f6867d5f9218d60aa1435944" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:55:16.413884Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 152, latest_finalized_slot_number: 151, sync_status: Synced { synced_da_height: 151 }, .. } -2026-04-20T10:55:16.413959Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=99 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 152, latest_finalized_slot_number: 151, sync_status: Synced { synced_da_height: 151 }, .. } -2026-04-20T10:55:16.414014Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=99 -2026-04-20T10:55:16.425499Z DEBUG sov_stf_runner::runner: Block execution complete time=6.005891149s -2026-04-20T10:55:16.425540Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:55:16.425770Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:55:16.425858Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:55:16.992469Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1jaUXu41SXSYsDGjBNqQoQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:55:17.010051Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:55:17.021685Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2499425 cycles -2026-04-20T10:55:17.024500Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [74, 251, 36, 158, 211, 6, 13, 43, 83, 184, 216, 254, 135, 219, 82, 165, 66, 242, 207, 181, 135, 234, 160, 155, 176, 87, 198, 218, 252, 84, 93, 195, 11, 198, 163, 120, 132, 215, 197, 13, 56, 133, 138, 22, 9, 241, 94, 76, 64, 215, 15, 5, 249, 65, 5, 194, 99, 37, 154, 56, 161, 205, 151, 121, 23, 47, 92, 98, 122, 118, 240, 207, 158, 250, 207, 117, 86, 69, 7, 216, 145, 230, 30, 22, 165, 26, 207, 68, 72, 153, 178, 71, 127, 120, 69, 242, 107, 116, 166, 196, 241, 227, 73, 59, 69, 77, 197, 228, 15, 137, 110, 177, 194, 117, 45, 152, 64, 157, 179, 59, 119, 253, 237, 145, 87, 18, 17, 225, 157, 147, 88, 153, 201, 182, 195, 250, 31, 249, 39, 115, 217, 27, 32, 186, 75, 25, 5, 98, 245, 28, 55, 149, 184, 221, 7, 117, 212, 25, 214, 4, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:55:17.130471Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:55:17.130508Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:55:17.234338Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:55:17.268850Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Sx4AYlFLQlukrE6PBWWw3g==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:55:17.271730Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Sx4AYlFLQlukrE6PBWWw3g==: stderr: -2026-04-20T10:55:17.271741Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Sx4AYlFLQlukrE6PBWWw3g==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:55:17.271746Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Sx4AYlFLQlukrE6PBWWw3g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:55:17.271749Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Sx4AYlFLQlukrE6PBWWw3g==: stderr: stack backtrace: -2026-04-20T10:55:17.271752Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Sx4AYlFLQlukrE6PBWWw3g==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:55:17.271755Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Sx4AYlFLQlukrE6PBWWw3g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:55:17.271877Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:55:17.272715Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:55:17.273002Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:55:17.340488Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:55:17.340531Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:55:17.340625Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:55:17.340917Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=243 blob_id=2147877368470791981226694227888425135 -2026-04-20T10:55:22.410405Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=153 prev_hash=0x04fb152c61f5a8aa40ca7a95004be3cc81dc14cb1308be4b61fc428d4de8b5c9 hash=0x708749a2dbbed29b838fbf69f86f6befc96ebebc14e52423e7d276ec695e834b producing_time=1.379821ms -2026-04-20T10:55:22.417040Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=153 current_state_root="1b90b36f65c42cd5213f41433eff683740c9270646b955da5b739b39f7c6f6702a31ff425b1985d5f601575c65eab98afe3894b9f6867d5f9218d60aa1435944" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc722b8fd31de56033ce8dbe6108705610738b5353a6b7018b75f35506edb8e26, len=625"] -2026-04-20T10:55:22.417408Z DEBUG StfBlueprint::apply_slot{context=Node da_height=153}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1b90b36f65c42cd5213f41433eff683740c9270646b955da5b739b39f7c6f6702a31ff425b1985d5f601575c65eab98afe3894b9f6867d5f9218d60aa1435944 next_version=153 sesssion_starting_time=46.359µs -2026-04-20T10:55:22.418252Z DEBUG StfBlueprint::apply_slot{context=Node da_height=153}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=1b90b36f65c42cd5213f41433eff683740c9270646b955da5b739b39f7c6f67022bb152a42664dfd9b1cda763f113360a5b8af9f0b47af1f2e06a1da55c35235 next_version=153 time=910.274µs accesses_build_time=18.56µs finishing_session_time=804.425µs -2026-04-20T10:55:22.418340Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="670735e491031b3c81d6e5a019ff2126ac636f1e3644b696085e2fe7d93d779d7f753cc5561a442acef772bd3ea22fe47b8900b80f2f380df96b41352db2c30a" next_state_root="1b90b36f65c42cd5213f41433eff683740c9270646b955da5b739b39f7c6f67022bb152a42664dfd9b1cda763f113360a5b8af9f0b47af1f2e06a1da55c35235" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:55:22.418849Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 153, latest_finalized_slot_number: 152, sync_status: Synced { synced_da_height: 152 }, .. } -2026-04-20T10:55:22.418928Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=99 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 153, latest_finalized_slot_number: 152, sync_status: Synced { synced_da_height: 152 }, .. } -2026-04-20T10:55:22.418996Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=99 -2026-04-20T10:55:22.419245Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:55:22.419311Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=95 -2026-04-20T10:55:22.419422Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=148 -2026-04-20T10:55:22.419563Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:55:22.419867Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=148 sequence_number=244 -2026-04-20T10:55:22.419890Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=244 blob_id=2147877374610964312056291615709722061 visible_slot_number_after_increase=148 visible_slots_to_advance=2 -2026-04-20T10:55:22.419911Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:55:22.421588Z DEBUG manage_blob_submission_inside_task{blob_id=2147877374610964312056291615709722061 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xff118b9d030ab3719dbf6ea38441fb698237c136296b2538c7aca84205ae6d23 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=154 include_at=154 bytes=13 time=575.547µs -2026-04-20T10:55:22.430086Z DEBUG compute_state_update{scope="sequencer" rollup_height=100 slot_number=148}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:55:22.430123Z DEBUG compute_state_update{scope="sequencer" rollup_height=100 slot_number=148}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1b90b36f65c42cd5213f41433eff683740c9270646b955da5b739b39f7c6f67022bb152a42664dfd9b1cda763f113360a5b8af9f0b47af1f2e06a1da55c35235 next_version=154 sesssion_starting_time=9.836926ms -2026-04-20T10:55:22.430123Z DEBUG sov_stf_runner::runner: Block execution complete time=6.004587357s -2026-04-20T10:55:22.430143Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:55:22.430830Z DEBUG compute_state_update{scope="sequencer" rollup_height=100 slot_number=148}: sov_state::nomt::prover_storage: computed next state root state_root=244e1def4b967767da7facd308a6d9e07d7c83dfcabd11869042206af40025e705c1e60b80664e4697ca21ccab3ad86f2d512fb19c49bc7f8532076c7484e142 next_version=154 time=10.556702ms accesses_build_time=12.26µs finishing_session_time=697.416µs -2026-04-20T10:55:28.413239Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=154 prev_hash=0x708749a2dbbed29b838fbf69f86f6befc96ebebc14e52423e7d276ec695e834b hash=0x12ed0d03b84b58443741ae701477e74c370151e86a0d54f57cee30e3c237223f producing_time=1.139733ms -2026-04-20T10:55:28.421922Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=154 current_state_root="1b90b36f65c42cd5213f41433eff683740c9270646b955da5b739b39f7c6f67022bb152a42664dfd9b1cda763f113360a5b8af9f0b47af1f2e06a1da55c35235" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xff118b9d030ab3719dbf6ea38441fb698237c136296b2538c7aca84205ae6d23"] proof_blobs=[] -2026-04-20T10:55:28.422222Z DEBUG StfBlueprint::apply_slot{context=Node da_height=154}: sov_chain_state: Setting next visible slot number next_visible_slot_number=148 -2026-04-20T10:55:28.422480Z DEBUG StfBlueprint::apply_slot{context=Node da_height=154}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xff118b9d030ab3719dbf6ea38441fb698237c136296b2538c7aca84205ae6d23}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:55:28.422657Z DEBUG StfBlueprint::apply_slot{context=Node da_height=154}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1b90b36f65c42cd5213f41433eff683740c9270646b955da5b739b39f7c6f67022bb152a42664dfd9b1cda763f113360a5b8af9f0b47af1f2e06a1da55c35235 next_version=154 sesssion_starting_time=44.86µs -2026-04-20T10:55:28.423594Z DEBUG StfBlueprint::apply_slot{context=Node da_height=154}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=244e1def4b967767da7facd308a6d9e07d7c83dfcabd11869042206af40025e7536f5deef9f1f1a5b68b9e96b11cc548e9a85177ce08111606283cabdd88ab46 next_version=154 time=1.018083ms accesses_build_time=34.709µs finishing_session_time=916.184µs -2026-04-20T10:55:28.423770Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="68956a03caea4b744e54dd01ab2f041432c66b2cb47572b5d4704b7d03c9138a" -2026-04-20T10:55:28.423785Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="613aa52540ddf20877f28bbca79ab3e054b8c1f0e021f6d6dfc7567914c099de" -2026-04-20T10:55:28.423794Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="c722b8fd31de56033ce8dbe6108705610738b5353a6b7018b75f35506edb8e26" -2026-04-20T10:55:28.423806Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="1b90b36f65c42cd5213f41433eff683740c9270646b955da5b739b39f7c6f6702a31ff425b1985d5f601575c65eab98afe3894b9f6867d5f9218d60aa1435944" next_state_root="244e1def4b967767da7facd308a6d9e07d7c83dfcabd11869042206af40025e7536f5deef9f1f1a5b68b9e96b11cc548e9a85177ce08111606283cabdd88ab46" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:55:28.424306Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 154, latest_finalized_slot_number: 153, sync_status: Synced { synced_da_height: 153 }, .. } -2026-04-20T10:55:28.424404Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=100 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 154, latest_finalized_slot_number: 153, sync_status: Synced { synced_da_height: 153 }, .. } -2026-04-20T10:55:28.424461Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=100 -2026-04-20T10:55:28.424669Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:55:28.424730Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=96 -2026-04-20T10:55:28.424823Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=149 -2026-04-20T10:55:28.424964Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:55:28.425127Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=149 sequence_number=245 -2026-04-20T10:55:28.425149Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=245 blob_id=2147877381871725286133999151391086757 visible_slot_number_after_increase=149 visible_slots_to_advance=1 -2026-04-20T10:55:28.425178Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:55:28.426764Z DEBUG manage_blob_submission_inside_task{blob_id=2147877381871725286133999151391086757 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x5158dcb09bd8f40466732e76221fbe8491a39b60ee822df48d49825189aabd79 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=155 include_at=155 bytes=13 time=551.687µs -2026-04-20T10:55:28.430784Z DEBUG compute_state_update{scope="sequencer" rollup_height=101 slot_number=149}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:55:28.430851Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000708284s -2026-04-20T10:55:28.430872Z DEBUG compute_state_update{scope="sequencer" rollup_height=101 slot_number=149}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=244e1def4b967767da7facd308a6d9e07d7c83dfcabd11869042206af40025e7536f5deef9f1f1a5b68b9e96b11cc548e9a85177ce08111606283cabdd88ab46 next_version=155 sesssion_starting_time=5.267556ms -2026-04-20T10:55:28.430883Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:55:28.431073Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:55:28.431152Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:55:28.431458Z DEBUG compute_state_update{scope="sequencer" rollup_height=101 slot_number=149}: sov_state::nomt::prover_storage: computed next state root state_root=0a9d2a45f3af7fce11e60d4193c77f770af3d6082e1740608a336255ba2e54531292b6aaccfc40b1f54f19637fc44b4011f6a1d43dc74e0687a030849ee5212e next_version=155 time=5.867492ms accesses_build_time=12.88µs finishing_session_time=556.656µs -2026-04-20T10:55:28.995932Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zpbBIlh8ScydgfaeSIYi1Q==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:55:29.009645Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:55:29.021086Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1917536 cycles -2026-04-20T10:55:29.023786Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [11, 209, 48, 117, 218, 131, 83, 62, 12, 176, 157, 46, 14, 91, 118, 95, 88, 172, 10, 117, 100, 59, 219, 107, 1, 201, 54, 99, 163, 77, 127, 148, 62, 179, 11, 225, 215, 127, 219, 76, 195, 223, 147, 145, 177, 163, 73, 23, 117, 130, 2, 129, 223, 134, 47, 194, 242, 121, 161, 140, 63, 229, 189, 128, 63, 178, 245, 215, 104, 144, 81, 161, 2, 44, 143, 119, 44, 206, 49, 248, 125, 201, 170, 97, 221, 253, 149, 119, 248, 176, 223, 190, 7, 107, 106, 146, 0, 8, 31, 159, 136, 183, 24, 35, 85, 68, 170, 201, 233, 147, 102, 130, 141, 202, 162, 42, 205, 31, 246, 217, 167, 111, 159, 2, 228, 245, 69, 83, 126, 53, 255, 19, 199, 182, 227, 253, 193, 39, 105, 139, 10, 152, 132, 244, 140, 95, 191, 76, 84, 193, 146, 240, 155, 229, 213, 224, 196, 141, 132, 65, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:55:29.116547Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:55:29.116588Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:55:29.137920Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:55:29.173357Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rZ62_ThXQdu8a1YHmioYVw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:55:29.176260Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rZ62_ThXQdu8a1YHmioYVw==: stderr: -2026-04-20T10:55:29.176272Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rZ62_ThXQdu8a1YHmioYVw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:55:29.176283Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rZ62_ThXQdu8a1YHmioYVw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:55:29.176290Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rZ62_ThXQdu8a1YHmioYVw==: stderr: stack backtrace: -2026-04-20T10:55:29.176295Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rZ62_ThXQdu8a1YHmioYVw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:55:29.176302Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rZ62_ThXQdu8a1YHmioYVw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:55:29.176421Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:55:29.177234Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:55:29.177533Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:55:29.248976Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:55:29.249019Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:55:29.249189Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:55:29.249370Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:55:29.249423Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:55:29.249839Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=246 blob_id=2147877382867889567687886930044873327 -2026-04-20T10:55:29.811357Z DEBUG sp1_core_executor_runner::native: CHILD sp1_E3ihW4TyTYuzUXML9Gjcsw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:55:29.818746Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:55:29.829282Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1083190 cycles -2026-04-20T10:55:29.831911Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [85, 202, 38, 224, 181, 47, 120, 49, 3, 151, 143, 15, 93, 223, 156, 108, 90, 99, 12, 70, 190, 108, 237, 121, 21, 187, 90, 228, 134, 149, 158, 208, 19, 31, 34, 179, 183, 193, 157, 24, 169, 103, 33, 186, 141, 193, 66, 98, 14, 62, 151, 41, 239, 252, 112, 255, 244, 83, 88, 159, 157, 138, 111, 87, 85, 202, 38, 224, 181, 47, 120, 49, 3, 151, 143, 15, 93, 223, 156, 108, 90, 99, 12, 70, 190, 108, 237, 121, 21, 187, 90, 228, 134, 149, 158, 208, 29, 173, 38, 248, 210, 19, 8, 145, 228, 76, 181, 130, 240, 153, 191, 110, 52, 168, 13, 205, 120, 73, 50, 195, 43, 26, 50, 27, 123, 252, 104, 34, 154, 40, 97, 154, 207, 190, 115, 143, 156, 71, 34, 48, 127, 203, 70, 13, 27, 25, 0, 66, 142, 81, 180, 85, 224, 240, 146, 124, 90, 68, 85, 174, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:55:29.891883Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:55:29.891929Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:55:29.956617Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:55:29.991698Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Vv0s9h71RVmWe07ORCmyWw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:55:29.994537Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Vv0s9h71RVmWe07ORCmyWw==: stderr: -2026-04-20T10:55:29.994551Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Vv0s9h71RVmWe07ORCmyWw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:55:29.994559Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Vv0s9h71RVmWe07ORCmyWw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:55:29.994567Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Vv0s9h71RVmWe07ORCmyWw==: stderr: stack backtrace: -2026-04-20T10:55:29.994573Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Vv0s9h71RVmWe07ORCmyWw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:55:29.994579Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Vv0s9h71RVmWe07ORCmyWw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:55:29.994701Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:55:29.995477Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:55:29.995773Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:55:30.062645Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:55:30.062687Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:55:30.062891Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:55:30.063440Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=247 blob_id=2147877383850744820444120795301916005 -2026-04-20T10:55:34.415156Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=155 prev_hash=0x12ed0d03b84b58443741ae701477e74c370151e86a0d54f57cee30e3c237223f hash=0x7ba2d6ba416fe66d68b8064ad536b6e4581ba9beb70abf388e2ef2af17544863 producing_time=1.197662ms -2026-04-20T10:55:34.422989Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=155 current_state_root="244e1def4b967767da7facd308a6d9e07d7c83dfcabd11869042206af40025e7536f5deef9f1f1a5b68b9e96b11cc548e9a85177ce08111606283cabdd88ab46" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x5158dcb09bd8f40466732e76221fbe8491a39b60ee822df48d49825189aabd79"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x5cd00e3a97b2af415aaf54b6b51e43f02ef89f13787d2db2bc7f383fdbcd334a, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0843bca41c86fb2f7ec6ded2f73b3cbe13d037e432ad3d478c5263159896f9a9, len=625"] -2026-04-20T10:55:34.423264Z DEBUG StfBlueprint::apply_slot{context=Node da_height=155}: sov_chain_state: Setting next visible slot number next_visible_slot_number=149 -2026-04-20T10:55:34.423436Z DEBUG StfBlueprint::apply_slot{context=Node da_height=155}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x5158dcb09bd8f40466732e76221fbe8491a39b60ee822df48d49825189aabd79}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:55:34.423634Z DEBUG StfBlueprint::apply_slot{context=Node da_height=155}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=244e1def4b967767da7facd308a6d9e07d7c83dfcabd11869042206af40025e7536f5deef9f1f1a5b68b9e96b11cc548e9a85177ce08111606283cabdd88ab46 next_version=155 sesssion_starting_time=47.839µs -2026-04-20T10:55:34.424499Z DEBUG StfBlueprint::apply_slot{context=Node da_height=155}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=0a9d2a45f3af7fce11e60d4193c77f770af3d6082e1740608a336255ba2e54530f7aa83d0024ecdf05bbcb17c1f2d7adb63f2474ddf7d21b86be7ad3a8c51472 next_version=155 time=947.514µs accesses_build_time=33.34µs finishing_session_time=841.025µs -2026-04-20T10:55:34.424702Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="1b90b36f65c42cd5213f41433eff683740c9270646b955da5b739b39f7c6f67022bb152a42664dfd9b1cda763f113360a5b8af9f0b47af1f2e06a1da55c35235" next_state_root="0a9d2a45f3af7fce11e60d4193c77f770af3d6082e1740608a336255ba2e54530f7aa83d0024ecdf05bbcb17c1f2d7adb63f2474ddf7d21b86be7ad3a8c51472" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:55:34.425210Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 155, latest_finalized_slot_number: 154, sync_status: Synced { synced_da_height: 154 }, .. } -2026-04-20T10:55:34.425287Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=101 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 155, latest_finalized_slot_number: 154, sync_status: Synced { synced_da_height: 154 }, .. } -2026-04-20T10:55:34.425357Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=101 -2026-04-20T10:55:34.439815Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00893375s -2026-04-20T10:55:34.439847Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:55:34.440075Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:55:34.440156Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:55:35.002798Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Lddv2l94S7iPI24-s8CRQg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:55:35.020531Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:55:35.032109Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2602518 cycles -2026-04-20T10:55:35.035085Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [85, 202, 38, 224, 181, 47, 120, 49, 3, 151, 143, 15, 93, 223, 156, 108, 90, 99, 12, 70, 190, 108, 237, 121, 21, 187, 90, 228, 134, 149, 158, 208, 10, 79, 75, 229, 20, 3, 194, 206, 68, 74, 8, 79, 11, 253, 252, 63, 108, 12, 178, 20, 121, 18, 5, 33, 131, 141, 195, 55, 157, 64, 125, 83, 55, 116, 32, 134, 48, 79, 67, 167, 30, 5, 180, 69, 90, 29, 134, 46, 203, 254, 1, 54, 12, 105, 202, 239, 182, 38, 80, 154, 192, 118, 167, 145, 87, 69, 128, 135, 78, 127, 19, 19, 69, 8, 31, 214, 64, 84, 79, 166, 245, 214, 243, 39, 108, 217, 200, 84, 161, 250, 171, 89, 235, 246, 16, 106, 61, 12, 193, 24, 243, 1, 102, 95, 197, 170, 1, 28, 254, 84, 128, 7, 52, 36, 146, 94, 31, 115, 255, 86, 184, 17, 23, 209, 218, 58, 225, 201, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:55:35.146716Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:55:35.146755Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:55:35.248160Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:55:35.282078Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ARYTxV1LTsu-PcdibURIwA==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:55:35.284919Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ARYTxV1LTsu-PcdibURIwA==: stderr: -2026-04-20T10:55:35.284944Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ARYTxV1LTsu-PcdibURIwA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:55:35.284953Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ARYTxV1LTsu-PcdibURIwA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:55:35.284960Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ARYTxV1LTsu-PcdibURIwA==: stderr: stack backtrace: -2026-04-20T10:55:35.284966Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ARYTxV1LTsu-PcdibURIwA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:55:35.284973Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ARYTxV1LTsu-PcdibURIwA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:55:35.285046Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:55:35.285897Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:55:35.286213Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:55:35.352022Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:55:35.352064Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:55:35.352225Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:55:35.352940Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=248 blob_id=2147877390245960895309384516762433613 -2026-04-20T10:55:40.416785Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=156 prev_hash=0x7ba2d6ba416fe66d68b8064ad536b6e4581ba9beb70abf388e2ef2af17544863 hash=0x517fa2ca46a1febd31775f72765b944369980a8b5f3e5f0a234a23882f3ae001 producing_time=1.062003ms -2026-04-20T10:55:40.421381Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=156 current_state_root="0a9d2a45f3af7fce11e60d4193c77f770af3d6082e1740608a336255ba2e54530f7aa83d0024ecdf05bbcb17c1f2d7adb63f2474ddf7d21b86be7ad3a8c51472" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc192086a5865d356cd9dfb12cdb8a3f657038999684ab7988087554f44e08984, len=625"] -2026-04-20T10:55:40.421716Z DEBUG StfBlueprint::apply_slot{context=Node da_height=156}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0a9d2a45f3af7fce11e60d4193c77f770af3d6082e1740608a336255ba2e54530f7aa83d0024ecdf05bbcb17c1f2d7adb63f2474ddf7d21b86be7ad3a8c51472 next_version=156 sesssion_starting_time=48.73µs -2026-04-20T10:55:40.422525Z DEBUG StfBlueprint::apply_slot{context=Node da_height=156}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=0a9d2a45f3af7fce11e60d4193c77f770af3d6082e1740608a336255ba2e545341f146d318e2ec8150b713b188a8ff7a83e8747765abf4665dda2288657cab0e next_version=156 time=875.384µs accesses_build_time=16.88µs finishing_session_time=760.475µs -2026-04-20T10:55:40.422595Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="244e1def4b967767da7facd308a6d9e07d7c83dfcabd11869042206af40025e7536f5deef9f1f1a5b68b9e96b11cc548e9a85177ce08111606283cabdd88ab46" next_state_root="0a9d2a45f3af7fce11e60d4193c77f770af3d6082e1740608a336255ba2e545341f146d318e2ec8150b713b188a8ff7a83e8747765abf4665dda2288657cab0e" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:55:40.423109Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 156, latest_finalized_slot_number: 155, sync_status: Synced { synced_da_height: 155 }, .. } -2026-04-20T10:55:40.423186Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=101 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 156, latest_finalized_slot_number: 155, sync_status: Synced { synced_da_height: 155 }, .. } -2026-04-20T10:55:40.423243Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=101 -2026-04-20T10:55:40.423483Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:55:40.423567Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=97 -2026-04-20T10:55:40.423657Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=151 -2026-04-20T10:55:40.423820Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:55:40.424144Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=151 sequence_number=249 -2026-04-20T10:55:40.424167Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=249 blob_id=2147877396377630292258588439580222856 visible_slot_number_after_increase=151 visible_slots_to_advance=2 -2026-04-20T10:55:40.424213Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:55:40.425985Z DEBUG manage_blob_submission_inside_task{blob_id=2147877396377630292258588439580222856 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x210caf47bdee768d8031e8378c86665da8c4a94888b6f0e616a09b7bc1fbc37e sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=157 include_at=157 bytes=13 time=618.236µs -2026-04-20T10:55:40.438074Z DEBUG compute_state_update{scope="sequencer" rollup_height=102 slot_number=151}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:55:40.438105Z DEBUG sov_stf_runner::runner: Block execution complete time=5.998259179s -2026-04-20T10:55:40.438123Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:55:40.438150Z DEBUG compute_state_update{scope="sequencer" rollup_height=102 slot_number=151}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0a9d2a45f3af7fce11e60d4193c77f770af3d6082e1740608a336255ba2e545341f146d318e2ec8150b713b188a8ff7a83e8747765abf4665dda2288657cab0e next_version=157 sesssion_starting_time=13.436894ms -2026-04-20T10:55:40.438906Z DEBUG compute_state_update{scope="sequencer" rollup_height=102 slot_number=151}: sov_state::nomt::prover_storage: computed next state root state_root=2e225faa215a7373e0db3089ebbd1829fd1117da88c183a7b8b9ea29d3181fd6018a15abcbde4be72f0848cb1a7a82553f6a5e7d4a8d797ad642e3c6dfa8b605 next_version=157 time=14.208418ms accesses_build_time=13.86µs finishing_session_time=735.116µs -2026-04-20T10:55:46.418808Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=157 prev_hash=0x517fa2ca46a1febd31775f72765b944369980a8b5f3e5f0a234a23882f3ae001 hash=0x52b5e2b6458d4ee02a89132e47b74bb42db1b93a4ecf5ca68cabb6a25b3426a1 producing_time=1.104562ms -2026-04-20T10:55:46.419399Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=157 current_state_root="0a9d2a45f3af7fce11e60d4193c77f770af3d6082e1740608a336255ba2e545341f146d318e2ec8150b713b188a8ff7a83e8747765abf4665dda2288657cab0e" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x210caf47bdee768d8031e8378c86665da8c4a94888b6f0e616a09b7bc1fbc37e"] proof_blobs=[] -2026-04-20T10:55:46.419719Z DEBUG StfBlueprint::apply_slot{context=Node da_height=157}: sov_chain_state: Setting next visible slot number next_visible_slot_number=151 -2026-04-20T10:55:46.419974Z DEBUG StfBlueprint::apply_slot{context=Node da_height=157}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x210caf47bdee768d8031e8378c86665da8c4a94888b6f0e616a09b7bc1fbc37e}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:55:46.420159Z DEBUG StfBlueprint::apply_slot{context=Node da_height=157}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0a9d2a45f3af7fce11e60d4193c77f770af3d6082e1740608a336255ba2e545341f146d318e2ec8150b713b188a8ff7a83e8747765abf4665dda2288657cab0e next_version=157 sesssion_starting_time=48.71µs -2026-04-20T10:55:46.421150Z DEBUG StfBlueprint::apply_slot{context=Node da_height=157}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e225faa215a7373e0db3089ebbd1829fd1117da88c183a7b8b9ea29d3181fd6279276343751b57e2c8144348ec74f3a59144ac5ae44fa928778325fbeb16eb5 next_version=157 time=1.075803ms accesses_build_time=35.85µs finishing_session_time=967.463µs -2026-04-20T10:55:46.421352Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="5cd00e3a97b2af415aaf54b6b51e43f02ef89f13787d2db2bc7f383fdbcd334a" -2026-04-20T10:55:46.421373Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="0843bca41c86fb2f7ec6ded2f73b3cbe13d037e432ad3d478c5263159896f9a9" -2026-04-20T10:55:46.421384Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="c192086a5865d356cd9dfb12cdb8a3f657038999684ab7988087554f44e08984" -2026-04-20T10:55:46.421396Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="0a9d2a45f3af7fce11e60d4193c77f770af3d6082e1740608a336255ba2e54530f7aa83d0024ecdf05bbcb17c1f2d7adb63f2474ddf7d21b86be7ad3a8c51472" next_state_root="2e225faa215a7373e0db3089ebbd1829fd1117da88c183a7b8b9ea29d3181fd6279276343751b57e2c8144348ec74f3a59144ac5ae44fa928778325fbeb16eb5" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:55:46.421898Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 157, latest_finalized_slot_number: 156, sync_status: Synced { synced_da_height: 156 }, .. } -2026-04-20T10:55:46.421999Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=102 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 157, latest_finalized_slot_number: 156, sync_status: Synced { synced_da_height: 156 }, .. } -2026-04-20T10:55:46.422058Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=102 -2026-04-20T10:55:46.422279Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:55:46.422355Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=98 -2026-04-20T10:55:46.422451Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=152 -2026-04-20T10:55:46.422568Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:55:46.422705Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=152 sequence_number=250 -2026-04-20T10:55:46.422723Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=250 blob_id=2147877403628793349305060301982743263 visible_slot_number_after_increase=152 visible_slots_to_advance=1 -2026-04-20T10:55:46.422749Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:55:46.424420Z DEBUG manage_blob_submission_inside_task{blob_id=2147877403628793349305060301982743263 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x7c24783ace957f9014cd934528c42cadadd0cd2ed7028755bac277c0545ab334 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=158 include_at=158 bytes=13 time=539.526µs -2026-04-20T10:55:46.428469Z DEBUG compute_state_update{scope="sequencer" rollup_height=103 slot_number=152}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:55:46.428481Z DEBUG sov_stf_runner::runner: Block execution complete time=5.99035951s -2026-04-20T10:55:46.428537Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:55:46.428543Z DEBUG compute_state_update{scope="sequencer" rollup_height=103 slot_number=152}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e225faa215a7373e0db3089ebbd1829fd1117da88c183a7b8b9ea29d3181fd6279276343751b57e2c8144348ec74f3a59144ac5ae44fa928778325fbeb16eb5 next_version=158 sesssion_starting_time=5.441945ms -2026-04-20T10:55:46.428745Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:55:46.428830Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:55:46.429204Z DEBUG compute_state_update{scope="sequencer" rollup_height=103 slot_number=152}: sov_state::nomt::prover_storage: computed next state root state_root=6af67902ba5a30b9f1efa5399e9d15880bc9de4a1d7aaed6f45f732895eee436023d4ef78c12e4c72fcc2eb9fedf6390e3e43830c97161f46ab10ac228119842 next_version=158 time=6.11703ms accesses_build_time=13.16µs finishing_session_time=615.096µs -2026-04-20T10:55:46.988396Z DEBUG sp1_core_executor_runner::native: CHILD sp1_6RgxP-jMS7mgRkOkVpV02g==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:55:47.001944Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:55:47.013429Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1897236 cycles -2026-04-20T10:55:47.016138Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [21, 229, 38, 8, 17, 123, 236, 39, 244, 227, 216, 168, 53, 235, 253, 82, 114, 166, 191, 52, 114, 218, 73, 178, 117, 5, 235, 241, 35, 222, 26, 241, 104, 48, 89, 184, 249, 149, 87, 167, 142, 140, 128, 248, 36, 234, 80, 61, 138, 32, 3, 175, 226, 43, 76, 246, 95, 80, 29, 136, 100, 223, 178, 217, 1, 32, 176, 160, 38, 21, 136, 158, 197, 2, 190, 157, 14, 73, 15, 35, 111, 110, 78, 7, 239, 189, 197, 121, 45, 190, 38, 79, 71, 39, 73, 67, 111, 203, 216, 19, 32, 218, 243, 181, 11, 1, 152, 174, 62, 120, 237, 96, 203, 50, 193, 49, 226, 17, 171, 22, 4, 159, 135, 112, 97, 136, 42, 254, 109, 33, 3, 121, 245, 238, 18, 35, 236, 153, 121, 22, 108, 185, 90, 209, 145, 203, 69, 179, 138, 85, 70, 196, 84, 211, 78, 185, 131, 127, 241, 207, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:55:47.108058Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:55:47.108098Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:55:47.135838Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:55:47.169830Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LxP_N7pgRly70P_DcEFtVg==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:55:47.172662Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LxP_N7pgRly70P_DcEFtVg==: stderr: -2026-04-20T10:55:47.172688Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LxP_N7pgRly70P_DcEFtVg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:55:47.172698Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LxP_N7pgRly70P_DcEFtVg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:55:47.172704Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LxP_N7pgRly70P_DcEFtVg==: stderr: stack backtrace: -2026-04-20T10:55:47.172712Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LxP_N7pgRly70P_DcEFtVg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:55:47.172719Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LxP_N7pgRly70P_DcEFtVg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:55:47.172807Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:55:47.173566Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:55:47.173881Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:55:47.245201Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:55:47.245245Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:55:47.245421Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:55:47.245595Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:55:47.245653Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:55:47.246009Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=251 blob_id=2147877404623721623963056790363958141 -2026-04-20T10:55:47.809642Z DEBUG sp1_core_executor_runner::native: CHILD sp1__w88vhhNSpC4lI7sJBWs7Q==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:55:47.816440Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:55:47.827119Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1030693 cycles -2026-04-20T10:55:47.829827Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [108, 127, 72, 103, 24, 116, 195, 204, 131, 128, 147, 5, 122, 190, 67, 168, 246, 91, 109, 62, 203, 251, 153, 28, 199, 112, 71, 100, 235, 13, 212, 43, 32, 63, 122, 186, 46, 219, 169, 158, 18, 212, 83, 10, 229, 144, 175, 70, 77, 37, 81, 68, 161, 113, 110, 93, 145, 22, 39, 197, 45, 74, 86, 91, 108, 127, 72, 103, 24, 116, 195, 204, 131, 128, 147, 5, 122, 190, 67, 168, 246, 91, 109, 62, 203, 251, 153, 28, 199, 112, 71, 100, 235, 13, 212, 43, 36, 245, 81, 72, 199, 19, 120, 221, 200, 142, 185, 138, 136, 250, 87, 133, 103, 60, 91, 5, 186, 98, 52, 244, 97, 27, 249, 225, 219, 249, 178, 160, 22, 14, 78, 65, 129, 77, 176, 182, 167, 221, 148, 180, 51, 61, 227, 132, 232, 144, 42, 157, 196, 19, 212, 227, 24, 187, 65, 136, 128, 147, 74, 235, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:55:47.845721Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:55:47.845746Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:55:47.953120Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:55:47.988266Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oQdVZL3-S62WiWYPlWVXjg==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:55:47.991101Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oQdVZL3-S62WiWYPlWVXjg==: stderr: -2026-04-20T10:55:47.991116Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oQdVZL3-S62WiWYPlWVXjg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:55:47.991124Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oQdVZL3-S62WiWYPlWVXjg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:55:47.991133Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oQdVZL3-S62WiWYPlWVXjg==: stderr: stack backtrace: -2026-04-20T10:55:47.991139Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oQdVZL3-S62WiWYPlWVXjg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:55:47.991145Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oQdVZL3-S62WiWYPlWVXjg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:55:47.991244Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:55:47.992003Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:55:47.992290Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:55:48.058199Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:55:48.058241Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:55:48.058420Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:55:48.058942Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=252 blob_id=2147877405606572120090219695950689265 -2026-04-20T10:55:52.421086Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=158 prev_hash=0x52b5e2b6458d4ee02a89132e47b74bb42db1b93a4ecf5ca68cabb6a25b3426a1 hash=0x90df0d361ca6a4ee3feb1d15d7179201765d41bc9976029829f46b3ffac644ea producing_time=1.036464ms -2026-04-20T10:55:52.430708Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=158 current_state_root="2e225faa215a7373e0db3089ebbd1829fd1117da88c183a7b8b9ea29d3181fd6279276343751b57e2c8144348ec74f3a59144ac5ae44fa928778325fbeb16eb5" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x7c24783ace957f9014cd934528c42cadadd0cd2ed7028755bac277c0545ab334"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x5ecf96fd662cf54db9ff62251b36ed131769fe42b59a6a3a59d85f7ab395777d, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xade1e25dde6863fa9fa960a2f5a3b76b0500b4ab21c1683e69bab52c7e3a2b8a, len=625"] -2026-04-20T10:55:52.430976Z DEBUG StfBlueprint::apply_slot{context=Node da_height=158}: sov_chain_state: Setting next visible slot number next_visible_slot_number=152 -2026-04-20T10:55:52.431106Z DEBUG StfBlueprint::apply_slot{context=Node da_height=158}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x7c24783ace957f9014cd934528c42cadadd0cd2ed7028755bac277c0545ab334}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:55:52.431283Z DEBUG StfBlueprint::apply_slot{context=Node da_height=158}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e225faa215a7373e0db3089ebbd1829fd1117da88c183a7b8b9ea29d3181fd6279276343751b57e2c8144348ec74f3a59144ac5ae44fa928778325fbeb16eb5 next_version=158 sesssion_starting_time=49.09µs -2026-04-20T10:55:52.432194Z DEBUG StfBlueprint::apply_slot{context=Node da_height=158}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6af67902ba5a30b9f1efa5399e9d15880bc9de4a1d7aaed6f45f732895eee4364bd9b3aa0dc3550e3c1d80df0f18e9588b67b49f23b83045f6e4140425f32932 next_version=158 time=995.713µs accesses_build_time=34.389µs finishing_session_time=885.724µs -2026-04-20T10:55:52.432438Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="0a9d2a45f3af7fce11e60d4193c77f770af3d6082e1740608a336255ba2e545341f146d318e2ec8150b713b188a8ff7a83e8747765abf4665dda2288657cab0e" next_state_root="6af67902ba5a30b9f1efa5399e9d15880bc9de4a1d7aaed6f45f732895eee4364bd9b3aa0dc3550e3c1d80df0f18e9588b67b49f23b83045f6e4140425f32932" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:55:52.432990Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 158, latest_finalized_slot_number: 158, sync_status: Synced { synced_da_height: 157 }, .. } -2026-04-20T10:55:52.433076Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=103 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 158, latest_finalized_slot_number: 158, sync_status: Synced { synced_da_height: 157 }, .. } -2026-04-20T10:55:52.433142Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=103 -2026-04-20T10:55:52.454581Z DEBUG sov_stf_runner::runner: Block execution complete time=6.026048771s -2026-04-20T10:55:52.454612Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:55:52.454795Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:55:52.454883Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:55:53.020547Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-k7viDltR66di-hH6YPZeA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:55:53.038669Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:55:53.050255Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2658938 cycles -2026-04-20T10:55:53.052987Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [108, 127, 72, 103, 24, 116, 195, 204, 131, 128, 147, 5, 122, 190, 67, 168, 246, 91, 109, 62, 203, 251, 153, 28, 199, 112, 71, 100, 235, 13, 212, 43, 72, 252, 173, 198, 125, 50, 163, 19, 85, 188, 218, 50, 28, 249, 206, 77, 69, 151, 90, 197, 44, 140, 221, 101, 118, 222, 222, 44, 197, 170, 116, 110, 16, 209, 38, 82, 193, 135, 158, 33, 235, 212, 39, 96, 63, 149, 239, 90, 216, 54, 91, 214, 179, 151, 8, 156, 227, 98, 92, 47, 146, 4, 175, 21, 126, 134, 8, 56, 130, 108, 81, 12, 90, 160, 34, 113, 88, 55, 52, 203, 31, 233, 45, 201, 70, 35, 127, 132, 180, 133, 14, 211, 30, 231, 233, 252, 144, 15, 13, 47, 135, 62, 212, 218, 196, 211, 197, 44, 208, 193, 243, 175, 112, 68, 55, 214, 74, 165, 217, 23, 122, 101, 130, 218, 114, 222, 189, 233, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:55:53.165232Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:55:53.165272Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:55:53.263392Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:55:53.298092Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sUyte0-fQ-WqYPbHaspZKw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:55:53.300970Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sUyte0-fQ-WqYPbHaspZKw==: stderr: -2026-04-20T10:55:53.300995Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sUyte0-fQ-WqYPbHaspZKw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:55:53.301005Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sUyte0-fQ-WqYPbHaspZKw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:55:53.301012Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sUyte0-fQ-WqYPbHaspZKw==: stderr: stack backtrace: -2026-04-20T10:55:53.301018Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sUyte0-fQ-WqYPbHaspZKw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:55:53.301024Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sUyte0-fQ-WqYPbHaspZKw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:55:53.301110Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:55:53.301961Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:55:53.302292Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:55:53.373064Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:55:53.373106Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:55:53.373274Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:55:53.373775Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=253 blob_id=2147877412032011040896723915048905358 -2026-04-20T10:55:58.423348Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=159 prev_hash=0x90df0d361ca6a4ee3feb1d15d7179201765d41bc9976029829f46b3ffac644ea hash=0xbd63a15aa0e904e39a7ad6788b2064e7a26e25654e2d38c606e789bcb6162fd1 producing_time=1.107853ms -2026-04-20T10:55:58.426014Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=159 current_state_root="6af67902ba5a30b9f1efa5399e9d15880bc9de4a1d7aaed6f45f732895eee4364bd9b3aa0dc3550e3c1d80df0f18e9588b67b49f23b83045f6e4140425f32932" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9e6e2fc2af5d145c053e79eec16678423fc9271911137783aa9f8bc96f52bece, len=625"] -2026-04-20T10:55:58.426340Z DEBUG StfBlueprint::apply_slot{context=Node da_height=159}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6af67902ba5a30b9f1efa5399e9d15880bc9de4a1d7aaed6f45f732895eee4364bd9b3aa0dc3550e3c1d80df0f18e9588b67b49f23b83045f6e4140425f32932 next_version=159 sesssion_starting_time=60.309µs -2026-04-20T10:55:58.427172Z DEBUG StfBlueprint::apply_slot{context=Node da_height=159}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6af67902ba5a30b9f1efa5399e9d15880bc9de4a1d7aaed6f45f732895eee4363a5bfb2b8fc793a6def87ad13a2fc097e5dc82083ad7ceca897171f42ed94bd7 next_version=159 time=909.514µs accesses_build_time=15.92µs finishing_session_time=781.905µs -2026-04-20T10:55:58.427227Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6af67902ba5a30b9f1efa5399e9d15880bc9de4a1d7aaed6f45f732895eee4364bd9b3aa0dc3550e3c1d80df0f18e9588b67b49f23b83045f6e4140425f32932" next_state_root="6af67902ba5a30b9f1efa5399e9d15880bc9de4a1d7aaed6f45f732895eee4363a5bfb2b8fc793a6def87ad13a2fc097e5dc82083ad7ceca897171f42ed94bd7" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:55:58.427647Z DEBUG sov_stf_runner::runner: Block execution complete time=5.973036822s -2026-04-20T10:55:58.427673Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:55:58.427734Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 159, latest_finalized_slot_number: 158, sync_status: Synced { synced_da_height: 158 }, .. } -2026-04-20T10:55:58.427822Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=103 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 159, latest_finalized_slot_number: 158, sync_status: Synced { synced_da_height: 158 }, .. } -2026-04-20T10:55:58.427884Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=103 -2026-04-20T10:55:58.428122Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:55:58.428186Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=99 -2026-04-20T10:55:58.428267Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=154 -2026-04-20T10:55:58.428399Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:55:58.428685Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=154 sequence_number=254 -2026-04-20T10:55:58.428705Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=254 blob_id=2147877418143167342961199405293538439 visible_slot_number_after_increase=154 visible_slots_to_advance=2 -2026-04-20T10:55:58.428726Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:55:58.429088Z DEBUG compute_state_update{scope="sequencer" rollup_height=104 slot_number=154}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6af67902ba5a30b9f1efa5399e9d15880bc9de4a1d7aaed6f45f732895eee4363a5bfb2b8fc793a6def87ad13a2fc097e5dc82083ad7ceca897171f42ed94bd7 next_version=160 sesssion_starting_time=45.48µs -2026-04-20T10:55:58.429940Z DEBUG compute_state_update{scope="sequencer" rollup_height=104 slot_number=154}: sov_state::nomt::prover_storage: computed next state root state_root=5fd074a5a146037b1b9f2824fc7c1530ff895c0dcf53dc8f52bf096539499b825120bb3b6a7d201edb51d2a8b7ba4c4ebbad1057eef580d21dad24dce267c74e next_version=160 time=911.764µs accesses_build_time=12.57µs finishing_session_time=830.024µs -2026-04-20T10:55:58.429970Z DEBUG manage_blob_submission_inside_task{blob_id=2147877418143167342961199405293538439 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x933bf5058b93c5f0420973501d8973984f30dfd58b3e3809224681616acfbcb8 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=160 include_at=160 bytes=13 time=467.417µs -2026-04-20T10:56:04.425579Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=160 prev_hash=0xbd63a15aa0e904e39a7ad6788b2064e7a26e25654e2d38c606e789bcb6162fd1 hash=0xad62a03a145022dd0e31ddb9fd8ab6e4f43fa1ac514754e95be08df01d7a8ed3 producing_time=1.041473ms -2026-04-20T10:56:04.429210Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=160 current_state_root="6af67902ba5a30b9f1efa5399e9d15880bc9de4a1d7aaed6f45f732895eee4363a5bfb2b8fc793a6def87ad13a2fc097e5dc82083ad7ceca897171f42ed94bd7" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x933bf5058b93c5f0420973501d8973984f30dfd58b3e3809224681616acfbcb8"] proof_blobs=[] -2026-04-20T10:56:04.429531Z DEBUG StfBlueprint::apply_slot{context=Node da_height=160}: sov_chain_state: Setting next visible slot number next_visible_slot_number=154 -2026-04-20T10:56:04.429777Z DEBUG StfBlueprint::apply_slot{context=Node da_height=160}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x933bf5058b93c5f0420973501d8973984f30dfd58b3e3809224681616acfbcb8}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:56:04.429980Z DEBUG StfBlueprint::apply_slot{context=Node da_height=160}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6af67902ba5a30b9f1efa5399e9d15880bc9de4a1d7aaed6f45f732895eee4363a5bfb2b8fc793a6def87ad13a2fc097e5dc82083ad7ceca897171f42ed94bd7 next_version=160 sesssion_starting_time=47.89µs -2026-04-20T10:56:04.431067Z DEBUG StfBlueprint::apply_slot{context=Node da_height=160}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=5fd074a5a146037b1b9f2824fc7c1530ff895c0dcf53dc8f52bf096539499b82536ac6c9a14c4fdf30f7d6f04fb7bf3d473fd00ba44069b0acb0296e4c30156e next_version=160 time=1.170553ms accesses_build_time=33.79µs finishing_session_time=1.064383ms -2026-04-20T10:56:04.431269Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="5ecf96fd662cf54db9ff62251b36ed131769fe42b59a6a3a59d85f7ab395777d" -2026-04-20T10:56:04.431286Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ade1e25dde6863fa9fa960a2f5a3b76b0500b4ab21c1683e69bab52c7e3a2b8a" -2026-04-20T10:56:04.431296Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="9e6e2fc2af5d145c053e79eec16678423fc9271911137783aa9f8bc96f52bece" -2026-04-20T10:56:04.431308Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6af67902ba5a30b9f1efa5399e9d15880bc9de4a1d7aaed6f45f732895eee4364bd9b3aa0dc3550e3c1d80df0f18e9588b67b49f23b83045f6e4140425f32932" next_state_root="5fd074a5a146037b1b9f2824fc7c1530ff895c0dcf53dc8f52bf096539499b82536ac6c9a14c4fdf30f7d6f04fb7bf3d473fd00ba44069b0acb0296e4c30156e" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:56:04.431855Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 160, latest_finalized_slot_number: 159, sync_status: Synced { synced_da_height: 159 }, .. } -2026-04-20T10:56:04.431933Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=104 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 160, latest_finalized_slot_number: 159, sync_status: Synced { synced_da_height: 159 }, .. } -2026-04-20T10:56:04.432003Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=104 -2026-04-20T10:56:04.432240Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:56:04.432331Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=100 -2026-04-20T10:56:04.432436Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=155 -2026-04-20T10:56:04.432570Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:56:04.432712Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=155 sequence_number=255 -2026-04-20T10:56:04.432730Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=255 blob_id=2147877425401536477535126532891566972 visible_slot_number_after_increase=155 visible_slots_to_advance=1 -2026-04-20T10:56:04.432752Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:56:04.434333Z DEBUG manage_blob_submission_inside_task{blob_id=2147877425401536477535126532891566972 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xde06530dd5d7d37adeb5b21201aae7e05a387c1a50ecd90f56fadaae681144c3 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=161 include_at=161 bytes=13 time=533.696µs -2026-04-20T10:56:04.438470Z DEBUG compute_state_update{scope="sequencer" rollup_height=105 slot_number=155}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:56:04.438511Z DEBUG sov_stf_runner::runner: Block execution complete time=6.010839119s -2026-04-20T10:56:04.438534Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:56:04.438537Z DEBUG compute_state_update{scope="sequencer" rollup_height=105 slot_number=155}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5fd074a5a146037b1b9f2824fc7c1530ff895c0dcf53dc8f52bf096539499b82536ac6c9a14c4fdf30f7d6f04fb7bf3d473fd00ba44069b0acb0296e4c30156e next_version=161 sesssion_starting_time=5.382965ms -2026-04-20T10:56:04.438730Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:56:04.438817Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:56:04.439194Z DEBUG compute_state_update{scope="sequencer" rollup_height=105 slot_number=155}: sov_state::nomt::prover_storage: computed next state root state_root=6eb9cb2eba383f5adb283a5f33b8e6c5c997b97f082ccd0b5dd9e55bf938918d1b125e9a8e451b4518890f9e15f5484ed3b7c61a97b887157870e5adbee8d855 next_version=161 time=6.055741ms accesses_build_time=14.44µs finishing_session_time=627.746µs -2026-04-20T10:56:04.994990Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M4Sk-JkTSY-6U6c3tq1HLA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:56:05.008988Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:56:05.020386Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1948728 cycles -2026-04-20T10:56:05.023207Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [103, 7, 53, 228, 145, 3, 27, 60, 129, 214, 229, 160, 25, 255, 33, 38, 172, 99, 111, 30, 54, 68, 182, 150, 8, 94, 47, 231, 217, 61, 119, 157, 127, 117, 60, 197, 86, 26, 68, 42, 206, 247, 114, 189, 62, 162, 47, 228, 123, 137, 0, 184, 15, 47, 56, 13, 249, 107, 65, 53, 45, 178, 195, 10, 37, 244, 164, 164, 148, 30, 239, 79, 147, 246, 60, 213, 165, 173, 34, 243, 231, 200, 161, 226, 168, 53, 136, 169, 161, 143, 116, 75, 215, 90, 159, 89, 86, 75, 98, 102, 31, 8, 250, 172, 56, 60, 18, 36, 154, 13, 246, 56, 57, 151, 209, 83, 27, 12, 161, 123, 210, 153, 250, 94, 12, 237, 169, 137, 4, 251, 21, 44, 97, 245, 168, 170, 64, 202, 122, 149, 0, 75, 227, 204, 129, 220, 20, 203, 19, 8, 190, 75, 97, 252, 66, 141, 77, 232, 181, 201, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:56:05.116661Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:56:05.116701Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:56:05.145894Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:56:05.179933Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5SlEf4a3SxKRXHw1h5zodg==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:56:05.182749Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5SlEf4a3SxKRXHw1h5zodg==: stderr: -2026-04-20T10:56:05.182762Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5SlEf4a3SxKRXHw1h5zodg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:56:05.182771Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5SlEf4a3SxKRXHw1h5zodg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:56:05.182793Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5SlEf4a3SxKRXHw1h5zodg==: stderr: stack backtrace: -2026-04-20T10:56:05.182799Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5SlEf4a3SxKRXHw1h5zodg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:56:05.182805Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5SlEf4a3SxKRXHw1h5zodg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:56:05.182970Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:56:05.183688Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:56:05.183980Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:56:05.251064Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:56:05.251106Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:56:05.251269Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:56:05.251455Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:56:05.251520Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:56:05.251880Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=256 blob_id=2147877426391664118992148195868108994 -2026-04-20T10:56:05.815518Z DEBUG sp1_core_executor_runner::native: CHILD sp1_avRi8onZTX--HA5F-5y0Tg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:56:05.822438Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:56:05.833487Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1051195 cycles -2026-04-20T10:56:05.836194Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [27, 144, 179, 111, 101, 196, 44, 213, 33, 63, 65, 67, 62, 255, 104, 55, 64, 201, 39, 6, 70, 185, 85, 218, 91, 115, 155, 57, 247, 198, 246, 112, 42, 49, 255, 66, 91, 25, 133, 213, 246, 1, 87, 92, 101, 234, 185, 138, 254, 56, 148, 185, 246, 134, 125, 95, 146, 24, 214, 10, 161, 67, 89, 68, 27, 144, 179, 111, 101, 196, 44, 213, 33, 63, 65, 67, 62, 255, 104, 55, 64, 201, 39, 6, 70, 185, 85, 218, 91, 115, 155, 57, 247, 198, 246, 112, 90, 3, 57, 190, 81, 16, 103, 180, 234, 55, 223, 0, 91, 176, 193, 163, 96, 150, 232, 74, 19, 171, 254, 19, 165, 181, 8, 176, 152, 39, 6, 55, 112, 135, 73, 162, 219, 190, 210, 155, 131, 143, 191, 105, 248, 111, 107, 239, 201, 110, 190, 188, 20, 229, 36, 35, 231, 210, 118, 236, 105, 94, 131, 75, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:56:05.852183Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:56:05.852213Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:56:05.959337Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:56:05.994366Z DEBUG sp1_core_executor_runner::native: CHILD sp1_P0iwwX3QSfuM742ZFXcQQw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:56:05.997183Z DEBUG sp1_core_executor_runner::native: CHILD sp1_P0iwwX3QSfuM742ZFXcQQw==: stderr: -2026-04-20T10:56:05.997196Z DEBUG sp1_core_executor_runner::native: CHILD sp1_P0iwwX3QSfuM742ZFXcQQw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:56:05.997204Z DEBUG sp1_core_executor_runner::native: CHILD sp1_P0iwwX3QSfuM742ZFXcQQw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:56:05.997212Z DEBUG sp1_core_executor_runner::native: CHILD sp1_P0iwwX3QSfuM742ZFXcQQw==: stderr: stack backtrace: -2026-04-20T10:56:05.997218Z DEBUG sp1_core_executor_runner::native: CHILD sp1_P0iwwX3QSfuM742ZFXcQQw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:56:05.997224Z DEBUG sp1_core_executor_runner::native: CHILD sp1_P0iwwX3QSfuM742ZFXcQQw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:56:05.997352Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:56:05.998163Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:56:05.998460Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:56:06.064989Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:56:06.065031Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:56:06.065181Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:56:06.065903Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=257 blob_id=2147877427375684596560315838169132217 -2026-04-20T10:56:10.427953Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=161 prev_hash=0xad62a03a145022dd0e31ddb9fd8ab6e4f43fa1ac514754e95be08df01d7a8ed3 hash=0xd56ea657a3b8a1e4e2f9ddb2c7fcf1a73fed83f9f0f8a782a98411801692ec63 producing_time=1.158052ms -2026-04-20T10:56:10.430606Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=161 current_state_root="5fd074a5a146037b1b9f2824fc7c1530ff895c0dcf53dc8f52bf096539499b82536ac6c9a14c4fdf30f7d6f04fb7bf3d473fd00ba44069b0acb0296e4c30156e" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xde06530dd5d7d37adeb5b21201aae7e05a387c1a50ecd90f56fadaae681144c3"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x7ae2a238c998b7b26c130f82016456521ae3214c43eab7acb9362b95452d1d14, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x6dbda64e38e1437cc783739ff77a2e063bf902fd55363f8191507d86eba57df6, len=625"] -2026-04-20T10:56:10.430879Z DEBUG StfBlueprint::apply_slot{context=Node da_height=161}: sov_chain_state: Setting next visible slot number next_visible_slot_number=155 -2026-04-20T10:56:10.431011Z DEBUG StfBlueprint::apply_slot{context=Node da_height=161}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xde06530dd5d7d37adeb5b21201aae7e05a387c1a50ecd90f56fadaae681144c3}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:56:10.431204Z DEBUG StfBlueprint::apply_slot{context=Node da_height=161}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5fd074a5a146037b1b9f2824fc7c1530ff895c0dcf53dc8f52bf096539499b82536ac6c9a14c4fdf30f7d6f04fb7bf3d473fd00ba44069b0acb0296e4c30156e next_version=161 sesssion_starting_time=46.789µs -2026-04-20T10:56:10.432329Z DEBUG StfBlueprint::apply_slot{context=Node da_height=161}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6eb9cb2eba383f5adb283a5f33b8e6c5c997b97f082ccd0b5dd9e55bf938918d70e0127e718bd9fa9914d7dba6e37da5ee909351127b75ae5c677087d1d153d7 next_version=161 time=1.185992ms accesses_build_time=31.06µs finishing_session_time=1.069473ms -2026-04-20T10:56:10.432659Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6af67902ba5a30b9f1efa5399e9d15880bc9de4a1d7aaed6f45f732895eee4363a5bfb2b8fc793a6def87ad13a2fc097e5dc82083ad7ceca897171f42ed94bd7" next_state_root="6eb9cb2eba383f5adb283a5f33b8e6c5c997b97f082ccd0b5dd9e55bf938918d70e0127e718bd9fa9914d7dba6e37da5ee909351127b75ae5c677087d1d153d7" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:56:10.433227Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 161, latest_finalized_slot_number: 161, sync_status: Synced { synced_da_height: 160 }, .. } -2026-04-20T10:56:10.433303Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=105 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 161, latest_finalized_slot_number: 161, sync_status: Synced { synced_da_height: 160 }, .. } -2026-04-20T10:56:10.433398Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=105 -2026-04-20T10:56:10.447284Z DEBUG sov_stf_runner::runner: Block execution complete time=6.008752663s -2026-04-20T10:56:10.447307Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:56:10.447536Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:56:10.447633Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:56:11.015173Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Ov3KX9XySLOKOL5JFlli9w==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:56:11.033127Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:56:11.044690Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2615593 cycles -2026-04-20T10:56:11.047279Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [27, 144, 179, 111, 101, 196, 44, 213, 33, 63, 65, 67, 62, 255, 104, 55, 64, 201, 39, 6, 70, 185, 85, 218, 91, 115, 155, 57, 247, 198, 246, 112, 34, 187, 21, 42, 66, 102, 77, 253, 155, 28, 218, 118, 63, 17, 51, 96, 165, 184, 175, 159, 11, 71, 175, 31, 46, 6, 161, 218, 85, 195, 82, 53, 81, 98, 152, 166, 156, 23, 28, 226, 125, 51, 225, 102, 200, 244, 208, 234, 108, 91, 203, 104, 204, 135, 221, 2, 133, 241, 129, 98, 92, 12, 243, 46, 125, 15, 172, 82, 91, 86, 206, 115, 177, 29, 91, 138, 56, 160, 45, 42, 214, 108, 44, 174, 138, 107, 120, 221, 230, 105, 218, 209, 74, 178, 45, 226, 18, 237, 13, 3, 184, 75, 88, 68, 55, 65, 174, 112, 20, 119, 231, 76, 55, 1, 81, 232, 106, 13, 84, 245, 124, 238, 48, 227, 194, 55, 34, 63, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:56:11.158009Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:56:11.158047Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:56:11.256215Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:56:11.290653Z DEBUG sp1_core_executor_runner::native: CHILD sp1_cZYO1kjgRhqj9DcKnTvu6Q==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:56:11.293470Z DEBUG sp1_core_executor_runner::native: CHILD sp1_cZYO1kjgRhqj9DcKnTvu6Q==: stderr: -2026-04-20T10:56:11.293483Z DEBUG sp1_core_executor_runner::native: CHILD sp1_cZYO1kjgRhqj9DcKnTvu6Q==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:56:11.293491Z DEBUG sp1_core_executor_runner::native: CHILD sp1_cZYO1kjgRhqj9DcKnTvu6Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:56:11.293510Z DEBUG sp1_core_executor_runner::native: CHILD sp1_cZYO1kjgRhqj9DcKnTvu6Q==: stderr: stack backtrace: -2026-04-20T10:56:11.293518Z DEBUG sp1_core_executor_runner::native: CHILD sp1_cZYO1kjgRhqj9DcKnTvu6Q==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:56:11.293524Z DEBUG sp1_core_executor_runner::native: CHILD sp1_cZYO1kjgRhqj9DcKnTvu6Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:56:11.293608Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:56:11.294380Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:56:11.294672Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:56:11.360514Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:56:11.360557Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:56:11.360687Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:56:11.361266Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=258 blob_id=2147877433776986913153953113696535184 -2026-04-20T10:56:16.430748Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=162 prev_hash=0xd56ea657a3b8a1e4e2f9ddb2c7fcf1a73fed83f9f0f8a782a98411801692ec63 hash=0xcb81452358029ed72e5696f145e8df649f0444083190db260ba57e82681d78ca producing_time=1.402262ms -2026-04-20T10:56:16.438942Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=162 current_state_root="6eb9cb2eba383f5adb283a5f33b8e6c5c997b97f082ccd0b5dd9e55bf938918d70e0127e718bd9fa9914d7dba6e37da5ee909351127b75ae5c677087d1d153d7" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9b6f89192384fa9dc220419568d5e271941a9aae806e83e04bf817aea0f649d9, len=625"] -2026-04-20T10:56:16.439297Z DEBUG StfBlueprint::apply_slot{context=Node da_height=162}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6eb9cb2eba383f5adb283a5f33b8e6c5c997b97f082ccd0b5dd9e55bf938918d70e0127e718bd9fa9914d7dba6e37da5ee909351127b75ae5c677087d1d153d7 next_version=162 sesssion_starting_time=48.159µs -2026-04-20T10:56:16.440169Z DEBUG StfBlueprint::apply_slot{context=Node da_height=162}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6eb9cb2eba383f5adb283a5f33b8e6c5c997b97f082ccd0b5dd9e55bf938918d5005922ea2f56bfbb3adea6e0a68776afb181ab82f9a347e35a964d5e6a79922 next_version=162 time=938.244µs accesses_build_time=16.69µs finishing_session_time=825.375µs -2026-04-20T10:56:16.440256Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6eb9cb2eba383f5adb283a5f33b8e6c5c997b97f082ccd0b5dd9e55bf938918d70e0127e718bd9fa9914d7dba6e37da5ee909351127b75ae5c677087d1d153d7" next_state_root="6eb9cb2eba383f5adb283a5f33b8e6c5c997b97f082ccd0b5dd9e55bf938918d5005922ea2f56bfbb3adea6e0a68776afb181ab82f9a347e35a964d5e6a79922" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:56:16.440831Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 162, latest_finalized_slot_number: 162, sync_status: Synced { synced_da_height: 161 }, .. } -2026-04-20T10:56:16.440912Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=105 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 162, latest_finalized_slot_number: 162, sync_status: Synced { synced_da_height: 161 }, .. } -2026-04-20T10:56:16.440972Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=105 -2026-04-20T10:56:16.441218Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=3 -2026-04-20T10:56:16.441272Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=101 -2026-04-20T10:56:16.441369Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=158 -2026-04-20T10:56:16.441515Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:56:16.441818Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=3 visible_slot_number_after_increase=158 sequence_number=259 -2026-04-20T10:56:16.441840Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=259 blob_id=2147877439919536938239550853408353926 visible_slot_number_after_increase=158 visible_slots_to_advance=3 -2026-04-20T10:56:16.441865Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:56:16.443693Z DEBUG manage_blob_submission_inside_task{blob_id=2147877439919536938239550853408353926 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x9e296185456f3a496425b22e0683c293a74ceb891778efed157f01f9515e1e41 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=163 include_at=163 bytes=13 time=616.466µs -2026-04-20T10:56:16.447509Z DEBUG compute_state_update{scope="sequencer" rollup_height=106 slot_number=158}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:56:16.447551Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000245978s -2026-04-20T10:56:16.447575Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:56:16.447579Z DEBUG compute_state_update{scope="sequencer" rollup_height=106 slot_number=158}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6eb9cb2eba383f5adb283a5f33b8e6c5c997b97f082ccd0b5dd9e55bf938918d5005922ea2f56bfbb3adea6e0a68776afb181ab82f9a347e35a964d5e6a79922 next_version=163 sesssion_starting_time=5.287266ms -2026-04-20T10:56:16.448288Z DEBUG compute_state_update{scope="sequencer" rollup_height=106 slot_number=158}: sov_state::nomt::prover_storage: computed next state root state_root=41ccaa6f9d62fe9266c6b7863c2671cf356db922f7d2586dc86165db7799e73d21febb5c2b57fe43bdd2410bae907c719d65e5eeae531a8d793d8ca02b9cb107 next_version=163 time=6.012001ms accesses_build_time=14.44µs finishing_session_time=689.665µs -2026-04-20T10:56:22.433508Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=163 prev_hash=0xcb81452358029ed72e5696f145e8df649f0444083190db260ba57e82681d78ca hash=0xded1126c5b0da8e2db5d451c3c92af2436c0aa7fd94f849149348f9c030244ad producing_time=1.133383ms -2026-04-20T10:56:22.439179Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=163 current_state_root="6eb9cb2eba383f5adb283a5f33b8e6c5c997b97f082ccd0b5dd9e55bf938918d5005922ea2f56bfbb3adea6e0a68776afb181ab82f9a347e35a964d5e6a79922" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9e296185456f3a496425b22e0683c293a74ceb891778efed157f01f9515e1e41"] proof_blobs=[] -2026-04-20T10:56:22.439518Z DEBUG StfBlueprint::apply_slot{context=Node da_height=163}: sov_chain_state: Setting next visible slot number next_visible_slot_number=158 -2026-04-20T10:56:22.439778Z DEBUG StfBlueprint::apply_slot{context=Node da_height=163}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x9e296185456f3a496425b22e0683c293a74ceb891778efed157f01f9515e1e41}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:56:22.439985Z DEBUG StfBlueprint::apply_slot{context=Node da_height=163}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6eb9cb2eba383f5adb283a5f33b8e6c5c997b97f082ccd0b5dd9e55bf938918d5005922ea2f56bfbb3adea6e0a68776afb181ab82f9a347e35a964d5e6a79922 next_version=163 sesssion_starting_time=48.56µs -2026-04-20T10:56:22.441104Z DEBUG StfBlueprint::apply_slot{context=Node da_height=163}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=41ccaa6f9d62fe9266c6b7863c2671cf356db922f7d2586dc86165db7799e73d7cfc880efdd8d9f561acb102b541789c42ba5c0dd817107bfe0f7952dc073087 next_version=163 time=1.206082ms accesses_build_time=36.889µs finishing_session_time=1.096063ms -2026-04-20T10:56:22.441289Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="7ae2a238c998b7b26c130f82016456521ae3214c43eab7acb9362b95452d1d14" -2026-04-20T10:56:22.441305Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="6dbda64e38e1437cc783739ff77a2e063bf902fd55363f8191507d86eba57df6" -2026-04-20T10:56:22.441323Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="9b6f89192384fa9dc220419568d5e271941a9aae806e83e04bf817aea0f649d9" -2026-04-20T10:56:22.441339Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6eb9cb2eba383f5adb283a5f33b8e6c5c997b97f082ccd0b5dd9e55bf938918d5005922ea2f56bfbb3adea6e0a68776afb181ab82f9a347e35a964d5e6a79922" next_state_root="41ccaa6f9d62fe9266c6b7863c2671cf356db922f7d2586dc86165db7799e73d7cfc880efdd8d9f561acb102b541789c42ba5c0dd817107bfe0f7952dc073087" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:56:22.441772Z DEBUG sov_stf_runner::runner: Block execution complete time=5.994199676s -2026-04-20T10:56:22.441796Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:56:22.441851Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 163, latest_finalized_slot_number: 162, sync_status: Syncing { synced_da_height: 162, target_da_height: 163 }, .. } -2026-04-20T10:56:22.441924Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=106 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 163, latest_finalized_slot_number: 162, sync_status: Syncing { synced_da_height: 162, target_da_height: 163 }, .. } -2026-04-20T10:56:22.441999Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=106 -2026-04-20T10:56:22.441997Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:56:22.442080Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:56:22.442225Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:56:22.442283Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=102 -2026-04-20T10:56:22.442391Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=159 -2026-04-20T10:56:22.442516Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:56:22.442663Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=159 sequence_number=260 -2026-04-20T10:56:22.442678Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=260 blob_id=2147877447174300523825464861616705125 visible_slot_number_after_increase=159 visible_slots_to_advance=1 -2026-04-20T10:56:22.442711Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:56:22.443149Z DEBUG compute_state_update{scope="sequencer" rollup_height=107 slot_number=159}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=41ccaa6f9d62fe9266c6b7863c2671cf356db922f7d2586dc86165db7799e73d7cfc880efdd8d9f561acb102b541789c42ba5c0dd817107bfe0f7952dc073087 next_version=164 sesssion_starting_time=51.17µs -2026-04-20T10:56:22.443827Z DEBUG compute_state_update{scope="sequencer" rollup_height=107 slot_number=159}: sov_state::nomt::prover_storage: computed next state root state_root=61e778cc8312d59f40606d1d0aa2d2bf8bd602f6db90cbeee5e4a070faf9ea1169dadeed558ac9e7c4a04e58a1e740fe604cfa269d06b721a594999a509aab76 next_version=164 time=744.375µs accesses_build_time=13.9µs finishing_session_time=634.055µs -2026-04-20T10:56:22.444395Z DEBUG manage_blob_submission_inside_task{blob_id=2147877447174300523825464861616705125 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x0242155c33896670eec23762adb52bce9a38b40123a22d71cf59420bbfe316ee sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=164 include_at=164 bytes=13 time=530.547µs -2026-04-20T10:56:22.999447Z DEBUG sp1_core_executor_runner::native: CHILD sp1_uYoO86VmR1OlnBuYN7zOLQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:56:23.013782Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:56:23.025531Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1983586 cycles -2026-04-20T10:56:23.028114Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [36, 78, 29, 239, 75, 150, 119, 103, 218, 127, 172, 211, 8, 166, 217, 224, 125, 124, 131, 223, 202, 189, 17, 134, 144, 66, 32, 106, 244, 0, 37, 231, 83, 111, 93, 238, 249, 241, 241, 165, 182, 139, 158, 150, 177, 28, 197, 72, 233, 168, 81, 119, 206, 8, 17, 22, 6, 40, 60, 171, 221, 136, 171, 70, 90, 210, 44, 214, 91, 151, 94, 201, 139, 124, 73, 160, 65, 65, 204, 51, 151, 174, 6, 15, 83, 213, 83, 97, 198, 214, 165, 182, 125, 135, 116, 151, 61, 154, 85, 229, 174, 36, 63, 27, 196, 82, 231, 112, 40, 152, 60, 120, 222, 166, 237, 221, 74, 36, 0, 100, 182, 218, 20, 240, 250, 59, 114, 245, 123, 162, 214, 186, 65, 111, 230, 109, 104, 184, 6, 74, 213, 54, 182, 228, 88, 27, 169, 190, 183, 10, 191, 56, 142, 46, 242, 175, 23, 84, 72, 99, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:56:23.122651Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:56:23.122691Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:56:23.150415Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:56:23.185099Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Wpb8GsF9RjOIY5ilwPEL6Q==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:56:23.187917Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Wpb8GsF9RjOIY5ilwPEL6Q==: stderr: -2026-04-20T10:56:23.187940Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Wpb8GsF9RjOIY5ilwPEL6Q==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:56:23.187951Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Wpb8GsF9RjOIY5ilwPEL6Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:56:23.187957Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Wpb8GsF9RjOIY5ilwPEL6Q==: stderr: stack backtrace: -2026-04-20T10:56:23.187964Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Wpb8GsF9RjOIY5ilwPEL6Q==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:56:23.187970Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Wpb8GsF9RjOIY5ilwPEL6Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:56:23.188066Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:56:23.188859Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:56:23.189154Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:56:23.257128Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:56:23.257173Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:56:23.257375Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:56:23.257554Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:56:23.257612Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:56:23.258022Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=261 blob_id=2147877448159553461830342931812571782 -2026-04-20T10:56:23.821597Z DEBUG sp1_core_executor_runner::native: CHILD sp1_MKqal8RIQMKhdjIoEQmOTw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:56:23.828757Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:56:23.839479Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1071798 cycles -2026-04-20T10:56:23.842150Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [10, 157, 42, 69, 243, 175, 127, 206, 17, 230, 13, 65, 147, 199, 127, 119, 10, 243, 214, 8, 46, 23, 64, 96, 138, 51, 98, 85, 186, 46, 84, 83, 15, 122, 168, 61, 0, 36, 236, 223, 5, 187, 203, 23, 193, 242, 215, 173, 182, 63, 36, 116, 221, 247, 210, 27, 134, 190, 122, 211, 168, 197, 20, 114, 10, 157, 42, 69, 243, 175, 127, 206, 17, 230, 13, 65, 147, 199, 127, 119, 10, 243, 214, 8, 46, 23, 64, 96, 138, 51, 98, 85, 186, 46, 84, 83, 77, 159, 228, 69, 104, 150, 97, 123, 52, 96, 136, 196, 231, 171, 249, 86, 56, 24, 122, 19, 214, 35, 97, 99, 219, 234, 134, 240, 155, 141, 177, 228, 81, 127, 162, 202, 70, 161, 254, 189, 49, 119, 95, 114, 118, 91, 148, 67, 105, 152, 10, 139, 95, 62, 95, 10, 35, 74, 35, 136, 47, 58, 224, 1, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:56:23.902975Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:56:23.903019Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:56:23.964731Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:56:23.999265Z DEBUG sp1_core_executor_runner::native: CHILD sp1_T4F_gqTBQbyojTeOyFWxjQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:56:24.002110Z DEBUG sp1_core_executor_runner::native: CHILD sp1_T4F_gqTBQbyojTeOyFWxjQ==: stderr: -2026-04-20T10:56:24.002123Z DEBUG sp1_core_executor_runner::native: CHILD sp1_T4F_gqTBQbyojTeOyFWxjQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:56:24.002134Z DEBUG sp1_core_executor_runner::native: CHILD sp1_T4F_gqTBQbyojTeOyFWxjQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:56:24.002143Z DEBUG sp1_core_executor_runner::native: CHILD sp1_T4F_gqTBQbyojTeOyFWxjQ==: stderr: stack backtrace: -2026-04-20T10:56:24.002153Z DEBUG sp1_core_executor_runner::native: CHILD sp1_T4F_gqTBQbyojTeOyFWxjQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:56:24.002161Z DEBUG sp1_core_executor_runner::native: CHILD sp1_T4F_gqTBQbyojTeOyFWxjQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:56:24.002247Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:56:24.003038Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:56:24.003336Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:56:24.068905Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:56:24.068948Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:56:24.069117Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:56:24.069301Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:56:24.069391Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:56:24.069790Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=262 blob_id=2147877449141239913981048123932419246 -2026-04-20T10:56:24.627867Z DEBUG sp1_core_executor_runner::native: CHILD sp1_byE1L9wISbeKe_MyhYlFyg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:56:24.645933Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:56:24.656762Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2655201 cycles -2026-04-20T10:56:24.659445Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [10, 157, 42, 69, 243, 175, 127, 206, 17, 230, 13, 65, 147, 199, 127, 119, 10, 243, 214, 8, 46, 23, 64, 96, 138, 51, 98, 85, 186, 46, 84, 83, 65, 241, 70, 211, 24, 226, 236, 129, 80, 183, 19, 177, 136, 168, 255, 122, 131, 232, 116, 119, 101, 171, 244, 102, 93, 218, 34, 136, 101, 124, 171, 14, 36, 208, 80, 80, 123, 207, 100, 10, 40, 67, 101, 214, 64, 140, 11, 116, 70, 102, 153, 224, 241, 121, 93, 49, 209, 0, 40, 138, 51, 183, 40, 216, 71, 105, 145, 241, 76, 193, 49, 189, 30, 238, 154, 40, 88, 55, 238, 94, 6, 181, 66, 70, 176, 29, 234, 213, 103, 38, 186, 56, 93, 51, 195, 161, 82, 181, 226, 182, 69, 141, 78, 224, 42, 137, 19, 46, 71, 183, 75, 180, 45, 177, 185, 58, 78, 207, 92, 166, 140, 171, 182, 162, 91, 52, 38, 161, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:56:24.771745Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:56:24.771781Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:56:24.877449Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:56:24.912268Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wE2kZEhZTAehngAD922EGQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:56:24.915134Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wE2kZEhZTAehngAD922EGQ==: stderr: -2026-04-20T10:56:24.915157Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wE2kZEhZTAehngAD922EGQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:56:24.915168Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wE2kZEhZTAehngAD922EGQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:56:24.915174Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wE2kZEhZTAehngAD922EGQ==: stderr: stack backtrace: -2026-04-20T10:56:24.915181Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wE2kZEhZTAehngAD922EGQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:56:24.915187Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wE2kZEhZTAehngAD922EGQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:56:24.915232Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:56:24.916053Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:56:24.916368Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:56:24.977062Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:56:24.977105Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:56:24.977242Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:56:24.977709Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=263 blob_id=2147877450238895248338603909723569859 -2026-04-20T10:56:28.436108Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=4 height=164 prev_hash=0xded1126c5b0da8e2db5d451c3c92af2436c0aa7fd94f849149348f9c030244ad hash=0xe50ef6eafadbd91c1877394d1907bf2a61418e21c665f62e2c874324740a3f51 producing_time=1.269142ms -2026-04-20T10:56:28.443871Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=164 current_state_root="41ccaa6f9d62fe9266c6b7863c2671cf356db922f7d2586dc86165db7799e73d7cfc880efdd8d9f561acb102b541789c42ba5c0dd817107bfe0f7952dc073087" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0242155c33896670eec23762adb52bce9a38b40123a22d71cf59420bbfe316ee"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xada0adbbcf671d600429e4f845d0968fafc4b474228f3f5dbdd8c0240928bfa4, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x46bb6a541b2da8a98a05bb5c2eca1b46660a37d477d02a2d9e20079cef40c721, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x2987e08ab75149467f514c4b5c92bfa8ef84d884f99abb6c67b104fa174084c8, len=625"] -2026-04-20T10:56:28.444127Z DEBUG StfBlueprint::apply_slot{context=Node da_height=164}: sov_chain_state: Setting next visible slot number next_visible_slot_number=159 -2026-04-20T10:56:28.444264Z DEBUG StfBlueprint::apply_slot{context=Node da_height=164}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x0242155c33896670eec23762adb52bce9a38b40123a22d71cf59420bbfe316ee}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:56:28.444481Z DEBUG StfBlueprint::apply_slot{context=Node da_height=164}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=41ccaa6f9d62fe9266c6b7863c2671cf356db922f7d2586dc86165db7799e73d7cfc880efdd8d9f561acb102b541789c42ba5c0dd817107bfe0f7952dc073087 next_version=164 sesssion_starting_time=51.62µs -2026-04-20T10:56:28.445480Z DEBUG StfBlueprint::apply_slot{context=Node da_height=164}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=61e778cc8312d59f40606d1d0aa2d2bf8bd602f6db90cbeee5e4a070faf9ea1163c454f2ada778ed953c10a9d77306258317b1d32a67d10adf27d86689978308 next_version=164 time=1.085343ms accesses_build_time=34.02µs finishing_session_time=958.404µs -2026-04-20T10:56:28.445688Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6eb9cb2eba383f5adb283a5f33b8e6c5c997b97f082ccd0b5dd9e55bf938918d5005922ea2f56bfbb3adea6e0a68776afb181ab82f9a347e35a964d5e6a79922" next_state_root="61e778cc8312d59f40606d1d0aa2d2bf8bd602f6db90cbeee5e4a070faf9ea1163c454f2ada778ed953c10a9d77306258317b1d32a67d10adf27d86689978308" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:56:28.446179Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 164, latest_finalized_slot_number: 163, sync_status: Syncing { synced_da_height: 163, target_da_height: 164 }, .. } -2026-04-20T10:56:28.446254Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=107 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 164, latest_finalized_slot_number: 163, sync_status: Syncing { synced_da_height: 163, target_da_height: 164 }, .. } -2026-04-20T10:56:28.446335Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=107 -2026-04-20T10:56:28.457819Z DEBUG sov_stf_runner::runner: Block execution complete time=6.016024817s -2026-04-20T10:56:28.457858Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:56:28.458082Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:56:28.458170Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:56:29.016734Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9sC-D9qATXCR0McI44yUlw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:56:29.030723Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:56:29.041563Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1956925 cycles -2026-04-20T10:56:29.044225Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 34, 95, 170, 33, 90, 115, 115, 224, 219, 48, 137, 235, 189, 24, 41, 253, 17, 23, 218, 136, 193, 131, 167, 184, 185, 234, 41, 211, 24, 31, 214, 39, 146, 118, 52, 55, 81, 181, 126, 44, 129, 68, 52, 142, 199, 79, 58, 89, 20, 74, 197, 174, 68, 250, 146, 135, 120, 50, 95, 190, 177, 110, 181, 35, 67, 38, 89, 255, 215, 0, 104, 6, 117, 242, 197, 31, 75, 210, 28, 181, 182, 174, 164, 102, 77, 174, 196, 95, 95, 248, 229, 70, 60, 47, 145, 33, 175, 0, 59, 146, 215, 153, 79, 89, 77, 134, 68, 22, 64, 195, 101, 125, 84, 63, 177, 185, 206, 178, 146, 125, 156, 107, 144, 113, 158, 181, 13, 144, 223, 13, 54, 28, 166, 164, 238, 63, 235, 29, 21, 215, 23, 146, 1, 118, 93, 65, 188, 153, 118, 2, 152, 41, 244, 107, 63, 250, 198, 68, 234, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:56:29.136237Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:56:29.136285Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:56:29.164619Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:56:29.199243Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CruZg_gnRh2V6MMnlzB1vg==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:56:29.202113Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CruZg_gnRh2V6MMnlzB1vg==: stderr: -2026-04-20T10:56:29.202125Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CruZg_gnRh2V6MMnlzB1vg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:56:29.202134Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CruZg_gnRh2V6MMnlzB1vg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:56:29.202142Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CruZg_gnRh2V6MMnlzB1vg==: stderr: stack backtrace: -2026-04-20T10:56:29.202149Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CruZg_gnRh2V6MMnlzB1vg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:56:29.202155Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CruZg_gnRh2V6MMnlzB1vg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:56:29.202279Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:56:29.203032Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:56:29.203342Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:56:29.268351Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:56:29.268393Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:56:29.268550Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:56:29.269359Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=264 blob_id=2147877455426438752578720167196683591 -2026-04-20T10:56:34.437810Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=165 prev_hash=0xe50ef6eafadbd91c1877394d1907bf2a61418e21c665f62e2c874324740a3f51 hash=0x2e0751da1c5e3560a3be2bb7f94e346e66e0c1ebc06948bf4d027e3ca64ddf38 producing_time=1.125612ms -2026-04-20T10:56:34.439486Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=165 current_state_root="61e778cc8312d59f40606d1d0aa2d2bf8bd602f6db90cbeee5e4a070faf9ea1163c454f2ada778ed953c10a9d77306258317b1d32a67d10adf27d86689978308" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xfbb55393f479dcee1fb166dfe6d6519abb81b6d6086a966398fefe43aa2c2909, len=625"] -2026-04-20T10:56:34.439868Z DEBUG StfBlueprint::apply_slot{context=Node da_height=165}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=61e778cc8312d59f40606d1d0aa2d2bf8bd602f6db90cbeee5e4a070faf9ea1163c454f2ada778ed953c10a9d77306258317b1d32a67d10adf27d86689978308 next_version=165 sesssion_starting_time=48.85µs -2026-04-20T10:56:34.440697Z DEBUG StfBlueprint::apply_slot{context=Node da_height=165}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=61e778cc8312d59f40606d1d0aa2d2bf8bd602f6db90cbeee5e4a070faf9ea1110f97586b606fb16689838148036cde6c15c5a0d7f7b6c383a8b9bf630688724 next_version=165 time=895.135µs accesses_build_time=16.38µs finishing_session_time=800.075µs -2026-04-20T10:56:34.440770Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="41ccaa6f9d62fe9266c6b7863c2671cf356db922f7d2586dc86165db7799e73d7cfc880efdd8d9f561acb102b541789c42ba5c0dd817107bfe0f7952dc073087" next_state_root="61e778cc8312d59f40606d1d0aa2d2bf8bd602f6db90cbeee5e4a070faf9ea1110f97586b606fb16689838148036cde6c15c5a0d7f7b6c383a8b9bf630688724" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:56:34.441346Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 165, latest_finalized_slot_number: 164, sync_status: Syncing { synced_da_height: 164, target_da_height: 165 }, .. } -2026-04-20T10:56:34.441430Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=107 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 165, latest_finalized_slot_number: 164, sync_status: Syncing { synced_da_height: 164, target_da_height: 165 }, .. } -2026-04-20T10:56:34.441487Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=107 -2026-04-20T10:56:34.452338Z DEBUG sov_stf_runner::runner: Block execution complete time=5.994483346s -2026-04-20T10:56:34.452364Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:56:40.439922Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=166 prev_hash=0x2e0751da1c5e3560a3be2bb7f94e346e66e0c1ebc06948bf4d027e3ca64ddf38 hash=0xa5203b5329160b12e989a94c4b8e5a65b541b7e3b8f5133fa99284adf77a9c77 producing_time=1.171893ms -2026-04-20T10:56:40.443379Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=166 current_state_root="61e778cc8312d59f40606d1d0aa2d2bf8bd602f6db90cbeee5e4a070faf9ea1110f97586b606fb16689838148036cde6c15c5a0d7f7b6c383a8b9bf630688724" batch_blobs=[] proof_blobs=[] -2026-04-20T10:56:40.443573Z DEBUG StfBlueprint::apply_slot{context=Node da_height=166}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=61e778cc8312d59f40606d1d0aa2d2bf8bd602f6db90cbeee5e4a070faf9ea1110f97586b606fb16689838148036cde6c15c5a0d7f7b6c383a8b9bf630688724 next_version=166 sesssion_starting_time=26.23µs -2026-04-20T10:56:40.444290Z DEBUG StfBlueprint::apply_slot{context=Node da_height=166}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=61e778cc8312d59f40606d1d0aa2d2bf8bd602f6db90cbeee5e4a070faf9ea11408a5aececd9874bb0543b71045345877b40eb1a8f338fb5ac91191a7904dbda next_version=166 time=753.496µs accesses_build_time=9.02µs finishing_session_time=704.956µs -2026-04-20T10:56:40.444332Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="61e778cc8312d59f40606d1d0aa2d2bf8bd602f6db90cbeee5e4a070faf9ea1163c454f2ada778ed953c10a9d77306258317b1d32a67d10adf27d86689978308" next_state_root="61e778cc8312d59f40606d1d0aa2d2bf8bd602f6db90cbeee5e4a070faf9ea11408a5aececd9874bb0543b71045345877b40eb1a8f338fb5ac91191a7904dbda" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:56:40.444711Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 166, latest_finalized_slot_number: 165, sync_status: Syncing { synced_da_height: 165, target_da_height: 166 }, .. } -2026-04-20T10:56:40.444792Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=107 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 166, latest_finalized_slot_number: 165, sync_status: Syncing { synced_da_height: 165, target_da_height: 166 }, .. } -2026-04-20T10:56:40.444851Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=107 -2026-04-20T10:56:40.445077Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=2 -2026-04-20T10:56:40.445133Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=103 -2026-04-20T10:56:40.445274Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=161 -2026-04-20T10:56:40.445474Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:56:40.445826Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=2 visible_slot_number_after_increase=161 sequence_number=265 -2026-04-20T10:56:40.445856Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=265 blob_id=2147877468938562205617020815736545829 visible_slot_number_after_increase=161 visible_slots_to_advance=2 -2026-04-20T10:56:40.445891Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=4 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:56:40.447536Z DEBUG manage_blob_submission_inside_task{blob_id=2147877468938562205617020815736545829 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xf6b30f278614bc5a3f5aa1796ea74f006bd0095ca9891fcff516983a8c803a0a sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=167 include_at=167 bytes=13 time=492.217µs -2026-04-20T10:56:40.454326Z DEBUG compute_state_update{scope="sequencer" rollup_height=108 slot_number=161}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:56:40.454368Z DEBUG sov_stf_runner::runner: Block execution complete time=6.002004288s -2026-04-20T10:56:40.454391Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:56:40.454402Z DEBUG compute_state_update{scope="sequencer" rollup_height=108 slot_number=161}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=61e778cc8312d59f40606d1d0aa2d2bf8bd602f6db90cbeee5e4a070faf9ea11408a5aececd9874bb0543b71045345877b40eb1a8f338fb5ac91191a7904dbda next_version=167 sesssion_starting_time=8.057998ms -2026-04-20T10:56:40.455111Z DEBUG compute_state_update{scope="sequencer" rollup_height=108 slot_number=161}: sov_state::nomt::prover_storage: computed next state root state_root=5727fffafba213e0b04fc5faaef9cc72174cdac3e01e6ac4d525ac96542b7f9c12e9ebddb61864aae2754554000d2dc2cdf96f5411fab4fdf634556c2e6f6e82 next_version=167 time=8.785284ms accesses_build_time=17.81µs finishing_session_time=686.236µs -2026-04-20T10:56:46.442380Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=167 prev_hash=0xa5203b5329160b12e989a94c4b8e5a65b541b7e3b8f5133fa99284adf77a9c77 hash=0x667289fbbc4d38892b487c729146e485251f98f699606e0868fff6373691a8c1 producing_time=1.146403ms -2026-04-20T10:56:46.445868Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=167 current_state_root="61e778cc8312d59f40606d1d0aa2d2bf8bd602f6db90cbeee5e4a070faf9ea11408a5aececd9874bb0543b71045345877b40eb1a8f338fb5ac91191a7904dbda" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf6b30f278614bc5a3f5aa1796ea74f006bd0095ca9891fcff516983a8c803a0a"] proof_blobs=[] -2026-04-20T10:56:46.446078Z DEBUG StfBlueprint::apply_slot{context=Node da_height=167}: sov_chain_state: Setting next visible slot number next_visible_slot_number=161 -2026-04-20T10:56:46.446213Z DEBUG StfBlueprint::apply_slot{context=Node da_height=167}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xf6b30f278614bc5a3f5aa1796ea74f006bd0095ca9891fcff516983a8c803a0a}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=4 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:56:46.446300Z DEBUG StfBlueprint::apply_slot{context=Node da_height=167}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=61e778cc8312d59f40606d1d0aa2d2bf8bd602f6db90cbeee5e4a070faf9ea11408a5aececd9874bb0543b71045345877b40eb1a8f338fb5ac91191a7904dbda next_version=167 sesssion_starting_time=25.01µs -2026-04-20T10:56:46.447181Z DEBUG StfBlueprint::apply_slot{context=Node da_height=167}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=5727fffafba213e0b04fc5faaef9cc72174cdac3e01e6ac4d525ac96542b7f9c22f75bde0c2d07326d4ed455ac2797ec5fced0dec328bd79849638fe75c16448 next_version=167 time=923.644µs accesses_build_time=16.2µs finishing_session_time=871.735µs -2026-04-20T10:56:46.447275Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ada0adbbcf671d600429e4f845d0968fafc4b474228f3f5dbdd8c0240928bfa4" -2026-04-20T10:56:46.447282Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="46bb6a541b2da8a98a05bb5c2eca1b46660a37d477d02a2d9e20079cef40c721" -2026-04-20T10:56:46.447285Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="2987e08ab75149467f514c4b5c92bfa8ef84d884f99abb6c67b104fa174084c8" -2026-04-20T10:56:46.447289Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="fbb55393f479dcee1fb166dfe6d6519abb81b6d6086a966398fefe43aa2c2909" -2026-04-20T10:56:46.447299Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="61e778cc8312d59f40606d1d0aa2d2bf8bd602f6db90cbeee5e4a070faf9ea1110f97586b606fb16689838148036cde6c15c5a0d7f7b6c383a8b9bf630688724" next_state_root="5727fffafba213e0b04fc5faaef9cc72174cdac3e01e6ac4d525ac96542b7f9c22f75bde0c2d07326d4ed455ac2797ec5fced0dec328bd79849638fe75c16448" aggregated_proofs=0 proof_receipts=4 -2026-04-20T10:56:46.447691Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 167, latest_finalized_slot_number: 166, sync_status: Synced { synced_da_height: 166 }, .. } -2026-04-20T10:56:46.447785Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=108 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 167, latest_finalized_slot_number: 166, sync_status: Synced { synced_da_height: 166 }, .. } -2026-04-20T10:56:46.447853Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=108 -2026-04-20T10:56:46.454081Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999692912s -2026-04-20T10:56:46.454107Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:56:46.454340Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:56:46.454425Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:56:47.020302Z DEBUG sp1_core_executor_runner::native: CHILD sp1_m53pY3ERQDK_SBOODjCYYA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:56:47.027407Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:56:47.038873Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1052496 cycles -2026-04-20T10:56:47.041331Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [106, 246, 121, 2, 186, 90, 48, 185, 241, 239, 165, 57, 158, 157, 21, 136, 11, 201, 222, 74, 29, 122, 174, 214, 244, 95, 115, 40, 149, 238, 228, 54, 75, 217, 179, 170, 13, 195, 85, 14, 60, 29, 128, 223, 15, 24, 233, 88, 139, 103, 180, 159, 35, 184, 48, 69, 246, 228, 20, 4, 37, 243, 41, 50, 106, 246, 121, 2, 186, 90, 48, 185, 241, 239, 165, 57, 158, 157, 21, 136, 11, 201, 222, 74, 29, 122, 174, 214, 244, 95, 115, 40, 149, 238, 228, 54, 16, 214, 128, 76, 169, 57, 186, 72, 131, 138, 180, 155, 124, 7, 217, 18, 195, 14, 41, 213, 71, 236, 181, 134, 74, 21, 236, 229, 38, 108, 86, 31, 189, 99, 161, 90, 160, 233, 4, 227, 154, 122, 214, 120, 139, 32, 100, 231, 162, 110, 37, 101, 78, 45, 56, 198, 6, 231, 137, 188, 182, 22, 47, 209, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:56:47.098789Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:56:47.098847Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:56:47.162063Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:56:47.196796Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M5XENJEmTMGD7urPisnHHA==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:56:47.199615Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M5XENJEmTMGD7urPisnHHA==: stderr: -2026-04-20T10:56:47.199628Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M5XENJEmTMGD7urPisnHHA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:56:47.199637Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M5XENJEmTMGD7urPisnHHA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:56:47.199645Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M5XENJEmTMGD7urPisnHHA==: stderr: stack backtrace: -2026-04-20T10:56:47.199650Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M5XENJEmTMGD7urPisnHHA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:56:47.199656Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M5XENJEmTMGD7urPisnHHA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:56:47.199762Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:56:47.200527Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:56:47.200856Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:56:47.249907Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:56:47.249948Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:56:47.250066Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:56:47.250250Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:56:47.250299Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:56:47.250773Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=266 blob_id=2147877477165353189960411016574228397 -2026-04-20T10:56:47.794679Z DEBUG sp1_core_executor_runner::native: CHILD sp1_iU_ML_arQnimC9n_tTsqKw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:56:47.813076Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:56:47.825240Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2702074 cycles -2026-04-20T10:56:47.828021Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [106, 246, 121, 2, 186, 90, 48, 185, 241, 239, 165, 57, 158, 157, 21, 136, 11, 201, 222, 74, 29, 122, 174, 214, 244, 95, 115, 40, 149, 238, 228, 54, 58, 91, 251, 43, 143, 199, 147, 166, 222, 248, 122, 209, 58, 47, 192, 151, 229, 220, 130, 8, 58, 215, 206, 202, 137, 113, 113, 244, 46, 217, 75, 215, 36, 3, 120, 60, 53, 101, 244, 222, 11, 69, 195, 64, 28, 238, 112, 206, 249, 92, 51, 160, 249, 158, 183, 59, 245, 49, 166, 115, 221, 145, 226, 132, 118, 22, 66, 251, 214, 227, 192, 11, 134, 192, 223, 43, 2, 236, 168, 252, 220, 126, 211, 53, 234, 133, 83, 49, 182, 155, 46, 161, 236, 82, 251, 14, 173, 98, 160, 58, 20, 80, 34, 221, 14, 49, 221, 185, 253, 138, 182, 228, 244, 63, 161, 172, 81, 71, 84, 233, 91, 224, 141, 240, 29, 122, 142, 211, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:56:47.928591Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:56:47.928627Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:56:47.958328Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:56:47.994310Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8Afq1pFDQwqxUI2c4Q6D4w==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:56:47.997142Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8Afq1pFDQwqxUI2c4Q6D4w==: stderr: -2026-04-20T10:56:47.997155Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8Afq1pFDQwqxUI2c4Q6D4w==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:56:47.997164Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8Afq1pFDQwqxUI2c4Q6D4w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:56:47.997170Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8Afq1pFDQwqxUI2c4Q6D4w==: stderr: stack backtrace: -2026-04-20T10:56:47.997177Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8Afq1pFDQwqxUI2c4Q6D4w==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:56:47.997183Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8Afq1pFDQwqxUI2c4Q6D4w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:56:47.997273Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:56:47.998063Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:56:47.998194Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:56:48.024595Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:56:48.024624Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:56:48.024792Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:56:48.025364Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=267 blob_id=2147877478101034049728841413489569541 -2026-04-20T10:56:52.445069Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=168 prev_hash=0x667289fbbc4d38892b487c729146e485251f98f699606e0868fff6373691a8c1 hash=0x225de1cf78d127eee9f2f4c16577fb70f1551cf3f29e20ec952437ea4b3c3257 producing_time=1.004733ms -2026-04-20T10:56:52.455771Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=168 current_state_root="5727fffafba213e0b04fc5faaef9cc72174cdac3e01e6ac4d525ac96542b7f9c22f75bde0c2d07326d4ed455ac2797ec5fced0dec328bd79849638fe75c16448" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x69746becf13b23015f2f5d5a1342572eef87eee641be80003317d2de770c5447, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x77644f1436618181d0a1587c91810fffa6a6df245370a01714c995073bc75a4c, len=625"] -2026-04-20T10:56:52.456131Z DEBUG StfBlueprint::apply_slot{context=Node da_height=168}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5727fffafba213e0b04fc5faaef9cc72174cdac3e01e6ac4d525ac96542b7f9c22f75bde0c2d07326d4ed455ac2797ec5fced0dec328bd79849638fe75c16448 next_version=168 sesssion_starting_time=46.94µs -2026-04-20T10:56:52.456998Z DEBUG StfBlueprint::apply_slot{context=Node da_height=168}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=5727fffafba213e0b04fc5faaef9cc72174cdac3e01e6ac4d525ac96542b7f9c2490ff1f470445e31f82b7e4920588903340e7964c84b2a63baef897c210b499 next_version=168 time=932.944µs accesses_build_time=17.83µs finishing_session_time=834.025µs -2026-04-20T10:56:52.457062Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="61e778cc8312d59f40606d1d0aa2d2bf8bd602f6db90cbeee5e4a070faf9ea11408a5aececd9874bb0543b71045345877b40eb1a8f338fb5ac91191a7904dbda" next_state_root="5727fffafba213e0b04fc5faaef9cc72174cdac3e01e6ac4d525ac96542b7f9c2490ff1f470445e31f82b7e4920588903340e7964c84b2a63baef897c210b499" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:56:52.457577Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 168, latest_finalized_slot_number: 167, sync_status: Synced { synced_da_height: 167 }, .. } -2026-04-20T10:56:52.457667Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=108 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 168, latest_finalized_slot_number: 167, sync_status: Synced { synced_da_height: 167 }, .. } -2026-04-20T10:56:52.457762Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=108 -2026-04-20T10:56:52.468439Z DEBUG sov_stf_runner::runner: Block execution complete time=6.014333008s -2026-04-20T10:56:52.468478Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:56:58.446283Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=169 prev_hash=0x225de1cf78d127eee9f2f4c16577fb70f1551cf3f29e20ec952437ea4b3c3257 hash=0xe22af732ad57d494fae5e57ca4801117794a9c90914a082bc84d1795231960ea producing_time=799.285µs -2026-04-20T10:56:58.451092Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=169 current_state_root="5727fffafba213e0b04fc5faaef9cc72174cdac3e01e6ac4d525ac96542b7f9c2490ff1f470445e31f82b7e4920588903340e7964c84b2a63baef897c210b499" batch_blobs=[] proof_blobs=[] -2026-04-20T10:56:58.451433Z DEBUG StfBlueprint::apply_slot{context=Node da_height=169}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5727fffafba213e0b04fc5faaef9cc72174cdac3e01e6ac4d525ac96542b7f9c2490ff1f470445e31f82b7e4920588903340e7964c84b2a63baef897c210b499 next_version=169 sesssion_starting_time=48.84µs -2026-04-20T10:56:58.452247Z DEBUG StfBlueprint::apply_slot{context=Node da_height=169}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=5727fffafba213e0b04fc5faaef9cc72174cdac3e01e6ac4d525ac96542b7f9c7177a70239f5e846c0fe3f3c4bb7f33e7302ec71a20485d86386fcc28cb36017 next_version=169 time=879.744µs accesses_build_time=15.38µs finishing_session_time=779.975µs -2026-04-20T10:56:58.452311Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="5727fffafba213e0b04fc5faaef9cc72174cdac3e01e6ac4d525ac96542b7f9c22f75bde0c2d07326d4ed455ac2797ec5fced0dec328bd79849638fe75c16448" next_state_root="5727fffafba213e0b04fc5faaef9cc72174cdac3e01e6ac4d525ac96542b7f9c7177a70239f5e846c0fe3f3c4bb7f33e7302ec71a20485d86386fcc28cb36017" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:56:58.452806Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 169, latest_finalized_slot_number: 168, sync_status: Synced { synced_da_height: 168 }, .. } -2026-04-20T10:56:58.452890Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=108 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 169, latest_finalized_slot_number: 168, sync_status: Synced { synced_da_height: 168 }, .. } -2026-04-20T10:56:58.452967Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=108 -2026-04-20T10:56:58.453212Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=3 -2026-04-20T10:56:58.453270Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=104 -2026-04-20T10:56:58.453367Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=164 -2026-04-20T10:56:58.453518Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:56:58.453821Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=3 visible_slot_number_after_increase=164 sequence_number=268 -2026-04-20T10:56:58.453845Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=268 blob_id=2147877490708893052359394201958291735 visible_slot_number_after_increase=164 visible_slots_to_advance=3 -2026-04-20T10:56:58.453872Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=2 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:56:58.455512Z DEBUG manage_blob_submission_inside_task{blob_id=2147877490708893052359394201958291735 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xba80a26ab72823355ef9021a5de89f11933eb298b0d3012bb9d5489b3ffdb8f2 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=170 include_at=170 bytes=13 time=541.506µs -2026-04-20T10:56:58.458655Z DEBUG compute_state_update{scope="sequencer" rollup_height=109 slot_number=164}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:56:58.458684Z DEBUG sov_stf_runner::runner: Block execution complete time=5.990209734s -2026-04-20T10:56:58.458704Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:56:58.458726Z DEBUG compute_state_update{scope="sequencer" rollup_height=109 slot_number=164}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5727fffafba213e0b04fc5faaef9cc72174cdac3e01e6ac4d525ac96542b7f9c7177a70239f5e846c0fe3f3c4bb7f33e7302ec71a20485d86386fcc28cb36017 next_version=170 sesssion_starting_time=4.473222ms -2026-04-20T10:56:58.459411Z DEBUG compute_state_update{scope="sequencer" rollup_height=109 slot_number=164}: sov_state::nomt::prover_storage: computed next state root state_root=07dabb9e91bc8e4a376879d8612933c3cbddcc42cfd3fbcd4a24652efdbb4bc8292e1ee92f447a0f9d1853a70a472a10deadbbd9e3bfcc15291dcf1197dc9eb7 next_version=170 time=5.172117ms accesses_build_time=13.5µs finishing_session_time=649.086µs -2026-04-20T10:57:04.448328Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=170 prev_hash=0xe22af732ad57d494fae5e57ca4801117794a9c90914a082bc84d1795231960ea hash=0x72502cba40a6cce26b516ff686f8c4e203f26108947a2a576a9aa7cad1f10c86 producing_time=1.119192ms -2026-04-20T10:57:04.449931Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=170 current_state_root="5727fffafba213e0b04fc5faaef9cc72174cdac3e01e6ac4d525ac96542b7f9c7177a70239f5e846c0fe3f3c4bb7f33e7302ec71a20485d86386fcc28cb36017" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xba80a26ab72823355ef9021a5de89f11933eb298b0d3012bb9d5489b3ffdb8f2"] proof_blobs=[] -2026-04-20T10:57:04.450223Z DEBUG StfBlueprint::apply_slot{context=Node da_height=170}: sov_chain_state: Setting next visible slot number next_visible_slot_number=164 -2026-04-20T10:57:04.450465Z DEBUG StfBlueprint::apply_slot{context=Node da_height=170}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xba80a26ab72823355ef9021a5de89f11933eb298b0d3012bb9d5489b3ffdb8f2}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=2 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:57:04.450649Z DEBUG StfBlueprint::apply_slot{context=Node da_height=170}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5727fffafba213e0b04fc5faaef9cc72174cdac3e01e6ac4d525ac96542b7f9c7177a70239f5e846c0fe3f3c4bb7f33e7302ec71a20485d86386fcc28cb36017 next_version=170 sesssion_starting_time=46.519µs -2026-04-20T10:57:04.451711Z DEBUG StfBlueprint::apply_slot{context=Node da_height=170}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=07dabb9e91bc8e4a376879d8612933c3cbddcc42cfd3fbcd4a24652efdbb4bc8582883cf5fc6257f5f9eb43835a51e52962454e0bdaad19bc4c6a7da08a545b5 next_version=170 time=1.146762ms accesses_build_time=37.309µs finishing_session_time=1.033084ms -2026-04-20T10:57:04.451923Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="69746becf13b23015f2f5d5a1342572eef87eee641be80003317d2de770c5447" -2026-04-20T10:57:04.451939Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="77644f1436618181d0a1587c91810fffa6a6df245370a01714c995073bc75a4c" -2026-04-20T10:57:04.451951Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="5727fffafba213e0b04fc5faaef9cc72174cdac3e01e6ac4d525ac96542b7f9c2490ff1f470445e31f82b7e4920588903340e7964c84b2a63baef897c210b499" next_state_root="07dabb9e91bc8e4a376879d8612933c3cbddcc42cfd3fbcd4a24652efdbb4bc8582883cf5fc6257f5f9eb43835a51e52962454e0bdaad19bc4c6a7da08a545b5" aggregated_proofs=0 proof_receipts=2 -2026-04-20T10:57:04.452485Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 170, latest_finalized_slot_number: 169, sync_status: Synced { synced_da_height: 169 }, .. } -2026-04-20T10:57:04.452572Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=109 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 170, latest_finalized_slot_number: 169, sync_status: Synced { synced_da_height: 169 }, .. } -2026-04-20T10:57:04.452631Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=109 -2026-04-20T10:57:04.452868Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:57:04.452931Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=105 -2026-04-20T10:57:04.453028Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=165 -2026-04-20T10:57:04.453136Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:57:04.453300Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=165 sequence_number=269 -2026-04-20T10:57:04.453339Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=269 blob_id=2147877497962458593793786145100471513 visible_slot_number_after_increase=165 visible_slots_to_advance=1 -2026-04-20T10:57:04.453368Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:57:04.455006Z DEBUG manage_blob_submission_inside_task{blob_id=2147877497962458593793786145100471513 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xbd9ddbd930218f318ea03a620680a44acfd26a5e1aa4985e94f6134b4a30772e sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=171 include_at=171 bytes=13 time=507.327µs -2026-04-20T10:57:04.458528Z DEBUG compute_state_update{scope="sequencer" rollup_height=110 slot_number=165}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:57:04.458535Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999831952s -2026-04-20T10:57:04.458596Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:57:04.458619Z DEBUG compute_state_update{scope="sequencer" rollup_height=110 slot_number=165}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=07dabb9e91bc8e4a376879d8612933c3cbddcc42cfd3fbcd4a24652efdbb4bc8582883cf5fc6257f5f9eb43835a51e52962454e0bdaad19bc4c6a7da08a545b5 next_version=171 sesssion_starting_time=4.787509ms -2026-04-20T10:57:04.458797Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:57:04.458883Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:57:04.459261Z DEBUG compute_state_update{scope="sequencer" rollup_height=110 slot_number=165}: sov_state::nomt::prover_storage: computed next state root state_root=37e8c6752a2467c6c8202e4d05699e62484c1282616f0d897422f0de7f8c923272e208fe4963ba978b7225fa0a28a3ff5f92ed1a0dd28ea6092761a325801288 next_version=171 time=5.443005ms accesses_build_time=12.1µs finishing_session_time=619.666µs -2026-04-20T10:57:05.017226Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8lLbvVmfRuGJZcLO4gofqQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:57:05.031656Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:57:05.043609Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1977845 cycles -2026-04-20T10:57:05.046200Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [95, 208, 116, 165, 161, 70, 3, 123, 27, 159, 40, 36, 252, 124, 21, 48, 255, 137, 92, 13, 207, 83, 220, 143, 82, 191, 9, 101, 57, 73, 155, 130, 83, 106, 198, 201, 161, 76, 79, 223, 48, 247, 214, 240, 79, 183, 191, 61, 71, 63, 208, 11, 164, 64, 105, 176, 172, 176, 41, 110, 76, 48, 21, 110, 50, 36, 237, 185, 212, 101, 66, 77, 200, 192, 8, 127, 48, 199, 188, 239, 120, 219, 107, 31, 222, 210, 125, 233, 55, 228, 120, 80, 7, 199, 254, 225, 88, 123, 29, 61, 76, 216, 170, 89, 54, 223, 86, 9, 156, 94, 107, 29, 182, 16, 253, 176, 77, 147, 165, 3, 223, 233, 16, 96, 62, 141, 166, 156, 213, 110, 166, 87, 163, 184, 161, 228, 226, 249, 221, 178, 199, 252, 241, 167, 63, 237, 131, 249, 240, 248, 167, 130, 169, 132, 17, 128, 22, 146, 236, 99, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:57:05.139768Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:57:05.139807Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:57:05.166938Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:57:05.201694Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Fg7UWBbLRlqD17afJC3j9Q==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:57:05.204600Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Fg7UWBbLRlqD17afJC3j9Q==: stderr: -2026-04-20T10:57:05.204612Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Fg7UWBbLRlqD17afJC3j9Q==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:57:05.204620Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Fg7UWBbLRlqD17afJC3j9Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:57:05.204628Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Fg7UWBbLRlqD17afJC3j9Q==: stderr: stack backtrace: -2026-04-20T10:57:05.204635Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Fg7UWBbLRlqD17afJC3j9Q==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:57:05.204641Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Fg7UWBbLRlqD17afJC3j9Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:57:05.204785Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:57:05.205535Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:57:05.205832Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:57:05.272133Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:57:05.272178Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:57:05.272384Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:57:05.272562Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:57:05.272620Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:57:05.273007Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=270 blob_id=2147877498952557939946799135393834552 -2026-04-20T10:57:05.840904Z DEBUG sp1_core_executor_runner::native: CHILD sp1_UlkEhS-UQ16TVywFnjDKOA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:57:05.848238Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:57:05.858839Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1088496 cycles -2026-04-20T10:57:05.861520Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [110, 185, 203, 46, 186, 56, 63, 90, 219, 40, 58, 95, 51, 184, 230, 197, 201, 151, 185, 127, 8, 44, 205, 11, 93, 217, 229, 91, 249, 56, 145, 141, 112, 224, 18, 126, 113, 139, 217, 250, 153, 20, 215, 219, 166, 227, 125, 165, 238, 144, 147, 81, 18, 123, 117, 174, 92, 103, 112, 135, 209, 209, 83, 215, 110, 185, 203, 46, 186, 56, 63, 90, 219, 40, 58, 95, 51, 184, 230, 197, 201, 151, 185, 127, 8, 44, 205, 11, 93, 217, 229, 91, 249, 56, 145, 141, 14, 21, 171, 2, 5, 250, 180, 221, 133, 96, 181, 174, 158, 28, 255, 209, 38, 156, 50, 185, 76, 251, 10, 38, 185, 170, 175, 121, 133, 213, 125, 124, 203, 129, 69, 35, 88, 2, 158, 215, 46, 86, 150, 241, 69, 232, 223, 100, 159, 4, 68, 8, 49, 144, 219, 38, 11, 165, 126, 130, 104, 29, 120, 202, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:57:05.887087Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:57:05.887116Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:57:05.980536Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:57:06.015481Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TWvo_P-fToSPyDC56qcMIQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:57:06.018346Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TWvo_P-fToSPyDC56qcMIQ==: stderr: -2026-04-20T10:57:06.018370Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TWvo_P-fToSPyDC56qcMIQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:57:06.018380Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TWvo_P-fToSPyDC56qcMIQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:57:06.018387Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TWvo_P-fToSPyDC56qcMIQ==: stderr: stack backtrace: -2026-04-20T10:57:06.018395Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TWvo_P-fToSPyDC56qcMIQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:57:06.018401Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TWvo_P-fToSPyDC56qcMIQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:57:06.018503Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:57:06.019269Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:57:06.019562Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:57:06.045543Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:57:06.045570Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:57:06.045701Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:57:06.045875Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:57:06.045936Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:57:06.046350Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=271 blob_id=2147877499887060255051274670887506661 -2026-04-20T10:57:06.596829Z DEBUG sp1_core_executor_runner::native: CHILD sp1_KMSlzxrOSOa1LUpqi5ij5A==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:57:06.614950Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:57:06.625636Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2667920 cycles -2026-04-20T10:57:06.628209Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [110, 185, 203, 46, 186, 56, 63, 90, 219, 40, 58, 95, 51, 184, 230, 197, 201, 151, 185, 127, 8, 44, 205, 11, 93, 217, 229, 91, 249, 56, 145, 141, 80, 5, 146, 46, 162, 245, 107, 251, 179, 173, 234, 110, 10, 104, 119, 106, 251, 24, 26, 184, 47, 154, 52, 126, 53, 169, 100, 213, 230, 167, 153, 34, 49, 46, 27, 8, 99, 244, 12, 60, 160, 167, 37, 235, 219, 121, 15, 78, 91, 208, 118, 254, 78, 27, 165, 36, 28, 83, 228, 249, 14, 197, 160, 111, 121, 170, 168, 45, 112, 175, 78, 131, 214, 228, 102, 173, 200, 74, 32, 94, 143, 242, 128, 175, 61, 248, 81, 148, 154, 164, 170, 189, 12, 131, 2, 56, 222, 209, 18, 108, 91, 13, 168, 226, 219, 93, 69, 28, 60, 146, 175, 36, 54, 192, 170, 127, 217, 79, 132, 145, 73, 52, 143, 156, 3, 2, 68, 173, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:57:06.713859Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:57:06.713896Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:57:06.753981Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:57:06.785570Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3r0JuMcLSt6RPo5RjcPL_Q==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:57:06.788434Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3r0JuMcLSt6RPo5RjcPL_Q==: stderr: -2026-04-20T10:57:06.788475Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3r0JuMcLSt6RPo5RjcPL_Q==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:57:06.788485Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3r0JuMcLSt6RPo5RjcPL_Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:57:06.788492Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3r0JuMcLSt6RPo5RjcPL_Q==: stderr: stack backtrace: -2026-04-20T10:57:06.788498Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3r0JuMcLSt6RPo5RjcPL_Q==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:57:06.788505Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3r0JuMcLSt6RPo5RjcPL_Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:57:06.788588Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:57:06.789355Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:57:06.789643Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:57:06.831811Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:57:06.831838Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:57:06.831989Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:57:06.832606Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=272 blob_id=2147877500838532963646274536993918075 -2026-04-20T10:57:10.450637Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=4 height=171 prev_hash=0x72502cba40a6cce26b516ff686f8c4e203f26108947a2a576a9aa7cad1f10c86 hash=0x50d23fa0858af8cd1d3dbf5c29cd006653032ec094d6f4684556d6d9854ba9b6 producing_time=868.224µs -2026-04-20T10:57:10.460276Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=171 current_state_root="07dabb9e91bc8e4a376879d8612933c3cbddcc42cfd3fbcd4a24652efdbb4bc8582883cf5fc6257f5f9eb43835a51e52962454e0bdaad19bc4c6a7da08a545b5" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xbd9ddbd930218f318ea03a620680a44acfd26a5e1aa4985e94f6134b4a30772e"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x8dcc652c5c3e54a2625acba2d22b2f5897c086301f2864ee303c22f00be9d651, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9cd92bc883e1dc2761968ff5d2c66d087cc09d58436286031b32cc7d15e1a366, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x14f375b89379864e6e1d9a3b669919314e71c4ca9484672754bfdfd7a6d1d16b, len=625"] -2026-04-20T10:57:10.460524Z DEBUG StfBlueprint::apply_slot{context=Node da_height=171}: sov_chain_state: Setting next visible slot number next_visible_slot_number=165 -2026-04-20T10:57:10.460672Z DEBUG StfBlueprint::apply_slot{context=Node da_height=171}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xbd9ddbd930218f318ea03a620680a44acfd26a5e1aa4985e94f6134b4a30772e}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:57:10.460840Z DEBUG StfBlueprint::apply_slot{context=Node da_height=171}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=07dabb9e91bc8e4a376879d8612933c3cbddcc42cfd3fbcd4a24652efdbb4bc8582883cf5fc6257f5f9eb43835a51e52962454e0bdaad19bc4c6a7da08a545b5 next_version=171 sesssion_starting_time=46.94µs -2026-04-20T10:57:10.461772Z DEBUG StfBlueprint::apply_slot{context=Node da_height=171}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=37e8c6752a2467c6c8202e4d05699e62484c1282616f0d897422f0de7f8c923273dbfd3d138dd4df9b37c903357e7d79ade333ab4068273153f04fcdf7ec3511 next_version=171 time=1.013203ms accesses_build_time=33.59µs finishing_session_time=910.025µs -2026-04-20T10:57:10.461947Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="5727fffafba213e0b04fc5faaef9cc72174cdac3e01e6ac4d525ac96542b7f9c7177a70239f5e846c0fe3f3c4bb7f33e7302ec71a20485d86386fcc28cb36017" next_state_root="37e8c6752a2467c6c8202e4d05699e62484c1282616f0d897422f0de7f8c923273dbfd3d138dd4df9b37c903357e7d79ade333ab4068273153f04fcdf7ec3511" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:57:10.462558Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 171, latest_finalized_slot_number: 170, sync_status: Synced { synced_da_height: 170 }, .. } -2026-04-20T10:57:10.462637Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=110 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 171, latest_finalized_slot_number: 170, sync_status: Synced { synced_da_height: 170 }, .. } -2026-04-20T10:57:10.462707Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=110 -2026-04-20T10:57:10.474453Z DEBUG sov_stf_runner::runner: Block execution complete time=6.015858389s -2026-04-20T10:57:10.474496Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:57:10.474697Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:57:10.474783Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:57:11.036917Z DEBUG sp1_core_executor_runner::native: CHILD sp1_x4DloV8dSS6YC8ntUp9tjw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:57:11.051764Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:57:11.062709Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1979034 cycles -2026-04-20T10:57:11.065439Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [65, 204, 170, 111, 157, 98, 254, 146, 102, 198, 183, 134, 60, 38, 113, 207, 53, 109, 185, 34, 247, 210, 88, 109, 200, 97, 101, 219, 119, 153, 231, 61, 124, 252, 136, 14, 253, 216, 217, 245, 97, 172, 177, 2, 181, 65, 120, 156, 66, 186, 92, 13, 216, 23, 16, 123, 254, 15, 121, 82, 220, 7, 48, 135, 99, 177, 136, 114, 87, 105, 247, 14, 241, 18, 176, 244, 140, 219, 99, 118, 246, 191, 238, 152, 241, 148, 247, 17, 91, 127, 229, 6, 116, 31, 140, 173, 49, 150, 78, 53, 174, 196, 123, 52, 178, 61, 234, 8, 45, 147, 229, 137, 154, 104, 100, 217, 72, 61, 123, 60, 230, 113, 17, 210, 239, 40, 202, 159, 229, 14, 246, 234, 250, 219, 217, 28, 24, 119, 57, 77, 25, 7, 191, 42, 97, 65, 142, 33, 198, 101, 246, 46, 44, 135, 67, 36, 116, 10, 63, 81, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:57:11.159567Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:57:11.159605Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:57:11.181726Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:57:11.217084Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jyNxRal9RxOwGWaOjvBBPQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:57:11.219958Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jyNxRal9RxOwGWaOjvBBPQ==: stderr: -2026-04-20T10:57:11.219981Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jyNxRal9RxOwGWaOjvBBPQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:57:11.219992Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jyNxRal9RxOwGWaOjvBBPQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:57:11.219999Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jyNxRal9RxOwGWaOjvBBPQ==: stderr: stack backtrace: -2026-04-20T10:57:11.220005Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jyNxRal9RxOwGWaOjvBBPQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:57:11.220011Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jyNxRal9RxOwGWaOjvBBPQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:57:11.220077Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:57:11.220861Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:57:11.221156Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:57:11.287468Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:57:11.287517Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:57:11.287664Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:57:11.288174Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=273 blob_id=2147877506224253552625977093286629984 -2026-04-20T10:57:16.452762Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=172 prev_hash=0x50d23fa0858af8cd1d3dbf5c29cd006653032ec094d6f4684556d6d9854ba9b6 hash=0x54c0853fa058bb524dcd8dffef67df25c52c12fdee3bb414debf940c88c942d3 producing_time=1.254582ms -2026-04-20T10:57:16.456359Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=172 current_state_root="37e8c6752a2467c6c8202e4d05699e62484c1282616f0d897422f0de7f8c923273dbfd3d138dd4df9b37c903357e7d79ade333ab4068273153f04fcdf7ec3511" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x4f09de23ef82256133378e8ec3d3d565e54722cb471e73f5ce0a4ec6c4af8440, len=625"] -2026-04-20T10:57:16.456715Z DEBUG StfBlueprint::apply_slot{context=Node da_height=172}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=37e8c6752a2467c6c8202e4d05699e62484c1282616f0d897422f0de7f8c923273dbfd3d138dd4df9b37c903357e7d79ade333ab4068273153f04fcdf7ec3511 next_version=172 sesssion_starting_time=45.219µs -2026-04-20T10:57:16.457509Z DEBUG StfBlueprint::apply_slot{context=Node da_height=172}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=37e8c6752a2467c6c8202e4d05699e62484c1282616f0d897422f0de7f8c92324127313e01848086681d10de4c1a49b7c4c17e1dd56207be553d4d32c2c8a069 next_version=172 time=856.684µs accesses_build_time=16.03µs finishing_session_time=763.445µs -2026-04-20T10:57:16.457570Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="07dabb9e91bc8e4a376879d8612933c3cbddcc42cfd3fbcd4a24652efdbb4bc8582883cf5fc6257f5f9eb43835a51e52962454e0bdaad19bc4c6a7da08a545b5" next_state_root="37e8c6752a2467c6c8202e4d05699e62484c1282616f0d897422f0de7f8c92324127313e01848086681d10de4c1a49b7c4c17e1dd56207be553d4d32c2c8a069" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:57:16.458102Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 172, latest_finalized_slot_number: 171, sync_status: Synced { synced_da_height: 171 }, .. } -2026-04-20T10:57:16.458174Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=110 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 172, latest_finalized_slot_number: 171, sync_status: Synced { synced_da_height: 171 }, .. } -2026-04-20T10:57:16.458228Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=110 -2026-04-20T10:57:16.469576Z DEBUG sov_stf_runner::runner: Block execution complete time=5.995081753s -2026-04-20T10:57:16.469605Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:57:22.454672Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=173 prev_hash=0x54c0853fa058bb524dcd8dffef67df25c52c12fdee3bb414debf940c88c942d3 hash=0xf4c2c1d8a3b4a507f3705e24514052b99db20c675a4e771f6184addeab7b07e6 producing_time=997.714µs -2026-04-20T10:57:22.461206Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=173 current_state_root="37e8c6752a2467c6c8202e4d05699e62484c1282616f0d897422f0de7f8c92324127313e01848086681d10de4c1a49b7c4c17e1dd56207be553d4d32c2c8a069" batch_blobs=[] proof_blobs=[] -2026-04-20T10:57:22.461531Z DEBUG StfBlueprint::apply_slot{context=Node da_height=173}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=37e8c6752a2467c6c8202e4d05699e62484c1282616f0d897422f0de7f8c92324127313e01848086681d10de4c1a49b7c4c17e1dd56207be553d4d32c2c8a069 next_version=173 sesssion_starting_time=43.28µs -2026-04-20T10:57:22.462352Z DEBUG StfBlueprint::apply_slot{context=Node da_height=173}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=37e8c6752a2467c6c8202e4d05699e62484c1282616f0d897422f0de7f8c92324d3536c9137cffa2111b7913465c148726dbe8292807e22c47eefffafc7b6e1c next_version=173 time=879.484µs accesses_build_time=14.17µs finishing_session_time=787.984µs -2026-04-20T10:57:22.462419Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="37e8c6752a2467c6c8202e4d05699e62484c1282616f0d897422f0de7f8c923273dbfd3d138dd4df9b37c903357e7d79ade333ab4068273153f04fcdf7ec3511" next_state_root="37e8c6752a2467c6c8202e4d05699e62484c1282616f0d897422f0de7f8c92324d3536c9137cffa2111b7913465c148726dbe8292807e22c47eefffafc7b6e1c" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:57:22.462905Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 173, latest_finalized_slot_number: 172, sync_status: Synced { synced_da_height: 172 }, .. } -2026-04-20T10:57:22.462979Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=110 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 173, latest_finalized_slot_number: 172, sync_status: Synced { synced_da_height: 172 }, .. } -2026-04-20T10:57:22.463034Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=110 -2026-04-20T10:57:22.463276Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=3 -2026-04-20T10:57:22.463352Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=106 -2026-04-20T10:57:22.463491Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=168 -2026-04-20T10:57:22.463644Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:57:22.463971Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=3 visible_slot_number_after_increase=168 sequence_number=274 -2026-04-20T10:57:22.463993Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=274 blob_id=2147877519735203750005968864666192069 visible_slot_number_after_increase=168 visible_slots_to_advance=3 -2026-04-20T10:57:22.464022Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=4 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:57:22.465749Z DEBUG manage_blob_submission_inside_task{blob_id=2147877519735203750005968864666192069 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x009dabc74d1f6e7e9904ce4af85d6497a8fe920e4ce16c21bc071bc4811ca724 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=174 include_at=174 bytes=13 time=551.136µs -2026-04-20T10:57:22.469665Z DEBUG compute_state_update{scope="sequencer" rollup_height=111 slot_number=168}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:57:22.469720Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000116421s -2026-04-20T10:57:22.469750Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:57:22.469757Z DEBUG compute_state_update{scope="sequencer" rollup_height=111 slot_number=168}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=37e8c6752a2467c6c8202e4d05699e62484c1282616f0d897422f0de7f8c92324d3536c9137cffa2111b7913465c148726dbe8292807e22c47eefffafc7b6e1c next_version=174 sesssion_starting_time=5.345475ms -2026-04-20T10:57:22.470445Z DEBUG compute_state_update{scope="sequencer" rollup_height=111 slot_number=168}: sov_state::nomt::prover_storage: computed next state root state_root=7e34d4183d96c7c63564aa1cd59a3da8a5710b3002cb6119fa69ee53d4ead81837b047b1493ca03106eca9122f9c18fbb6872108547b55350ca022b9c9616547 next_version=174 time=6.048991ms accesses_build_time=14.27µs finishing_session_time=660.386µs -2026-04-20T10:57:28.457442Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=174 prev_hash=0xf4c2c1d8a3b4a507f3705e24514052b99db20c675a4e771f6184addeab7b07e6 hash=0x361551a45f9c11bd783ef804e48b70cc4e00f863608cfab59c8659542997b7d4 producing_time=1.167932ms -2026-04-20T10:57:28.461222Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=174 current_state_root="37e8c6752a2467c6c8202e4d05699e62484c1282616f0d897422f0de7f8c92324d3536c9137cffa2111b7913465c148726dbe8292807e22c47eefffafc7b6e1c" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x009dabc74d1f6e7e9904ce4af85d6497a8fe920e4ce16c21bc071bc4811ca724"] proof_blobs=[] -2026-04-20T10:57:28.461595Z DEBUG StfBlueprint::apply_slot{context=Node da_height=174}: sov_chain_state: Setting next visible slot number next_visible_slot_number=168 -2026-04-20T10:57:28.461881Z DEBUG StfBlueprint::apply_slot{context=Node da_height=174}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x009dabc74d1f6e7e9904ce4af85d6497a8fe920e4ce16c21bc071bc4811ca724}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=4 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:57:28.462067Z DEBUG StfBlueprint::apply_slot{context=Node da_height=174}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=37e8c6752a2467c6c8202e4d05699e62484c1282616f0d897422f0de7f8c92324d3536c9137cffa2111b7913465c148726dbe8292807e22c47eefffafc7b6e1c next_version=174 sesssion_starting_time=50.77µs -2026-04-20T10:57:28.463091Z DEBUG StfBlueprint::apply_slot{context=Node da_height=174}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=7e34d4183d96c7c63564aa1cd59a3da8a5710b3002cb6119fa69ee53d4ead8185e1b4e29b4c473d3147ca2e28ca293a38c99444fa5a22a37f1e6791a664019ee next_version=174 time=1.114113ms accesses_build_time=37.8µs finishing_session_time=980.213µs -2026-04-20T10:57:28.463282Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="8dcc652c5c3e54a2625acba2d22b2f5897c086301f2864ee303c22f00be9d651" -2026-04-20T10:57:28.463296Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="9cd92bc883e1dc2761968ff5d2c66d087cc09d58436286031b32cc7d15e1a366" -2026-04-20T10:57:28.463305Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="14f375b89379864e6e1d9a3b669919314e71c4ca9484672754bfdfd7a6d1d16b" -2026-04-20T10:57:28.463323Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="4f09de23ef82256133378e8ec3d3d565e54722cb471e73f5ce0a4ec6c4af8440" -2026-04-20T10:57:28.463339Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="37e8c6752a2467c6c8202e4d05699e62484c1282616f0d897422f0de7f8c92324127313e01848086681d10de4c1a49b7c4c17e1dd56207be553d4d32c2c8a069" next_state_root="7e34d4183d96c7c63564aa1cd59a3da8a5710b3002cb6119fa69ee53d4ead8185e1b4e29b4c473d3147ca2e28ca293a38c99444fa5a22a37f1e6791a664019ee" aggregated_proofs=0 proof_receipts=4 -2026-04-20T10:57:28.463811Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 174, latest_finalized_slot_number: 173, sync_status: Synced { synced_da_height: 173 }, .. } -2026-04-20T10:57:28.463879Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=111 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 174, latest_finalized_slot_number: 173, sync_status: Synced { synced_da_height: 173 }, .. } -2026-04-20T10:57:28.463935Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=111 -2026-04-20T10:57:28.469761Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000012452s -2026-04-20T10:57:28.469790Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:57:28.469997Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:57:28.470070Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:57:29.029435Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QD0w3UfRT9alsAzWUkyjFQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:57:29.036281Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:57:29.047542Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1024233 cycles -2026-04-20T10:57:29.050132Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [97, 231, 120, 204, 131, 18, 213, 159, 64, 96, 109, 29, 10, 162, 210, 191, 139, 214, 2, 246, 219, 144, 203, 238, 229, 228, 160, 112, 250, 249, 234, 17, 99, 196, 84, 242, 173, 167, 120, 237, 149, 60, 16, 169, 215, 115, 6, 37, 131, 23, 177, 211, 42, 103, 209, 10, 223, 39, 216, 102, 137, 151, 131, 8, 97, 231, 120, 204, 131, 18, 213, 159, 64, 96, 109, 29, 10, 162, 210, 191, 139, 214, 2, 246, 219, 144, 203, 238, 229, 228, 160, 112, 250, 249, 234, 17, 81, 238, 68, 60, 251, 192, 64, 73, 69, 28, 87, 201, 138, 188, 177, 228, 85, 93, 96, 198, 209, 232, 223, 113, 112, 239, 95, 6, 27, 78, 152, 45, 46, 7, 81, 218, 28, 94, 53, 96, 163, 190, 43, 183, 249, 78, 52, 110, 102, 224, 193, 235, 192, 105, 72, 191, 77, 2, 126, 60, 166, 77, 223, 56, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:57:29.106241Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:57:29.106293Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:57:29.177548Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:57:29.212863Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YaM2baK8QuOhUhCP06-_hQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:57:29.215684Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YaM2baK8QuOhUhCP06-_hQ==: stderr: -2026-04-20T10:57:29.215696Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YaM2baK8QuOhUhCP06-_hQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:57:29.215705Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YaM2baK8QuOhUhCP06-_hQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:57:29.215713Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YaM2baK8QuOhUhCP06-_hQ==: stderr: stack backtrace: -2026-04-20T10:57:29.215720Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YaM2baK8QuOhUhCP06-_hQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:57:29.215725Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YaM2baK8QuOhUhCP06-_hQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:57:29.215830Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:57:29.216621Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:57:29.216934Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:57:29.283552Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:57:29.283596Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:57:29.283742Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:57:29.283915Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:57:29.283966Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:57:29.284392Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=275 blob_id=2147877527980143089117715728031551907 -2026-04-20T10:57:29.849121Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2clgS2vSS4iWmmgAQIx_ag==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:57:29.855544Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:57:29.866852Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 966957 cycles -2026-04-20T10:57:29.869457Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [97, 231, 120, 204, 131, 18, 213, 159, 64, 96, 109, 29, 10, 162, 210, 191, 139, 214, 2, 246, 219, 144, 203, 238, 229, 228, 160, 112, 250, 249, 234, 17, 16, 249, 117, 134, 182, 6, 251, 22, 104, 152, 56, 20, 128, 54, 205, 230, 193, 92, 90, 13, 127, 123, 108, 56, 58, 139, 155, 246, 48, 104, 135, 36, 97, 231, 120, 204, 131, 18, 213, 159, 64, 96, 109, 29, 10, 162, 210, 191, 139, 214, 2, 246, 219, 144, 203, 238, 229, 228, 160, 112, 250, 249, 234, 17, 102, 224, 3, 117, 112, 210, 123, 233, 188, 107, 30, 181, 197, 198, 101, 10, 49, 119, 90, 253, 106, 179, 120, 45, 215, 224, 121, 33, 156, 170, 43, 31, 165, 32, 59, 83, 41, 22, 11, 18, 233, 137, 169, 76, 75, 142, 90, 101, 181, 65, 183, 227, 184, 245, 19, 63, 169, 146, 132, 173, 247, 122, 156, 119, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:57:29.883070Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:57:29.883096Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:57:29.991546Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:57:30.026138Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JeUtquXBTvy2-DQT0n4Q0Q==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:57:30.029015Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JeUtquXBTvy2-DQT0n4Q0Q==: stderr: -2026-04-20T10:57:30.029041Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JeUtquXBTvy2-DQT0n4Q0Q==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:57:30.029052Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JeUtquXBTvy2-DQT0n4Q0Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:57:30.029058Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JeUtquXBTvy2-DQT0n4Q0Q==: stderr: stack backtrace: -2026-04-20T10:57:30.029065Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JeUtquXBTvy2-DQT0n4Q0Q==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:57:30.029071Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JeUtquXBTvy2-DQT0n4Q0Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:57:30.029197Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:57:30.029976Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:57:30.030274Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:57:30.096530Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:57:30.096572Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:57:30.096743Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:57:30.096934Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:57:30.097009Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:57:30.097459Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=276 blob_id=2147877528962995316790582272300463451 -2026-04-20T10:57:30.659198Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ZXiS6WyaS9WVXJo1x8DzTA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:57:30.678948Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:57:30.690086Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2880559 cycles -2026-04-20T10:57:30.692882Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [97, 231, 120, 204, 131, 18, 213, 159, 64, 96, 109, 29, 10, 162, 210, 191, 139, 214, 2, 246, 219, 144, 203, 238, 229, 228, 160, 112, 250, 249, 234, 17, 64, 138, 90, 236, 236, 217, 135, 75, 176, 84, 59, 113, 4, 83, 69, 135, 123, 64, 235, 26, 143, 51, 143, 181, 172, 145, 25, 26, 121, 4, 219, 218, 67, 105, 104, 219, 247, 235, 192, 230, 90, 178, 195, 106, 213, 46, 128, 41, 57, 48, 129, 215, 211, 157, 192, 32, 18, 208, 38, 199, 80, 214, 204, 168, 108, 162, 109, 106, 75, 245, 56, 37, 158, 219, 201, 190, 243, 187, 123, 135, 115, 235, 17, 25, 46, 2, 192, 133, 59, 122, 96, 54, 50, 79, 110, 26, 102, 114, 137, 251, 188, 77, 56, 137, 43, 72, 124, 114, 145, 70, 228, 133, 37, 31, 152, 246, 153, 96, 110, 8, 104, 255, 246, 55, 54, 145, 168, 193, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:57:30.811250Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:57:30.811286Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:57:30.905309Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:57:30.939545Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CXCYKDFnTWWyn8dkdfNSBw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:57:30.942365Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CXCYKDFnTWWyn8dkdfNSBw==: stderr: -2026-04-20T10:57:30.942378Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CXCYKDFnTWWyn8dkdfNSBw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:57:30.942387Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CXCYKDFnTWWyn8dkdfNSBw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:57:30.942395Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CXCYKDFnTWWyn8dkdfNSBw==: stderr: stack backtrace: -2026-04-20T10:57:30.942401Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CXCYKDFnTWWyn8dkdfNSBw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:57:30.942407Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CXCYKDFnTWWyn8dkdfNSBw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:57:30.942546Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:57:30.943274Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:57:30.943570Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:57:31.010710Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:57:31.010752Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:57:31.010908Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:57:31.011470Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=277 blob_id=2147877530067898080064019301936754639 -2026-04-20T10:57:34.459828Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=175 prev_hash=0x361551a45f9c11bd783ef804e48b70cc4e00f863608cfab59c8659542997b7d4 hash=0xde63f40ae3c5f3ea7e9fda5b5c06bbd85a0f2aee7c78d08927809ce1ff47d5cb producing_time=1.125383ms -2026-04-20T10:57:34.461492Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=175 current_state_root="7e34d4183d96c7c63564aa1cd59a3da8a5710b3002cb6119fa69ee53d4ead8185e1b4e29b4c473d3147ca2e28ca293a38c99444fa5a22a37f1e6791a664019ee" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xbdaa1f02ff8a6cc02194d002a9fefc2c2c1c9fdc71a3e9dda2b9963865fd3754, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x169dab82a7fc1f93c837447d949f41aa8885b36e761bcbb4d1d804b1c86f5dfa, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa00ba83d8149ae56930f5133fc4d17422babcfdc102bf419c38f12b3b73404e6, len=625"] -2026-04-20T10:57:34.461831Z DEBUG StfBlueprint::apply_slot{context=Node da_height=175}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7e34d4183d96c7c63564aa1cd59a3da8a5710b3002cb6119fa69ee53d4ead8185e1b4e29b4c473d3147ca2e28ca293a38c99444fa5a22a37f1e6791a664019ee next_version=175 sesssion_starting_time=48.25µs -2026-04-20T10:57:34.462713Z DEBUG StfBlueprint::apply_slot{context=Node da_height=175}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=7e34d4183d96c7c63564aa1cd59a3da8a5710b3002cb6119fa69ee53d4ead81875f7ee4aafc0b3c29874d3d534b82f1834fecdb58c90c537f8a3fdc9cb08647b next_version=175 time=949.883µs accesses_build_time=18.849µs finishing_session_time=853.504µs -2026-04-20T10:57:34.462778Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="37e8c6752a2467c6c8202e4d05699e62484c1282616f0d897422f0de7f8c92324d3536c9137cffa2111b7913465c148726dbe8292807e22c47eefffafc7b6e1c" next_state_root="7e34d4183d96c7c63564aa1cd59a3da8a5710b3002cb6119fa69ee53d4ead81875f7ee4aafc0b3c29874d3d534b82f1834fecdb58c90c537f8a3fdc9cb08647b" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:57:34.463311Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 175, latest_finalized_slot_number: 174, sync_status: Synced { synced_da_height: 174 }, .. } -2026-04-20T10:57:34.463433Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=111 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 175, latest_finalized_slot_number: 174, sync_status: Synced { synced_da_height: 174 }, .. } -2026-04-20T10:57:34.463521Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=111 -2026-04-20T10:57:34.474304Z DEBUG sov_stf_runner::runner: Block execution complete time=6.004515223s -2026-04-20T10:57:34.474337Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:57:40.462139Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=176 prev_hash=0xde63f40ae3c5f3ea7e9fda5b5c06bbd85a0f2aee7c78d08927809ce1ff47d5cb hash=0x9be010de9182f235e88298538384e3da61b1e5fd0c6845ef5a855c1a0eba7769 producing_time=882.684µs -2026-04-20T10:57:40.465723Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=176 current_state_root="7e34d4183d96c7c63564aa1cd59a3da8a5710b3002cb6119fa69ee53d4ead81875f7ee4aafc0b3c29874d3d534b82f1834fecdb58c90c537f8a3fdc9cb08647b" batch_blobs=[] proof_blobs=[] -2026-04-20T10:57:40.466035Z DEBUG StfBlueprint::apply_slot{context=Node da_height=176}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7e34d4183d96c7c63564aa1cd59a3da8a5710b3002cb6119fa69ee53d4ead81875f7ee4aafc0b3c29874d3d534b82f1834fecdb58c90c537f8a3fdc9cb08647b next_version=176 sesssion_starting_time=44.58µs -2026-04-20T10:57:40.466954Z DEBUG StfBlueprint::apply_slot{context=Node da_height=176}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=7e34d4183d96c7c63564aa1cd59a3da8a5710b3002cb6119fa69ee53d4ead8186b3667263a7c55101523e1eab2a5c17564958dd03fc8058eb9760345ddc11185 next_version=176 time=979.924µs accesses_build_time=15.04µs finishing_session_time=890.244µs -2026-04-20T10:57:40.467024Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="7e34d4183d96c7c63564aa1cd59a3da8a5710b3002cb6119fa69ee53d4ead8185e1b4e29b4c473d3147ca2e28ca293a38c99444fa5a22a37f1e6791a664019ee" next_state_root="7e34d4183d96c7c63564aa1cd59a3da8a5710b3002cb6119fa69ee53d4ead8186b3667263a7c55101523e1eab2a5c17564958dd03fc8058eb9760345ddc11185" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:57:40.467522Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 176, latest_finalized_slot_number: 175, sync_status: Synced { synced_da_height: 175 }, .. } -2026-04-20T10:57:40.467621Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=111 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 176, latest_finalized_slot_number: 175, sync_status: Synced { synced_da_height: 175 }, .. } -2026-04-20T10:57:40.467712Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=111 -2026-04-20T10:57:40.467960Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=3 -2026-04-20T10:57:40.468036Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=107 -2026-04-20T10:57:40.468128Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=171 -2026-04-20T10:57:40.468288Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:57:40.468606Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=3 visible_slot_number_after_increase=171 sequence_number=278 -2026-04-20T10:57:40.468634Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=278 blob_id=2147877541501942630811419703061601352 visible_slot_number_after_increase=171 visible_slots_to_advance=3 -2026-04-20T10:57:40.468662Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:57:40.470286Z DEBUG manage_blob_submission_inside_task{blob_id=2147877541501942630811419703061601352 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x32374aa6debc4781a2d697ddd64ee46f04ff481b89df3d259e23ee9e3a822e16 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=177 include_at=177 bytes=13 time=542.956µs -2026-04-20T10:57:40.473528Z DEBUG compute_state_update{scope="sequencer" rollup_height=112 slot_number=171}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:57:40.473558Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999221576s -2026-04-20T10:57:40.473576Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:57:40.473615Z DEBUG compute_state_update{scope="sequencer" rollup_height=112 slot_number=171}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7e34d4183d96c7c63564aa1cd59a3da8a5710b3002cb6119fa69ee53d4ead8186b3667263a7c55101523e1eab2a5c17564958dd03fc8058eb9760345ddc11185 next_version=177 sesssion_starting_time=4.58443ms -2026-04-20T10:57:40.474392Z DEBUG compute_state_update{scope="sequencer" rollup_height=112 slot_number=171}: sov_state::nomt::prover_storage: computed next state root state_root=276ba07af7ce709eb77d7eb8243f2cde188b01ed697cb78bd38216a8b813f1c8337f9de589658aef8378e37e465cdcfada5f148adfc8f22ab421a71efc3eba9e next_version=177 time=5.375985ms accesses_build_time=13.72µs finishing_session_time=748.585µs -2026-04-20T10:57:46.464052Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=177 prev_hash=0x9be010de9182f235e88298538384e3da61b1e5fd0c6845ef5a855c1a0eba7769 hash=0x734608201d936447b71d2802a6a6e27249955c0c1a757958e616f455e077ea61 producing_time=1.125603ms -2026-04-20T10:57:46.465638Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=177 current_state_root="7e34d4183d96c7c63564aa1cd59a3da8a5710b3002cb6119fa69ee53d4ead8186b3667263a7c55101523e1eab2a5c17564958dd03fc8058eb9760345ddc11185" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x32374aa6debc4781a2d697ddd64ee46f04ff481b89df3d259e23ee9e3a822e16"] proof_blobs=[] -2026-04-20T10:57:46.465943Z DEBUG StfBlueprint::apply_slot{context=Node da_height=177}: sov_chain_state: Setting next visible slot number next_visible_slot_number=171 -2026-04-20T10:57:46.466184Z DEBUG StfBlueprint::apply_slot{context=Node da_height=177}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x32374aa6debc4781a2d697ddd64ee46f04ff481b89df3d259e23ee9e3a822e16}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:57:46.466400Z DEBUG StfBlueprint::apply_slot{context=Node da_height=177}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7e34d4183d96c7c63564aa1cd59a3da8a5710b3002cb6119fa69ee53d4ead8186b3667263a7c55101523e1eab2a5c17564958dd03fc8058eb9760345ddc11185 next_version=177 sesssion_starting_time=53.99µs -2026-04-20T10:57:46.467468Z DEBUG StfBlueprint::apply_slot{context=Node da_height=177}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=276ba07af7ce709eb77d7eb8243f2cde188b01ed697cb78bd38216a8b813f1c8555a2bcda12b92c73d977648e3c199d5a6ed85ec1e6bb59cf1b559b9f29a8e13 next_version=177 time=1.173762ms accesses_build_time=50.419µs finishing_session_time=1.029543ms -2026-04-20T10:57:46.467662Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="bdaa1f02ff8a6cc02194d002a9fefc2c2c1c9fdc71a3e9dda2b9963865fd3754" -2026-04-20T10:57:46.467707Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="169dab82a7fc1f93c837447d949f41aa8885b36e761bcbb4d1d804b1c86f5dfa" -2026-04-20T10:57:46.467719Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="a00ba83d8149ae56930f5133fc4d17422babcfdc102bf419c38f12b3b73404e6" -2026-04-20T10:57:46.467735Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="7e34d4183d96c7c63564aa1cd59a3da8a5710b3002cb6119fa69ee53d4ead81875f7ee4aafc0b3c29874d3d534b82f1834fecdb58c90c537f8a3fdc9cb08647b" next_state_root="276ba07af7ce709eb77d7eb8243f2cde188b01ed697cb78bd38216a8b813f1c8555a2bcda12b92c73d977648e3c199d5a6ed85ec1e6bb59cf1b559b9f29a8e13" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:57:46.468236Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 177, latest_finalized_slot_number: 176, sync_status: Synced { synced_da_height: 176 }, .. } -2026-04-20T10:57:46.468322Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=112 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 177, latest_finalized_slot_number: 176, sync_status: Synced { synced_da_height: 176 }, .. } -2026-04-20T10:57:46.468393Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=112 -2026-04-20T10:57:46.468612Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:57:46.468676Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=108 -2026-04-20T10:57:46.468760Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=172 -2026-04-20T10:57:46.468866Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:57:46.469003Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=172 sequence_number=279 -2026-04-20T10:57:46.469023Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=279 blob_id=2147877548755509982596942946844858352 visible_slot_number_after_increase=172 visible_slots_to_advance=1 -2026-04-20T10:57:46.469048Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:57:46.470617Z DEBUG manage_blob_submission_inside_task{blob_id=2147877548755509982596942946844858352 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x4629ad3fd75d65143c2623d70f8c7240b1d9c9561894ec471792d0ed9b1fbba9 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=178 include_at=178 bytes=13 time=539.577µs -2026-04-20T10:57:46.474370Z DEBUG compute_state_update{scope="sequencer" rollup_height=113 slot_number=172}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:57:46.474412Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000836467s -2026-04-20T10:57:46.474436Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:57:46.474454Z DEBUG compute_state_update{scope="sequencer" rollup_height=113 slot_number=172}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=276ba07af7ce709eb77d7eb8243f2cde188b01ed697cb78bd38216a8b813f1c8555a2bcda12b92c73d977648e3c199d5a6ed85ec1e6bb59cf1b559b9f29a8e13 next_version=178 sesssion_starting_time=5.049667ms -2026-04-20T10:57:46.474624Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:57:46.474707Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:57:46.475166Z DEBUG compute_state_update{scope="sequencer" rollup_height=113 slot_number=172}: sov_state::nomt::prover_storage: computed next state root state_root=426b688bda0a993dacbce8189cbc8923c5a587f93336515038044772a7206bd40ed593598feac3dd6f609dae3213d9b48f98801b031d7cba971b9cc182ac1341 next_version=178 time=5.775533ms accesses_build_time=11.94µs finishing_session_time=687.605µs -2026-04-20T10:57:47.032561Z DEBUG sp1_core_executor_runner::native: CHILD sp1_KEAbkbq3T0aVXfQK9fOZhA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:57:47.039757Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:57:47.051278Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1080973 cycles -2026-04-20T10:57:47.053866Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [87, 39, 255, 250, 251, 162, 19, 224, 176, 79, 197, 250, 174, 249, 204, 114, 23, 76, 218, 195, 224, 30, 106, 196, 213, 37, 172, 150, 84, 43, 127, 156, 34, 247, 91, 222, 12, 45, 7, 50, 109, 78, 212, 85, 172, 39, 151, 236, 95, 206, 208, 222, 195, 40, 189, 121, 132, 150, 56, 254, 117, 193, 100, 72, 87, 39, 255, 250, 251, 162, 19, 224, 176, 79, 197, 250, 174, 249, 204, 114, 23, 76, 218, 195, 224, 30, 106, 196, 213, 37, 172, 150, 84, 43, 127, 156, 46, 211, 107, 81, 31, 145, 116, 247, 44, 246, 54, 218, 101, 255, 108, 16, 155, 231, 36, 128, 2, 14, 47, 75, 222, 127, 110, 238, 21, 35, 100, 40, 34, 93, 225, 207, 120, 209, 39, 238, 233, 242, 244, 193, 101, 119, 251, 112, 241, 85, 28, 243, 242, 158, 32, 236, 149, 36, 55, 234, 75, 60, 50, 87, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:57:47.113462Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:57:47.113514Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:57:47.182578Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:57:47.216480Z DEBUG sp1_core_executor_runner::native: CHILD sp1__mch5nwBTmmjZ5h-zOGJ6w==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:57:47.219307Z DEBUG sp1_core_executor_runner::native: CHILD sp1__mch5nwBTmmjZ5h-zOGJ6w==: stderr: -2026-04-20T10:57:47.219329Z DEBUG sp1_core_executor_runner::native: CHILD sp1__mch5nwBTmmjZ5h-zOGJ6w==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:57:47.219342Z DEBUG sp1_core_executor_runner::native: CHILD sp1__mch5nwBTmmjZ5h-zOGJ6w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:57:47.219352Z DEBUG sp1_core_executor_runner::native: CHILD sp1__mch5nwBTmmjZ5h-zOGJ6w==: stderr: stack backtrace: -2026-04-20T10:57:47.219360Z DEBUG sp1_core_executor_runner::native: CHILD sp1__mch5nwBTmmjZ5h-zOGJ6w==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:57:47.219368Z DEBUG sp1_core_executor_runner::native: CHILD sp1__mch5nwBTmmjZ5h-zOGJ6w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:57:47.219514Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:57:47.220275Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:57:47.220606Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:57:47.292085Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:57:47.292132Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:57:47.292246Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:57:47.292423Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:57:47.292473Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:57:47.292877Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=280 blob_id=2147877549751651555849427603825721420 -2026-04-20T10:57:47.861664Z DEBUG sp1_core_executor_runner::native: CHILD sp1_l3cbOCVCQLGidvC2Ln8rOA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:57:47.868397Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:57:47.879415Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1010534 cycles -2026-04-20T10:57:47.882030Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [87, 39, 255, 250, 251, 162, 19, 224, 176, 79, 197, 250, 174, 249, 204, 114, 23, 76, 218, 195, 224, 30, 106, 196, 213, 37, 172, 150, 84, 43, 127, 156, 36, 144, 255, 31, 71, 4, 69, 227, 31, 130, 183, 228, 146, 5, 136, 144, 51, 64, 231, 150, 76, 132, 178, 166, 59, 174, 248, 151, 194, 16, 180, 153, 87, 39, 255, 250, 251, 162, 19, 224, 176, 79, 197, 250, 174, 249, 204, 114, 23, 76, 218, 195, 224, 30, 106, 196, 213, 37, 172, 150, 84, 43, 127, 156, 51, 175, 179, 101, 216, 132, 33, 80, 58, 157, 117, 99, 57, 27, 26, 83, 224, 220, 198, 42, 14, 35, 214, 187, 4, 201, 248, 221, 74, 249, 88, 167, 226, 42, 247, 50, 173, 87, 212, 148, 250, 229, 229, 124, 164, 128, 17, 23, 121, 74, 156, 144, 145, 74, 8, 43, 200, 77, 23, 149, 35, 25, 96, 234, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:57:47.938859Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:57:47.938900Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:57:47.999871Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:57:48.025360Z DEBUG sp1_core_executor_runner::native: CHILD sp1_maaFdbOmTgW9J12apMlKPA==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:57:48.028200Z DEBUG sp1_core_executor_runner::native: CHILD sp1_maaFdbOmTgW9J12apMlKPA==: stderr: -2026-04-20T10:57:48.028230Z DEBUG sp1_core_executor_runner::native: CHILD sp1_maaFdbOmTgW9J12apMlKPA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:57:48.028243Z DEBUG sp1_core_executor_runner::native: CHILD sp1_maaFdbOmTgW9J12apMlKPA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:57:48.028251Z DEBUG sp1_core_executor_runner::native: CHILD sp1_maaFdbOmTgW9J12apMlKPA==: stderr: stack backtrace: -2026-04-20T10:57:48.028259Z DEBUG sp1_core_executor_runner::native: CHILD sp1_maaFdbOmTgW9J12apMlKPA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:57:48.028267Z DEBUG sp1_core_executor_runner::native: CHILD sp1_maaFdbOmTgW9J12apMlKPA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:57:48.028299Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:57:48.029113Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:57:48.029437Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:57:48.078630Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:57:48.078672Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:57:48.078784Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:57:48.078956Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:57:48.078999Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:57:48.079600Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=281 blob_id=2147877550701853676087254658236646544 -2026-04-20T10:57:48.612411Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-kdX3Zt7ThGFTbbMCjPptQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:57:48.629842Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:57:48.640641Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2489503 cycles -2026-04-20T10:57:48.643368Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [87, 39, 255, 250, 251, 162, 19, 224, 176, 79, 197, 250, 174, 249, 204, 114, 23, 76, 218, 195, 224, 30, 106, 196, 213, 37, 172, 150, 84, 43, 127, 156, 113, 119, 167, 2, 57, 245, 232, 70, 192, 254, 63, 60, 75, 183, 243, 62, 115, 2, 236, 113, 162, 4, 133, 216, 99, 134, 252, 194, 140, 179, 96, 23, 56, 242, 133, 193, 249, 133, 40, 177, 172, 8, 222, 233, 68, 13, 32, 155, 238, 194, 154, 126, 117, 119, 115, 154, 221, 9, 82, 226, 53, 228, 95, 8, 75, 26, 167, 151, 91, 216, 81, 236, 175, 222, 136, 226, 112, 205, 111, 103, 84, 190, 19, 50, 180, 143, 157, 154, 55, 168, 151, 176, 121, 244, 190, 134, 114, 80, 44, 186, 64, 166, 204, 226, 107, 81, 111, 246, 134, 248, 196, 226, 3, 242, 97, 8, 148, 122, 42, 87, 106, 154, 167, 202, 209, 241, 12, 134, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:57:48.751276Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:57:48.751309Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:57:48.787440Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:57:48.822855Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xp3aY-eSSTapwxoygmmidw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:57:48.825683Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xp3aY-eSSTapwxoygmmidw==: stderr: -2026-04-20T10:57:48.825698Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xp3aY-eSSTapwxoygmmidw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:57:48.825708Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xp3aY-eSSTapwxoygmmidw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:57:48.825717Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xp3aY-eSSTapwxoygmmidw==: stderr: stack backtrace: -2026-04-20T10:57:48.825723Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xp3aY-eSSTapwxoygmmidw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:57:48.825729Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xp3aY-eSSTapwxoygmmidw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:57:48.825808Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:57:48.826655Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:57:48.826942Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:57:48.892287Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:57:48.892329Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:57:48.892445Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:57:48.892966Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=282 blob_id=2147877551685931373325171056507573939 -2026-04-20T10:57:52.466447Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=4 height=178 prev_hash=0x734608201d936447b71d2802a6a6e27249955c0c1a757958e616f455e077ea61 hash=0x7b273787b9e552e6b95e8d7f124201d6703e31b9e4e5f13579eccf5cbdd15072 producing_time=1.228882ms -2026-04-20T10:57:52.476145Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=178 current_state_root="276ba07af7ce709eb77d7eb8243f2cde188b01ed697cb78bd38216a8b813f1c8555a2bcda12b92c73d977648e3c199d5a6ed85ec1e6bb59cf1b559b9f29a8e13" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x4629ad3fd75d65143c2623d70f8c7240b1d9c9561894ec471792d0ed9b1fbba9"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x40d8f56c3ee5d0f4393e5013b1ba49112f3024c65e4466da4b3161adf547b766, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0983b9e176424b13ab4f11d9b85fe697e718d4b6a3b4990e67906e1aa30aa967, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc002c5b93fb2a3d2fe18be8d381d0b2034fa3c6b346b8d0978aa8c744f299b60, len=625"] -2026-04-20T10:57:52.476420Z DEBUG StfBlueprint::apply_slot{context=Node da_height=178}: sov_chain_state: Setting next visible slot number next_visible_slot_number=172 -2026-04-20T10:57:52.476551Z DEBUG StfBlueprint::apply_slot{context=Node da_height=178}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x4629ad3fd75d65143c2623d70f8c7240b1d9c9561894ec471792d0ed9b1fbba9}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:57:52.476718Z DEBUG StfBlueprint::apply_slot{context=Node da_height=178}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=276ba07af7ce709eb77d7eb8243f2cde188b01ed697cb78bd38216a8b813f1c8555a2bcda12b92c73d977648e3c199d5a6ed85ec1e6bb59cf1b559b9f29a8e13 next_version=178 sesssion_starting_time=45.98µs -2026-04-20T10:57:52.477685Z DEBUG StfBlueprint::apply_slot{context=Node da_height=178}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=426b688bda0a993dacbce8189cbc8923c5a587f93336515038044772a7206bd45c7c1d8531c02210fd55d2c4560f2c97ed5a83f3d4f0243cf3c5f48f26a63ebc next_version=178 time=1.046734ms accesses_build_time=32.79µs finishing_session_time=944.274µs -2026-04-20T10:57:52.477860Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="7e34d4183d96c7c63564aa1cd59a3da8a5710b3002cb6119fa69ee53d4ead8186b3667263a7c55101523e1eab2a5c17564958dd03fc8058eb9760345ddc11185" next_state_root="426b688bda0a993dacbce8189cbc8923c5a587f93336515038044772a7206bd45c7c1d8531c02210fd55d2c4560f2c97ed5a83f3d4f0243cf3c5f48f26a63ebc" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:57:52.478338Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 178, latest_finalized_slot_number: 177, sync_status: Synced { synced_da_height: 177 }, .. } -2026-04-20T10:57:52.478438Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=113 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 178, latest_finalized_slot_number: 177, sync_status: Synced { synced_da_height: 177 }, .. } -2026-04-20T10:57:52.478512Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=113 -2026-04-20T10:57:52.489514Z DEBUG sov_stf_runner::runner: Block execution complete time=6.015080635s -2026-04-20T10:57:52.489546Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:57:52.489759Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:57:52.489851Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:57:53.060013Z DEBUG sp1_core_executor_runner::native: CHILD sp1_X_ib36c1SCiTCB3dduGhKA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:57:53.073839Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:57:53.086574Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1943071 cycles -2026-04-20T10:57:53.089358Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [7, 218, 187, 158, 145, 188, 142, 74, 55, 104, 121, 216, 97, 41, 51, 195, 203, 221, 204, 66, 207, 211, 251, 205, 74, 36, 101, 46, 253, 187, 75, 200, 88, 40, 131, 207, 95, 198, 37, 127, 95, 158, 180, 56, 53, 165, 30, 82, 150, 36, 84, 224, 189, 170, 209, 155, 196, 198, 167, 218, 8, 165, 69, 181, 83, 50, 1, 95, 102, 7, 140, 23, 134, 157, 24, 70, 119, 138, 241, 172, 98, 204, 204, 66, 161, 189, 177, 72, 3, 131, 197, 79, 73, 211, 48, 247, 101, 216, 114, 9, 228, 246, 204, 105, 25, 123, 217, 76, 181, 55, 46, 143, 177, 195, 30, 210, 117, 90, 34, 165, 189, 163, 24, 30, 67, 70, 81, 33, 80, 210, 63, 160, 133, 138, 248, 205, 29, 61, 191, 92, 41, 205, 0, 102, 83, 3, 46, 192, 148, 214, 244, 104, 69, 86, 214, 217, 133, 75, 169, 182, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:57:53.182108Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:57:53.182147Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:57:53.196796Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:57:53.231617Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zmG8yYuSQwiGZ6PH2hnOsg==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:57:53.234448Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zmG8yYuSQwiGZ6PH2hnOsg==: stderr: -2026-04-20T10:57:53.234461Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zmG8yYuSQwiGZ6PH2hnOsg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:57:53.234470Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zmG8yYuSQwiGZ6PH2hnOsg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:57:53.234476Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zmG8yYuSQwiGZ6PH2hnOsg==: stderr: stack backtrace: -2026-04-20T10:57:53.234483Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zmG8yYuSQwiGZ6PH2hnOsg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:57:53.234502Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zmG8yYuSQwiGZ6PH2hnOsg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:57:53.234604Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:57:53.235381Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:57:53.235706Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:57:53.284905Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:57:53.284946Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:57:53.285059Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:57:53.285657Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=283 blob_id=2147877556996729551092680808468157649 -2026-04-20T10:57:58.468926Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=179 prev_hash=0x7b273787b9e552e6b95e8d7f124201d6703e31b9e4e5f13579eccf5cbdd15072 hash=0xc770a9eaae9a9dcb2459e7c0c3e7f716f2fc3259f5e91fb974fd9e5642d29b78 producing_time=1.036493ms -2026-04-20T10:57:58.471565Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=179 current_state_root="426b688bda0a993dacbce8189cbc8923c5a587f93336515038044772a7206bd45c7c1d8531c02210fd55d2c4560f2c97ed5a83f3d4f0243cf3c5f48f26a63ebc" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x2b08a7de5407fc2aa78d62aae26ff6ab72d92fe8b0795fd8b7fd0aaff49a8a50, len=625"] -2026-04-20T10:57:58.471909Z DEBUG StfBlueprint::apply_slot{context=Node da_height=179}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=426b688bda0a993dacbce8189cbc8923c5a587f93336515038044772a7206bd45c7c1d8531c02210fd55d2c4560f2c97ed5a83f3d4f0243cf3c5f48f26a63ebc next_version=179 sesssion_starting_time=45.649µs -2026-04-20T10:57:58.472624Z DEBUG StfBlueprint::apply_slot{context=Node da_height=179}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=426b688bda0a993dacbce8189cbc8923c5a587f93336515038044772a7206bd436e7d0b5aab8d7276e958377c63365800beea426321722cb7f95f978f23f0cab next_version=179 time=777.515µs accesses_build_time=15.91µs finishing_session_time=685.516µs -2026-04-20T10:57:58.472686Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="276ba07af7ce709eb77d7eb8243f2cde188b01ed697cb78bd38216a8b813f1c8555a2bcda12b92c73d977648e3c199d5a6ed85ec1e6bb59cf1b559b9f29a8e13" next_state_root="426b688bda0a993dacbce8189cbc8923c5a587f93336515038044772a7206bd436e7d0b5aab8d7276e958377c63365800beea426321722cb7f95f978f23f0cab" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:57:58.473167Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 179, latest_finalized_slot_number: 178, sync_status: Synced { synced_da_height: 178 }, .. } -2026-04-20T10:57:58.473234Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=113 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 179, latest_finalized_slot_number: 178, sync_status: Synced { synced_da_height: 178 }, .. } -2026-04-20T10:57:58.473288Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=113 -2026-04-20T10:57:58.484575Z DEBUG sov_stf_runner::runner: Block execution complete time=5.995030225s -2026-04-20T10:57:58.484600Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:58:04.471566Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=180 prev_hash=0xc770a9eaae9a9dcb2459e7c0c3e7f716f2fc3259f5e91fb974fd9e5642d29b78 hash=0x306f5d88850088bf0f9805c0cf4d302fbfe890f2518c50f9534350bab7e43195 producing_time=1.139022ms -2026-04-20T10:58:04.476184Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=180 current_state_root="426b688bda0a993dacbce8189cbc8923c5a587f93336515038044772a7206bd436e7d0b5aab8d7276e958377c63365800beea426321722cb7f95f978f23f0cab" batch_blobs=[] proof_blobs=[] -2026-04-20T10:58:04.476539Z DEBUG StfBlueprint::apply_slot{context=Node da_height=180}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=426b688bda0a993dacbce8189cbc8923c5a587f93336515038044772a7206bd436e7d0b5aab8d7276e958377c63365800beea426321722cb7f95f978f23f0cab next_version=180 sesssion_starting_time=48.719µs -2026-04-20T10:58:04.477376Z DEBUG StfBlueprint::apply_slot{context=Node da_height=180}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=426b688bda0a993dacbce8189cbc8923c5a587f93336515038044772a7206bd4038e4994baddff3b02ce0198f21146538ea777ad8b71b63bf60b5321a180aaa0 next_version=180 time=903.514µs accesses_build_time=16.39µs finishing_session_time=803.175µs -2026-04-20T10:58:04.477440Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="426b688bda0a993dacbce8189cbc8923c5a587f93336515038044772a7206bd45c7c1d8531c02210fd55d2c4560f2c97ed5a83f3d4f0243cf3c5f48f26a63ebc" next_state_root="426b688bda0a993dacbce8189cbc8923c5a587f93336515038044772a7206bd4038e4994baddff3b02ce0198f21146538ea777ad8b71b63bf60b5321a180aaa0" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:58:04.477978Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 180, latest_finalized_slot_number: 179, sync_status: Synced { synced_da_height: 179 }, .. } -2026-04-20T10:58:04.478077Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=113 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 180, latest_finalized_slot_number: 179, sync_status: Synced { synced_da_height: 179 }, .. } -2026-04-20T10:58:04.478140Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=113 -2026-04-20T10:58:04.478424Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=3 -2026-04-20T10:58:04.478510Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=109 -2026-04-20T10:58:04.478647Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=175 -2026-04-20T10:58:04.478798Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:58:04.479149Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=3 visible_slot_number_after_increase=175 sequence_number=284 -2026-04-20T10:58:04.479170Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=284 blob_id=2147877570529461092271639929217884438 visible_slot_number_after_increase=175 visible_slots_to_advance=3 -2026-04-20T10:58:04.479207Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=4 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:58:04.480931Z DEBUG manage_blob_submission_inside_task{blob_id=2147877570529461092271639929217884438 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xed380c3605bdab099d52403a662a7318182f3ea621a0fff33b4da8adb4f60662 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=181 include_at=181 bytes=13 time=586.056µs -2026-04-20T10:58:04.484944Z DEBUG compute_state_update{scope="sequencer" rollup_height=114 slot_number=175}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:58:04.484983Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000383241s -2026-04-20T10:58:04.485009Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:58:04.485054Z DEBUG compute_state_update{scope="sequencer" rollup_height=114 slot_number=175}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=426b688bda0a993dacbce8189cbc8923c5a587f93336515038044772a7206bd4038e4994baddff3b02ce0198f21146538ea777ad8b71b63bf60b5321a180aaa0 next_version=181 sesssion_starting_time=5.412435ms -2026-04-20T10:58:04.485814Z DEBUG compute_state_update{scope="sequencer" rollup_height=114 slot_number=175}: sov_state::nomt::prover_storage: computed next state root state_root=5674f3824a038dce3defe7443b6d69daae4a67b5a9e6b7f3968b7a2e00eb671770f805575bc1f1488d60886df20df5a4d62822cb226778d8683f43aa9b4f141b next_version=181 time=6.192651ms accesses_build_time=19.22µs finishing_session_time=731.386µs -2026-04-20T10:58:10.474158Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=181 prev_hash=0x306f5d88850088bf0f9805c0cf4d302fbfe890f2518c50f9534350bab7e43195 hash=0x5e9fbc05e391a3a8f9a762a811cce178cb295c35e487b5be9fbf18f407a524da producing_time=1.202452ms -2026-04-20T10:58:10.476853Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=181 current_state_root="426b688bda0a993dacbce8189cbc8923c5a587f93336515038044772a7206bd4038e4994baddff3b02ce0198f21146538ea777ad8b71b63bf60b5321a180aaa0" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xed380c3605bdab099d52403a662a7318182f3ea621a0fff33b4da8adb4f60662"] proof_blobs=[] -2026-04-20T10:58:10.477202Z DEBUG StfBlueprint::apply_slot{context=Node da_height=181}: sov_chain_state: Setting next visible slot number next_visible_slot_number=175 -2026-04-20T10:58:10.477497Z DEBUG StfBlueprint::apply_slot{context=Node da_height=181}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xed380c3605bdab099d52403a662a7318182f3ea621a0fff33b4da8adb4f60662}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=4 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:58:10.477683Z DEBUG StfBlueprint::apply_slot{context=Node da_height=181}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=426b688bda0a993dacbce8189cbc8923c5a587f93336515038044772a7206bd4038e4994baddff3b02ce0198f21146538ea777ad8b71b63bf60b5321a180aaa0 next_version=181 sesssion_starting_time=46.78µs -2026-04-20T10:58:10.478714Z DEBUG StfBlueprint::apply_slot{context=Node da_height=181}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=5674f3824a038dce3defe7443b6d69daae4a67b5a9e6b7f3968b7a2e00eb67172936a71473feff3cff0ba2a6f97ab2e36b1c778778104773d72f87babad232ff next_version=181 time=1.117282ms accesses_build_time=38.099µs finishing_session_time=984.923µs -2026-04-20T10:58:10.478907Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="40d8f56c3ee5d0f4393e5013b1ba49112f3024c65e4466da4b3161adf547b766" -2026-04-20T10:58:10.478922Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="0983b9e176424b13ab4f11d9b85fe697e718d4b6a3b4990e67906e1aa30aa967" -2026-04-20T10:58:10.478931Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="c002c5b93fb2a3d2fe18be8d381d0b2034fa3c6b346b8d0978aa8c744f299b60" -2026-04-20T10:58:10.478940Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="2b08a7de5407fc2aa78d62aae26ff6ab72d92fe8b0795fd8b7fd0aaff49a8a50" -2026-04-20T10:58:10.478951Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="426b688bda0a993dacbce8189cbc8923c5a587f93336515038044772a7206bd436e7d0b5aab8d7276e958377c63365800beea426321722cb7f95f978f23f0cab" next_state_root="5674f3824a038dce3defe7443b6d69daae4a67b5a9e6b7f3968b7a2e00eb67172936a71473feff3cff0ba2a6f97ab2e36b1c778778104773d72f87babad232ff" aggregated_proofs=0 proof_receipts=4 -2026-04-20T10:58:10.479490Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 181, latest_finalized_slot_number: 180, sync_status: Synced { synced_da_height: 180 }, .. } -2026-04-20T10:58:10.479579Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=114 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 181, latest_finalized_slot_number: 180, sync_status: Synced { synced_da_height: 180 }, .. } -2026-04-20T10:58:10.479638Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=114 -2026-04-20T10:58:10.485987Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000979676s -2026-04-20T10:58:10.486013Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:58:10.486237Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:58:10.486332Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:58:11.043742Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RCOzoVhxRVibHAqFioXN_Q==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:58:11.050671Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:58:11.062067Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1036189 cycles -2026-04-20T10:58:11.064726Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [55, 232, 198, 117, 42, 36, 103, 198, 200, 32, 46, 77, 5, 105, 158, 98, 72, 76, 18, 130, 97, 111, 13, 137, 116, 34, 240, 222, 127, 140, 146, 50, 115, 219, 253, 61, 19, 141, 212, 223, 155, 55, 201, 3, 53, 126, 125, 121, 173, 227, 51, 171, 64, 104, 39, 49, 83, 240, 79, 205, 247, 236, 53, 17, 55, 232, 198, 117, 42, 36, 103, 198, 200, 32, 46, 77, 5, 105, 158, 98, 72, 76, 18, 130, 97, 111, 13, 137, 116, 34, 240, 222, 127, 140, 146, 50, 22, 35, 16, 123, 103, 21, 224, 22, 52, 249, 155, 53, 247, 187, 117, 99, 65, 168, 164, 82, 99, 193, 3, 167, 206, 89, 118, 224, 37, 70, 5, 223, 84, 192, 133, 63, 160, 88, 187, 82, 77, 205, 141, 255, 239, 103, 223, 37, 197, 44, 18, 253, 238, 59, 180, 20, 222, 191, 148, 12, 136, 201, 66, 211, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:58:11.121713Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:58:11.121761Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:58:11.192899Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:58:11.227067Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8ZcJnUFTSb2vGOfQ94ASNw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:58:11.229889Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8ZcJnUFTSb2vGOfQ94ASNw==: stderr: -2026-04-20T10:58:11.229903Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8ZcJnUFTSb2vGOfQ94ASNw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:58:11.229912Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8ZcJnUFTSb2vGOfQ94ASNw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:58:11.229919Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8ZcJnUFTSb2vGOfQ94ASNw==: stderr: stack backtrace: -2026-04-20T10:58:11.229925Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8ZcJnUFTSb2vGOfQ94ASNw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:58:11.229943Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8ZcJnUFTSb2vGOfQ94ASNw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:58:11.230034Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:58:11.230804Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:58:11.231095Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:58:11.301331Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:58:11.301375Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:58:11.301540Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:58:11.301702Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:58:11.301752Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:58:11.302200Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=285 blob_id=2147877578776775153828820357642483684 -2026-04-20T10:58:11.874714Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qXq3om8-QPCdnajkYjxZHw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:58:11.881589Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:58:11.893079Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1017345 cycles -2026-04-20T10:58:11.895791Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [55, 232, 198, 117, 42, 36, 103, 198, 200, 32, 46, 77, 5, 105, 158, 98, 72, 76, 18, 130, 97, 111, 13, 137, 116, 34, 240, 222, 127, 140, 146, 50, 65, 39, 49, 62, 1, 132, 128, 134, 104, 29, 16, 222, 76, 26, 73, 183, 196, 193, 126, 29, 213, 98, 7, 190, 85, 61, 77, 50, 194, 200, 160, 105, 55, 232, 198, 117, 42, 36, 103, 198, 200, 32, 46, 77, 5, 105, 158, 98, 72, 76, 18, 130, 97, 111, 13, 137, 116, 34, 240, 222, 127, 140, 146, 50, 100, 13, 199, 148, 87, 158, 123, 185, 222, 253, 169, 222, 26, 20, 85, 81, 132, 67, 88, 192, 154, 23, 171, 125, 84, 95, 118, 21, 222, 201, 214, 242, 244, 194, 193, 216, 163, 180, 165, 7, 243, 112, 94, 36, 81, 64, 82, 185, 157, 178, 12, 103, 90, 78, 119, 31, 97, 132, 173, 222, 171, 123, 7, 230, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:58:11.950745Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:58:11.950789Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:58:12.010846Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:58:12.045172Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PT4jhn-vSkm8Kj7iuWTa3A==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:58:12.047995Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PT4jhn-vSkm8Kj7iuWTa3A==: stderr: -2026-04-20T10:58:12.048009Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PT4jhn-vSkm8Kj7iuWTa3A==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:58:12.048018Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PT4jhn-vSkm8Kj7iuWTa3A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:58:12.048026Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PT4jhn-vSkm8Kj7iuWTa3A==: stderr: stack backtrace: -2026-04-20T10:58:12.048032Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PT4jhn-vSkm8Kj7iuWTa3A==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:58:12.048038Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PT4jhn-vSkm8Kj7iuWTa3A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:58:12.048131Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:58:12.048916Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:58:12.049246Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:58:12.114610Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:58:12.114655Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:58:12.114859Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:58:12.115044Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:58:12.115118Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:58:12.115534Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=286 blob_id=2147877579759624189091580110127898324 -2026-04-20T10:58:12.676211Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ojHm6FtdTJu9M7iD8fxtZw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:58:12.695637Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:58:12.706673Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2902866 cycles -2026-04-20T10:58:12.709312Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [55, 232, 198, 117, 42, 36, 103, 198, 200, 32, 46, 77, 5, 105, 158, 98, 72, 76, 18, 130, 97, 111, 13, 137, 116, 34, 240, 222, 127, 140, 146, 50, 77, 53, 54, 201, 19, 124, 255, 162, 17, 27, 121, 19, 70, 92, 20, 135, 38, 219, 232, 41, 40, 7, 226, 44, 71, 238, 255, 250, 252, 123, 110, 28, 44, 84, 15, 156, 26, 59, 155, 21, 163, 46, 57, 152, 153, 104, 9, 253, 185, 173, 157, 217, 153, 29, 149, 229, 231, 152, 62, 30, 51, 80, 33, 231, 7, 94, 86, 237, 28, 201, 202, 2, 133, 44, 246, 192, 12, 46, 242, 214, 151, 144, 47, 226, 102, 221, 200, 215, 116, 122, 65, 145, 125, 117, 85, 155, 54, 21, 81, 164, 95, 156, 17, 189, 120, 62, 248, 4, 228, 139, 112, 204, 78, 0, 248, 99, 96, 140, 250, 181, 156, 134, 89, 84, 41, 151, 183, 212, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:58:12.830554Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:58:12.830590Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:58:12.923984Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:58:12.958818Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SR7hFALnSiy21eCx5HjvPQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:58:12.961681Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SR7hFALnSiy21eCx5HjvPQ==: stderr: -2026-04-20T10:58:12.961706Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SR7hFALnSiy21eCx5HjvPQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:58:12.961717Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SR7hFALnSiy21eCx5HjvPQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:58:12.961724Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SR7hFALnSiy21eCx5HjvPQ==: stderr: stack backtrace: -2026-04-20T10:58:12.961730Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SR7hFALnSiy21eCx5HjvPQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:58:12.961736Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SR7hFALnSiy21eCx5HjvPQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:58:12.961815Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:58:12.962584Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:58:12.962910Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:58:13.028409Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:58:13.028452Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:58:13.028580Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:58:13.029298Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=287 blob_id=2147877580864551709399686202739191274 -2026-04-20T10:58:16.476748Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=3 height=182 prev_hash=0x5e9fbc05e391a3a8f9a762a811cce178cb295c35e487b5be9fbf18f407a524da hash=0x3b14140e40f3030ecf4493f37f41711745136d04001a1e625efd0461319a8811 producing_time=1.352021ms -2026-04-20T10:58:16.477392Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=182 current_state_root="5674f3824a038dce3defe7443b6d69daae4a67b5a9e6b7f3968b7a2e00eb67172936a71473feff3cff0ba2a6f97ab2e36b1c778778104773d72f87babad232ff" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa7ddf515c5765c240e272bed53c9b2f905ac8376134bf54e48d642a304ba5578, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd2603fc47576b4717806866f8746a3739da255be47bb07192f118b6bb0d65c23, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x880be0df76db49f2f49f1b9b2f0c37785b6eb7b5d3d753067817193546b5360e, len=625"] -2026-04-20T10:58:16.477734Z DEBUG StfBlueprint::apply_slot{context=Node da_height=182}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5674f3824a038dce3defe7443b6d69daae4a67b5a9e6b7f3968b7a2e00eb67172936a71473feff3cff0ba2a6f97ab2e36b1c778778104773d72f87babad232ff next_version=182 sesssion_starting_time=48.15µs -2026-04-20T10:58:16.478629Z DEBUG StfBlueprint::apply_slot{context=Node da_height=182}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=5674f3824a038dce3defe7443b6d69daae4a67b5a9e6b7f3968b7a2e00eb6717732b6afc3003a2c7c0e538792cb5a76358685e053d38616e3515ebeaab470c38 next_version=182 time=962.754µs accesses_build_time=19.01µs finishing_session_time=862.544µs -2026-04-20T10:58:16.478704Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="426b688bda0a993dacbce8189cbc8923c5a587f93336515038044772a7206bd4038e4994baddff3b02ce0198f21146538ea777ad8b71b63bf60b5321a180aaa0" next_state_root="5674f3824a038dce3defe7443b6d69daae4a67b5a9e6b7f3968b7a2e00eb6717732b6afc3003a2c7c0e538792cb5a76358685e053d38616e3515ebeaab470c38" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:58:16.479250Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 182, latest_finalized_slot_number: 181, sync_status: Synced { synced_da_height: 181 }, .. } -2026-04-20T10:58:16.479369Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=114 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 182, latest_finalized_slot_number: 181, sync_status: Synced { synced_da_height: 181 }, .. } -2026-04-20T10:58:16.479541Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=114 -2026-04-20T10:58:16.490269Z DEBUG sov_stf_runner::runner: Block execution complete time=6.004256146s -2026-04-20T10:58:16.490310Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:58:22.479200Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=183 prev_hash=0x3b14140e40f3030ecf4493f37f41711745136d04001a1e625efd0461319a8811 hash=0xbf2f714bdf78747141ca7ecfb61b4dd4e50df9c05c6b76a55ae4669b943f1ef1 producing_time=1.280592ms -2026-04-20T10:58:22.481885Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=183 current_state_root="5674f3824a038dce3defe7443b6d69daae4a67b5a9e6b7f3968b7a2e00eb6717732b6afc3003a2c7c0e538792cb5a76358685e053d38616e3515ebeaab470c38" batch_blobs=[] proof_blobs=[] -2026-04-20T10:58:22.482217Z DEBUG StfBlueprint::apply_slot{context=Node da_height=183}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5674f3824a038dce3defe7443b6d69daae4a67b5a9e6b7f3968b7a2e00eb6717732b6afc3003a2c7c0e538792cb5a76358685e053d38616e3515ebeaab470c38 next_version=183 sesssion_starting_time=46.689µs -2026-04-20T10:58:22.483064Z DEBUG StfBlueprint::apply_slot{context=Node da_height=183}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=5674f3824a038dce3defe7443b6d69daae4a67b5a9e6b7f3968b7a2e00eb67175e23e1de692402af4d7182cf501dffed359513a579d4f7fe02c8f834c6065187 next_version=183 time=910.654µs accesses_build_time=15.72µs finishing_session_time=812.445µs -2026-04-20T10:58:22.483133Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="5674f3824a038dce3defe7443b6d69daae4a67b5a9e6b7f3968b7a2e00eb67172936a71473feff3cff0ba2a6f97ab2e36b1c778778104773d72f87babad232ff" next_state_root="5674f3824a038dce3defe7443b6d69daae4a67b5a9e6b7f3968b7a2e00eb67175e23e1de692402af4d7182cf501dffed359513a579d4f7fe02c8f834c6065187" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:58:22.483679Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 183, latest_finalized_slot_number: 183, sync_status: Synced { synced_da_height: 182 }, .. } -2026-04-20T10:58:22.483787Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=114 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 183, latest_finalized_slot_number: 183, sync_status: Synced { synced_da_height: 182 }, .. } -2026-04-20T10:58:22.483873Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=114 -2026-04-20T10:58:22.484137Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=4 -2026-04-20T10:58:22.484207Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=110 -2026-04-20T10:58:22.484308Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=179 -2026-04-20T10:58:22.484493Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:58:22.484813Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=4 visible_slot_number_after_increase=179 sequence_number=288 -2026-04-20T10:58:22.484844Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=288 blob_id=2147877592296177005408748113292380972 visible_slot_number_after_increase=179 visible_slots_to_advance=4 -2026-04-20T10:58:22.484862Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:58:22.486766Z DEBUG manage_blob_submission_inside_task{blob_id=2147877592296177005408748113292380972 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xe493863fcc5296a4d6955afc42338f2fadd87ef3e6e87cea4812eb1b43b34362 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=184 include_at=184 bytes=13 time=704.585µs -2026-04-20T10:58:22.491922Z DEBUG compute_state_update{scope="sequencer" rollup_height=115 slot_number=179}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:58:22.491937Z DEBUG sov_stf_runner::runner: Block execution complete time=6.001628813s -2026-04-20T10:58:22.491958Z DEBUG compute_state_update{scope="sequencer" rollup_height=115 slot_number=179}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:58:22.491973Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:58:22.492021Z DEBUG compute_state_update{scope="sequencer" rollup_height=115 slot_number=179}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5674f3824a038dce3defe7443b6d69daae4a67b5a9e6b7f3968b7a2e00eb67175e23e1de692402af4d7182cf501dffed359513a579d4f7fe02c8f834c6065187 next_version=184 sesssion_starting_time=6.692587ms -2026-04-20T10:58:22.492798Z DEBUG compute_state_update{scope="sequencer" rollup_height=115 slot_number=179}: sov_state::nomt::prover_storage: computed next state root state_root=56977f046344a3c8851b05f2d34ec106ee015d2bbadbc98fdb451b8b8a204604754476bc74608a3bd0b325867093a1279523865fbfe70ee7f4a8d52926c51ff2 next_version=184 time=7.501851ms accesses_build_time=32.079µs finishing_session_time=741.195µs -2026-04-20T10:58:28.480922Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=184 prev_hash=0xbf2f714bdf78747141ca7ecfb61b4dd4e50df9c05c6b76a55ae4669b943f1ef1 hash=0x65977bf8690c66400ad27f0111976e6b224ea01fa6077c096d9967b2d7d760ec producing_time=1.144412ms -2026-04-20T10:58:28.483862Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=184 current_state_root="5674f3824a038dce3defe7443b6d69daae4a67b5a9e6b7f3968b7a2e00eb67175e23e1de692402af4d7182cf501dffed359513a579d4f7fe02c8f834c6065187" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe493863fcc5296a4d6955afc42338f2fadd87ef3e6e87cea4812eb1b43b34362"] proof_blobs=[] -2026-04-20T10:58:28.484196Z DEBUG StfBlueprint::apply_slot{context=Node da_height=184}: sov_chain_state: Setting next visible slot number next_visible_slot_number=179 -2026-04-20T10:58:28.484481Z DEBUG StfBlueprint::apply_slot{context=Node da_height=184}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xe493863fcc5296a4d6955afc42338f2fadd87ef3e6e87cea4812eb1b43b34362}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=3 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:58:28.484675Z DEBUG StfBlueprint::apply_slot{context=Node da_height=184}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5674f3824a038dce3defe7443b6d69daae4a67b5a9e6b7f3968b7a2e00eb67175e23e1de692402af4d7182cf501dffed359513a579d4f7fe02c8f834c6065187 next_version=184 sesssion_starting_time=47.899µs -2026-04-20T10:58:28.485581Z DEBUG StfBlueprint::apply_slot{context=Node da_height=184}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=56977f046344a3c8851b05f2d34ec106ee015d2bbadbc98fdb451b8b8a2046043c592d6bf52af235346317b9f507f3ca4e4c217a9c8ee66d3963303c790d4fe5 next_version=184 time=992.663µs accesses_build_time=38.409µs finishing_session_time=877.614µs -2026-04-20T10:58:28.485791Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="a7ddf515c5765c240e272bed53c9b2f905ac8376134bf54e48d642a304ba5578" -2026-04-20T10:58:28.485807Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="d2603fc47576b4717806866f8746a3739da255be47bb07192f118b6bb0d65c23" -2026-04-20T10:58:28.485817Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="880be0df76db49f2f49f1b9b2f0c37785b6eb7b5d3d753067817193546b5360e" -2026-04-20T10:58:28.485829Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="5674f3824a038dce3defe7443b6d69daae4a67b5a9e6b7f3968b7a2e00eb67175e23e1de692402af4d7182cf501dffed359513a579d4f7fe02c8f834c6065187" next_state_root="56977f046344a3c8851b05f2d34ec106ee015d2bbadbc98fdb451b8b8a2046043c592d6bf52af235346317b9f507f3ca4e4c217a9c8ee66d3963303c790d4fe5" aggregated_proofs=0 proof_receipts=3 -2026-04-20T10:58:28.486371Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 184, latest_finalized_slot_number: 184, sync_status: Synced { synced_da_height: 183 }, .. } -2026-04-20T10:58:28.486448Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=115 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 184, latest_finalized_slot_number: 184, sync_status: Synced { synced_da_height: 183 }, .. } -2026-04-20T10:58:28.486510Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=115 -2026-04-20T10:58:28.486740Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 -2026-04-20T10:58:28.486802Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=111 -2026-04-20T10:58:28.486910Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=180 -2026-04-20T10:58:28.487032Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T10:58:28.487186Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=180 sequence_number=289 -2026-04-20T10:58:28.487212Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=289 blob_id=2147877599553364293062831733270270694 visible_slot_number_after_increase=180 visible_slots_to_advance=1 -2026-04-20T10:58:28.487238Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:58:28.488934Z DEBUG manage_blob_submission_inside_task{blob_id=2147877599553364293062831733270270694 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xa20e343168f4fb2c1f2c1c2ddf5d0c6b7771750f5278c886982aea21584a853d sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=185 include_at=185 bytes=13 time=586.036µs -2026-04-20T10:58:28.497218Z DEBUG compute_state_update{scope="sequencer" rollup_height=116 slot_number=180}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T10:58:28.497268Z DEBUG sov_stf_runner::runner: Block execution complete time=6.005295689s -2026-04-20T10:58:28.497295Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:58:28.497301Z DEBUG compute_state_update{scope="sequencer" rollup_height=116 slot_number=180}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=56977f046344a3c8851b05f2d34ec106ee015d2bbadbc98fdb451b8b8a2046043c592d6bf52af235346317b9f507f3ca4e4c217a9c8ee66d3963303c790d4fe5 next_version=185 sesssion_starting_time=9.678918ms -2026-04-20T10:58:28.497501Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:58:28.497578Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:58:28.497947Z DEBUG compute_state_update{scope="sequencer" rollup_height=116 slot_number=180}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c14fa9821b2d4c372dc72d24a8c82bd52b9b692fcddd55ce316d3ccb8f2e26953 next_version=185 time=10.337683ms accesses_build_time=11.35µs finishing_session_time=609.396µs -2026-04-20T10:58:29.056356Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tr1u03ZqQ7i22JD8LEuUWw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:58:29.064835Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:58:29.076657Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1248311 cycles -2026-04-20T10:58:29.079417Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [126, 52, 212, 24, 61, 150, 199, 198, 53, 100, 170, 28, 213, 154, 61, 168, 165, 113, 11, 48, 2, 203, 97, 25, 250, 105, 238, 83, 212, 234, 216, 24, 94, 27, 78, 41, 180, 196, 115, 211, 20, 124, 162, 226, 140, 162, 147, 163, 140, 153, 68, 79, 165, 162, 42, 55, 241, 230, 121, 26, 102, 64, 25, 238, 126, 52, 212, 24, 61, 150, 199, 198, 53, 100, 170, 28, 213, 154, 61, 168, 165, 113, 11, 48, 2, 203, 97, 25, 250, 105, 238, 83, 212, 234, 216, 24, 79, 5, 95, 62, 51, 101, 2, 72, 87, 45, 76, 27, 134, 77, 161, 200, 129, 202, 20, 149, 174, 98, 236, 226, 10, 210, 225, 75, 93, 191, 227, 66, 222, 99, 244, 10, 227, 197, 243, 234, 126, 159, 218, 91, 92, 6, 187, 216, 90, 15, 42, 238, 124, 120, 208, 137, 39, 128, 156, 225, 255, 71, 213, 203, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:58:29.145483Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:58:29.145535Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:58:29.203905Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:58:29.238657Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TJUJLzSESq-RbvdoAu7G4g==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:58:29.241482Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TJUJLzSESq-RbvdoAu7G4g==: stderr: -2026-04-20T10:58:29.241495Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TJUJLzSESq-RbvdoAu7G4g==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:58:29.241504Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TJUJLzSESq-RbvdoAu7G4g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:58:29.241513Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TJUJLzSESq-RbvdoAu7G4g==: stderr: stack backtrace: -2026-04-20T10:58:29.241519Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TJUJLzSESq-RbvdoAu7G4g==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:58:29.241526Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TJUJLzSESq-RbvdoAu7G4g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:58:29.241716Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:58:29.242448Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:58:29.242778Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:58:29.309068Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:58:29.309110Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:58:29.309310Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:58:29.309531Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:58:29.309590Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:58:29.309984Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=290 blob_id=2147877600547098917008779009557100858 -2026-04-20T10:58:29.881348Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Tjn44PlPQme9az3bduMIUw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:58:29.888660Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:58:29.900123Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1068203 cycles -2026-04-20T10:58:29.902783Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [126, 52, 212, 24, 61, 150, 199, 198, 53, 100, 170, 28, 213, 154, 61, 168, 165, 113, 11, 48, 2, 203, 97, 25, 250, 105, 238, 83, 212, 234, 216, 24, 117, 247, 238, 74, 175, 192, 179, 194, 152, 116, 211, 213, 52, 184, 47, 24, 52, 254, 205, 181, 140, 144, 197, 55, 248, 163, 253, 201, 203, 8, 100, 123, 126, 52, 212, 24, 61, 150, 199, 198, 53, 100, 170, 28, 213, 154, 61, 168, 165, 113, 11, 48, 2, 203, 97, 25, 250, 105, 238, 83, 212, 234, 216, 24, 94, 168, 220, 171, 63, 231, 229, 176, 44, 160, 59, 144, 102, 240, 125, 168, 100, 249, 121, 44, 121, 75, 56, 32, 178, 24, 113, 6, 89, 239, 125, 8, 155, 224, 16, 222, 145, 130, 242, 53, 232, 130, 152, 83, 131, 132, 227, 218, 97, 177, 229, 253, 12, 104, 69, 239, 90, 133, 92, 26, 14, 186, 119, 105, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:58:29.961619Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:58:29.961663Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:58:30.017121Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:58:30.050559Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Con_jOc3TuSk_u8SMesFXw==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:58:30.053391Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Con_jOc3TuSk_u8SMesFXw==: stderr: -2026-04-20T10:58:30.053415Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Con_jOc3TuSk_u8SMesFXw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:58:30.053428Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Con_jOc3TuSk_u8SMesFXw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:58:30.053435Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Con_jOc3TuSk_u8SMesFXw==: stderr: stack backtrace: -2026-04-20T10:58:30.053441Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Con_jOc3TuSk_u8SMesFXw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:58:30.053462Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Con_jOc3TuSk_u8SMesFXw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:58:30.053546Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:58:30.054301Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:58:30.054549Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:58:30.120877Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:58:30.120919Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:58:30.121042Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:58:30.121224Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:58:30.121293Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:58:30.121725Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=291 blob_id=2147877601528759078887033261935438480 -2026-04-20T10:58:30.681443Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JG1oog8oRhCr8hMEmBtTDg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:58:30.699991Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:58:30.711005Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2708426 cycles -2026-04-20T10:58:30.713650Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [126, 52, 212, 24, 61, 150, 199, 198, 53, 100, 170, 28, 213, 154, 61, 168, 165, 113, 11, 48, 2, 203, 97, 25, 250, 105, 238, 83, 212, 234, 216, 24, 107, 54, 103, 38, 58, 124, 85, 16, 21, 35, 225, 234, 178, 165, 193, 117, 100, 149, 141, 208, 63, 200, 5, 142, 185, 118, 3, 69, 221, 193, 17, 133, 110, 159, 88, 34, 83, 215, 111, 194, 163, 89, 92, 157, 223, 47, 227, 145, 118, 145, 86, 85, 70, 41, 15, 44, 68, 22, 104, 171, 20, 249, 208, 118, 24, 166, 5, 34, 220, 50, 116, 91, 93, 159, 86, 9, 211, 40, 224, 57, 7, 80, 95, 75, 50, 163, 97, 247, 18, 60, 160, 249, 74, 173, 134, 13, 115, 70, 8, 32, 29, 147, 100, 71, 183, 29, 40, 2, 166, 166, 226, 114, 73, 149, 92, 12, 26, 117, 121, 88, 230, 22, 244, 85, 224, 119, 234, 97, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:58:30.828063Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:58:30.828097Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:58:30.930048Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:58:30.964864Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Rcy7mqKUTTKG-4SHVRwj9w==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:58:30.967714Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Rcy7mqKUTTKG-4SHVRwj9w==: stderr: -2026-04-20T10:58:30.967727Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Rcy7mqKUTTKG-4SHVRwj9w==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:58:30.967735Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Rcy7mqKUTTKG-4SHVRwj9w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:58:30.967744Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Rcy7mqKUTTKG-4SHVRwj9w==: stderr: stack backtrace: -2026-04-20T10:58:30.967749Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Rcy7mqKUTTKG-4SHVRwj9w==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:58:30.967755Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Rcy7mqKUTTKG-4SHVRwj9w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:58:30.967895Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:58:30.968680Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:58:30.968971Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:58:31.040084Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:58:31.040129Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:58:31.040290Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:58:31.040499Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:58:31.040575Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:58:31.040985Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=292 blob_id=2147877602639777293463164234202424832 -2026-04-20T10:58:31.594923Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YBYlHmfMT-CkFxU882NaXQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:58:31.609556Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:58:31.619696Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2044155 cycles -2026-04-20T10:58:31.622487Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [39, 107, 160, 122, 247, 206, 112, 158, 183, 125, 126, 184, 36, 63, 44, 222, 24, 139, 1, 237, 105, 124, 183, 139, 211, 130, 22, 168, 184, 19, 241, 200, 85, 90, 43, 205, 161, 43, 146, 199, 61, 151, 118, 72, 227, 193, 153, 213, 166, 237, 133, 236, 30, 107, 181, 156, 241, 181, 89, 185, 242, 154, 142, 19, 99, 119, 74, 103, 123, 175, 145, 161, 75, 153, 244, 34, 140, 9, 61, 62, 130, 133, 238, 165, 216, 31, 70, 3, 227, 254, 151, 184, 244, 96, 117, 79, 62, 200, 199, 35, 44, 149, 162, 68, 208, 243, 183, 109, 87, 228, 210, 99, 123, 124, 43, 96, 37, 84, 19, 94, 151, 179, 41, 2, 4, 76, 228, 89, 123, 39, 55, 135, 185, 229, 82, 230, 185, 94, 141, 127, 18, 66, 1, 214, 112, 62, 49, 185, 228, 229, 241, 53, 121, 236, 207, 92, 189, 209, 80, 114, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:58:31.720749Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:58:31.720785Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:58:31.749389Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:58:31.782069Z DEBUG sp1_core_executor_runner::native: CHILD sp1_En5HW5p8SMqUTEglexRxhQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:58:31.784896Z DEBUG sp1_core_executor_runner::native: CHILD sp1_En5HW5p8SMqUTEglexRxhQ==: stderr: -2026-04-20T10:58:31.784920Z DEBUG sp1_core_executor_runner::native: CHILD sp1_En5HW5p8SMqUTEglexRxhQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:58:31.784931Z DEBUG sp1_core_executor_runner::native: CHILD sp1_En5HW5p8SMqUTEglexRxhQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:58:31.784937Z DEBUG sp1_core_executor_runner::native: CHILD sp1_En5HW5p8SMqUTEglexRxhQ==: stderr: stack backtrace: -2026-04-20T10:58:31.784944Z DEBUG sp1_core_executor_runner::native: CHILD sp1_En5HW5p8SMqUTEglexRxhQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:58:31.784950Z DEBUG sp1_core_executor_runner::native: CHILD sp1_En5HW5p8SMqUTEglexRxhQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:58:31.785013Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:58:31.785828Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:58:31.786115Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:58:31.855236Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:58:31.855280Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:58:31.855444Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:58:31.856047Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=293 blob_id=2147877603624980371492831889446787890 -2026-04-20T10:58:34.483145Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=5 height=185 prev_hash=0x65977bf8690c66400ad27f0111976e6b224ea01fa6077c096d9967b2d7d760ec hash=0xc5e972425b9844f72ee074e83c9844785d0074733c1ee6a914b7b7e8741e871d producing_time=1.388321ms -2026-04-20T10:58:34.488877Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=185 current_state_root="56977f046344a3c8851b05f2d34ec106ee015d2bbadbc98fdb451b8b8a2046043c592d6bf52af235346317b9f507f3ca4e4c217a9c8ee66d3963303c790d4fe5" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa20e343168f4fb2c1f2c1c2ddf5d0c6b7771750f5278c886982aea21584a853d"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x751321bd61d83488e9ee8b8403e2a87a37f3f80996e6d067e6b6045799279dc3, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x910b96ed94ee736d6c39c9176a6b62befcfe8424c03730b08e49ffb9a7144a19, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xbe6c7248a43678670b754e6f6d035121a740e66cdbe64ee35331c2856a831323, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xab708a730ee982dcbd4a5eeee3701001179e1018134ad5b60bb6cf2a7c8e85d1, len=625"] -2026-04-20T10:58:34.489150Z DEBUG StfBlueprint::apply_slot{context=Node da_height=185}: sov_chain_state: Setting next visible slot number next_visible_slot_number=180 -2026-04-20T10:58:34.489286Z DEBUG StfBlueprint::apply_slot{context=Node da_height=185}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xa20e343168f4fb2c1f2c1c2ddf5d0c6b7771750f5278c886982aea21584a853d}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T10:58:34.489486Z DEBUG StfBlueprint::apply_slot{context=Node da_height=185}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=56977f046344a3c8851b05f2d34ec106ee015d2bbadbc98fdb451b8b8a2046043c592d6bf52af235346317b9f507f3ca4e4c217a9c8ee66d3963303c790d4fe5 next_version=185 sesssion_starting_time=47.5µs -2026-04-20T10:58:34.490440Z DEBUG StfBlueprint::apply_slot{context=Node da_height=185}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c45c35beb9c650d47f29cc26a5cfab24ad61e166f60729ba5d883dd8e005a7939 next_version=185 time=1.039273ms accesses_build_time=36.379µs finishing_session_time=923.574µs -2026-04-20T10:58:34.490658Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="56977f046344a3c8851b05f2d34ec106ee015d2bbadbc98fdb451b8b8a2046043c592d6bf52af235346317b9f507f3ca4e4c217a9c8ee66d3963303c790d4fe5" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c45c35beb9c650d47f29cc26a5cfab24ad61e166f60729ba5d883dd8e005a7939" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:58:34.491092Z DEBUG sov_stf_runner::runner: Block execution complete time=5.993799904s -2026-04-20T10:58:34.491116Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:58:34.491164Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 185, latest_finalized_slot_number: 184, sync_status: Syncing { synced_da_height: 184, target_da_height: 185 }, .. } -2026-04-20T10:58:34.491245Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 185, latest_finalized_slot_number: 184, sync_status: Syncing { synced_da_height: 184, target_da_height: 185 }, .. } -2026-04-20T10:58:34.491305Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T10:58:34.491367Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T10:58:34.491461Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:58:35.052100Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IumFz8bDTdKfdWseRO1HSA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T10:58:35.059281Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:58:35.070210Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1067446 cycles -2026-04-20T10:58:35.072870Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [66, 107, 104, 139, 218, 10, 153, 61, 172, 188, 232, 24, 156, 188, 137, 35, 197, 165, 135, 249, 51, 54, 81, 80, 56, 4, 71, 114, 167, 32, 107, 212, 92, 124, 29, 133, 49, 192, 34, 16, 253, 85, 210, 196, 86, 15, 44, 151, 237, 90, 131, 243, 212, 240, 36, 60, 243, 197, 244, 143, 38, 166, 62, 188, 66, 107, 104, 139, 218, 10, 153, 61, 172, 188, 232, 24, 156, 188, 137, 35, 197, 165, 135, 249, 51, 54, 81, 80, 56, 4, 71, 114, 167, 32, 107, 212, 49, 76, 168, 224, 210, 244, 60, 162, 165, 69, 250, 196, 252, 110, 31, 207, 173, 97, 255, 197, 159, 31, 197, 233, 114, 227, 163, 122, 213, 102, 200, 21, 199, 112, 169, 234, 174, 154, 157, 203, 36, 89, 231, 192, 195, 231, 247, 22, 242, 252, 50, 89, 245, 233, 31, 185, 116, 253, 158, 86, 66, 210, 155, 120, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T10:58:35.131471Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:58:35.131516Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:58:35.198263Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T10:58:35.233691Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1uiK0ks_TQKuLulPiEITDQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T10:58:35.236616Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1uiK0ks_TQKuLulPiEITDQ==: stderr: -2026-04-20T10:58:35.236628Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1uiK0ks_TQKuLulPiEITDQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T10:58:35.236637Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1uiK0ks_TQKuLulPiEITDQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:58:35.236645Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1uiK0ks_TQKuLulPiEITDQ==: stderr: stack backtrace: -2026-04-20T10:58:35.236651Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1uiK0ks_TQKuLulPiEITDQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T10:58:35.236657Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1uiK0ks_TQKuLulPiEITDQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T10:58:35.236828Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T10:58:35.237598Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T10:58:35.237893Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T10:58:35.304876Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T10:58:35.304921Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T10:58:35.305083Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T10:58:35.305662Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=294 blob_id=2147877607795788966288302938591704728 -2026-04-20T10:58:40.485310Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=186 prev_hash=0xc5e972425b9844f72ee074e83c9844785d0074733c1ee6a914b7b7e8741e871d hash=0x91946e6d5ad236aad8bc6b64cc589224a9e0adce911669ab1632bb826da0f55d producing_time=1.230912ms -2026-04-20T10:58:40.492229Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=186 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c45c35beb9c650d47f29cc26a5cfab24ad61e166f60729ba5d883dd8e005a7939" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xfef1e7d9411865ef173698322742c534511d8f4ef4094639a627afb49d097e5c, len=625"] -2026-04-20T10:58:40.492622Z DEBUG StfBlueprint::apply_slot{context=Node da_height=186}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c45c35beb9c650d47f29cc26a5cfab24ad61e166f60729ba5d883dd8e005a7939 next_version=186 sesssion_starting_time=49.35µs -2026-04-20T10:58:40.493468Z DEBUG StfBlueprint::apply_slot{context=Node da_height=186}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c175ea9ba05bd3a2489179045f1f0d79dd5e98c3658e92878f05e4d981a82f752 next_version=186 time=912.914µs accesses_build_time=17.11µs finishing_session_time=805.724µs -2026-04-20T10:58:40.493536Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="56977f046344a3c8851b05f2d34ec106ee015d2bbadbc98fdb451b8b8a2046043c592d6bf52af235346317b9f507f3ca4e4c217a9c8ee66d3963303c790d4fe5" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c175ea9ba05bd3a2489179045f1f0d79dd5e98c3658e92878f05e4d981a82f752" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:58:40.494105Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 186, latest_finalized_slot_number: 185, sync_status: Syncing { synced_da_height: 185, target_da_height: 186 }, .. } -2026-04-20T10:58:40.494190Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 186, latest_finalized_slot_number: 185, sync_status: Syncing { synced_da_height: 185, target_da_height: 186 }, .. } -2026-04-20T10:58:40.494252Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T10:58:40.508367Z DEBUG sov_stf_runner::runner: Block execution complete time=6.017252602s -2026-04-20T10:58:40.508404Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:58:46.487430Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=187 prev_hash=0x91946e6d5ad236aad8bc6b64cc589224a9e0adce911669ab1632bb826da0f55d hash=0x81949c8520b0e45eb0399d9bcff43735a5eafb7761430d7dd56ec7a80353c682 producing_time=921.894µs -2026-04-20T10:58:46.490058Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=187 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c175ea9ba05bd3a2489179045f1f0d79dd5e98c3658e92878f05e4d981a82f752" batch_blobs=[] proof_blobs=[] -2026-04-20T10:58:46.490374Z DEBUG StfBlueprint::apply_slot{context=Node da_height=187}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c175ea9ba05bd3a2489179045f1f0d79dd5e98c3658e92878f05e4d981a82f752 next_version=187 sesssion_starting_time=61.85µs -2026-04-20T10:58:46.491149Z DEBUG StfBlueprint::apply_slot{context=Node da_height=187}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c067c9cea43440b2eaa024c7fa27007ad0531aaf700dd226fe98c8b0b9e6fd9ac next_version=187 time=853.824µs accesses_build_time=15.81µs finishing_session_time=742.615µs -2026-04-20T10:58:46.491205Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c45c35beb9c650d47f29cc26a5cfab24ad61e166f60729ba5d883dd8e005a7939" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c067c9cea43440b2eaa024c7fa27007ad0531aaf700dd226fe98c8b0b9e6fd9ac" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:58:46.491690Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 187, latest_finalized_slot_number: 186, sync_status: Syncing { synced_da_height: 186, target_da_height: 187 }, .. } -2026-04-20T10:58:46.491778Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 187, latest_finalized_slot_number: 186, sync_status: Syncing { synced_da_height: 186, target_da_height: 187 }, .. } -2026-04-20T10:58:46.491836Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T10:58:46.497711Z DEBUG sov_stf_runner::runner: Block execution complete time=5.989309883s -2026-04-20T10:58:46.497736Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:58:52.490188Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=188 prev_hash=0x81949c8520b0e45eb0399d9bcff43735a5eafb7761430d7dd56ec7a80353c682 hash=0x7a25a755a18c693e8e244fbcb40a011719052888ac0f7fc28203945948a6df39 producing_time=987.623µs -2026-04-20T10:58:52.500032Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=188 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c067c9cea43440b2eaa024c7fa27007ad0531aaf700dd226fe98c8b0b9e6fd9ac" batch_blobs=[] proof_blobs=[] -2026-04-20T10:58:52.500350Z DEBUG StfBlueprint::apply_slot{context=Node da_height=188}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c067c9cea43440b2eaa024c7fa27007ad0531aaf700dd226fe98c8b0b9e6fd9ac next_version=188 sesssion_starting_time=57.67µs -2026-04-20T10:58:52.501166Z DEBUG StfBlueprint::apply_slot{context=Node da_height=188}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c30cb03187bfea0b35cae4613d6c2ceb82d07d7cb2187eebabaf35edb6641c032 next_version=188 time=889.274µs accesses_build_time=14.32µs finishing_session_time=785.485µs -2026-04-20T10:58:52.501225Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c175ea9ba05bd3a2489179045f1f0d79dd5e98c3658e92878f05e4d981a82f752" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c30cb03187bfea0b35cae4613d6c2ceb82d07d7cb2187eebabaf35edb6641c032" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:58:52.501712Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 188, latest_finalized_slot_number: 187, sync_status: Syncing { synced_da_height: 187, target_da_height: 188 }, .. } -2026-04-20T10:58:52.501797Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 188, latest_finalized_slot_number: 187, sync_status: Syncing { synced_da_height: 187, target_da_height: 188 }, .. } -2026-04-20T10:58:52.501853Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T10:58:52.507829Z DEBUG sov_stf_runner::runner: Block execution complete time=6.010094099s -2026-04-20T10:58:52.507854Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:58:58.491688Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=189 prev_hash=0x7a25a755a18c693e8e244fbcb40a011719052888ac0f7fc28203945948a6df39 hash=0x010f94230a29f28743a06bc828a58745a2f34fb9fb7dafca89f26ab8f5c79aa4 producing_time=961.393µs -2026-04-20T10:58:58.499584Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=189 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c30cb03187bfea0b35cae4613d6c2ceb82d07d7cb2187eebabaf35edb6641c032" batch_blobs=[] proof_blobs=[] -2026-04-20T10:58:58.499927Z DEBUG StfBlueprint::apply_slot{context=Node da_height=189}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c30cb03187bfea0b35cae4613d6c2ceb82d07d7cb2187eebabaf35edb6641c032 next_version=189 sesssion_starting_time=49.47µs -2026-04-20T10:58:58.500726Z DEBUG StfBlueprint::apply_slot{context=Node da_height=189}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c371986dde8ac9c91440d47985a6b5c2f899ba6a1295a00981fb46736705a4351 next_version=189 time=863.165µs accesses_build_time=13.44µs finishing_session_time=768.215µs -2026-04-20T10:58:58.500798Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c067c9cea43440b2eaa024c7fa27007ad0531aaf700dd226fe98c8b0b9e6fd9ac" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c371986dde8ac9c91440d47985a6b5c2f899ba6a1295a00981fb46736705a4351" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:58:58.501312Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 189, latest_finalized_slot_number: 188, sync_status: Synced { synced_da_height: 188 }, .. } -2026-04-20T10:58:58.501405Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 189, latest_finalized_slot_number: 188, sync_status: Synced { synced_da_height: 188 }, .. } -2026-04-20T10:58:58.501464Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T10:58:58.507977Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000123944s -2026-04-20T10:58:58.508006Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:59:04.493692Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=190 prev_hash=0x010f94230a29f28743a06bc828a58745a2f34fb9fb7dafca89f26ab8f5c79aa4 hash=0xce2a982154b8d8a7f3ba8fe24c3732cf3597ea941cca333ba30f2b14866b0f1f producing_time=1.198562ms -2026-04-20T10:59:04.499510Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=190 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c371986dde8ac9c91440d47985a6b5c2f899ba6a1295a00981fb46736705a4351" batch_blobs=[] proof_blobs=[] -2026-04-20T10:59:04.499832Z DEBUG StfBlueprint::apply_slot{context=Node da_height=190}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c371986dde8ac9c91440d47985a6b5c2f899ba6a1295a00981fb46736705a4351 next_version=190 sesssion_starting_time=47.96µs -2026-04-20T10:59:04.500602Z DEBUG StfBlueprint::apply_slot{context=Node da_height=190}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c673949ca7b92ffd41ac1f9027fc521af37b9b0be61ce3e7f22a77efb6bff748a next_version=190 time=832.654µs accesses_build_time=13.22µs finishing_session_time=741.736µs -2026-04-20T10:59:04.500670Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c30cb03187bfea0b35cae4613d6c2ceb82d07d7cb2187eebabaf35edb6641c032" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c673949ca7b92ffd41ac1f9027fc521af37b9b0be61ce3e7f22a77efb6bff748a" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:59:04.501207Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 190, latest_finalized_slot_number: 189, sync_status: Synced { synced_da_height: 189 }, .. } -2026-04-20T10:59:04.501284Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 190, latest_finalized_slot_number: 189, sync_status: Synced { synced_da_height: 189 }, .. } -2026-04-20T10:59:04.501356Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T10:59:04.507940Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999935705s -2026-04-20T10:59:04.507963Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:59:10.496601Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=191 prev_hash=0xce2a982154b8d8a7f3ba8fe24c3732cf3597ea941cca333ba30f2b14866b0f1f hash=0xc15a91bc65f7c780fe5314c0c5d02d25339a199f03e5924918aea6c750403a8e producing_time=1.261132ms -2026-04-20T10:59:10.499301Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=191 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c673949ca7b92ffd41ac1f9027fc521af37b9b0be61ce3e7f22a77efb6bff748a" batch_blobs=[] proof_blobs=[] -2026-04-20T10:59:10.499642Z DEBUG StfBlueprint::apply_slot{context=Node da_height=191}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c673949ca7b92ffd41ac1f9027fc521af37b9b0be61ce3e7f22a77efb6bff748a next_version=191 sesssion_starting_time=47.17µs -2026-04-20T10:59:10.500486Z DEBUG StfBlueprint::apply_slot{context=Node da_height=191}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c56ad625fba93c4fc304c9ae58d83088b1b681991510372fd411d1ffe28cb43f6 next_version=191 time=905.634µs accesses_build_time=14.36µs finishing_session_time=814.874µs -2026-04-20T10:59:10.500551Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c371986dde8ac9c91440d47985a6b5c2f899ba6a1295a00981fb46736705a4351" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c56ad625fba93c4fc304c9ae58d83088b1b681991510372fd411d1ffe28cb43f6" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:59:10.501081Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 191, latest_finalized_slot_number: 190, sync_status: Synced { synced_da_height: 190 }, .. } -2026-04-20T10:59:10.501168Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 191, latest_finalized_slot_number: 190, sync_status: Synced { synced_da_height: 190 }, .. } -2026-04-20T10:59:10.501231Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T10:59:10.507920Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999958425s -2026-04-20T10:59:10.507945Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:59:16.498690Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=192 prev_hash=0xc15a91bc65f7c780fe5314c0c5d02d25339a199f03e5924918aea6c750403a8e hash=0x0fd2bb4bda9775537752b49f4a1d730c140e8bcf6bdb5f05a191d4eaa9ae697b producing_time=1.092673ms -2026-04-20T10:59:16.499378Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=192 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c56ad625fba93c4fc304c9ae58d83088b1b681991510372fd411d1ffe28cb43f6" batch_blobs=[] proof_blobs=[] -2026-04-20T10:59:16.499719Z DEBUG StfBlueprint::apply_slot{context=Node da_height=192}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c56ad625fba93c4fc304c9ae58d83088b1b681991510372fd411d1ffe28cb43f6 next_version=192 sesssion_starting_time=48.49µs -2026-04-20T10:59:16.500469Z DEBUG StfBlueprint::apply_slot{context=Node da_height=192}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c4858cce297d0e1b0635b9ab62c78810ff3aef2e399e0d4922dc2ff038dacc29f next_version=192 time=814.315µs accesses_build_time=14.78µs finishing_session_time=720.705µs -2026-04-20T10:59:16.500538Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c673949ca7b92ffd41ac1f9027fc521af37b9b0be61ce3e7f22a77efb6bff748a" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c4858cce297d0e1b0635b9ab62c78810ff3aef2e399e0d4922dc2ff038dacc29f" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:59:16.501103Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 192, latest_finalized_slot_number: 191, sync_status: Synced { synced_da_height: 191 }, .. } -2026-04-20T10:59:16.501192Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 192, latest_finalized_slot_number: 191, sync_status: Synced { synced_da_height: 191 }, .. } -2026-04-20T10:59:16.501253Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T10:59:16.507932Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999988405s -2026-04-20T10:59:16.507956Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:59:22.501127Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=193 prev_hash=0x0fd2bb4bda9775537752b49f4a1d730c140e8bcf6bdb5f05a191d4eaa9ae697b hash=0x273cad9e97fd246e42d4f116f22a222425a01f53ea4f24a37b03f5c0e28efaa1 producing_time=1.262372ms -2026-04-20T10:59:22.509943Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=193 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c4858cce297d0e1b0635b9ab62c78810ff3aef2e399e0d4922dc2ff038dacc29f" batch_blobs=[] proof_blobs=[] -2026-04-20T10:59:22.510283Z DEBUG StfBlueprint::apply_slot{context=Node da_height=193}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c4858cce297d0e1b0635b9ab62c78810ff3aef2e399e0d4922dc2ff038dacc29f next_version=193 sesssion_starting_time=47.19µs -2026-04-20T10:59:22.511060Z DEBUG StfBlueprint::apply_slot{context=Node da_height=193}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c71d86478cc1ae2774fc74413679689a8cfe44c4221f013254b08b85934b3a813 next_version=193 time=841.115µs accesses_build_time=15.04µs finishing_session_time=747.445µs -2026-04-20T10:59:22.511139Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c56ad625fba93c4fc304c9ae58d83088b1b681991510372fd411d1ffe28cb43f6" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c71d86478cc1ae2774fc74413679689a8cfe44c4221f013254b08b85934b3a813" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:59:22.511690Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 193, latest_finalized_slot_number: 192, sync_status: Synced { synced_da_height: 192 }, .. } -2026-04-20T10:59:22.511784Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 193, latest_finalized_slot_number: 192, sync_status: Synced { synced_da_height: 192 }, .. } -2026-04-20T10:59:22.511856Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T10:59:22.517934Z DEBUG sov_stf_runner::runner: Block execution complete time=6.009980323s -2026-04-20T10:59:22.517959Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:59:28.503612Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=194 prev_hash=0x273cad9e97fd246e42d4f116f22a222425a01f53ea4f24a37b03f5c0e28efaa1 hash=0xc962e81c611c12ce30d5424ade3ff48a2337c89cfa8fda66579764f27bd9eddf producing_time=1.205792ms -2026-04-20T10:59:28.509380Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=194 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c71d86478cc1ae2774fc74413679689a8cfe44c4221f013254b08b85934b3a813" batch_blobs=[] proof_blobs=[] -2026-04-20T10:59:28.509698Z DEBUG StfBlueprint::apply_slot{context=Node da_height=194}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c71d86478cc1ae2774fc74413679689a8cfe44c4221f013254b08b85934b3a813 next_version=194 sesssion_starting_time=48.669µs -2026-04-20T10:59:28.510407Z DEBUG StfBlueprint::apply_slot{context=Node da_height=194}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c04460a3286fce45c3874d9e6abd4de704ef9feed1b178d497eece44efa73d76e next_version=194 time=773.606µs accesses_build_time=14.52µs finishing_session_time=681.156µs -2026-04-20T10:59:28.510483Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c4858cce297d0e1b0635b9ab62c78810ff3aef2e399e0d4922dc2ff038dacc29f" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c04460a3286fce45c3874d9e6abd4de704ef9feed1b178d497eece44efa73d76e" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:59:28.511082Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 194, latest_finalized_slot_number: 193, sync_status: Synced { synced_da_height: 193 }, .. } -2026-04-20T10:59:28.511190Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 194, latest_finalized_slot_number: 193, sync_status: Synced { synced_da_height: 193 }, .. } -2026-04-20T10:59:28.511259Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T10:59:28.518172Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000213666s -2026-04-20T10:59:28.518206Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:59:34.506223Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=195 prev_hash=0xc962e81c611c12ce30d5424ade3ff48a2337c89cfa8fda66579764f27bd9eddf hash=0x86ce0f9ec0b70a8a40d973bdedc16c5d5363bc39c82a8f58e2551c60fca96e2d producing_time=1.227922ms -2026-04-20T10:59:34.509835Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=195 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c04460a3286fce45c3874d9e6abd4de704ef9feed1b178d497eece44efa73d76e" batch_blobs=[] proof_blobs=[] -2026-04-20T10:59:34.510136Z DEBUG StfBlueprint::apply_slot{context=Node da_height=195}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c04460a3286fce45c3874d9e6abd4de704ef9feed1b178d497eece44efa73d76e next_version=195 sesssion_starting_time=46.109µs -2026-04-20T10:59:34.510916Z DEBUG StfBlueprint::apply_slot{context=Node da_height=195}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c18e26a20e91aaefd4031da52f69ac71dffab4fe97d0dab0bf2158e66fea1a3f4 next_version=195 time=840.894µs accesses_build_time=13.03µs finishing_session_time=753.626µs -2026-04-20T10:59:34.510980Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c71d86478cc1ae2774fc74413679689a8cfe44c4221f013254b08b85934b3a813" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c18e26a20e91aaefd4031da52f69ac71dffab4fe97d0dab0bf2158e66fea1a3f4" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:59:34.511432Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 195, latest_finalized_slot_number: 194, sync_status: Synced { synced_da_height: 194 }, .. } -2026-04-20T10:59:34.511534Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 195, latest_finalized_slot_number: 194, sync_status: Synced { synced_da_height: 194 }, .. } -2026-04-20T10:59:34.511601Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T10:59:34.518021Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999817559s -2026-04-20T10:59:34.518046Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:59:40.508498Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=196 prev_hash=0x86ce0f9ec0b70a8a40d973bdedc16c5d5363bc39c82a8f58e2551c60fca96e2d hash=0x01bfc32c85583d85661a9f965cae4f863c72d59b94584b8aabe50b2d4b7da621 producing_time=1.399481ms -2026-04-20T10:59:40.509086Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=196 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c18e26a20e91aaefd4031da52f69ac71dffab4fe97d0dab0bf2158e66fea1a3f4" batch_blobs=[] proof_blobs=[] -2026-04-20T10:59:40.509406Z DEBUG StfBlueprint::apply_slot{context=Node da_height=196}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c18e26a20e91aaefd4031da52f69ac71dffab4fe97d0dab0bf2158e66fea1a3f4 next_version=196 sesssion_starting_time=45.149µs -2026-04-20T10:59:40.510172Z DEBUG StfBlueprint::apply_slot{context=Node da_height=196}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c376abb92050071f7d358623460e7bfa3c8239fa30f2d66f0a580d6ba7bd256cd next_version=196 time=827.115µs accesses_build_time=14.64µs finishing_session_time=727.106µs -2026-04-20T10:59:40.510233Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c04460a3286fce45c3874d9e6abd4de704ef9feed1b178d497eece44efa73d76e" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c376abb92050071f7d358623460e7bfa3c8239fa30f2d66f0a580d6ba7bd256cd" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:59:40.510692Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 196, latest_finalized_slot_number: 195, sync_status: Synced { synced_da_height: 195 }, .. } -2026-04-20T10:59:40.510769Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 196, latest_finalized_slot_number: 195, sync_status: Synced { synced_da_height: 195 }, .. } -2026-04-20T10:59:40.510828Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T10:59:40.517965Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999920367s -2026-04-20T10:59:40.517999Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:59:46.510987Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=197 prev_hash=0x01bfc32c85583d85661a9f965cae4f863c72d59b94584b8aabe50b2d4b7da621 hash=0xf02661aa8afeeb23dff3614bb4bd82c83bc9720d13d8f952ce604c08041e69ff producing_time=1.142883ms -2026-04-20T10:59:46.519613Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=197 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c376abb92050071f7d358623460e7bfa3c8239fa30f2d66f0a580d6ba7bd256cd" batch_blobs=[] proof_blobs=[] -2026-04-20T10:59:46.519916Z DEBUG StfBlueprint::apply_slot{context=Node da_height=197}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c376abb92050071f7d358623460e7bfa3c8239fa30f2d66f0a580d6ba7bd256cd next_version=197 sesssion_starting_time=45.679µs -2026-04-20T10:59:46.520703Z DEBUG StfBlueprint::apply_slot{context=Node da_height=197}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7cdb0cba7c95bb13faff8702602368d4dfe3390e8428d339b1921b3c324e8224 next_version=197 time=847.834µs accesses_build_time=14.68µs finishing_session_time=758.745µs -2026-04-20T10:59:46.520767Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c18e26a20e91aaefd4031da52f69ac71dffab4fe97d0dab0bf2158e66fea1a3f4" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7cdb0cba7c95bb13faff8702602368d4dfe3390e8428d339b1921b3c324e8224" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:59:46.521247Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 197, latest_finalized_slot_number: 196, sync_status: Synced { synced_da_height: 196 }, .. } -2026-04-20T10:59:46.521334Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 197, latest_finalized_slot_number: 196, sync_status: Synced { synced_da_height: 196 }, .. } -2026-04-20T10:59:46.521409Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T10:59:46.528024Z DEBUG sov_stf_runner::runner: Block execution complete time=6.010027783s -2026-04-20T10:59:46.528055Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:59:52.513580Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=198 prev_hash=0xf02661aa8afeeb23dff3614bb4bd82c83bc9720d13d8f952ce604c08041e69ff hash=0xe87bff2e5f8659e4251f234721cdadbaf3f4ff426d462ad13f9d334f53e35a47 producing_time=1.211463ms -2026-04-20T10:59:52.519376Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=198 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7cdb0cba7c95bb13faff8702602368d4dfe3390e8428d339b1921b3c324e8224" batch_blobs=[] proof_blobs=[] -2026-04-20T10:59:52.519692Z DEBUG StfBlueprint::apply_slot{context=Node da_height=198}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7cdb0cba7c95bb13faff8702602368d4dfe3390e8428d339b1921b3c324e8224 next_version=198 sesssion_starting_time=44.95µs -2026-04-20T10:59:52.520488Z DEBUG StfBlueprint::apply_slot{context=Node da_height=198}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7bcd5001b6eb12d2750dd1268784907edc98ebf8b47c4776a8fc1a037c61ea17 next_version=198 time=857.124µs accesses_build_time=15.049µs finishing_session_time=768.025µs -2026-04-20T10:59:52.520554Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c376abb92050071f7d358623460e7bfa3c8239fa30f2d66f0a580d6ba7bd256cd" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7bcd5001b6eb12d2750dd1268784907edc98ebf8b47c4776a8fc1a037c61ea17" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:59:52.521014Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 198, latest_finalized_slot_number: 197, sync_status: Synced { synced_da_height: 197 }, .. } -2026-04-20T10:59:52.521098Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 198, latest_finalized_slot_number: 197, sync_status: Synced { synced_da_height: 197 }, .. } -2026-04-20T10:59:52.521157Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T10:59:52.528038Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999984787s -2026-04-20T10:59:52.528063Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T10:59:58.516122Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=199 prev_hash=0xe87bff2e5f8659e4251f234721cdadbaf3f4ff426d462ad13f9d334f53e35a47 hash=0xdd6620367a930274c951326c7ab8b756fab75be0cd4f06f7588dc12c1723d409 producing_time=1.211002ms -2026-04-20T10:59:58.519754Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=199 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7bcd5001b6eb12d2750dd1268784907edc98ebf8b47c4776a8fc1a037c61ea17" batch_blobs=[] proof_blobs=[] -2026-04-20T10:59:58.520067Z DEBUG StfBlueprint::apply_slot{context=Node da_height=199}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7bcd5001b6eb12d2750dd1268784907edc98ebf8b47c4776a8fc1a037c61ea17 next_version=199 sesssion_starting_time=47.879µs -2026-04-20T10:59:58.520877Z DEBUG StfBlueprint::apply_slot{context=Node da_height=199}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c4159542df5c1e284d8177320b877572c263d7512291a3b0f6080a8bfadd06ce4 next_version=199 time=873.304µs accesses_build_time=14.51µs finishing_session_time=782.105µs -2026-04-20T10:59:58.520943Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7cdb0cba7c95bb13faff8702602368d4dfe3390e8428d339b1921b3c324e8224" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c4159542df5c1e284d8177320b877572c263d7512291a3b0f6080a8bfadd06ce4" aggregated_proofs=0 proof_receipts=0 -2026-04-20T10:59:58.521456Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 199, latest_finalized_slot_number: 198, sync_status: Synced { synced_da_height: 198 }, .. } -2026-04-20T10:59:58.521548Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 199, latest_finalized_slot_number: 198, sync_status: Synced { synced_da_height: 198 }, .. } -2026-04-20T10:59:58.521620Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T10:59:58.527809Z DEBUG sov_stf_runner::runner: Block execution complete time=5.99974764s -2026-04-20T10:59:58.527835Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:00:04.518081Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=200 prev_hash=0xdd6620367a930274c951326c7ab8b756fab75be0cd4f06f7588dc12c1723d409 hash=0xe1326d3ed780d4f738c14f1965d1cc70dd4fdd68a76226044c9d26d99ab11973 producing_time=1.196563ms -2026-04-20T11:00:04.519865Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=200 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c4159542df5c1e284d8177320b877572c263d7512291a3b0f6080a8bfadd06ce4" batch_blobs=[] proof_blobs=[] -2026-04-20T11:00:04.520184Z DEBUG StfBlueprint::apply_slot{context=Node da_height=200}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c4159542df5c1e284d8177320b877572c263d7512291a3b0f6080a8bfadd06ce4 next_version=200 sesssion_starting_time=47.159µs -2026-04-20T11:00:04.520953Z DEBUG StfBlueprint::apply_slot{context=Node da_height=200}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c50dd71aa9edd4ca084de6888adb78115b1447d3c07e08ef9d3bd6a9405b0d7e6 next_version=200 time=832.964µs accesses_build_time=15.249µs finishing_session_time=740.355µs -2026-04-20T11:00:04.521019Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7bcd5001b6eb12d2750dd1268784907edc98ebf8b47c4776a8fc1a037c61ea17" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c50dd71aa9edd4ca084de6888adb78115b1447d3c07e08ef9d3bd6a9405b0d7e6" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:00:04.521535Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 200, latest_finalized_slot_number: 199, sync_status: Synced { synced_da_height: 199 }, .. } -2026-04-20T11:00:04.521625Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 200, latest_finalized_slot_number: 199, sync_status: Synced { synced_da_height: 199 }, .. } -2026-04-20T11:00:04.521684Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:00:04.527892Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000058128s -2026-04-20T11:00:04.527917Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:00:10.519862Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=201 prev_hash=0xe1326d3ed780d4f738c14f1965d1cc70dd4fdd68a76226044c9d26d99ab11973 hash=0x243fd74270174ffb6b09c6793a783d1b524d443047fe35b24143a604374c7717 producing_time=1.178792ms -2026-04-20T11:00:10.529529Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=201 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c50dd71aa9edd4ca084de6888adb78115b1447d3c07e08ef9d3bd6a9405b0d7e6" batch_blobs=[] proof_blobs=[] -2026-04-20T11:00:10.529851Z DEBUG StfBlueprint::apply_slot{context=Node da_height=201}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c50dd71aa9edd4ca084de6888adb78115b1447d3c07e08ef9d3bd6a9405b0d7e6 next_version=201 sesssion_starting_time=45.16µs -2026-04-20T11:00:10.530664Z DEBUG StfBlueprint::apply_slot{context=Node da_height=201}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c1b33517ac46b918dc7586b4e07d22a836c52c5bb5a003350189a7cbc75fcb335 next_version=201 time=872.884µs accesses_build_time=14.5µs finishing_session_time=783.255µs -2026-04-20T11:00:10.530731Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c4159542df5c1e284d8177320b877572c263d7512291a3b0f6080a8bfadd06ce4" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c1b33517ac46b918dc7586b4e07d22a836c52c5bb5a003350189a7cbc75fcb335" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:00:10.531219Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 201, latest_finalized_slot_number: 200, sync_status: Synced { synced_da_height: 200 }, .. } -2026-04-20T11:00:10.531326Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 201, latest_finalized_slot_number: 200, sync_status: Synced { synced_da_height: 200 }, .. } -2026-04-20T11:00:10.531395Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:00:10.537931Z DEBUG sov_stf_runner::runner: Block execution complete time=6.010014813s -2026-04-20T11:00:10.537954Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:00:16.522404Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=202 prev_hash=0x243fd74270174ffb6b09c6793a783d1b524d443047fe35b24143a604374c7717 hash=0x5fa90d70c99b7341d140f11a0d7130706bf28571c8991dbdd3a6c572f9c1374e producing_time=1.123182ms -2026-04-20T11:00:16.528972Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=202 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c1b33517ac46b918dc7586b4e07d22a836c52c5bb5a003350189a7cbc75fcb335" batch_blobs=[] proof_blobs=[] -2026-04-20T11:00:16.529267Z DEBUG StfBlueprint::apply_slot{context=Node da_height=202}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c1b33517ac46b918dc7586b4e07d22a836c52c5bb5a003350189a7cbc75fcb335 next_version=202 sesssion_starting_time=44.559µs -2026-04-20T11:00:16.530062Z DEBUG StfBlueprint::apply_slot{context=Node da_height=202}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c599cd79f02c87a905560466eded88a67056fbd1bc03a099eae6dd6c00a93df09 next_version=202 time=854.864µs accesses_build_time=13.87µs finishing_session_time=769.285µs -2026-04-20T11:00:16.530122Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c50dd71aa9edd4ca084de6888adb78115b1447d3c07e08ef9d3bd6a9405b0d7e6" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c599cd79f02c87a905560466eded88a67056fbd1bc03a099eae6dd6c00a93df09" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:00:16.530554Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 202, latest_finalized_slot_number: 201, sync_status: Synced { synced_da_height: 201 }, .. } -2026-04-20T11:00:16.530638Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 202, latest_finalized_slot_number: 201, sync_status: Synced { synced_da_height: 201 }, .. } -2026-04-20T11:00:16.530694Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:00:16.536745Z DEBUG sov_stf_runner::runner: Block execution complete time=5.998792696s -2026-04-20T11:00:16.536772Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:00:22.525335Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=203 prev_hash=0x5fa90d70c99b7341d140f11a0d7130706bf28571c8991dbdd3a6c572f9c1374e hash=0xf07899d52b11ebe880938e5ae8dfcaa8206992db1377a599a956f83863af86f8 producing_time=1.280902ms -2026-04-20T11:00:22.528037Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=203 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c599cd79f02c87a905560466eded88a67056fbd1bc03a099eae6dd6c00a93df09" batch_blobs=[] proof_blobs=[] -2026-04-20T11:00:22.528391Z DEBUG StfBlueprint::apply_slot{context=Node da_height=203}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c599cd79f02c87a905560466eded88a67056fbd1bc03a099eae6dd6c00a93df09 next_version=203 sesssion_starting_time=46.14µs -2026-04-20T11:00:22.529187Z DEBUG StfBlueprint::apply_slot{context=Node da_height=203}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7f760a72b594556f101d70ac95d146f4c8a86d6a0912f4d78149551a0395e872 next_version=203 time=887.484µs accesses_build_time=43.799µs finishing_session_time=763.065µs -2026-04-20T11:00:22.529248Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c1b33517ac46b918dc7586b4e07d22a836c52c5bb5a003350189a7cbc75fcb335" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7f760a72b594556f101d70ac95d146f4c8a86d6a0912f4d78149551a0395e872" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:00:22.529789Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 203, latest_finalized_slot_number: 202, sync_status: Synced { synced_da_height: 202 }, .. } -2026-04-20T11:00:22.529892Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 203, latest_finalized_slot_number: 202, sync_status: Synced { synced_da_height: 202 }, .. } -2026-04-20T11:00:22.529954Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:00:22.537135Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000364086s -2026-04-20T11:00:22.537160Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:00:28.528644Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=204 prev_hash=0xf07899d52b11ebe880938e5ae8dfcaa8206992db1377a599a956f83863af86f8 hash=0x3403410a909a92f8aecb52f48b40a8092674f9e693b206c19d12856f3bbbf5ba producing_time=1.180143ms -2026-04-20T11:00:28.538677Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=204 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7f760a72b594556f101d70ac95d146f4c8a86d6a0912f4d78149551a0395e872" batch_blobs=[] proof_blobs=[] -2026-04-20T11:00:28.538995Z DEBUG StfBlueprint::apply_slot{context=Node da_height=204}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7f760a72b594556f101d70ac95d146f4c8a86d6a0912f4d78149551a0395e872 next_version=204 sesssion_starting_time=47.33µs -2026-04-20T11:00:28.539788Z DEBUG StfBlueprint::apply_slot{context=Node da_height=204}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c462d66ec600408189c4b90b3860153bcc3f2213c4587bde7b6bfa3b9aef6b1f8 next_version=204 time=856.595µs accesses_build_time=14.23µs finishing_session_time=764.875µs -2026-04-20T11:00:28.539851Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c599cd79f02c87a905560466eded88a67056fbd1bc03a099eae6dd6c00a93df09" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c462d66ec600408189c4b90b3860153bcc3f2213c4587bde7b6bfa3b9aef6b1f8" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:00:28.540351Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 204, latest_finalized_slot_number: 204, sync_status: Synced { synced_da_height: 203 }, .. } -2026-04-20T11:00:28.540457Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 204, latest_finalized_slot_number: 204, sync_status: Synced { synced_da_height: 203 }, .. } -2026-04-20T11:00:28.540518Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:00:28.549016Z  INFO sov_db::storage_manager::nomt_based::groups: Starting pruner task iteration versions_to_keep=20 -2026-04-20T11:00:28.549114Z DEBUG sov_stf_runner::runner: Block execution complete time=6.011955971s -2026-04-20T11:00:28.549126Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:00:28.549205Z  WARN sov_db::storage_manager::nomt_based::groups: Pruning temporarily disabled -2026-04-20T11:00:34.531415Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=205 prev_hash=0x3403410a909a92f8aecb52f48b40a8092674f9e693b206c19d12856f3bbbf5ba hash=0x88dd4109e0ab7afcf13479260f0b2f9e3a325aa4f4088d662a6e951345495bb3 producing_time=1.135553ms -2026-04-20T11:00:34.539955Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=205 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c462d66ec600408189c4b90b3860153bcc3f2213c4587bde7b6bfa3b9aef6b1f8" batch_blobs=[] proof_blobs=[] -2026-04-20T11:00:34.540263Z DEBUG StfBlueprint::apply_slot{context=Node da_height=205}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c462d66ec600408189c4b90b3860153bcc3f2213c4587bde7b6bfa3b9aef6b1f8 next_version=205 sesssion_starting_time=47.61µs -2026-04-20T11:00:34.541075Z DEBUG StfBlueprint::apply_slot{context=Node da_height=205}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7aba7c6620681fe7ec97f029553ea6bfb73152aa5d3ae93b0d9831dc7f41001d next_version=205 time=873.444µs accesses_build_time=13.22µs finishing_session_time=781.605µs -2026-04-20T11:00:34.541138Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c462d66ec600408189c4b90b3860153bcc3f2213c4587bde7b6bfa3b9aef6b1f8" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7aba7c6620681fe7ec97f029553ea6bfb73152aa5d3ae93b0d9831dc7f41001d" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:00:34.541684Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 205, latest_finalized_slot_number: 205, sync_status: Syncing { synced_da_height: 204, target_da_height: 205 }, .. } -2026-04-20T11:00:34.541777Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 205, latest_finalized_slot_number: 205, sync_status: Syncing { synced_da_height: 204, target_da_height: 205 }, .. } -2026-04-20T11:00:34.541839Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:00:34.548004Z  INFO sov_db::storage_manager::nomt_based::groups: Pruner task has completed historical_state.hit_size_limit=false accessory_state.hit_size_limit=false -2026-04-20T11:00:34.548368Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999242782s -2026-04-20T11:00:34.548397Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:00:40.533605Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=206 prev_hash=0x88dd4109e0ab7afcf13479260f0b2f9e3a325aa4f4088d662a6e951345495bb3 hash=0x8f14c6fb7ab14b37bb7e5e623610d7e162ce373fec1e33f2a39206ebffe7e8c3 producing_time=1.090513ms -2026-04-20T11:00:40.540369Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=206 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7aba7c6620681fe7ec97f029553ea6bfb73152aa5d3ae93b0d9831dc7f41001d" batch_blobs=[] proof_blobs=[] -2026-04-20T11:00:40.540708Z DEBUG StfBlueprint::apply_slot{context=Node da_height=206}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7aba7c6620681fe7ec97f029553ea6bfb73152aa5d3ae93b0d9831dc7f41001d next_version=206 sesssion_starting_time=44.98µs -2026-04-20T11:00:40.541477Z DEBUG StfBlueprint::apply_slot{context=Node da_height=206}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c27d9a09d6671127db577ff0f97c2de4a6a4cfa2b76c2c2495b2e222158824ab8 next_version=206 time=828.265µs accesses_build_time=14.34µs finishing_session_time=730.925µs -2026-04-20T11:00:40.541555Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7aba7c6620681fe7ec97f029553ea6bfb73152aa5d3ae93b0d9831dc7f41001d" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c27d9a09d6671127db577ff0f97c2de4a6a4cfa2b76c2c2495b2e222158824ab8" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:00:40.541986Z DEBUG sov_stf_runner::runner: Block execution complete time=5.99359007s -2026-04-20T11:00:40.542016Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:00:40.542095Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 206, latest_finalized_slot_number: 205, sync_status: Syncing { synced_da_height: 205, target_da_height: 206 }, .. } -2026-04-20T11:00:40.542198Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 206, latest_finalized_slot_number: 205, sync_status: Syncing { synced_da_height: 205, target_da_height: 206 }, .. } -2026-04-20T11:00:40.542261Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:00:46.535921Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=207 prev_hash=0x8f14c6fb7ab14b37bb7e5e623610d7e162ce373fec1e33f2a39206ebffe7e8c3 hash=0x05478b808c9e9a7676ae383a8ea39902c19de19fe1f4d34d3bb323657317f0fa producing_time=1.114723ms -2026-04-20T11:00:46.543662Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=207 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c27d9a09d6671127db577ff0f97c2de4a6a4cfa2b76c2c2495b2e222158824ab8" batch_blobs=[] proof_blobs=[] -2026-04-20T11:00:46.543990Z DEBUG StfBlueprint::apply_slot{context=Node da_height=207}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c27d9a09d6671127db577ff0f97c2de4a6a4cfa2b76c2c2495b2e222158824ab8 next_version=207 sesssion_starting_time=48.839µs -2026-04-20T11:00:46.544781Z DEBUG StfBlueprint::apply_slot{context=Node da_height=207}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c4eb20dbea7254d40ab729588e41dd6372bad6ef5e36524fb8cd45f652ae84119 next_version=207 time=859.864µs accesses_build_time=18.08µs finishing_session_time=755.675µs -2026-04-20T11:00:46.544853Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7aba7c6620681fe7ec97f029553ea6bfb73152aa5d3ae93b0d9831dc7f41001d" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c4eb20dbea7254d40ab729588e41dd6372bad6ef5e36524fb8cd45f652ae84119" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:00:46.545366Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 207, latest_finalized_slot_number: 206, sync_status: Syncing { synced_da_height: 206, target_da_height: 207 }, .. } -2026-04-20T11:00:46.545467Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 207, latest_finalized_slot_number: 206, sync_status: Syncing { synced_da_height: 206, target_da_height: 207 }, .. } -2026-04-20T11:00:46.545537Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:00:46.552131Z DEBUG sov_stf_runner::runner: Block execution complete time=6.010116743s -2026-04-20T11:00:46.552178Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:00:52.538128Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=208 prev_hash=0x05478b808c9e9a7676ae383a8ea39902c19de19fe1f4d34d3bb323657317f0fa hash=0x3da9e181efb4dd3b596edc2876a94f4290936e3d8c2f9eb3270e90a2de413b6e producing_time=1.120192ms -2026-04-20T11:00:52.543886Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=208 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c4eb20dbea7254d40ab729588e41dd6372bad6ef5e36524fb8cd45f652ae84119" batch_blobs=[] proof_blobs=[] -2026-04-20T11:00:52.544207Z DEBUG StfBlueprint::apply_slot{context=Node da_height=208}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c4eb20dbea7254d40ab729588e41dd6372bad6ef5e36524fb8cd45f652ae84119 next_version=208 sesssion_starting_time=46.13µs -2026-04-20T11:00:52.545085Z DEBUG StfBlueprint::apply_slot{context=Node da_height=208}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c327412ff0fc477bc3162b5ea2625917a6b006b4657f86b4601b01b8825e6f9dd next_version=208 time=941.084µs accesses_build_time=15.37µs finishing_session_time=846.805µs -2026-04-20T11:00:52.545153Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c27d9a09d6671127db577ff0f97c2de4a6a4cfa2b76c2c2495b2e222158824ab8" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c327412ff0fc477bc3162b5ea2625917a6b006b4657f86b4601b01b8825e6f9dd" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:00:52.545642Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 208, latest_finalized_slot_number: 207, sync_status: Syncing { synced_da_height: 207, target_da_height: 208 }, .. } -2026-04-20T11:00:52.545737Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 208, latest_finalized_slot_number: 207, sync_status: Syncing { synced_da_height: 207, target_da_height: 208 }, .. } -2026-04-20T11:00:52.545809Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:00:52.553214Z DEBUG sov_stf_runner::runner: Block execution complete time=6.001038671s -2026-04-20T11:00:52.553260Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:00:58.539732Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=209 prev_hash=0x3da9e181efb4dd3b596edc2876a94f4290936e3d8c2f9eb3270e90a2de413b6e hash=0x759bd305a976b2f8964721c89513e0451803e863cf53025b64449cc1b6fb6ffa producing_time=1.129723ms -2026-04-20T11:00:58.544556Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=209 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c327412ff0fc477bc3162b5ea2625917a6b006b4657f86b4601b01b8825e6f9dd" batch_blobs=[] proof_blobs=[] -2026-04-20T11:00:58.544875Z DEBUG StfBlueprint::apply_slot{context=Node da_height=209}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c327412ff0fc477bc3162b5ea2625917a6b006b4657f86b4601b01b8825e6f9dd next_version=209 sesssion_starting_time=48.799µs -2026-04-20T11:00:58.545747Z DEBUG StfBlueprint::apply_slot{context=Node da_height=209}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0c29c3109e017acb7de17d8c4cc157426153feff1c6a20027e7cbff4a866f7cd next_version=209 time=938.304µs accesses_build_time=15.65µs finishing_session_time=839.275µs -2026-04-20T11:00:58.545812Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c4eb20dbea7254d40ab729588e41dd6372bad6ef5e36524fb8cd45f652ae84119" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0c29c3109e017acb7de17d8c4cc157426153feff1c6a20027e7cbff4a866f7cd" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:00:58.546332Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 209, latest_finalized_slot_number: 208, sync_status: Syncing { synced_da_height: 208, target_da_height: 209 }, .. } -2026-04-20T11:00:58.546428Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 209, latest_finalized_slot_number: 208, sync_status: Syncing { synced_da_height: 208, target_da_height: 209 }, .. } -2026-04-20T11:00:58.546491Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:00:58.553172Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999913989s -2026-04-20T11:00:58.553196Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:01:04.542586Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=210 prev_hash=0x759bd305a976b2f8964721c89513e0451803e863cf53025b64449cc1b6fb6ffa hash=0x78ab091112192ae143dd7334375706d5cbca18e7a8769ade4b3755eaa8c4651e producing_time=1.160393ms -2026-04-20T11:01:04.544199Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=210 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0c29c3109e017acb7de17d8c4cc157426153feff1c6a20027e7cbff4a866f7cd" batch_blobs=[] proof_blobs=[] -2026-04-20T11:01:04.544539Z DEBUG StfBlueprint::apply_slot{context=Node da_height=210}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0c29c3109e017acb7de17d8c4cc157426153feff1c6a20027e7cbff4a866f7cd next_version=210 sesssion_starting_time=48.649µs -2026-04-20T11:01:04.545290Z DEBUG StfBlueprint::apply_slot{context=Node da_height=210}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c5f1dc6550b76efd25ffb69ccb0d877932eaf5215cf30ea0a2caba19a13d1b105 next_version=210 time=815.584µs accesses_build_time=14.6µs finishing_session_time=715.586µs -2026-04-20T11:01:04.545364Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c327412ff0fc477bc3162b5ea2625917a6b006b4657f86b4601b01b8825e6f9dd" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c5f1dc6550b76efd25ffb69ccb0d877932eaf5215cf30ea0a2caba19a13d1b105" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:01:04.545892Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 210, latest_finalized_slot_number: 209, sync_status: Synced { synced_da_height: 209 }, .. } -2026-04-20T11:01:04.545974Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 210, latest_finalized_slot_number: 209, sync_status: Synced { synced_da_height: 209 }, .. } -2026-04-20T11:01:04.546039Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:01:04.553068Z DEBUG sov_stf_runner::runner: Block execution complete time=5.99987327s -2026-04-20T11:01:04.553092Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:01:10.545451Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=211 prev_hash=0x78ab091112192ae143dd7334375706d5cbca18e7a8769ade4b3755eaa8c4651e hash=0x28ea9a3164e42316f6f8c6b4c07fb5a43a5d02e828362cd8a1d1fd90161b86dc producing_time=1.084223ms -2026-04-20T11:01:10.554032Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=211 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c5f1dc6550b76efd25ffb69ccb0d877932eaf5215cf30ea0a2caba19a13d1b105" batch_blobs=[] proof_blobs=[] -2026-04-20T11:01:10.554384Z DEBUG StfBlueprint::apply_slot{context=Node da_height=211}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c5f1dc6550b76efd25ffb69ccb0d877932eaf5215cf30ea0a2caba19a13d1b105 next_version=211 sesssion_starting_time=50.93µs -2026-04-20T11:01:10.555148Z DEBUG StfBlueprint::apply_slot{context=Node da_height=211}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c1555a145723dd899e40defc39de395a7a5bab41c132df97dc218b645188957ee next_version=211 time=847.755µs accesses_build_time=31.01µs finishing_session_time=727.896µs -2026-04-20T11:01:10.555222Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0c29c3109e017acb7de17d8c4cc157426153feff1c6a20027e7cbff4a866f7cd" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c1555a145723dd899e40defc39de395a7a5bab41c132df97dc218b645188957ee" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:01:10.555774Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 211, latest_finalized_slot_number: 210, sync_status: Synced { synced_da_height: 210 }, .. } -2026-04-20T11:01:10.555882Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 211, latest_finalized_slot_number: 210, sync_status: Synced { synced_da_height: 210 }, .. } -2026-04-20T11:01:10.555948Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:01:10.563356Z DEBUG sov_stf_runner::runner: Block execution complete time=6.010265003s -2026-04-20T11:01:10.563393Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:01:16.548566Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=212 prev_hash=0x28ea9a3164e42316f6f8c6b4c07fb5a43a5d02e828362cd8a1d1fd90161b86dc hash=0x762a93a4a2d50e790f3bdefaff5c43b7d9fd7f28adef92e3b57f9dabd625f4ea producing_time=1.166473ms -2026-04-20T11:01:16.555198Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=212 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c1555a145723dd899e40defc39de395a7a5bab41c132df97dc218b645188957ee" batch_blobs=[] proof_blobs=[] -2026-04-20T11:01:16.555545Z DEBUG StfBlueprint::apply_slot{context=Node da_height=212}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c1555a145723dd899e40defc39de395a7a5bab41c132df97dc218b645188957ee next_version=212 sesssion_starting_time=49.17µs -2026-04-20T11:01:16.556384Z DEBUG StfBlueprint::apply_slot{context=Node da_height=212}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c2812c4d362902a06415de51ec6981401bd92627e92d5b11eff3aaea3a9a8ee0c next_version=212 time=904.005µs accesses_build_time=14.93µs finishing_session_time=802.234µs -2026-04-20T11:01:16.556450Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c5f1dc6550b76efd25ffb69ccb0d877932eaf5215cf30ea0a2caba19a13d1b105" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c2812c4d362902a06415de51ec6981401bd92627e92d5b11eff3aaea3a9a8ee0c" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:01:16.556955Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 212, latest_finalized_slot_number: 211, sync_status: Synced { synced_da_height: 211 }, .. } -2026-04-20T11:01:16.557049Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 212, latest_finalized_slot_number: 211, sync_status: Synced { synced_da_height: 211 }, .. } -2026-04-20T11:01:16.557115Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:01:16.564132Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000739604s -2026-04-20T11:01:16.564185Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:01:22.550791Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=213 prev_hash=0x762a93a4a2d50e790f3bdefaff5c43b7d9fd7f28adef92e3b57f9dabd625f4ea hash=0xcf62dcfb61c0e0013f542799c45ed890d673aee50a4ed2d6a76cc260dacaed7f producing_time=1.228653ms -2026-04-20T11:01:22.555426Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=213 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c2812c4d362902a06415de51ec6981401bd92627e92d5b11eff3aaea3a9a8ee0c" batch_blobs=[] proof_blobs=[] -2026-04-20T11:01:22.555738Z DEBUG StfBlueprint::apply_slot{context=Node da_height=213}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c2812c4d362902a06415de51ec6981401bd92627e92d5b11eff3aaea3a9a8ee0c next_version=213 sesssion_starting_time=45.919µs -2026-04-20T11:01:22.556505Z DEBUG StfBlueprint::apply_slot{context=Node da_height=213}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c5a362b6ce22d6834d822f25dd77c9dfb205515413daee9199dd36685e5873938 next_version=213 time=829.624µs accesses_build_time=15.42µs finishing_session_time=735.826µs -2026-04-20T11:01:22.556571Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c1555a145723dd899e40defc39de395a7a5bab41c132df97dc218b645188957ee" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c5a362b6ce22d6834d822f25dd77c9dfb205515413daee9199dd36685e5873938" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:01:22.557033Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 213, latest_finalized_slot_number: 212, sync_status: Synced { synced_da_height: 212 }, .. } -2026-04-20T11:01:22.557123Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 213, latest_finalized_slot_number: 212, sync_status: Synced { synced_da_height: 212 }, .. } -2026-04-20T11:01:22.557188Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:01:22.563946Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999763521s -2026-04-20T11:01:22.564005Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:01:28.553478Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=214 prev_hash=0xcf62dcfb61c0e0013f542799c45ed890d673aee50a4ed2d6a76cc260dacaed7f hash=0x21059fe9522a6f6513ad8cc1ce7ff078cc0fa6cd6d6291facec54d552c9e798e producing_time=1.064953ms -2026-04-20T11:01:28.555205Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=214 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c5a362b6ce22d6834d822f25dd77c9dfb205515413daee9199dd36685e5873938" batch_blobs=[] proof_blobs=[] -2026-04-20T11:01:28.555550Z DEBUG StfBlueprint::apply_slot{context=Node da_height=214}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c5a362b6ce22d6834d822f25dd77c9dfb205515413daee9199dd36685e5873938 next_version=214 sesssion_starting_time=47.07µs -2026-04-20T11:01:28.556304Z DEBUG StfBlueprint::apply_slot{context=Node da_height=214}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7f5f8c6677df6fb7e0cd702d61f10702c82cb8c9f544d73138a5febe3fecccea next_version=214 time=817.985µs accesses_build_time=14.94µs finishing_session_time=719.526µs -2026-04-20T11:01:28.556376Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c2812c4d362902a06415de51ec6981401bd92627e92d5b11eff3aaea3a9a8ee0c" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7f5f8c6677df6fb7e0cd702d61f10702c82cb8c9f544d73138a5febe3fecccea" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:01:28.556868Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 214, latest_finalized_slot_number: 213, sync_status: Synced { synced_da_height: 213 }, .. } -2026-04-20T11:01:28.556970Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 214, latest_finalized_slot_number: 213, sync_status: Synced { synced_da_height: 213 }, .. } -2026-04-20T11:01:28.557034Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:01:28.563073Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999071485s -2026-04-20T11:01:28.563109Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:01:34.555734Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=215 prev_hash=0x21059fe9522a6f6513ad8cc1ce7ff078cc0fa6cd6d6291facec54d552c9e798e hash=0xb50c8212556319ba4f296ddad3e4aa2496ab3e41b9e5e8b4c62347364c4cf43d producing_time=1.131133ms -2026-04-20T11:01:34.564342Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=215 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7f5f8c6677df6fb7e0cd702d61f10702c82cb8c9f544d73138a5febe3fecccea" batch_blobs=[] proof_blobs=[] -2026-04-20T11:01:34.564666Z DEBUG StfBlueprint::apply_slot{context=Node da_height=215}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7f5f8c6677df6fb7e0cd702d61f10702c82cb8c9f544d73138a5febe3fecccea next_version=215 sesssion_starting_time=48.059µs -2026-04-20T11:01:34.565516Z DEBUG StfBlueprint::apply_slot{context=Node da_height=215}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0fe240a13bb4020e7ef6ea8140df8be776bdb676b221516d191908e3e0001e29 next_version=215 time=914.343µs accesses_build_time=14.8µs finishing_session_time=817.215µs -2026-04-20T11:01:34.565581Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c5a362b6ce22d6834d822f25dd77c9dfb205515413daee9199dd36685e5873938" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0fe240a13bb4020e7ef6ea8140df8be776bdb676b221516d191908e3e0001e29" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:01:34.566018Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 215, latest_finalized_slot_number: 214, sync_status: Synced { synced_da_height: 214 }, .. } -2026-04-20T11:01:34.566106Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 215, latest_finalized_slot_number: 214, sync_status: Synced { synced_da_height: 214 }, .. } -2026-04-20T11:01:34.566170Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:01:34.573311Z DEBUG sov_stf_runner::runner: Block execution complete time=6.010203123s -2026-04-20T11:01:34.573357Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:01:40.558394Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=216 prev_hash=0xb50c8212556319ba4f296ddad3e4aa2496ab3e41b9e5e8b4c62347364c4cf43d hash=0x1046b9cdb05b7990a72ec5cd3275abe8ae52124e4d5ba9c8c3852e61496fe212 producing_time=1.005814ms -2026-04-20T11:01:40.564010Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=216 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0fe240a13bb4020e7ef6ea8140df8be776bdb676b221516d191908e3e0001e29" batch_blobs=[] proof_blobs=[] -2026-04-20T11:01:40.564309Z DEBUG StfBlueprint::apply_slot{context=Node da_height=216}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0fe240a13bb4020e7ef6ea8140df8be776bdb676b221516d191908e3e0001e29 next_version=216 sesssion_starting_time=42.58µs -2026-04-20T11:01:40.565031Z DEBUG StfBlueprint::apply_slot{context=Node da_height=216}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c182199ab432e981be3b503efad70dba965539ede8717e3e3e337cce5a002c7c6 next_version=216 time=780.555µs accesses_build_time=14.77µs finishing_session_time=674.156µs -2026-04-20T11:01:40.565094Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7f5f8c6677df6fb7e0cd702d61f10702c82cb8c9f544d73138a5febe3fecccea" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c182199ab432e981be3b503efad70dba965539ede8717e3e3e337cce5a002c7c6" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:01:40.565611Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 216, latest_finalized_slot_number: 215, sync_status: Synced { synced_da_height: 215 }, .. } -2026-04-20T11:01:40.565696Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 216, latest_finalized_slot_number: 215, sync_status: Synced { synced_da_height: 215 }, .. } -2026-04-20T11:01:40.565755Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:01:40.575767Z DEBUG sov_stf_runner::runner: Block execution complete time=6.002411254s -2026-04-20T11:01:40.575812Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:01:46.560696Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=217 prev_hash=0x1046b9cdb05b7990a72ec5cd3275abe8ae52124e4d5ba9c8c3852e61496fe212 hash=0xcbc2eb827fb5ab0e1d942f058a2fe5a697d2f787afa8907996d5473baa4edcf6 producing_time=1.160402ms -2026-04-20T11:01:46.567365Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=217 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c182199ab432e981be3b503efad70dba965539ede8717e3e3e337cce5a002c7c6" batch_blobs=[] proof_blobs=[] -2026-04-20T11:01:46.567684Z DEBUG StfBlueprint::apply_slot{context=Node da_height=217}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c182199ab432e981be3b503efad70dba965539ede8717e3e3e337cce5a002c7c6 next_version=217 sesssion_starting_time=47.22µs -2026-04-20T11:01:46.568487Z DEBUG StfBlueprint::apply_slot{context=Node da_height=217}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c04a46a5fa5a0a1fb721e31725ebcb77aa9df7ae23f8e9aee9b2fcdbc3b1ac5cf next_version=217 time=866.195µs accesses_build_time=14.33µs finishing_session_time=771.485µs -2026-04-20T11:01:46.568554Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0fe240a13bb4020e7ef6ea8140df8be776bdb676b221516d191908e3e0001e29" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c04a46a5fa5a0a1fb721e31725ebcb77aa9df7ae23f8e9aee9b2fcdbc3b1ac5cf" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:01:46.569056Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 217, latest_finalized_slot_number: 216, sync_status: Synced { synced_da_height: 216 }, .. } -2026-04-20T11:01:46.569147Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 217, latest_finalized_slot_number: 216, sync_status: Synced { synced_da_height: 216 }, .. } -2026-04-20T11:01:46.569223Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:01:46.575938Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000127639s -2026-04-20T11:01:46.575985Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:01:52.563475Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=218 prev_hash=0xcbc2eb827fb5ab0e1d942f058a2fe5a697d2f787afa8907996d5473baa4edcf6 hash=0xd0e52592ac44e0e560479b499e0ed4731d2c962fad7934f4351032c0f7cb42bf producing_time=1.211633ms -2026-04-20T11:01:52.567086Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=218 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c04a46a5fa5a0a1fb721e31725ebcb77aa9df7ae23f8e9aee9b2fcdbc3b1ac5cf" batch_blobs=[] proof_blobs=[] -2026-04-20T11:01:52.567426Z DEBUG StfBlueprint::apply_slot{context=Node da_height=218}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c04a46a5fa5a0a1fb721e31725ebcb77aa9df7ae23f8e9aee9b2fcdbc3b1ac5cf next_version=218 sesssion_starting_time=44.44µs -2026-04-20T11:01:52.568112Z DEBUG StfBlueprint::apply_slot{context=Node da_height=218}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c46bcdbbc3500df9077cfb3e26fa479c48c14f0ad7b25f08536ffb04320154a5d next_version=218 time=746.524µs accesses_build_time=14.439µs finishing_session_time=651.466µs -2026-04-20T11:01:52.568176Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c182199ab432e981be3b503efad70dba965539ede8717e3e3e337cce5a002c7c6" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c46bcdbbc3500df9077cfb3e26fa479c48c14f0ad7b25f08536ffb04320154a5d" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:01:52.568661Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 218, latest_finalized_slot_number: 217, sync_status: Synced { synced_da_height: 217 }, .. } -2026-04-20T11:01:52.568756Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 218, latest_finalized_slot_number: 217, sync_status: Synced { synced_da_height: 217 }, .. } -2026-04-20T11:01:52.568820Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:01:52.576258Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000275328s -2026-04-20T11:01:52.576292Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:01:58.565928Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=219 prev_hash=0xd0e52592ac44e0e560479b499e0ed4731d2c962fad7934f4351032c0f7cb42bf hash=0x1a1ae53a0d08951722ff8c0cb0b4b15005eb7a77f77b54ad37e883c048367600 producing_time=1.108993ms -2026-04-20T11:01:58.567440Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=219 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c46bcdbbc3500df9077cfb3e26fa479c48c14f0ad7b25f08536ffb04320154a5d" batch_blobs=[] proof_blobs=[] -2026-04-20T11:01:58.567745Z DEBUG StfBlueprint::apply_slot{context=Node da_height=219}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c46bcdbbc3500df9077cfb3e26fa479c48c14f0ad7b25f08536ffb04320154a5d next_version=219 sesssion_starting_time=45.799µs -2026-04-20T11:01:58.568520Z DEBUG StfBlueprint::apply_slot{context=Node da_height=219}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c6d78b3391147bf6128ba2cf80f183e080827643617dbf1d27b8633070e57e2f1 next_version=219 time=835.354µs accesses_build_time=13.46µs finishing_session_time=742.875µs -2026-04-20T11:01:58.568583Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c04a46a5fa5a0a1fb721e31725ebcb77aa9df7ae23f8e9aee9b2fcdbc3b1ac5cf" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c6d78b3391147bf6128ba2cf80f183e080827643617dbf1d27b8633070e57e2f1" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:01:58.569016Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 219, latest_finalized_slot_number: 218, sync_status: Synced { synced_da_height: 218 }, .. } -2026-04-20T11:01:58.569102Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 219, latest_finalized_slot_number: 218, sync_status: Synced { synced_da_height: 218 }, .. } -2026-04-20T11:01:58.569162Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:01:58.576166Z DEBUG sov_stf_runner::runner: Block execution complete time=5.99987427s -2026-04-20T11:01:58.576211Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:02:04.567782Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=220 prev_hash=0x1a1ae53a0d08951722ff8c0cb0b4b15005eb7a77f77b54ad37e883c048367600 hash=0x414d9e529260784ece513613c601606cd92018eb3315e37e9d59ac6e1e9f8dc8 producing_time=1.126733ms -2026-04-20T11:02:04.577517Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=220 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c6d78b3391147bf6128ba2cf80f183e080827643617dbf1d27b8633070e57e2f1" batch_blobs=[] proof_blobs=[] -2026-04-20T11:02:04.577847Z DEBUG StfBlueprint::apply_slot{context=Node da_height=220}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c6d78b3391147bf6128ba2cf80f183e080827643617dbf1d27b8633070e57e2f1 next_version=220 sesssion_starting_time=46.959µs -2026-04-20T11:02:04.578556Z DEBUG StfBlueprint::apply_slot{context=Node da_height=220}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c086a337ec729a41637c66438e5fc3b83560d2de285b061ee19704b29ce2e65bc next_version=220 time=771.155µs accesses_build_time=14.22µs finishing_session_time=674.876µs -2026-04-20T11:02:04.578625Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c46bcdbbc3500df9077cfb3e26fa479c48c14f0ad7b25f08536ffb04320154a5d" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c086a337ec729a41637c66438e5fc3b83560d2de285b061ee19704b29ce2e65bc" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:02:04.579127Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 220, latest_finalized_slot_number: 219, sync_status: Synced { synced_da_height: 219 }, .. } -2026-04-20T11:02:04.579221Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 220, latest_finalized_slot_number: 219, sync_status: Synced { synced_da_height: 219 }, .. } -2026-04-20T11:02:04.579299Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:02:04.586092Z DEBUG sov_stf_runner::runner: Block execution complete time=6.009882696s -2026-04-20T11:02:04.586139Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:02:10.570040Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=221 prev_hash=0x414d9e529260784ece513613c601606cd92018eb3315e37e9d59ac6e1e9f8dc8 hash=0x1bdd443b5ce131ca6b05583e735d929535cebec82882d4f0348429b5e0aea9c7 producing_time=1.184122ms -2026-04-20T11:02:10.577682Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=221 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c086a337ec729a41637c66438e5fc3b83560d2de285b061ee19704b29ce2e65bc" batch_blobs=[] proof_blobs=[] -2026-04-20T11:02:10.577995Z DEBUG StfBlueprint::apply_slot{context=Node da_height=221}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c086a337ec729a41637c66438e5fc3b83560d2de285b061ee19704b29ce2e65bc next_version=221 sesssion_starting_time=49.79µs -2026-04-20T11:02:10.578684Z DEBUG StfBlueprint::apply_slot{context=Node da_height=221}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7d2cfd104944f6cff10666ee79f70751059fb747a76b9ab74450c9d086be6e5f next_version=221 time=754.265µs accesses_build_time=14.63µs finishing_session_time=658.215µs -2026-04-20T11:02:10.578747Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c6d78b3391147bf6128ba2cf80f183e080827643617dbf1d27b8633070e57e2f1" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7d2cfd104944f6cff10666ee79f70751059fb747a76b9ab74450c9d086be6e5f" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:02:10.579257Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 221, latest_finalized_slot_number: 220, sync_status: Synced { synced_da_height: 220 }, .. } -2026-04-20T11:02:10.579358Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 221, latest_finalized_slot_number: 220, sync_status: Synced { synced_da_height: 220 }, .. } -2026-04-20T11:02:10.579424Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:02:10.585728Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999590812s -2026-04-20T11:02:10.585762Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:02:16.572021Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=222 prev_hash=0x1bdd443b5ce131ca6b05583e735d929535cebec82882d4f0348429b5e0aea9c7 hash=0xfbf7fd554cc884e5c9dca52e05e08bd913f90e2a9c907c03c9bf2841df1dadb2 producing_time=1.168223ms -2026-04-20T11:02:16.577702Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=222 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7d2cfd104944f6cff10666ee79f70751059fb747a76b9ab74450c9d086be6e5f" batch_blobs=[] proof_blobs=[] -2026-04-20T11:02:16.578014Z DEBUG StfBlueprint::apply_slot{context=Node da_height=222}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7d2cfd104944f6cff10666ee79f70751059fb747a76b9ab74450c9d086be6e5f next_version=222 sesssion_starting_time=47.589µs -2026-04-20T11:02:16.578734Z DEBUG StfBlueprint::apply_slot{context=Node da_height=222}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c76b6f94b9bbdc19be8c365b42fde5a7c419fec8897892a6d58b57e477ebb140b next_version=222 time=783.355µs accesses_build_time=13.94µs finishing_session_time=689.636µs -2026-04-20T11:02:16.578799Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c086a337ec729a41637c66438e5fc3b83560d2de285b061ee19704b29ce2e65bc" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c76b6f94b9bbdc19be8c365b42fde5a7c419fec8897892a6d58b57e477ebb140b" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:02:16.579266Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 222, latest_finalized_slot_number: 221, sync_status: Synced { synced_da_height: 221 }, .. } -2026-04-20T11:02:16.579367Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 222, latest_finalized_slot_number: 221, sync_status: Synced { synced_da_height: 221 }, .. } -2026-04-20T11:02:16.579448Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:02:16.586081Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000320217s -2026-04-20T11:02:16.586127Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:02:22.573867Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=223 prev_hash=0xfbf7fd554cc884e5c9dca52e05e08bd913f90e2a9c907c03c9bf2841df1dadb2 hash=0x9ab2b1e095e144cd16ac39381ef7bfc82c7e937def02d87004a958f79afa14f7 producing_time=1.144463ms -2026-04-20T11:02:22.577504Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=223 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c76b6f94b9bbdc19be8c365b42fde5a7c419fec8897892a6d58b57e477ebb140b" batch_blobs=[] proof_blobs=[] -2026-04-20T11:02:22.577817Z DEBUG StfBlueprint::apply_slot{context=Node da_height=223}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c76b6f94b9bbdc19be8c365b42fde5a7c419fec8897892a6d58b57e477ebb140b next_version=223 sesssion_starting_time=45.82µs -2026-04-20T11:02:22.578639Z DEBUG StfBlueprint::apply_slot{context=Node da_height=223}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7de56d7cae75e92a1a10aee7f7e0ed4f2449b8acd2ea38abad2e4cc6dcbfd5da next_version=223 time=883.624µs accesses_build_time=14.89µs finishing_session_time=790.335µs -2026-04-20T11:02:22.578709Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7d2cfd104944f6cff10666ee79f70751059fb747a76b9ab74450c9d086be6e5f" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7de56d7cae75e92a1a10aee7f7e0ed4f2449b8acd2ea38abad2e4cc6dcbfd5da" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:02:22.579195Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 223, latest_finalized_slot_number: 222, sync_status: Synced { synced_da_height: 222 }, .. } -2026-04-20T11:02:22.579285Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 223, latest_finalized_slot_number: 222, sync_status: Synced { synced_da_height: 222 }, .. } -2026-04-20T11:02:22.579358Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:02:22.586256Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000130679s -2026-04-20T11:02:22.586293Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:02:28.576421Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=224 prev_hash=0x9ab2b1e095e144cd16ac39381ef7bfc82c7e937def02d87004a958f79afa14f7 hash=0x2d73dceb88bdd36bbbc816fab5a1bac5115955deed26b31480b6bf7624fdd63d producing_time=1.071603ms -2026-04-20T11:02:28.576881Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=224 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7de56d7cae75e92a1a10aee7f7e0ed4f2449b8acd2ea38abad2e4cc6dcbfd5da" batch_blobs=[] proof_blobs=[] -2026-04-20T11:02:28.577192Z DEBUG StfBlueprint::apply_slot{context=Node da_height=224}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7de56d7cae75e92a1a10aee7f7e0ed4f2449b8acd2ea38abad2e4cc6dcbfd5da next_version=224 sesssion_starting_time=50.149µs -2026-04-20T11:02:28.578026Z DEBUG StfBlueprint::apply_slot{context=Node da_height=224}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c50cfabdc210783560e9326c41ef8b977062bdd074b6cfab2c7ebcdd2e0aeb017 next_version=224 time=901.694µs accesses_build_time=15.92µs finishing_session_time=793.665µs -2026-04-20T11:02:28.578097Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c76b6f94b9bbdc19be8c365b42fde5a7c419fec8897892a6d58b57e477ebb140b" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c50cfabdc210783560e9326c41ef8b977062bdd074b6cfab2c7ebcdd2e0aeb017" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:02:28.578681Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 224, latest_finalized_slot_number: 223, sync_status: Synced { synced_da_height: 223 }, .. } -2026-04-20T11:02:28.578780Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 224, latest_finalized_slot_number: 223, sync_status: Synced { synced_da_height: 223 }, .. } -2026-04-20T11:02:28.578847Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:02:28.589604Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003311818s -2026-04-20T11:02:28.589641Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:02:34.579193Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=225 prev_hash=0x2d73dceb88bdd36bbbc816fab5a1bac5115955deed26b31480b6bf7624fdd63d hash=0xc93cd870411e2cf0d8ef096534b0d9ac31ac2ee8d59c5502223d1200578ad373 producing_time=1.197942ms -2026-04-20T11:02:34.581797Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=225 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c50cfabdc210783560e9326c41ef8b977062bdd074b6cfab2c7ebcdd2e0aeb017" batch_blobs=[] proof_blobs=[] -2026-04-20T11:02:34.582126Z DEBUG StfBlueprint::apply_slot{context=Node da_height=225}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c50cfabdc210783560e9326c41ef8b977062bdd074b6cfab2c7ebcdd2e0aeb017 next_version=225 sesssion_starting_time=48.14µs -2026-04-20T11:02:34.582884Z DEBUG StfBlueprint::apply_slot{context=Node da_height=225}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c30c3d7995cbd0b0b399d8b59b04a8d7b6e633a17c035bd517d963d9090bf6340 next_version=225 time=822.345µs accesses_build_time=14.56µs finishing_session_time=725.436µs -2026-04-20T11:02:34.582949Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7de56d7cae75e92a1a10aee7f7e0ed4f2449b8acd2ea38abad2e4cc6dcbfd5da" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c30c3d7995cbd0b0b399d8b59b04a8d7b6e633a17c035bd517d963d9090bf6340" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:02:34.583425Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 225, latest_finalized_slot_number: 225, sync_status: Synced { synced_da_height: 224 }, .. } -2026-04-20T11:02:34.583507Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 225, latest_finalized_slot_number: 225, sync_status: Synced { synced_da_height: 224 }, .. } -2026-04-20T11:02:34.583569Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:02:34.595951Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00631141s -2026-04-20T11:02:34.595969Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:02:40.581312Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=226 prev_hash=0xc93cd870411e2cf0d8ef096534b0d9ac31ac2ee8d59c5502223d1200578ad373 hash=0xa0fe56f567493b55054941c289bfa22079d8b19614807a3ada86e9de107df4d1 producing_time=1.158523ms -2026-04-20T11:02:40.587113Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=226 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c30c3d7995cbd0b0b399d8b59b04a8d7b6e633a17c035bd517d963d9090bf6340" batch_blobs=[] proof_blobs=[] -2026-04-20T11:02:40.587428Z DEBUG StfBlueprint::apply_slot{context=Node da_height=226}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c30c3d7995cbd0b0b399d8b59b04a8d7b6e633a17c035bd517d963d9090bf6340 next_version=226 sesssion_starting_time=44.73µs -2026-04-20T11:02:40.588162Z DEBUG StfBlueprint::apply_slot{context=Node da_height=226}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c631b50880efef5cf5041d65c7c5fbf811cf37180903b4a2053480b69217c1a21 next_version=226 time=792.955µs accesses_build_time=13.7µs finishing_session_time=700.776µs -2026-04-20T11:02:40.588230Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c30c3d7995cbd0b0b399d8b59b04a8d7b6e633a17c035bd517d963d9090bf6340" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c631b50880efef5cf5041d65c7c5fbf811cf37180903b4a2053480b69217c1a21" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:02:40.588726Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 226, latest_finalized_slot_number: 226, sync_status: Synced { synced_da_height: 225 }, .. } -2026-04-20T11:02:40.588815Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 226, latest_finalized_slot_number: 226, sync_status: Synced { synced_da_height: 225 }, .. } -2026-04-20T11:02:40.588879Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:02:40.595999Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000030449s -2026-04-20T11:02:40.596032Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:02:46.583677Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=227 prev_hash=0xa0fe56f567493b55054941c289bfa22079d8b19614807a3ada86e9de107df4d1 hash=0x7033462318beec9b1e537c700c48f140708d1c7a748642a2a98588a7b98e9b96 producing_time=1.103553ms -2026-04-20T11:02:46.587311Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=227 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c631b50880efef5cf5041d65c7c5fbf811cf37180903b4a2053480b69217c1a21" batch_blobs=[] proof_blobs=[] -2026-04-20T11:02:46.587656Z DEBUG StfBlueprint::apply_slot{context=Node da_height=227}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c631b50880efef5cf5041d65c7c5fbf811cf37180903b4a2053480b69217c1a21 next_version=227 sesssion_starting_time=46.579µs -2026-04-20T11:02:46.588383Z DEBUG StfBlueprint::apply_slot{context=Node da_height=227}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c50c4f7e79661052574a98d8734c0aef4455ab99793faeadd534bde2999e10b0c next_version=227 time=789.555µs accesses_build_time=14.96µs finishing_session_time=693.665µs -2026-04-20T11:02:46.588446Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c631b50880efef5cf5041d65c7c5fbf811cf37180903b4a2053480b69217c1a21" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c50c4f7e79661052574a98d8734c0aef4455ab99793faeadd534bde2999e10b0c" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:02:46.588879Z DEBUG sov_stf_runner::runner: Block execution complete time=5.992848596s -2026-04-20T11:02:46.588907Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:02:46.588950Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 227, latest_finalized_slot_number: 226, sync_status: Synced { synced_da_height: 226 }, .. } -2026-04-20T11:02:46.589040Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 227, latest_finalized_slot_number: 226, sync_status: Synced { synced_da_height: 226 }, .. } -2026-04-20T11:02:46.589100Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:02:52.585589Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=228 prev_hash=0x7033462318beec9b1e537c700c48f140708d1c7a748642a2a98588a7b98e9b96 hash=0x737554a7be4f810072b6db57b500b89cd52aee543b4968e9284a40b52eb5e427 producing_time=1.085563ms -2026-04-20T11:02:52.590218Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=228 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c50c4f7e79661052574a98d8734c0aef4455ab99793faeadd534bde2999e10b0c" batch_blobs=[] proof_blobs=[] -2026-04-20T11:02:52.590553Z DEBUG StfBlueprint::apply_slot{context=Node da_height=228}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c50c4f7e79661052574a98d8734c0aef4455ab99793faeadd534bde2999e10b0c next_version=228 sesssion_starting_time=47.62µs -2026-04-20T11:02:52.591273Z DEBUG StfBlueprint::apply_slot{context=Node da_height=228}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c3395059496f4bc4deda28570c0a7072b6609828a3b9632aab9f50c3f1df5f4bf next_version=228 time=787.045µs accesses_build_time=18µs finishing_session_time=676.885µs -2026-04-20T11:02:52.591365Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c631b50880efef5cf5041d65c7c5fbf811cf37180903b4a2053480b69217c1a21" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c3395059496f4bc4deda28570c0a7072b6609828a3b9632aab9f50c3f1df5f4bf" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:02:52.591887Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 228, latest_finalized_slot_number: 227, sync_status: Syncing { synced_da_height: 227, target_da_height: 228 }, .. } -2026-04-20T11:02:52.591987Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 228, latest_finalized_slot_number: 227, sync_status: Syncing { synced_da_height: 227, target_da_height: 228 }, .. } -2026-04-20T11:02:52.592051Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:02:52.599086Z DEBUG sov_stf_runner::runner: Block execution complete time=6.010180615s -2026-04-20T11:02:52.599130Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:02:58.588305Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=229 prev_hash=0x737554a7be4f810072b6db57b500b89cd52aee543b4968e9284a40b52eb5e427 hash=0xc05365df06275df48b55a888068f5ea43091bb6a9c1c50392d3003326933a854 producing_time=1.057194ms -2026-04-20T11:02:58.589914Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=229 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c3395059496f4bc4deda28570c0a7072b6609828a3b9632aab9f50c3f1df5f4bf" batch_blobs=[] proof_blobs=[] -2026-04-20T11:02:58.590225Z DEBUG StfBlueprint::apply_slot{context=Node da_height=229}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c3395059496f4bc4deda28570c0a7072b6609828a3b9632aab9f50c3f1df5f4bf next_version=229 sesssion_starting_time=47.99µs -2026-04-20T11:02:58.591047Z DEBUG StfBlueprint::apply_slot{context=Node da_height=229}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c421dd035583ab3110b3c1bbd2f3d1afae88634b970c65c811ce066a5bf8b1be3 next_version=229 time=886.204µs accesses_build_time=15.179µs finishing_session_time=788.465µs -2026-04-20T11:02:58.591110Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c50c4f7e79661052574a98d8734c0aef4455ab99793faeadd534bde2999e10b0c" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c421dd035583ab3110b3c1bbd2f3d1afae88634b970c65c811ce066a5bf8b1be3" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:02:58.591568Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 229, latest_finalized_slot_number: 228, sync_status: Syncing { synced_da_height: 228, target_da_height: 229 }, .. } -2026-04-20T11:02:58.591651Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 229, latest_finalized_slot_number: 228, sync_status: Syncing { synced_da_height: 228, target_da_height: 229 }, .. } -2026-04-20T11:02:58.591713Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:02:58.597986Z DEBUG sov_stf_runner::runner: Block execution complete time=5.998858458s -2026-04-20T11:02:58.598020Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:03:04.590903Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=230 prev_hash=0xc05365df06275df48b55a888068f5ea43091bb6a9c1c50392d3003326933a854 hash=0x4af382e4ede2c57ab1bb184885bc3a1786f243ff7e01d9ce64115f7a818213b4 producing_time=1.055843ms -2026-04-20T11:03:04.599588Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=230 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c421dd035583ab3110b3c1bbd2f3d1afae88634b970c65c811ce066a5bf8b1be3" batch_blobs=[] proof_blobs=[] -2026-04-20T11:03:04.599909Z DEBUG StfBlueprint::apply_slot{context=Node da_height=230}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c421dd035583ab3110b3c1bbd2f3d1afae88634b970c65c811ce066a5bf8b1be3 next_version=230 sesssion_starting_time=48.629µs -2026-04-20T11:03:04.600602Z DEBUG StfBlueprint::apply_slot{context=Node da_height=230}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c6e3aa2eec82023943b9e092cba8c33b140c9a377f0aa325f0448cb35777c46b6 next_version=230 time=756.125µs accesses_build_time=14.19µs finishing_session_time=660.146µs -2026-04-20T11:03:04.600666Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c3395059496f4bc4deda28570c0a7072b6609828a3b9632aab9f50c3f1df5f4bf" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c6e3aa2eec82023943b9e092cba8c33b140c9a377f0aa325f0448cb35777c46b6" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:03:04.601148Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 230, latest_finalized_slot_number: 229, sync_status: Syncing { synced_da_height: 229, target_da_height: 230 }, .. } -2026-04-20T11:03:04.601240Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 230, latest_finalized_slot_number: 229, sync_status: Syncing { synced_da_height: 229, target_da_height: 230 }, .. } -2026-04-20T11:03:04.601301Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:03:04.607865Z DEBUG sov_stf_runner::runner: Block execution complete time=6.009846347s -2026-04-20T11:03:04.607902Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:03:10.593300Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=231 prev_hash=0x4af382e4ede2c57ab1bb184885bc3a1786f243ff7e01d9ce64115f7a818213b4 hash=0xb0d46427ac95fb57365c65cbcc6690f961275f17df000a4fe0ebf8309b4fdde9 producing_time=1.235922ms -2026-04-20T11:03:10.599068Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=231 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c6e3aa2eec82023943b9e092cba8c33b140c9a377f0aa325f0448cb35777c46b6" batch_blobs=[] proof_blobs=[] -2026-04-20T11:03:10.599403Z DEBUG StfBlueprint::apply_slot{context=Node da_height=231}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c6e3aa2eec82023943b9e092cba8c33b140c9a377f0aa325f0448cb35777c46b6 next_version=231 sesssion_starting_time=45.31µs -2026-04-20T11:03:10.600224Z DEBUG StfBlueprint::apply_slot{context=Node da_height=231}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c2d83c455f060f161cf383cb0a8112aa94371de2d0ae303124e7142888f6fba99 next_version=231 time=881.715µs accesses_build_time=14.9µs finishing_session_time=785.635µs -2026-04-20T11:03:10.600288Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c421dd035583ab3110b3c1bbd2f3d1afae88634b970c65c811ce066a5bf8b1be3" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c2d83c455f060f161cf383cb0a8112aa94371de2d0ae303124e7142888f6fba99" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:03:10.600840Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 231, latest_finalized_slot_number: 230, sync_status: Synced { synced_da_height: 230 }, .. } -2026-04-20T11:03:10.600937Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 231, latest_finalized_slot_number: 230, sync_status: Synced { synced_da_height: 230 }, .. } -2026-04-20T11:03:10.600998Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:03:10.607814Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999914701s -2026-04-20T11:03:10.607852Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:03:16.595183Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=232 prev_hash=0xb0d46427ac95fb57365c65cbcc6690f961275f17df000a4fe0ebf8309b4fdde9 hash=0x9dcb548832bdaa03c4566ee7de147e2767bf90c7065d3acffe5357ee62c1c198 producing_time=1.122023ms -2026-04-20T11:03:16.599731Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=232 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c2d83c455f060f161cf383cb0a8112aa94371de2d0ae303124e7142888f6fba99" batch_blobs=[] proof_blobs=[] -2026-04-20T11:03:16.600026Z DEBUG StfBlueprint::apply_slot{context=Node da_height=232}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c2d83c455f060f161cf383cb0a8112aa94371de2d0ae303124e7142888f6fba99 next_version=232 sesssion_starting_time=44.63µs -2026-04-20T11:03:16.600745Z DEBUG StfBlueprint::apply_slot{context=Node da_height=232}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c3f7c37713d8652fe03b3cf4fd836114d4a88bc38b8e2a33100740e124fbf39a6 next_version=232 time=779.295µs accesses_build_time=14.33µs finishing_session_time=691.325µs -2026-04-20T11:03:16.600806Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c6e3aa2eec82023943b9e092cba8c33b140c9a377f0aa325f0448cb35777c46b6" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c3f7c37713d8652fe03b3cf4fd836114d4a88bc38b8e2a33100740e124fbf39a6" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:03:16.601249Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 232, latest_finalized_slot_number: 231, sync_status: Synced { synced_da_height: 231 }, .. } -2026-04-20T11:03:16.601367Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 232, latest_finalized_slot_number: 231, sync_status: Synced { synced_da_height: 231 }, .. } -2026-04-20T11:03:16.601450Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:03:16.608147Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000297218s -2026-04-20T11:03:16.608180Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:03:22.596910Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=233 prev_hash=0x9dcb548832bdaa03c4566ee7de147e2767bf90c7065d3acffe5357ee62c1c198 hash=0xe54d6ceccec39f79e6a9746779d2f7194318100ac7ef3b3974d2bf7a638fa446 producing_time=1.160722ms -2026-04-20T11:03:22.599565Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=233 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c3f7c37713d8652fe03b3cf4fd836114d4a88bc38b8e2a33100740e124fbf39a6" batch_blobs=[] proof_blobs=[] -2026-04-20T11:03:22.599911Z DEBUG StfBlueprint::apply_slot{context=Node da_height=233}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c3f7c37713d8652fe03b3cf4fd836114d4a88bc38b8e2a33100740e124fbf39a6 next_version=233 sesssion_starting_time=44.76µs -2026-04-20T11:03:22.600689Z DEBUG StfBlueprint::apply_slot{context=Node da_height=233}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0f4cfd854b342cb1f311ec3449b2c9f80dd2f45e1dde03ed38eaad55c2eceeb0 next_version=233 time=838.824µs accesses_build_time=14.789µs finishing_session_time=742.945µs -2026-04-20T11:03:22.600769Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c2d83c455f060f161cf383cb0a8112aa94371de2d0ae303124e7142888f6fba99" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0f4cfd854b342cb1f311ec3449b2c9f80dd2f45e1dde03ed38eaad55c2eceeb0" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:03:22.601274Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 233, latest_finalized_slot_number: 232, sync_status: Synced { synced_da_height: 232 }, .. } -2026-04-20T11:03:22.601376Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 233, latest_finalized_slot_number: 232, sync_status: Synced { synced_da_height: 232 }, .. } -2026-04-20T11:03:22.601443Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:03:22.607935Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999756102s -2026-04-20T11:03:22.607969Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:03:28.598662Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=234 prev_hash=0xe54d6ceccec39f79e6a9746779d2f7194318100ac7ef3b3974d2bf7a638fa446 hash=0xea706272fcadc4f66b74151760f46bb7c2716314aee44726bf2c67239822158a producing_time=1.039493ms -2026-04-20T11:03:28.599160Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=234 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0f4cfd854b342cb1f311ec3449b2c9f80dd2f45e1dde03ed38eaad55c2eceeb0" batch_blobs=[] proof_blobs=[] -2026-04-20T11:03:28.599470Z DEBUG StfBlueprint::apply_slot{context=Node da_height=234}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0f4cfd854b342cb1f311ec3449b2c9f80dd2f45e1dde03ed38eaad55c2eceeb0 next_version=234 sesssion_starting_time=45.2µs -2026-04-20T11:03:28.600259Z DEBUG StfBlueprint::apply_slot{context=Node da_height=234}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c51abf4e4110782e5cd6a829f3e3693a81aed2d4d6d60c556f8d085e0f74eced0 next_version=234 time=849.634µs accesses_build_time=14.62µs finishing_session_time=756.095µs -2026-04-20T11:03:28.600326Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c3f7c37713d8652fe03b3cf4fd836114d4a88bc38b8e2a33100740e124fbf39a6" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c51abf4e4110782e5cd6a829f3e3693a81aed2d4d6d60c556f8d085e0f74eced0" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:03:28.600781Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 234, latest_finalized_slot_number: 233, sync_status: Synced { synced_da_height: 233 }, .. } -2026-04-20T11:03:28.600864Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 234, latest_finalized_slot_number: 233, sync_status: Synced { synced_da_height: 233 }, .. } -2026-04-20T11:03:28.600921Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:03:28.610650Z DEBUG sov_stf_runner::runner: Block execution complete time=6.002682474s -2026-04-20T11:03:28.610684Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:03:34.601305Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=235 prev_hash=0xea706272fcadc4f66b74151760f46bb7c2716314aee44726bf2c67239822158a hash=0x8bba348b5996d95062b2cbc84de709230bde4af39929f48d2ac69b9b5a2427a2 producing_time=1.191353ms -2026-04-20T11:03:34.601909Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=235 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c51abf4e4110782e5cd6a829f3e3693a81aed2d4d6d60c556f8d085e0f74eced0" batch_blobs=[] proof_blobs=[] -2026-04-20T11:03:34.602248Z DEBUG StfBlueprint::apply_slot{context=Node da_height=235}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c51abf4e4110782e5cd6a829f3e3693a81aed2d4d6d60c556f8d085e0f74eced0 next_version=235 sesssion_starting_time=47.8µs -2026-04-20T11:03:34.603003Z DEBUG StfBlueprint::apply_slot{context=Node da_height=235}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0b4a4e74189cb7642c66d83f1d4bc73cd481c501734659f262450fb29cc16b56 next_version=235 time=818.755µs accesses_build_time=14.39µs finishing_session_time=720.986µs -2026-04-20T11:03:34.603074Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0f4cfd854b342cb1f311ec3449b2c9f80dd2f45e1dde03ed38eaad55c2eceeb0" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0b4a4e74189cb7642c66d83f1d4bc73cd481c501734659f262450fb29cc16b56" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:03:34.603578Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 235, latest_finalized_slot_number: 234, sync_status: Synced { synced_da_height: 234 }, .. } -2026-04-20T11:03:34.603682Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 235, latest_finalized_slot_number: 234, sync_status: Synced { synced_da_height: 234 }, .. } -2026-04-20T11:03:34.603745Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:03:34.610175Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999491954s -2026-04-20T11:03:34.610213Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:03:40.603032Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=236 prev_hash=0x8bba348b5996d95062b2cbc84de709230bde4af39929f48d2ac69b9b5a2427a2 hash=0x8ac9c6bc9de93cc4830f12747949a432ccb8c62aaa1b47a1d8d091508c0b659c producing_time=1.136713ms -2026-04-20T11:03:40.611817Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=236 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0b4a4e74189cb7642c66d83f1d4bc73cd481c501734659f262450fb29cc16b56" batch_blobs=[] proof_blobs=[] -2026-04-20T11:03:40.612142Z DEBUG StfBlueprint::apply_slot{context=Node da_height=236}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0b4a4e74189cb7642c66d83f1d4bc73cd481c501734659f262450fb29cc16b56 next_version=236 sesssion_starting_time=44.75µs -2026-04-20T11:03:40.612924Z DEBUG StfBlueprint::apply_slot{context=Node da_height=236}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7e6cba900a6379dbd42cba83817cfe0d834bafb89f3a46016bfc29c4bd4258ec next_version=236 time=842.635µs accesses_build_time=14.46µs finishing_session_time=748.555µs -2026-04-20T11:03:40.613006Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c51abf4e4110782e5cd6a829f3e3693a81aed2d4d6d60c556f8d085e0f74eced0" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7e6cba900a6379dbd42cba83817cfe0d834bafb89f3a46016bfc29c4bd4258ec" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:03:40.613542Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 236, latest_finalized_slot_number: 235, sync_status: Synced { synced_da_height: 235 }, .. } -2026-04-20T11:03:40.613631Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 236, latest_finalized_slot_number: 235, sync_status: Synced { synced_da_height: 235 }, .. } -2026-04-20T11:03:40.613702Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:03:40.620344Z DEBUG sov_stf_runner::runner: Block execution complete time=6.010132155s -2026-04-20T11:03:40.620393Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:03:46.605286Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=237 prev_hash=0x8ac9c6bc9de93cc4830f12747949a432ccb8c62aaa1b47a1d8d091508c0b659c hash=0xa4a4fe09773ba55703897005630bb5829793f1101d3e36e880b93f4aaf23f093 producing_time=1.191832ms -2026-04-20T11:03:46.612048Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=237 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7e6cba900a6379dbd42cba83817cfe0d834bafb89f3a46016bfc29c4bd4258ec" batch_blobs=[] proof_blobs=[] -2026-04-20T11:03:46.612409Z DEBUG StfBlueprint::apply_slot{context=Node da_height=237}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7e6cba900a6379dbd42cba83817cfe0d834bafb89f3a46016bfc29c4bd4258ec next_version=237 sesssion_starting_time=48.239µs -2026-04-20T11:03:46.613167Z DEBUG StfBlueprint::apply_slot{context=Node da_height=237}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c75a1b832dfa7745a817ce2c4e4cb95977c0dcfa33581c314e76069746ae686da next_version=237 time=822.554µs accesses_build_time=15.26µs finishing_session_time=719.315µs -2026-04-20T11:03:46.613242Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0b4a4e74189cb7642c66d83f1d4bc73cd481c501734659f262450fb29cc16b56" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c75a1b832dfa7745a817ce2c4e4cb95977c0dcfa33581c314e76069746ae686da" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:03:46.613770Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 237, latest_finalized_slot_number: 236, sync_status: Synced { synced_da_height: 236 }, .. } -2026-04-20T11:03:46.613859Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 237, latest_finalized_slot_number: 236, sync_status: Synced { synced_da_height: 236 }, .. } -2026-04-20T11:03:46.613922Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:03:46.624710Z DEBUG sov_stf_runner::runner: Block execution complete time=6.004320983s -2026-04-20T11:03:46.624743Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:03:52.607428Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=238 prev_hash=0xa4a4fe09773ba55703897005630bb5829793f1101d3e36e880b93f4aaf23f093 hash=0x38787400c8128a3dc1651336727a5f76794ead05c24573dde35037dec0a637fb producing_time=1.092342ms -2026-04-20T11:03:52.616001Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=238 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c75a1b832dfa7745a817ce2c4e4cb95977c0dcfa33581c314e76069746ae686da" batch_blobs=[] proof_blobs=[] -2026-04-20T11:03:52.616308Z DEBUG StfBlueprint::apply_slot{context=Node da_height=238}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c75a1b832dfa7745a817ce2c4e4cb95977c0dcfa33581c314e76069746ae686da next_version=238 sesssion_starting_time=45.589µs -2026-04-20T11:03:52.616949Z DEBUG StfBlueprint::apply_slot{context=Node da_height=238}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0f80d774d6df1b7c78a123fe121702e6e72d338022194e950a5cb75702b93973 next_version=238 time=700.335µs accesses_build_time=13.89µs finishing_session_time=587.506µs -2026-04-20T11:03:52.617030Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7e6cba900a6379dbd42cba83817cfe0d834bafb89f3a46016bfc29c4bd4258ec" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0f80d774d6df1b7c78a123fe121702e6e72d338022194e950a5cb75702b93973" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:03:52.617409Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 238, latest_finalized_slot_number: 237, sync_status: Synced { synced_da_height: 237 }, .. } -2026-04-20T11:03:52.617452Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 238, latest_finalized_slot_number: 237, sync_status: Synced { synced_da_height: 237 }, .. } -2026-04-20T11:03:52.617513Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:03:52.624051Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999308475s -2026-04-20T11:03:52.624078Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:03:58.609951Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=239 prev_hash=0x38787400c8128a3dc1651336727a5f76794ead05c24573dde35037dec0a637fb hash=0x541b06f25d098a05ca242d8feb4764c8a425beef24ae28da42a3242d2a81f83c producing_time=1.139183ms -2026-04-20T11:03:58.615500Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=239 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0f80d774d6df1b7c78a123fe121702e6e72d338022194e950a5cb75702b93973" batch_blobs=[] proof_blobs=[] -2026-04-20T11:03:58.615804Z DEBUG StfBlueprint::apply_slot{context=Node da_height=239}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0f80d774d6df1b7c78a123fe121702e6e72d338022194e950a5cb75702b93973 next_version=239 sesssion_starting_time=48.26µs -2026-04-20T11:03:58.616567Z DEBUG StfBlueprint::apply_slot{context=Node da_height=239}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7290c7e7ea8feccdef55d8c9553559b9b36cccbfcd9a82ad0a0d7877249b7253 next_version=239 time=827.185µs accesses_build_time=14.56µs finishing_session_time=733.986µs -2026-04-20T11:03:58.616631Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c75a1b832dfa7745a817ce2c4e4cb95977c0dcfa33581c314e76069746ae686da" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7290c7e7ea8feccdef55d8c9553559b9b36cccbfcd9a82ad0a0d7877249b7253" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:03:58.617105Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 239, latest_finalized_slot_number: 238, sync_status: Synced { synced_da_height: 238 }, .. } -2026-04-20T11:03:58.617199Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 239, latest_finalized_slot_number: 238, sync_status: Synced { synced_da_height: 238 }, .. } -2026-04-20T11:03:58.617261Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:03:58.623961Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999885272s -2026-04-20T11:03:58.623987Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:04:04.612486Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=240 prev_hash=0x541b06f25d098a05ca242d8feb4764c8a425beef24ae28da42a3242d2a81f83c hash=0x3faf6d8dd86efb53e4a58dc10aeca56420d01a9d7ce3c457097fccfb60089dcd producing_time=1.135352ms -2026-04-20T11:04:04.615160Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=240 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7290c7e7ea8feccdef55d8c9553559b9b36cccbfcd9a82ad0a0d7877249b7253" batch_blobs=[] proof_blobs=[] -2026-04-20T11:04:04.615515Z DEBUG StfBlueprint::apply_slot{context=Node da_height=240}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7290c7e7ea8feccdef55d8c9553559b9b36cccbfcd9a82ad0a0d7877249b7253 next_version=240 sesssion_starting_time=50.76µs -2026-04-20T11:04:04.616221Z DEBUG StfBlueprint::apply_slot{context=Node da_height=240}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c529ef9c8cdc015cbb1be6efe8c1671929da413f35c1246cb5dcf6bed76218d21 next_version=240 time=774.395µs accesses_build_time=16.46µs finishing_session_time=662.885µs -2026-04-20T11:04:04.616286Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0f80d774d6df1b7c78a123fe121702e6e72d338022194e950a5cb75702b93973" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c529ef9c8cdc015cbb1be6efe8c1671929da413f35c1246cb5dcf6bed76218d21" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:04:04.616782Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 240, latest_finalized_slot_number: 239, sync_status: Synced { synced_da_height: 239 }, .. } -2026-04-20T11:04:04.616874Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 240, latest_finalized_slot_number: 239, sync_status: Synced { synced_da_height: 239 }, .. } -2026-04-20T11:04:04.616934Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:04:04.624101Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000115981s -2026-04-20T11:04:04.624132Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:04:10.615143Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=241 prev_hash=0x3faf6d8dd86efb53e4a58dc10aeca56420d01a9d7ce3c457097fccfb60089dcd hash=0x2f2e39d21ded12755ee901190ea68fba3c2aa6594ca29eb5effc2a3b2781bd4a producing_time=1.238752ms -2026-04-20T11:04:10.625913Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=241 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c529ef9c8cdc015cbb1be6efe8c1671929da413f35c1246cb5dcf6bed76218d21" batch_blobs=[] proof_blobs=[] -2026-04-20T11:04:10.626213Z DEBUG StfBlueprint::apply_slot{context=Node da_height=241}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c529ef9c8cdc015cbb1be6efe8c1671929da413f35c1246cb5dcf6bed76218d21 next_version=241 sesssion_starting_time=43.189µs -2026-04-20T11:04:10.626924Z DEBUG StfBlueprint::apply_slot{context=Node da_height=241}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c03f6229a2c1d957169d17c59b48ccbd573ee984fa0162729021c54ebfcc63e7f next_version=241 time=769.485µs accesses_build_time=13.82µs finishing_session_time=681.566µs -2026-04-20T11:04:10.626988Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7290c7e7ea8feccdef55d8c9553559b9b36cccbfcd9a82ad0a0d7877249b7253" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c03f6229a2c1d957169d17c59b48ccbd573ee984fa0162729021c54ebfcc63e7f" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:04:10.627511Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 241, latest_finalized_slot_number: 240, sync_status: Synced { synced_da_height: 240 }, .. } -2026-04-20T11:04:10.627603Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 241, latest_finalized_slot_number: 240, sync_status: Synced { synced_da_height: 240 }, .. } -2026-04-20T11:04:10.627661Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:04:10.633921Z DEBUG sov_stf_runner::runner: Block execution complete time=6.009790818s -2026-04-20T11:04:10.633948Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:04:16.617492Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=242 prev_hash=0x2f2e39d21ded12755ee901190ea68fba3c2aa6594ca29eb5effc2a3b2781bd4a hash=0x2b51a0b83c8d72b239a156c6c17e98e0b28b4af15cba774b455004fb34b05e18 producing_time=1.165912ms -2026-04-20T11:04:16.625217Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=242 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c03f6229a2c1d957169d17c59b48ccbd573ee984fa0162729021c54ebfcc63e7f" batch_blobs=[] proof_blobs=[] -2026-04-20T11:04:16.625553Z DEBUG StfBlueprint::apply_slot{context=Node da_height=242}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c03f6229a2c1d957169d17c59b48ccbd573ee984fa0162729021c54ebfcc63e7f next_version=242 sesssion_starting_time=47.65µs -2026-04-20T11:04:16.626378Z DEBUG StfBlueprint::apply_slot{context=Node da_height=242}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c016bb9186690bb5d7c0c20484195f0ce9cca70d53ec4d27ff8dc88ed53afd16c next_version=242 time=888.514µs accesses_build_time=15.04µs finishing_session_time=790.575µs -2026-04-20T11:04:16.626440Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c529ef9c8cdc015cbb1be6efe8c1671929da413f35c1246cb5dcf6bed76218d21" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c016bb9186690bb5d7c0c20484195f0ce9cca70d53ec4d27ff8dc88ed53afd16c" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:04:16.626922Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 242, latest_finalized_slot_number: 241, sync_status: Synced { synced_da_height: 241 }, .. } -2026-04-20T11:04:16.627014Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 242, latest_finalized_slot_number: 241, sync_status: Synced { synced_da_height: 241 }, .. } -2026-04-20T11:04:16.627085Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:04:16.634204Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000257399s -2026-04-20T11:04:16.634230Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:04:22.620216Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=243 prev_hash=0x2b51a0b83c8d72b239a156c6c17e98e0b28b4af15cba774b455004fb34b05e18 hash=0x7fbf5076a24dcf7fe7bf0a8ab15072531cc287af92bc8f628cd2a53115750706 producing_time=1.214712ms -2026-04-20T11:04:22.625949Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=243 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c016bb9186690bb5d7c0c20484195f0ce9cca70d53ec4d27ff8dc88ed53afd16c" batch_blobs=[] proof_blobs=[] -2026-04-20T11:04:22.626277Z DEBUG StfBlueprint::apply_slot{context=Node da_height=243}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c016bb9186690bb5d7c0c20484195f0ce9cca70d53ec4d27ff8dc88ed53afd16c next_version=243 sesssion_starting_time=51.63µs -2026-04-20T11:04:22.627069Z DEBUG StfBlueprint::apply_slot{context=Node da_height=243}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c3c9d7ff0057ef619962ec2d9b0398e07a065d52053cf572bddf383b71291c8c0 next_version=243 time=860.224µs accesses_build_time=15.14µs finishing_session_time=760.815µs -2026-04-20T11:04:22.627135Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c03f6229a2c1d957169d17c59b48ccbd573ee984fa0162729021c54ebfcc63e7f" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c3c9d7ff0057ef619962ec2d9b0398e07a065d52053cf572bddf383b71291c8c0" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:04:22.627673Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 243, latest_finalized_slot_number: 242, sync_status: Synced { synced_da_height: 242 }, .. } -2026-04-20T11:04:22.627758Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 243, latest_finalized_slot_number: 242, sync_status: Synced { synced_da_height: 242 }, .. } -2026-04-20T11:04:22.627827Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:04:22.634025Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999796513s -2026-04-20T11:04:22.634050Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:04:28.622065Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=244 prev_hash=0x7fbf5076a24dcf7fe7bf0a8ab15072531cc287af92bc8f628cd2a53115750706 hash=0x8a06c7a453ea924d696932d97ba2045a2c3b1c3af71a1feb9faab5175ca0e169 producing_time=1.195633ms -2026-04-20T11:04:28.625702Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=244 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c3c9d7ff0057ef619962ec2d9b0398e07a065d52053cf572bddf383b71291c8c0" batch_blobs=[] proof_blobs=[] -2026-04-20T11:04:28.626018Z DEBUG StfBlueprint::apply_slot{context=Node da_height=244}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c3c9d7ff0057ef619962ec2d9b0398e07a065d52053cf572bddf383b71291c8c0 next_version=244 sesssion_starting_time=47.439µs -2026-04-20T11:04:28.626766Z DEBUG StfBlueprint::apply_slot{context=Node da_height=244}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c4133b19f48e44490eec6a99ae926bb667e50f0209a9607fb3410c49a7c99fe7f next_version=244 time=811.045µs accesses_build_time=14.47µs finishing_session_time=717.665µs -2026-04-20T11:04:28.626830Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c016bb9186690bb5d7c0c20484195f0ce9cca70d53ec4d27ff8dc88ed53afd16c" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c4133b19f48e44490eec6a99ae926bb667e50f0209a9607fb3410c49a7c99fe7f" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:04:28.627301Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 244, latest_finalized_slot_number: 243, sync_status: Synced { synced_da_height: 243 }, .. } -2026-04-20T11:04:28.627434Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 244, latest_finalized_slot_number: 243, sync_status: Synced { synced_da_height: 243 }, .. } -2026-04-20T11:04:28.627500Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:04:28.634118Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000069631s -2026-04-20T11:04:28.634145Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:04:34.624338Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=245 prev_hash=0x8a06c7a453ea924d696932d97ba2045a2c3b1c3af71a1feb9faab5175ca0e169 hash=0x16700ec6def4194abf0525e61fe72c9eaac697c1a72268fa5cc925784ec17692 producing_time=1.188342ms -2026-04-20T11:04:34.624851Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=245 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c4133b19f48e44490eec6a99ae926bb667e50f0209a9607fb3410c49a7c99fe7f" batch_blobs=[] proof_blobs=[] -2026-04-20T11:04:34.625169Z DEBUG StfBlueprint::apply_slot{context=Node da_height=245}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c4133b19f48e44490eec6a99ae926bb667e50f0209a9607fb3410c49a7c99fe7f next_version=245 sesssion_starting_time=48.22µs -2026-04-20T11:04:34.625957Z DEBUG StfBlueprint::apply_slot{context=Node da_height=245}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c42ce5badec9efb2a2952cd401574a687e3ff7ff3e71966146da920cba2936561 next_version=245 time=851.615µs accesses_build_time=13.96µs finishing_session_time=756.246µs -2026-04-20T11:04:34.626018Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c3c9d7ff0057ef619962ec2d9b0398e07a065d52053cf572bddf383b71291c8c0" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c42ce5badec9efb2a2952cd401574a687e3ff7ff3e71966146da920cba2936561" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:04:34.626542Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 245, latest_finalized_slot_number: 244, sync_status: Synced { synced_da_height: 244 }, .. } -2026-04-20T11:04:34.626622Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 245, latest_finalized_slot_number: 244, sync_status: Synced { synced_da_height: 244 }, .. } -2026-04-20T11:04:34.626693Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:04:34.632791Z DEBUG sov_stf_runner::runner: Block execution complete time=5.998646701s -2026-04-20T11:04:34.632816Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:04:40.626331Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=246 prev_hash=0x16700ec6def4194abf0525e61fe72c9eaac697c1a72268fa5cc925784ec17692 hash=0xbc8bff08c61fbf5c7ceb98876825a99f964549710ceab67739c4d00ccff9ea5b producing_time=708.285µs -2026-04-20T11:04:40.633886Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=246 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c42ce5badec9efb2a2952cd401574a687e3ff7ff3e71966146da920cba2936561" batch_blobs=[] proof_blobs=[] -2026-04-20T11:04:40.634061Z DEBUG StfBlueprint::apply_slot{context=Node da_height=246}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c42ce5badec9efb2a2952cd401574a687e3ff7ff3e71966146da920cba2936561 next_version=246 sesssion_starting_time=24.41µs -2026-04-20T11:04:40.634450Z DEBUG StfBlueprint::apply_slot{context=Node da_height=246}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c5de846055d8a37334282239efdfab48476b547067fa3f69f03f6958a3e48e8d7 next_version=246 time=421.538µs accesses_build_time=8.24µs finishing_session_time=374.878µs -2026-04-20T11:04:40.634483Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c4133b19f48e44490eec6a99ae926bb667e50f0209a9607fb3410c49a7c99fe7f" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c5de846055d8a37334282239efdfab48476b547067fa3f69f03f6958a3e48e8d7" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:04:40.634757Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 246, latest_finalized_slot_number: 246, sync_status: Synced { synced_da_height: 245 }, .. } -2026-04-20T11:04:40.634821Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 246, latest_finalized_slot_number: 246, sync_status: Synced { synced_da_height: 245 }, .. } -2026-04-20T11:04:40.634925Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:04:40.649672Z DEBUG sov_stf_runner::runner: Block execution complete time=6.016857094s -2026-04-20T11:04:40.649687Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:04:46.627705Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=247 prev_hash=0xbc8bff08c61fbf5c7ceb98876825a99f964549710ceab67739c4d00ccff9ea5b hash=0x75a4c06152d624e541fc65c248a96766d53699fb4831579923779ef807d66972 producing_time=1.083103ms -2026-04-20T11:04:46.631306Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=247 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c5de846055d8a37334282239efdfab48476b547067fa3f69f03f6958a3e48e8d7" batch_blobs=[] proof_blobs=[] -2026-04-20T11:04:46.631622Z DEBUG StfBlueprint::apply_slot{context=Node da_height=247}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c5de846055d8a37334282239efdfab48476b547067fa3f69f03f6958a3e48e8d7 next_version=247 sesssion_starting_time=44.61µs -2026-04-20T11:04:46.632465Z DEBUG StfBlueprint::apply_slot{context=Node da_height=247}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c5bb68ab741c0147fc031b38693b8f9dbd8ceec3200c87800325488c615b8f1ef next_version=247 time=901.595µs accesses_build_time=13.28µs finishing_session_time=812.004µs -2026-04-20T11:04:46.632525Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c5de846055d8a37334282239efdfab48476b547067fa3f69f03f6958a3e48e8d7" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c5bb68ab741c0147fc031b38693b8f9dbd8ceec3200c87800325488c615b8f1ef" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:04:46.632946Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 247, latest_finalized_slot_number: 247, sync_status: Synced { synced_da_height: 246 }, .. } -2026-04-20T11:04:46.633023Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 247, latest_finalized_slot_number: 247, sync_status: Synced { synced_da_height: 246 }, .. } -2026-04-20T11:04:46.633082Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:04:46.639842Z DEBUG sov_stf_runner::runner: Block execution complete time=5.990155575s -2026-04-20T11:04:46.639867Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:04:52.630374Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=248 prev_hash=0x75a4c06152d624e541fc65c248a96766d53699fb4831579923779ef807d66972 hash=0x12f78a6ebc2ba33367a55ea87a6fba058aed4fe3e62ed953628a1493e8605d79 producing_time=983.394µs -2026-04-20T11:04:52.630892Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=248 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c5bb68ab741c0147fc031b38693b8f9dbd8ceec3200c87800325488c615b8f1ef" batch_blobs=[] proof_blobs=[] -2026-04-20T11:04:52.631186Z DEBUG StfBlueprint::apply_slot{context=Node da_height=248}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c5bb68ab741c0147fc031b38693b8f9dbd8ceec3200c87800325488c615b8f1ef next_version=248 sesssion_starting_time=42.46µs -2026-04-20T11:04:52.632013Z DEBUG StfBlueprint::apply_slot{context=Node da_height=248}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c47a3ea5dee9aa2abade1a137a93ec9e4dbc8f9622e17e585faf3d5528dd33917 next_version=248 time=885.644µs accesses_build_time=14.45µs finishing_session_time=798.306µs -2026-04-20T11:04:52.632078Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c5bb68ab741c0147fc031b38693b8f9dbd8ceec3200c87800325488c615b8f1ef" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c47a3ea5dee9aa2abade1a137a93ec9e4dbc8f9622e17e585faf3d5528dd33917" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:04:52.632525Z DEBUG sov_stf_runner::runner: Block execution complete time=5.992659109s -2026-04-20T11:04:52.632558Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:04:52.632607Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 248, latest_finalized_slot_number: 247, sync_status: Synced { synced_da_height: 247 }, .. } -2026-04-20T11:04:52.632695Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 248, latest_finalized_slot_number: 247, sync_status: Synced { synced_da_height: 247 }, .. } -2026-04-20T11:04:52.632756Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:04:58.633391Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=249 prev_hash=0x12f78a6ebc2ba33367a55ea87a6fba058aed4fe3e62ed953628a1493e8605d79 hash=0x48c8f4a907a1247989836ac9d092c43b30b477a3bce9e31b9973d5fe29444234 producing_time=1.138813ms -2026-04-20T11:04:58.633914Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=249 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c47a3ea5dee9aa2abade1a137a93ec9e4dbc8f9622e17e585faf3d5528dd33917" batch_blobs=[] proof_blobs=[] -2026-04-20T11:04:58.634218Z DEBUG StfBlueprint::apply_slot{context=Node da_height=249}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c47a3ea5dee9aa2abade1a137a93ec9e4dbc8f9622e17e585faf3d5528dd33917 next_version=249 sesssion_starting_time=47.719µs -2026-04-20T11:04:58.635139Z DEBUG StfBlueprint::apply_slot{context=Node da_height=249}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c412cbf6f7ac53d031e5705d366a5fadd166ce91d9d218d0c909afeeb45b74e4d next_version=249 time=982.703µs accesses_build_time=14.35µs finishing_session_time=881.035µs -2026-04-20T11:04:58.635275Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c5bb68ab741c0147fc031b38693b8f9dbd8ceec3200c87800325488c615b8f1ef" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c412cbf6f7ac53d031e5705d366a5fadd166ce91d9d218d0c909afeeb45b74e4d" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:04:58.635882Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 249, latest_finalized_slot_number: 248, sync_status: Synced { synced_da_height: 248 }, .. } -2026-04-20T11:04:58.635974Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 249, latest_finalized_slot_number: 248, sync_status: Synced { synced_da_height: 248 }, .. } -2026-04-20T11:04:58.636047Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:04:58.643221Z DEBUG sov_stf_runner::runner: Block execution complete time=6.010665403s -2026-04-20T11:04:58.643250Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:05:04.635794Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=250 prev_hash=0x48c8f4a907a1247989836ac9d092c43b30b477a3bce9e31b9973d5fe29444234 hash=0x4d128e594de8d8bd652ba3e1500c614fc1cd3cbe20a306bd687254590663e591 producing_time=1.068313ms -2026-04-20T11:05:04.644453Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=250 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c412cbf6f7ac53d031e5705d366a5fadd166ce91d9d218d0c909afeeb45b74e4d" batch_blobs=[] proof_blobs=[] -2026-04-20T11:05:04.644765Z DEBUG StfBlueprint::apply_slot{context=Node da_height=250}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c412cbf6f7ac53d031e5705d366a5fadd166ce91d9d218d0c909afeeb45b74e4d next_version=250 sesssion_starting_time=51.41µs -2026-04-20T11:05:04.645618Z DEBUG StfBlueprint::apply_slot{context=Node da_height=250}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7033fd730a2c9e62caae43af3add106c34148de5c9ffe022e2e75feebf70724f next_version=250 time=919.124µs accesses_build_time=13.94µs finishing_session_time=824.155µs -2026-04-20T11:05:04.645679Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c47a3ea5dee9aa2abade1a137a93ec9e4dbc8f9622e17e585faf3d5528dd33917" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7033fd730a2c9e62caae43af3add106c34148de5c9ffe022e2e75feebf70724f" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:05:04.646233Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 250, latest_finalized_slot_number: 249, sync_status: Syncing { synced_da_height: 249, target_da_height: 250 }, .. } -2026-04-20T11:05:04.646312Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 250, latest_finalized_slot_number: 249, sync_status: Syncing { synced_da_height: 249, target_da_height: 250 }, .. } -2026-04-20T11:05:04.646394Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:05:04.653137Z DEBUG sov_stf_runner::runner: Block execution complete time=6.009889029s -2026-04-20T11:05:04.653165Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:05:10.637543Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=251 prev_hash=0x4d128e594de8d8bd652ba3e1500c614fc1cd3cbe20a306bd687254590663e591 hash=0x95b921dafcf4706e1a679b0ce6905992a73b8b855019cf6fb46413e82b6395ce producing_time=1.033573ms -2026-04-20T11:05:10.644432Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=251 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7033fd730a2c9e62caae43af3add106c34148de5c9ffe022e2e75feebf70724f" batch_blobs=[] proof_blobs=[] -2026-04-20T11:05:10.644756Z DEBUG StfBlueprint::apply_slot{context=Node da_height=251}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7033fd730a2c9e62caae43af3add106c34148de5c9ffe022e2e75feebf70724f next_version=251 sesssion_starting_time=46.34µs -2026-04-20T11:05:10.645573Z DEBUG StfBlueprint::apply_slot{context=Node da_height=251}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c5f98002c8919e61f8f20599a9e6ba83c46dec24ce8a090ca521b0ca31f1a8c52 next_version=251 time=877.465µs accesses_build_time=13.69µs finishing_session_time=785.705µs -2026-04-20T11:05:10.645647Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c412cbf6f7ac53d031e5705d366a5fadd166ce91d9d218d0c909afeeb45b74e4d" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c5f98002c8919e61f8f20599a9e6ba83c46dec24ce8a090ca521b0ca31f1a8c52" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:05:10.646150Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 251, latest_finalized_slot_number: 250, sync_status: Syncing { synced_da_height: 250, target_da_height: 251 }, .. } -2026-04-20T11:05:10.646229Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 251, latest_finalized_slot_number: 250, sync_status: Syncing { synced_da_height: 250, target_da_height: 251 }, .. } -2026-04-20T11:05:10.646288Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:05:10.653125Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999962283s -2026-04-20T11:05:10.653151Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:05:16.640556Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=252 prev_hash=0x95b921dafcf4706e1a679b0ce6905992a73b8b855019cf6fb46413e82b6395ce hash=0xfc42b3770aa7a865914d64b3fe82c5f0211ba4ed003b51d691cdf1a71c85cb6d producing_time=1.097073ms -2026-04-20T11:05:16.644267Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=252 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c5f98002c8919e61f8f20599a9e6ba83c46dec24ce8a090ca521b0ca31f1a8c52" batch_blobs=[] proof_blobs=[] -2026-04-20T11:05:16.644616Z DEBUG StfBlueprint::apply_slot{context=Node da_height=252}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c5f98002c8919e61f8f20599a9e6ba83c46dec24ce8a090ca521b0ca31f1a8c52 next_version=252 sesssion_starting_time=48.71µs -2026-04-20T11:05:16.645390Z DEBUG StfBlueprint::apply_slot{context=Node da_height=252}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c679c1d882f8152c1ca9b992fe15533986852b803d40b87f826bf2d9e29a25616 next_version=252 time=838.024µs accesses_build_time=14.3µs finishing_session_time=738.685µs -2026-04-20T11:05:16.645452Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7033fd730a2c9e62caae43af3add106c34148de5c9ffe022e2e75feebf70724f" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c679c1d882f8152c1ca9b992fe15533986852b803d40b87f826bf2d9e29a25616" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:05:16.645989Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 252, latest_finalized_slot_number: 251, sync_status: Syncing { synced_da_height: 251, target_da_height: 252 }, .. } -2026-04-20T11:05:16.646073Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 252, latest_finalized_slot_number: 251, sync_status: Syncing { synced_da_height: 251, target_da_height: 252 }, .. } -2026-04-20T11:05:16.646134Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:05:16.653218Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000068112s -2026-04-20T11:05:16.653244Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:05:22.643215Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=253 prev_hash=0xfc42b3770aa7a865914d64b3fe82c5f0211ba4ed003b51d691cdf1a71c85cb6d hash=0x4480417a0f62cb14280e907227b1cad97db12cac120c055834ef5f6ae87d7cd3 producing_time=1.101463ms -2026-04-20T11:05:22.644789Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=253 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c679c1d882f8152c1ca9b992fe15533986852b803d40b87f826bf2d9e29a25616" batch_blobs=[] proof_blobs=[] -2026-04-20T11:05:22.645112Z DEBUG StfBlueprint::apply_slot{context=Node da_height=253}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c679c1d882f8152c1ca9b992fe15533986852b803d40b87f826bf2d9e29a25616 next_version=253 sesssion_starting_time=46.259µs -2026-04-20T11:05:22.645863Z DEBUG StfBlueprint::apply_slot{context=Node da_height=253}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c167403818213dededa89311f1ecd96281475e0a854beaece7f86993e3a6a2f5f next_version=253 time=813.625µs accesses_build_time=14.22µs finishing_session_time=719.966µs -2026-04-20T11:05:22.645935Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c5f98002c8919e61f8f20599a9e6ba83c46dec24ce8a090ca521b0ca31f1a8c52" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c167403818213dededa89311f1ecd96281475e0a854beaece7f86993e3a6a2f5f" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:05:22.646434Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 253, latest_finalized_slot_number: 252, sync_status: Synced { synced_da_height: 252 }, .. } -2026-04-20T11:05:22.646527Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 253, latest_finalized_slot_number: 252, sync_status: Synced { synced_da_height: 252 }, .. } -2026-04-20T11:05:22.646589Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:05:22.652999Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999755564s -2026-04-20T11:05:22.653033Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:05:28.644937Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=254 prev_hash=0x4480417a0f62cb14280e907227b1cad97db12cac120c055834ef5f6ae87d7cd3 hash=0xd91cfeded54b6246e589f40173be0c93e03470612e5625a9d427c0ff8e23f400 producing_time=1.064763ms -2026-04-20T11:05:28.654729Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=254 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c167403818213dededa89311f1ecd96281475e0a854beaece7f86993e3a6a2f5f" batch_blobs=[] proof_blobs=[] -2026-04-20T11:05:28.655062Z DEBUG StfBlueprint::apply_slot{context=Node da_height=254}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c167403818213dededa89311f1ecd96281475e0a854beaece7f86993e3a6a2f5f next_version=254 sesssion_starting_time=47.88µs -2026-04-20T11:05:28.655778Z DEBUG StfBlueprint::apply_slot{context=Node da_height=254}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c14be4ddc330912cd63bce8a955449320fcf47876a74ce1c68754c39ec18b3830 next_version=254 time=780.335µs accesses_build_time=15.46µs finishing_session_time=683.225µs -2026-04-20T11:05:28.655845Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c679c1d882f8152c1ca9b992fe15533986852b803d40b87f826bf2d9e29a25616" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c14be4ddc330912cd63bce8a955449320fcf47876a74ce1c68754c39ec18b3830" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:05:28.656403Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 254, latest_finalized_slot_number: 253, sync_status: Synced { synced_da_height: 253 }, .. } -2026-04-20T11:05:28.656503Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 254, latest_finalized_slot_number: 253, sync_status: Synced { synced_da_height: 253 }, .. } -2026-04-20T11:05:28.656579Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:05:28.663058Z DEBUG sov_stf_runner::runner: Block execution complete time=6.010028308s -2026-04-20T11:05:28.663083Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:05:34.647087Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=255 prev_hash=0xd91cfeded54b6246e589f40173be0c93e03470612e5625a9d427c0ff8e23f400 hash=0xf9c58561b1381c04b856278ae0714b6568d1ff6d7bf4bfcd7761242f0b1e6d38 producing_time=1.114233ms -2026-04-20T11:05:34.654940Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=255 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c14be4ddc330912cd63bce8a955449320fcf47876a74ce1c68754c39ec18b3830" batch_blobs=[] proof_blobs=[] -2026-04-20T11:05:34.655282Z DEBUG StfBlueprint::apply_slot{context=Node da_height=255}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c14be4ddc330912cd63bce8a955449320fcf47876a74ce1c68754c39ec18b3830 next_version=255 sesssion_starting_time=48.7µs -2026-04-20T11:05:34.656085Z DEBUG StfBlueprint::apply_slot{context=Node da_height=255}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c6b4408b8b3903f8cbd3559a0b7f15169b50b384941ed6623719bc948738c3ff5 next_version=255 time=866.994µs accesses_build_time=14.359µs finishing_session_time=764.875µs -2026-04-20T11:05:34.656157Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c167403818213dededa89311f1ecd96281475e0a854beaece7f86993e3a6a2f5f" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c6b4408b8b3903f8cbd3559a0b7f15169b50b384941ed6623719bc948738c3ff5" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:05:34.656654Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 255, latest_finalized_slot_number: 254, sync_status: Synced { synced_da_height: 254 }, .. } -2026-04-20T11:05:34.656741Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 255, latest_finalized_slot_number: 254, sync_status: Synced { synced_da_height: 254 }, .. } -2026-04-20T11:05:34.656803Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:05:34.662933Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999851064s -2026-04-20T11:05:34.662960Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:05:40.649242Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=256 prev_hash=0xf9c58561b1381c04b856278ae0714b6568d1ff6d7bf4bfcd7761242f0b1e6d38 hash=0x4b9b0fcdf86946bfc0f9b04ebc366db3bc0f2c0f9382e439db2b372774f7a918 producing_time=1.260442ms -2026-04-20T11:05:40.653951Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=256 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c6b4408b8b3903f8cbd3559a0b7f15169b50b384941ed6623719bc948738c3ff5" batch_blobs=[] proof_blobs=[] -2026-04-20T11:05:40.654274Z DEBUG StfBlueprint::apply_slot{context=Node da_height=256}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c6b4408b8b3903f8cbd3559a0b7f15169b50b384941ed6623719bc948738c3ff5 next_version=256 sesssion_starting_time=45.609µs -2026-04-20T11:05:40.655071Z DEBUG StfBlueprint::apply_slot{context=Node da_height=256}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c35fe51690092596127bfe82cc44f3602fc0280c0d698ee8f63719c66793ccee5 next_version=256 time=857.774µs accesses_build_time=14.59µs finishing_session_time=764.045µs -2026-04-20T11:05:40.655142Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c14be4ddc330912cd63bce8a955449320fcf47876a74ce1c68754c39ec18b3830" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c35fe51690092596127bfe82cc44f3602fc0280c0d698ee8f63719c66793ccee5" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:05:40.655652Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 256, latest_finalized_slot_number: 255, sync_status: Synced { synced_da_height: 255 }, .. } -2026-04-20T11:05:40.655762Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 256, latest_finalized_slot_number: 255, sync_status: Synced { synced_da_height: 255 }, .. } -2026-04-20T11:05:40.655825Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:05:40.662107Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999149008s -2026-04-20T11:05:40.662132Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:05:46.651039Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=257 prev_hash=0x4b9b0fcdf86946bfc0f9b04ebc366db3bc0f2c0f9382e439db2b372774f7a918 hash=0xbb94f4ecf1dee0d5e59823926b2d9496c455568ecdbc1721b8958da9d31f6228 producing_time=1.169772ms -2026-04-20T11:05:46.653813Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=257 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c35fe51690092596127bfe82cc44f3602fc0280c0d698ee8f63719c66793ccee5" batch_blobs=[] proof_blobs=[] -2026-04-20T11:05:46.654133Z DEBUG StfBlueprint::apply_slot{context=Node da_height=257}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c35fe51690092596127bfe82cc44f3602fc0280c0d698ee8f63719c66793ccee5 next_version=257 sesssion_starting_time=47.71µs -2026-04-20T11:05:46.655040Z DEBUG StfBlueprint::apply_slot{context=Node da_height=257}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7eb79ac52f2cf60c8014deb8b7c0d6cde6d030c0671ebc31a8fa49f4e7af3f6d next_version=257 time=969.793µs accesses_build_time=14.309µs finishing_session_time=873.064µs -2026-04-20T11:05:46.655102Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c6b4408b8b3903f8cbd3559a0b7f15169b50b384941ed6623719bc948738c3ff5" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7eb79ac52f2cf60c8014deb8b7c0d6cde6d030c0671ebc31a8fa49f4e7af3f6d" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:05:46.655616Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 257, latest_finalized_slot_number: 256, sync_status: Synced { synced_da_height: 256 }, .. } -2026-04-20T11:05:46.655708Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 257, latest_finalized_slot_number: 256, sync_status: Synced { synced_da_height: 256 }, .. } -2026-04-20T11:05:46.655772Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:05:46.665831Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003700369s -2026-04-20T11:05:46.665866Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:05:52.654300Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=258 prev_hash=0xbb94f4ecf1dee0d5e59823926b2d9496c455568ecdbc1721b8958da9d31f6228 hash=0xd4330af452865402205e2d3c7c927e88b5a00768b4710955a47e99dd788443f1 producing_time=2.446394ms -2026-04-20T11:05:52.657891Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=258 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7eb79ac52f2cf60c8014deb8b7c0d6cde6d030c0671ebc31a8fa49f4e7af3f6d" batch_blobs=[] proof_blobs=[] -2026-04-20T11:05:52.658215Z DEBUG StfBlueprint::apply_slot{context=Node da_height=258}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7eb79ac52f2cf60c8014deb8b7c0d6cde6d030c0671ebc31a8fa49f4e7af3f6d next_version=258 sesssion_starting_time=46.36µs -2026-04-20T11:05:52.659007Z DEBUG StfBlueprint::apply_slot{context=Node da_height=258}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c319e1f67bc200f59c6ba28a08fe64ac90e248d6899b392aa649b11017fcdc929 next_version=258 time=853.835µs accesses_build_time=14.54µs finishing_session_time=759.625µs -2026-04-20T11:05:52.659074Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c35fe51690092596127bfe82cc44f3602fc0280c0d698ee8f63719c66793ccee5" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c319e1f67bc200f59c6ba28a08fe64ac90e248d6899b392aa649b11017fcdc929" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:05:52.659571Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 258, latest_finalized_slot_number: 257, sync_status: Synced { synced_da_height: 257 }, .. } -2026-04-20T11:05:52.659664Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 258, latest_finalized_slot_number: 257, sync_status: Synced { synced_da_height: 257 }, .. } -2026-04-20T11:05:52.659728Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:05:52.666026Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000161161s -2026-04-20T11:05:52.666071Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:05:58.656195Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=259 prev_hash=0xd4330af452865402205e2d3c7c927e88b5a00768b4710955a47e99dd788443f1 hash=0x8a732234f0cc84e5fe4779efd729fabe86fc1ac8209839764131c46ea58e8bdc producing_time=1.375211ms -2026-04-20T11:05:58.657844Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=259 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c319e1f67bc200f59c6ba28a08fe64ac90e248d6899b392aa649b11017fcdc929" batch_blobs=[] proof_blobs=[] -2026-04-20T11:05:58.658164Z DEBUG StfBlueprint::apply_slot{context=Node da_height=259}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c319e1f67bc200f59c6ba28a08fe64ac90e248d6899b392aa649b11017fcdc929 next_version=259 sesssion_starting_time=47.67µs -2026-04-20T11:05:58.659264Z DEBUG StfBlueprint::apply_slot{context=Node da_height=259}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c3bda34f2b4f99a20ba9db7168bf3b99de23fbf2ff67b28f31abc045838744aaa next_version=259 time=1.162242ms accesses_build_time=12.869µs finishing_session_time=1.069583ms -2026-04-20T11:05:58.659337Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c7eb79ac52f2cf60c8014deb8b7c0d6cde6d030c0671ebc31a8fa49f4e7af3f6d" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c3bda34f2b4f99a20ba9db7168bf3b99de23fbf2ff67b28f31abc045838744aaa" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:05:58.659832Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 259, latest_finalized_slot_number: 258, sync_status: Synced { synced_da_height: 258 }, .. } -2026-04-20T11:05:58.659919Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 259, latest_finalized_slot_number: 258, sync_status: Synced { synced_da_height: 258 }, .. } -2026-04-20T11:05:58.659980Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:05:58.667159Z DEBUG sov_stf_runner::runner: Block execution complete time=6.001089486s -2026-04-20T11:05:58.667192Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:06:04.658160Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=260 prev_hash=0x8a732234f0cc84e5fe4779efd729fabe86fc1ac8209839764131c46ea58e8bdc hash=0x6651c9a0112ec26dc46fc3067e84d5fee186c02d481195135826c8dc7431c97b producing_time=1.166002ms -2026-04-20T11:06:04.668766Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=260 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c3bda34f2b4f99a20ba9db7168bf3b99de23fbf2ff67b28f31abc045838744aaa" batch_blobs=[] proof_blobs=[] -2026-04-20T11:06:04.669102Z DEBUG StfBlueprint::apply_slot{context=Node da_height=260}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c3bda34f2b4f99a20ba9db7168bf3b99de23fbf2ff67b28f31abc045838744aaa next_version=260 sesssion_starting_time=47.54µs -2026-04-20T11:06:04.669915Z DEBUG StfBlueprint::apply_slot{context=Node da_height=260}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c59f7ae0b16dd070c6db6549ebe4f88dcb23de3deeabfe972bf4ba3f89c3818f5 next_version=260 time=876.835µs accesses_build_time=14.59µs finishing_session_time=777.255µs -2026-04-20T11:06:04.669989Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c319e1f67bc200f59c6ba28a08fe64ac90e248d6899b392aa649b11017fcdc929" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c59f7ae0b16dd070c6db6549ebe4f88dcb23de3deeabfe972bf4ba3f89c3818f5" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:06:04.670508Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 260, latest_finalized_slot_number: 259, sync_status: Synced { synced_da_height: 259 }, .. } -2026-04-20T11:06:04.670582Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 260, latest_finalized_slot_number: 259, sync_status: Synced { synced_da_height: 259 }, .. } -2026-04-20T11:06:04.670641Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:06:04.677123Z DEBUG sov_stf_runner::runner: Block execution complete time=6.009932729s -2026-04-20T11:06:04.677151Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:06:10.659780Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=261 prev_hash=0x6651c9a0112ec26dc46fc3067e84d5fee186c02d481195135826c8dc7431c97b hash=0x3281e85d7e21f987dc3bd35529687fe82db0f0470823682de2a2d9cc9aa10aa5 producing_time=1.120223ms -2026-04-20T11:06:10.668525Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=261 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c59f7ae0b16dd070c6db6549ebe4f88dcb23de3deeabfe972bf4ba3f89c3818f5" batch_blobs=[] proof_blobs=[] -2026-04-20T11:06:10.668847Z DEBUG StfBlueprint::apply_slot{context=Node da_height=261}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c59f7ae0b16dd070c6db6549ebe4f88dcb23de3deeabfe972bf4ba3f89c3818f5 next_version=261 sesssion_starting_time=47.17µs -2026-04-20T11:06:10.669605Z DEBUG StfBlueprint::apply_slot{context=Node da_height=261}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c543aec2747fd1b9a6d355b6c8b7d51230fc2923ded4071489071aeb493261936 next_version=261 time=823.245µs accesses_build_time=16.9µs finishing_session_time=724.636µs -2026-04-20T11:06:10.669683Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c3bda34f2b4f99a20ba9db7168bf3b99de23fbf2ff67b28f31abc045838744aaa" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c543aec2747fd1b9a6d355b6c8b7d51230fc2923ded4071489071aeb493261936" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:06:10.670170Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 261, latest_finalized_slot_number: 260, sync_status: Synced { synced_da_height: 260 }, .. } -2026-04-20T11:06:10.670252Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 261, latest_finalized_slot_number: 260, sync_status: Synced { synced_da_height: 260 }, .. } -2026-04-20T11:06:10.670324Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:06:10.677666Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00051647s -2026-04-20T11:06:10.677713Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:06:16.661682Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=262 prev_hash=0x3281e85d7e21f987dc3bd35529687fe82db0f0470823682de2a2d9cc9aa10aa5 hash=0xb9fd35f59386cfa712b73057acf8cc14540a4a536ed2bba73979123b2e203939 producing_time=1.187022ms -2026-04-20T11:06:16.669276Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=262 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c543aec2747fd1b9a6d355b6c8b7d51230fc2923ded4071489071aeb493261936" batch_blobs=[] proof_blobs=[] -2026-04-20T11:06:16.669615Z DEBUG StfBlueprint::apply_slot{context=Node da_height=262}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c543aec2747fd1b9a6d355b6c8b7d51230fc2923ded4071489071aeb493261936 next_version=262 sesssion_starting_time=47.85µs -2026-04-20T11:06:16.670364Z DEBUG StfBlueprint::apply_slot{context=Node da_height=262}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c1eeab8d5c2c5fb61df9046304de2a3acf8c8ef5d1f36ece224225b3a8606347e next_version=262 time=815.535µs accesses_build_time=17.19µs finishing_session_time=709.135µs -2026-04-20T11:06:16.670429Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c59f7ae0b16dd070c6db6549ebe4f88dcb23de3deeabfe972bf4ba3f89c3818f5" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c1eeab8d5c2c5fb61df9046304de2a3acf8c8ef5d1f36ece224225b3a8606347e" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:06:16.670908Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 262, latest_finalized_slot_number: 261, sync_status: Synced { synced_da_height: 261 }, .. } -2026-04-20T11:06:16.670991Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 262, latest_finalized_slot_number: 261, sync_status: Synced { synced_da_height: 261 }, .. } -2026-04-20T11:06:16.671054Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:06:16.678202Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00049253s -2026-04-20T11:06:16.678226Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:06:22.663802Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=263 prev_hash=0xb9fd35f59386cfa712b73057acf8cc14540a4a536ed2bba73979123b2e203939 hash=0x5e68fab5a787b64a338cefb5840b1be8be60c1c126e7ad2e581db27c8c06fb50 producing_time=1.096962ms -2026-04-20T11:06:22.669527Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=263 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c1eeab8d5c2c5fb61df9046304de2a3acf8c8ef5d1f36ece224225b3a8606347e" batch_blobs=[] proof_blobs=[] -2026-04-20T11:06:22.669852Z DEBUG StfBlueprint::apply_slot{context=Node da_height=263}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c1eeab8d5c2c5fb61df9046304de2a3acf8c8ef5d1f36ece224225b3a8606347e next_version=263 sesssion_starting_time=46.279µs -2026-04-20T11:06:22.670643Z DEBUG StfBlueprint::apply_slot{context=Node da_height=263}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c71096b4ab2c19adb1e372d524405fc473576d92d1c4b8e4913031e6458577cd0 next_version=263 time=854.974µs accesses_build_time=16.03µs finishing_session_time=762.525µs -2026-04-20T11:06:22.670720Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c543aec2747fd1b9a6d355b6c8b7d51230fc2923ded4071489071aeb493261936" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c71096b4ab2c19adb1e372d524405fc473576d92d1c4b8e4913031e6458577cd0" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:06:22.671296Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 263, latest_finalized_slot_number: 262, sync_status: Synced { synced_da_height: 262 }, .. } -2026-04-20T11:06:22.671401Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 263, latest_finalized_slot_number: 262, sync_status: Synced { synced_da_height: 262 }, .. } -2026-04-20T11:06:22.671475Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:06:22.678155Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999929914s -2026-04-20T11:06:22.678185Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:06:28.665717Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=264 prev_hash=0x5e68fab5a787b64a338cefb5840b1be8be60c1c126e7ad2e581db27c8c06fb50 hash=0x29b75c954ea82a37a63922a8418439d431437188b5df0327c14b6b7c7b05e4ad producing_time=1.190662ms -2026-04-20T11:06:28.669386Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=264 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c71096b4ab2c19adb1e372d524405fc473576d92d1c4b8e4913031e6458577cd0" batch_blobs=[] proof_blobs=[] -2026-04-20T11:06:28.669720Z DEBUG StfBlueprint::apply_slot{context=Node da_height=264}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c71096b4ab2c19adb1e372d524405fc473576d92d1c4b8e4913031e6458577cd0 next_version=264 sesssion_starting_time=47.22µs -2026-04-20T11:06:28.670540Z DEBUG StfBlueprint::apply_slot{context=Node da_height=264}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c009b4c8c225769179c789775d07d5dfaeac4d7e8ec6f900f6f5cf73d95d66efc next_version=264 time=883.014µs accesses_build_time=14.74µs finishing_session_time=791.515µs -2026-04-20T11:06:28.670607Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c1eeab8d5c2c5fb61df9046304de2a3acf8c8ef5d1f36ece224225b3a8606347e" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c009b4c8c225769179c789775d07d5dfaeac4d7e8ec6f900f6f5cf73d95d66efc" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:06:28.671081Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 264, latest_finalized_slot_number: 263, sync_status: Synced { synced_da_height: 263 }, .. } -2026-04-20T11:06:28.671160Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 264, latest_finalized_slot_number: 263, sync_status: Synced { synced_da_height: 263 }, .. } -2026-04-20T11:06:28.671218Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:06:28.678005Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999821624s -2026-04-20T11:06:28.678047Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:06:34.667811Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=265 prev_hash=0x29b75c954ea82a37a63922a8418439d431437188b5df0327c14b6b7c7b05e4ad hash=0xd394b6269cdef04602671c5edf73996dfeae1edb796a8fc029b69673d57e36c7 producing_time=1.213862ms -2026-04-20T11:06:34.669471Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=265 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c009b4c8c225769179c789775d07d5dfaeac4d7e8ec6f900f6f5cf73d95d66efc" batch_blobs=[] proof_blobs=[] -2026-04-20T11:06:34.669783Z DEBUG StfBlueprint::apply_slot{context=Node da_height=265}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c009b4c8c225769179c789775d07d5dfaeac4d7e8ec6f900f6f5cf73d95d66efc next_version=265 sesssion_starting_time=48.6µs -2026-04-20T11:06:34.670599Z DEBUG StfBlueprint::apply_slot{context=Node da_height=265}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c1621d45927758660971d3c9c3539b19f7ccf3ce68c1780572d0b5f0c556254c8 next_version=265 time=882.794µs accesses_build_time=17.36µs finishing_session_time=782.025µs -2026-04-20T11:06:34.670673Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c71096b4ab2c19adb1e372d524405fc473576d92d1c4b8e4913031e6458577cd0" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c1621d45927758660971d3c9c3539b19f7ccf3ce68c1780572d0b5f0c556254c8" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:06:34.671193Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 265, latest_finalized_slot_number: 264, sync_status: Synced { synced_da_height: 264 }, .. } -2026-04-20T11:06:34.671271Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 265, latest_finalized_slot_number: 264, sync_status: Synced { synced_da_height: 264 }, .. } -2026-04-20T11:06:34.671344Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:06:34.678076Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000032323s -2026-04-20T11:06:34.678108Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:06:40.669715Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=266 prev_hash=0xd394b6269cdef04602671c5edf73996dfeae1edb796a8fc029b69673d57e36c7 hash=0xf44107c9bcb4a7757271301283f7d9d1b7aed41f6de66ef15be743273a20c306 producing_time=1.129602ms -2026-04-20T11:06:40.679449Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=266 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c1621d45927758660971d3c9c3539b19f7ccf3ce68c1780572d0b5f0c556254c8" batch_blobs=[] proof_blobs=[] -2026-04-20T11:06:40.679758Z DEBUG StfBlueprint::apply_slot{context=Node da_height=266}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c1621d45927758660971d3c9c3539b19f7ccf3ce68c1780572d0b5f0c556254c8 next_version=266 sesssion_starting_time=44.01µs -2026-04-20T11:06:40.680477Z DEBUG StfBlueprint::apply_slot{context=Node da_height=266}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c592b216b87d2c6c56fd1d32c03fb7005c2780f300bf5a7033c860bec6df1356d next_version=266 time=776.785µs accesses_build_time=13.48µs finishing_session_time=688.465µs -2026-04-20T11:06:40.680561Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c009b4c8c225769179c789775d07d5dfaeac4d7e8ec6f900f6f5cf73d95d66efc" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c592b216b87d2c6c56fd1d32c03fb7005c2780f300bf5a7033c860bec6df1356d" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:06:40.681063Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 266, latest_finalized_slot_number: 265, sync_status: Synced { synced_da_height: 265 }, .. } -2026-04-20T11:06:40.681142Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 266, latest_finalized_slot_number: 265, sync_status: Synced { synced_da_height: 265 }, .. } -2026-04-20T11:06:40.681209Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:06:40.687945Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00983865s -2026-04-20T11:06:40.687968Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:06:46.672196Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=267 prev_hash=0xf44107c9bcb4a7757271301283f7d9d1b7aed41f6de66ef15be743273a20c306 hash=0x4fb64baa846200a2ce403b2a147ee4aa9c434d83796a481784cabdfbbd3c7018 producing_time=1.173912ms -2026-04-20T11:06:46.679918Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=267 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c592b216b87d2c6c56fd1d32c03fb7005c2780f300bf5a7033c860bec6df1356d" batch_blobs=[] proof_blobs=[] -2026-04-20T11:06:46.680248Z DEBUG StfBlueprint::apply_slot{context=Node da_height=267}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c592b216b87d2c6c56fd1d32c03fb7005c2780f300bf5a7033c860bec6df1356d next_version=267 sesssion_starting_time=48.59µs -2026-04-20T11:06:46.680965Z DEBUG StfBlueprint::apply_slot{context=Node da_height=267}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c5207f7f0472810373216149d92aebd7cf76da2813d37d418c0f7c9f1e8c31093 next_version=267 time=781.405µs accesses_build_time=14.89µs finishing_session_time=689.256µs -2026-04-20T11:06:46.681028Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c1621d45927758660971d3c9c3539b19f7ccf3ce68c1780572d0b5f0c556254c8" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c5207f7f0472810373216149d92aebd7cf76da2813d37d418c0f7c9f1e8c31093" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:06:46.681507Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 267, latest_finalized_slot_number: 266, sync_status: Synced { synced_da_height: 266 }, .. } -2026-04-20T11:06:46.681606Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 267, latest_finalized_slot_number: 266, sync_status: Synced { synced_da_height: 266 }, .. } -2026-04-20T11:06:46.681665Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:06:46.691711Z DEBUG sov_stf_runner::runner: Block execution complete time=6.0037445s -2026-04-20T11:06:46.691737Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:06:52.674482Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=268 prev_hash=0x4fb64baa846200a2ce403b2a147ee4aa9c434d83796a481784cabdfbbd3c7018 hash=0x62ecb0a32153d31de220ef8fae9e36beb9f552607497b3ae225904b72f81758f producing_time=1.196982ms -2026-04-20T11:06:52.683433Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=268 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c5207f7f0472810373216149d92aebd7cf76da2813d37d418c0f7c9f1e8c31093" batch_blobs=[] proof_blobs=[] -2026-04-20T11:06:52.683681Z DEBUG StfBlueprint::apply_slot{context=Node da_height=268}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c5207f7f0472810373216149d92aebd7cf76da2813d37d418c0f7c9f1e8c31093 next_version=268 sesssion_starting_time=34.67µs -2026-04-20T11:06:52.684323Z DEBUG StfBlueprint::apply_slot{context=Node da_height=268}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c651a6f60fc5f1772cde4e07e661912a0b6a45b79f6c9372707d153924cab711d next_version=268 time=688.026µs accesses_build_time=11.24µs finishing_session_time=612.696µs -2026-04-20T11:06:52.684373Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c592b216b87d2c6c56fd1d32c03fb7005c2780f300bf5a7033c860bec6df1356d" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c651a6f60fc5f1772cde4e07e661912a0b6a45b79f6c9372707d153924cab711d" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:06:52.684775Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 268, latest_finalized_slot_number: 268, sync_status: Synced { synced_da_height: 267 }, .. } -2026-04-20T11:06:52.684848Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 268, latest_finalized_slot_number: 268, sync_status: Synced { synced_da_height: 267 }, .. } -2026-04-20T11:06:52.684906Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:06:52.701049Z DEBUG sov_stf_runner::runner: Block execution complete time=6.009313693s -2026-04-20T11:06:52.701066Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:06:58.677291Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=269 prev_hash=0x62ecb0a32153d31de220ef8fae9e36beb9f552607497b3ae225904b72f81758f hash=0xa598275dd4a0317831edfb1c64e4e344a09762f4e7e87f685afb46e924f73a72 producing_time=1.262842ms -2026-04-20T11:06:58.682144Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=269 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c651a6f60fc5f1772cde4e07e661912a0b6a45b79f6c9372707d153924cab711d" batch_blobs=[] proof_blobs=[] -2026-04-20T11:06:58.682473Z DEBUG StfBlueprint::apply_slot{context=Node da_height=269}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c651a6f60fc5f1772cde4e07e661912a0b6a45b79f6c9372707d153924cab711d next_version=269 sesssion_starting_time=47.71µs -2026-04-20T11:06:58.683272Z DEBUG StfBlueprint::apply_slot{context=Node da_height=269}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c28c4a98e9663be3b3fa04082fa3954e0433593f4cc853807510ec557489a286f next_version=269 time=861.354µs accesses_build_time=13.54µs finishing_session_time=767.036µs -2026-04-20T11:06:58.683343Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c651a6f60fc5f1772cde4e07e661912a0b6a45b79f6c9372707d153924cab711d" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c28c4a98e9663be3b3fa04082fa3954e0433593f4cc853807510ec557489a286f" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:06:58.683833Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 269, latest_finalized_slot_number: 269, sync_status: Synced { synced_da_height: 268 }, .. } -2026-04-20T11:06:58.683913Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 269, latest_finalized_slot_number: 269, sync_status: Synced { synced_da_height: 268 }, .. } -2026-04-20T11:06:58.683973Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:06:58.694623Z DEBUG sov_stf_runner::runner: Block execution complete time=5.993557415s -2026-04-20T11:06:58.694648Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:07:04.679295Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=270 prev_hash=0xa598275dd4a0317831edfb1c64e4e344a09762f4e7e87f685afb46e924f73a72 hash=0x863fc6bd39cfb049e88d18ed37eb31bce2178f7484172823488519c5d6344023 producing_time=1.222092ms -2026-04-20T11:07:04.686220Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=270 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c28c4a98e9663be3b3fa04082fa3954e0433593f4cc853807510ec557489a286f" batch_blobs=[] proof_blobs=[] -2026-04-20T11:07:04.686576Z DEBUG StfBlueprint::apply_slot{context=Node da_height=270}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c28c4a98e9663be3b3fa04082fa3954e0433593f4cc853807510ec557489a286f next_version=270 sesssion_starting_time=47.59µs -2026-04-20T11:07:04.687279Z DEBUG StfBlueprint::apply_slot{context=Node da_height=270}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c4d90caac0d50d6df17d954257697921043603f2707ed19ffc21714dfed89afef next_version=270 time=767.195µs accesses_build_time=15.069µs finishing_session_time=667.946µs -2026-04-20T11:07:04.687358Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c28c4a98e9663be3b3fa04082fa3954e0433593f4cc853807510ec557489a286f" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c4d90caac0d50d6df17d954257697921043603f2707ed19ffc21714dfed89afef" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:07:04.687829Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 270, latest_finalized_slot_number: 270, sync_status: Synced { synced_da_height: 269 }, .. } -2026-04-20T11:07:04.687910Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 270, latest_finalized_slot_number: 270, sync_status: Synced { synced_da_height: 269 }, .. } -2026-04-20T11:07:04.687967Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:07:04.695175Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000527741s -2026-04-20T11:07:04.695210Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:07:10.682285Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=271 prev_hash=0x863fc6bd39cfb049e88d18ed37eb31bce2178f7484172823488519c5d6344023 hash=0x9b3d246e3561bca1457ff25667757e0fa09685a5f7d01ce08f56dd1099a43455 producing_time=1.220212ms -2026-04-20T11:07:10.686212Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=271 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c4d90caac0d50d6df17d954257697921043603f2707ed19ffc21714dfed89afef" batch_blobs=[] proof_blobs=[] -2026-04-20T11:07:10.686559Z DEBUG StfBlueprint::apply_slot{context=Node da_height=271}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c4d90caac0d50d6df17d954257697921043603f2707ed19ffc21714dfed89afef next_version=271 sesssion_starting_time=51.409µs -2026-04-20T11:07:10.687375Z DEBUG StfBlueprint::apply_slot{context=Node da_height=271}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c32d9470efd91bc344abb5e36835bdfc83bb3ad823f0b715975a2ffb820c6e5d3 next_version=271 time=886.244µs accesses_build_time=17.08µs finishing_session_time=773.315µs -2026-04-20T11:07:10.687455Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c4d90caac0d50d6df17d954257697921043603f2707ed19ffc21714dfed89afef" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c32d9470efd91bc344abb5e36835bdfc83bb3ad823f0b715975a2ffb820c6e5d3" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:07:10.687991Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 271, latest_finalized_slot_number: 271, sync_status: Synced { synced_da_height: 270 }, .. } -2026-04-20T11:07:10.688079Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 271, latest_finalized_slot_number: 271, sync_status: Synced { synced_da_height: 270 }, .. } -2026-04-20T11:07:10.688141Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:07:10.694879Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999671257s -2026-04-20T11:07:10.694909Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:07:16.683967Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=272 prev_hash=0x9b3d246e3561bca1457ff25667757e0fa09685a5f7d01ce08f56dd1099a43455 hash=0x1402181c111167f347fd1cddb6097effbcf8d85bf83b7895059983ae2d138ff0 producing_time=1.056023ms -2026-04-20T11:07:16.686547Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=272 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c32d9470efd91bc344abb5e36835bdfc83bb3ad823f0b715975a2ffb820c6e5d3" batch_blobs=[] proof_blobs=[] -2026-04-20T11:07:16.686869Z DEBUG StfBlueprint::apply_slot{context=Node da_height=272}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c32d9470efd91bc344abb5e36835bdfc83bb3ad823f0b715975a2ffb820c6e5d3 next_version=272 sesssion_starting_time=46.389µs -2026-04-20T11:07:16.687598Z DEBUG StfBlueprint::apply_slot{context=Node da_height=272}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c67782226cac0b480155c04a6739573531b29d76e1bca302391a11aa8445d17c3 next_version=272 time=790.805µs accesses_build_time=14.54µs finishing_session_time=697.506µs -2026-04-20T11:07:16.687672Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c32d9470efd91bc344abb5e36835bdfc83bb3ad823f0b715975a2ffb820c6e5d3" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c67782226cac0b480155c04a6739573531b29d76e1bca302391a11aa8445d17c3" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:07:16.688098Z DEBUG sov_stf_runner::runner: Block execution complete time=5.993191598s -2026-04-20T11:07:16.688120Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:07:16.688169Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 272, latest_finalized_slot_number: 271, sync_status: Synced { synced_da_height: 271 }, .. } -2026-04-20T11:07:16.688252Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 272, latest_finalized_slot_number: 271, sync_status: Synced { synced_da_height: 271 }, .. } -2026-04-20T11:07:16.688310Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:07:22.685651Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=273 prev_hash=0x1402181c111167f347fd1cddb6097effbcf8d85bf83b7895059983ae2d138ff0 hash=0x7e32d4e0b53e5a50a70e1a049eedb6309749d2994be8ad0afb99d4be761cdde8 producing_time=1.127812ms -2026-04-20T11:07:22.689258Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=273 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c67782226cac0b480155c04a6739573531b29d76e1bca302391a11aa8445d17c3" batch_blobs=[] proof_blobs=[] -2026-04-20T11:07:22.689592Z DEBUG StfBlueprint::apply_slot{context=Node da_height=273}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c67782226cac0b480155c04a6739573531b29d76e1bca302391a11aa8445d17c3 next_version=273 sesssion_starting_time=48.53µs -2026-04-20T11:07:22.690361Z DEBUG StfBlueprint::apply_slot{context=Node da_height=273}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c72c31b22e5c3344817e90525bff1358281a49efc696083a01982cd03a5eaaff6 next_version=273 time=832.934µs accesses_build_time=14.909µs finishing_session_time=735.985µs -2026-04-20T11:07:22.690427Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c32d9470efd91bc344abb5e36835bdfc83bb3ad823f0b715975a2ffb820c6e5d3" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c72c31b22e5c3344817e90525bff1358281a49efc696083a01982cd03a5eaaff6" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:07:22.690901Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 273, latest_finalized_slot_number: 272, sync_status: Syncing { synced_da_height: 272, target_da_height: 273 }, .. } -2026-04-20T11:07:22.690975Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 273, latest_finalized_slot_number: 272, sync_status: Syncing { synced_da_height: 272, target_da_height: 273 }, .. } -2026-04-20T11:07:22.691033Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:07:22.698093Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00997371s -2026-04-20T11:07:22.698135Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:07:28.688392Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=274 prev_hash=0x7e32d4e0b53e5a50a70e1a049eedb6309749d2994be8ad0afb99d4be761cdde8 hash=0x3d816011544e6acc382055e1416d388508e1a4a4be9b064556811674e4643042 producing_time=1.126863ms -2026-04-20T11:07:28.688925Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=274 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c72c31b22e5c3344817e90525bff1358281a49efc696083a01982cd03a5eaaff6" batch_blobs=[] proof_blobs=[] -2026-04-20T11:07:28.689245Z DEBUG StfBlueprint::apply_slot{context=Node da_height=274}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c72c31b22e5c3344817e90525bff1358281a49efc696083a01982cd03a5eaaff6 next_version=274 sesssion_starting_time=46.629µs -2026-04-20T11:07:28.689941Z DEBUG StfBlueprint::apply_slot{context=Node da_height=274}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0e3485ad2546d3ccba807517e56703338364d8b2619f4965d6a3cbb1da2a1b9e next_version=274 time=757.745µs accesses_build_time=14.29µs finishing_session_time=663.616µs -2026-04-20T11:07:28.690014Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c67782226cac0b480155c04a6739573531b29d76e1bca302391a11aa8445d17c3" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0e3485ad2546d3ccba807517e56703338364d8b2619f4965d6a3cbb1da2a1b9e" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:07:28.690524Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 274, latest_finalized_slot_number: 273, sync_status: Synced { synced_da_height: 273 }, .. } -2026-04-20T11:07:28.690609Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 274, latest_finalized_slot_number: 273, sync_status: Synced { synced_da_height: 273 }, .. } -2026-04-20T11:07:28.690668Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:07:28.696709Z DEBUG sov_stf_runner::runner: Block execution complete time=5.998576973s -2026-04-20T11:07:28.696735Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:07:34.691293Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=275 prev_hash=0x3d816011544e6acc382055e1416d388508e1a4a4be9b064556811674e4643042 hash=0x9802fea2987c84cd0d8a8809d8aed45cccfed2dd033802bcb2f13f3e3b25f181 producing_time=1.032314ms -2026-04-20T11:07:34.698030Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=275 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0e3485ad2546d3ccba807517e56703338364d8b2619f4965d6a3cbb1da2a1b9e" batch_blobs=[] proof_blobs=[] -2026-04-20T11:07:34.698388Z DEBUG StfBlueprint::apply_slot{context=Node da_height=275}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0e3485ad2546d3ccba807517e56703338364d8b2619f4965d6a3cbb1da2a1b9e next_version=275 sesssion_starting_time=57.7µs -2026-04-20T11:07:34.699075Z DEBUG StfBlueprint::apply_slot{context=Node da_height=275}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c29ffeaacbc5bcb7f8fb18f5e69be45a14676a0685b64716cb7b18377d9ff4fe3 next_version=275 time=776.815µs accesses_build_time=13.76µs finishing_session_time=652.726µs -2026-04-20T11:07:34.699130Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c72c31b22e5c3344817e90525bff1358281a49efc696083a01982cd03a5eaaff6" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c29ffeaacbc5bcb7f8fb18f5e69be45a14676a0685b64716cb7b18377d9ff4fe3" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:07:34.699647Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 275, latest_finalized_slot_number: 274, sync_status: Synced { synced_da_height: 274 }, .. } -2026-04-20T11:07:34.699728Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 275, latest_finalized_slot_number: 274, sync_status: Synced { synced_da_height: 274 }, .. } -2026-04-20T11:07:34.699796Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:07:34.705861Z DEBUG sov_stf_runner::runner: Block execution complete time=6.009128196s -2026-04-20T11:07:34.705895Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:07:40.694358Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=276 prev_hash=0x9802fea2987c84cd0d8a8809d8aed45cccfed2dd033802bcb2f13f3e3b25f181 hash=0x28714eb312c54a88042f7bbe4e206cd021cdca352afa1eecccdda97282b1840b producing_time=1.252791ms -2026-04-20T11:07:40.697010Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=276 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c29ffeaacbc5bcb7f8fb18f5e69be45a14676a0685b64716cb7b18377d9ff4fe3" batch_blobs=[] proof_blobs=[] -2026-04-20T11:07:40.697348Z DEBUG StfBlueprint::apply_slot{context=Node da_height=276}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c29ffeaacbc5bcb7f8fb18f5e69be45a14676a0685b64716cb7b18377d9ff4fe3 next_version=276 sesssion_starting_time=59.339µs -2026-04-20T11:07:40.698124Z DEBUG StfBlueprint::apply_slot{context=Node da_height=276}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c20cde075c10e5a25a0ff3a6bb48b5f641374d6d1c97bda059fbbedd524f7ecae next_version=276 time=850.524µs accesses_build_time=14.539µs finishing_session_time=742.585µs -2026-04-20T11:07:40.698187Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0e3485ad2546d3ccba807517e56703338364d8b2619f4965d6a3cbb1da2a1b9e" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c20cde075c10e5a25a0ff3a6bb48b5f641374d6d1c97bda059fbbedd524f7ecae" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:07:40.698673Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 276, latest_finalized_slot_number: 275, sync_status: Synced { synced_da_height: 275 }, .. } -2026-04-20T11:07:40.698763Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 276, latest_finalized_slot_number: 275, sync_status: Synced { synced_da_height: 275 }, .. } -2026-04-20T11:07:40.698832Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:07:40.708546Z DEBUG sov_stf_runner::runner: Block execution complete time=6.002653777s -2026-04-20T11:07:40.708569Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:07:46.697322Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=277 prev_hash=0x28714eb312c54a88042f7bbe4e206cd021cdca352afa1eecccdda97282b1840b hash=0x079d3cf18c026d6432ed02a806ed2aff7168fcb1f269acde1bedd481d2629590 producing_time=1.187383ms -2026-04-20T11:07:46.699870Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=277 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c20cde075c10e5a25a0ff3a6bb48b5f641374d6d1c97bda059fbbedd524f7ecae" batch_blobs=[] proof_blobs=[] -2026-04-20T11:07:46.700186Z DEBUG StfBlueprint::apply_slot{context=Node da_height=277}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c20cde075c10e5a25a0ff3a6bb48b5f641374d6d1c97bda059fbbedd524f7ecae next_version=277 sesssion_starting_time=48.449µs -2026-04-20T11:07:46.700874Z DEBUG StfBlueprint::apply_slot{context=Node da_height=277}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c54974bc922a599a3f477c69f3478e6e2b0d43574a2fded19655980eafbd851a5 next_version=277 time=752.555µs accesses_build_time=14.41µs finishing_session_time=660.756µs -2026-04-20T11:07:46.700938Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c29ffeaacbc5bcb7f8fb18f5e69be45a14676a0685b64716cb7b18377d9ff4fe3" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c54974bc922a599a3f477c69f3478e6e2b0d43574a2fded19655980eafbd851a5" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:07:46.701426Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 277, latest_finalized_slot_number: 276, sync_status: Synced { synced_da_height: 276 }, .. } -2026-04-20T11:07:46.701514Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 277, latest_finalized_slot_number: 276, sync_status: Synced { synced_da_height: 276 }, .. } -2026-04-20T11:07:46.701576Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:07:46.707976Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999408138s -2026-04-20T11:07:46.707999Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:07:52.700356Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=278 prev_hash=0x079d3cf18c026d6432ed02a806ed2aff7168fcb1f269acde1bedd481d2629590 hash=0x81a42245a5ee9d9dbac50576ab8d8f5bdc353b273713d1b807c6a50f123d7451 producing_time=1.186713ms -2026-04-20T11:07:52.709086Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=278 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c54974bc922a599a3f477c69f3478e6e2b0d43574a2fded19655980eafbd851a5" batch_blobs=[] proof_blobs=[] -2026-04-20T11:07:52.709432Z DEBUG StfBlueprint::apply_slot{context=Node da_height=278}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c54974bc922a599a3f477c69f3478e6e2b0d43574a2fded19655980eafbd851a5 next_version=278 sesssion_starting_time=45.65µs -2026-04-20T11:07:52.710233Z DEBUG StfBlueprint::apply_slot{context=Node da_height=278}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0459572d75edf38b5ac87a07ec84008ffa900da51a540057a7c2f96f1319966f next_version=278 time=861.244µs accesses_build_time=14.22µs finishing_session_time=766.675µs -2026-04-20T11:07:52.710292Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c20cde075c10e5a25a0ff3a6bb48b5f641374d6d1c97bda059fbbedd524f7ecae" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0459572d75edf38b5ac87a07ec84008ffa900da51a540057a7c2f96f1319966f" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:07:52.710779Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 278, latest_finalized_slot_number: 277, sync_status: Synced { synced_da_height: 277 }, .. } -2026-04-20T11:07:52.710871Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 278, latest_finalized_slot_number: 277, sync_status: Synced { synced_da_height: 277 }, .. } -2026-04-20T11:07:52.710929Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 -2026-04-20T11:07:52.718123Z DEBUG sov_stf_runner::runner: Block execution complete time=6.01012507s -2026-04-20T11:07:52.718154Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:07:58.703482Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=279 prev_hash=0x81a42245a5ee9d9dbac50576ab8d8f5bdc353b273713d1b807c6a50f123d7451 hash=0x03ffea10ee7f0696a8f197d8176aa67c1812fcb164ee2c0bea9bb9e7936896c7 producing_time=1.125933ms -2026-04-20T11:07:58.709134Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=279 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0459572d75edf38b5ac87a07ec84008ffa900da51a540057a7c2f96f1319966f" batch_blobs=[] proof_blobs=[] -2026-04-20T11:07:58.709483Z DEBUG StfBlueprint::apply_slot{context=Node da_height=279}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0459572d75edf38b5ac87a07ec84008ffa900da51a540057a7c2f96f1319966f next_version=279 sesssion_starting_time=47.1µs -2026-04-20T11:07:58.710446Z DEBUG StfBlueprint::apply_slot{context=Node da_height=279}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c6a5069777fd4e94cc1a960a9f4fe6b9e852249e8447a2b60da4af756a4a14021 next_version=279 time=1.023314ms accesses_build_time=14.46µs finishing_session_time=921.154µs -2026-04-20T11:07:58.710581Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c54974bc922a599a3f477c69f3478e6e2b0d43574a2fded19655980eafbd851a5" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c6a5069777fd4e94cc1a960a9f4fe6b9e852249e8447a2b60da4af756a4a14021" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:07:58.711173Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 279, latest_finalized_slot_number: 278, sync_status: Synced { synced_da_height: 278 }, .. } -2026-04-20T11:07:58.711251Z ERROR sov_sequencer::preferred::sync_sequencer_state::conditions_table: Sequencer has detected that it is past, or very close to, having the visible_slot_number lag behind the deferred_slots_count threshold. Normal operation will be suspended until this can be remedied. slot_number_according_to_node=279 current_visible_slot_number=180 deferred_slots=120 -2026-04-20T11:07:58.711330Z DEBUG sov_sequencer::preferred::executor_events: Recovery: No in-progress batch to terminate. -2026-04-20T11:07:58.711411Z DEBUG sov_sequencer::preferred::block_executor: Replacing state for block executor old=019daa79-eb3b-75b2-a24b-6e749401e06e new=019daa93-6177-7931-b2e3-d4d06d7d97f3 -2026-04-20T11:07:58.711510Z  INFO sov_sequencer::preferred::sync_sequencer_state::inner: Beginning sequencer recovery info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 279, latest_finalized_slot_number: 278, sync_status: Synced { synced_da_height: 278 }, .. } current_visible_slot_number=180 -2026-04-20T11:07:58.711511Z  WARN sov_sequencer::preferred::side_effects: TryToSave recovery strategy has been configured. The currently pending soft confirmations will be flushed to the node. This may save some of the transactions, but if any are no longer valid, the sequencer will be penalised. num_batches_to_replay=5 -2026-04-20T11:07:58.711564Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=290 blob_id=2147877600547098917008779009557100858 -2026-04-20T11:07:58.711578Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147877600547098917008779009557100858 -2026-04-20T11:07:58.711587Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=291 blob_id=2147877601528759078887033261935438480 -2026-04-20T11:07:58.711595Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147877601528759078887033261935438480 -2026-04-20T11:07:58.711602Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=292 blob_id=2147877602639777293463164234202424832 -2026-04-20T11:07:58.711610Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147877602639777293463164234202424832 -2026-04-20T11:07:58.711617Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=293 blob_id=2147877603624980371492831889446787890 -2026-04-20T11:07:58.711616Z DEBUG update_state_task_inner: sov_sequencer::preferred: Calculating amount of batches to send deferred_slots_count=109 maximum_delta=54 minimum_delta=43 current_catchup_delta=98 current_visible_slot_number=180 increase_per_batch=10 -2026-04-20T11:07:58.711625Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147877603624980371492831889446787890 -2026-04-20T11:07:58.711659Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=294 blob_id=2147877607795788966288302938591704728 -2026-04-20T11:07:58.711642Z  INFO update_state_task_inner: sov_sequencer::preferred: Recovery: sending max_batches_to_send empty catchup batches to bump the visible_slot_number min_batches_to_send=5 max_batches_to_send=6 -2026-04-20T11:07:58.711667Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147877607795788966288302938591704728 -2026-04-20T11:07:58.718214Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000061455s -2026-04-20T11:07:58.718252Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:08:04.706504Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=280 prev_hash=0x03ffea10ee7f0696a8f197d8176aa67c1812fcb164ee2c0bea9bb9e7936896c7 hash=0x7fffeae1904d037acf2c9bbc7374658d2542ba4003db3ec8ad2332382893e377 producing_time=1.057674ms -2026-04-20T11:08:04.709120Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=280 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c6a5069777fd4e94cc1a960a9f4fe6b9e852249e8447a2b60da4af756a4a14021" batch_blobs=[] proof_blobs=[] -2026-04-20T11:08:04.709440Z DEBUG StfBlueprint::apply_slot{context=Node da_height=280}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c6a5069777fd4e94cc1a960a9f4fe6b9e852249e8447a2b60da4af756a4a14021 next_version=280 sesssion_starting_time=45.33µs -2026-04-20T11:08:04.710090Z DEBUG StfBlueprint::apply_slot{context=Node da_height=280}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c16f4431c9597c3158c34574e5dfcf7c587333a2b285624a1aaf86147e75d7a56 next_version=280 time=708.346µs accesses_build_time=12.81µs finishing_session_time=618.616µs -2026-04-20T11:08:04.710146Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c0459572d75edf38b5ac87a07ec84008ffa900da51a540057a7c2f96f1319966f" next_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c16f4431c9597c3158c34574e5dfcf7c587333a2b285624a1aaf86147e75d7a56" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:08:04.710546Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=1 min=5 max=6 -2026-04-20T11:08:04.710588Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:08:04.710687Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=112 -2026-04-20T11:08:04.710801Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=190 -2026-04-20T11:08:04.710999Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:08:04.711383Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=190 sequence_number=295 -2026-04-20T11:08:04.711408Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=295 blob_id=2147878296165459643771907154689076491 visible_slot_number_after_increase=190 visible_slots_to_advance=10 -2026-04-20T11:08:04.711437Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=5 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:08:04.713017Z DEBUG manage_blob_submission_inside_task{blob_id=2147878296165459643771907154689076491 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x08d89da8fbecc75fe94d24a1d7c25a7626f3d3e07ee0de9ac883185954d4b6cb sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=281 include_at=281 bytes=13 time=407.527µs -2026-04-20T11:08:04.716470Z DEBUG compute_state_update{scope="sequencer" rollup_height=117 slot_number=190}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:08:04.716494Z DEBUG compute_state_update{scope="sequencer" rollup_height=117 slot_number=190}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:08:04.716507Z DEBUG sov_stf_runner::runner: Block execution complete time=5.998256746s -2026-04-20T11:08:04.716526Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:08:04.716545Z DEBUG compute_state_update{scope="sequencer" rollup_height=117 slot_number=190}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c6a5069777fd4e94cc1a960a9f4fe6b9e852249e8447a2b60da4af756a4a14021 next_version=280 sesssion_starting_time=4.718899ms -2026-04-20T11:08:04.717174Z DEBUG compute_state_update{scope="sequencer" rollup_height=117 slot_number=190}: sov_state::nomt::prover_storage: computed next state root state_root=27e6c1e7509b31d7fa0027ea1916beb363053566ad6d883e8c84c3a0dff2bd223d6697b5fec4545bfe8a83bf91b318d428149ea241d45dfe825613c9792feeb0 next_version=280 time=5.365625ms accesses_build_time=16.709µs finishing_session_time=609.906µs -2026-04-20T11:08:10.708867Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=281 prev_hash=0x7fffeae1904d037acf2c9bbc7374658d2542ba4003db3ec8ad2332382893e377 hash=0x65476c87c71d2364aa533a9e80b87c804a3e5c88b1d57ff22a2e3cbe4333185c producing_time=1.281702ms -2026-04-20T11:08:10.718730Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=281 current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c16f4431c9597c3158c34574e5dfcf7c587333a2b285624a1aaf86147e75d7a56" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x08d89da8fbecc75fe94d24a1d7c25a7626f3d3e07ee0de9ac883185954d4b6cb"] proof_blobs=[] -2026-04-20T11:08:10.719194Z DEBUG StfBlueprint::apply_slot{context=Node da_height=281}: sov_chain_state: Setting next visible slot number next_visible_slot_number=190 -2026-04-20T11:08:10.719531Z DEBUG StfBlueprint::apply_slot{context=Node da_height=281}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x08d89da8fbecc75fe94d24a1d7c25a7626f3d3e07ee0de9ac883185954d4b6cb}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=5 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:08:10.719740Z DEBUG StfBlueprint::apply_slot{context=Node da_height=281}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c16f4431c9597c3158c34574e5dfcf7c587333a2b285624a1aaf86147e75d7a56 next_version=281 sesssion_starting_time=47.759µs -2026-04-20T11:08:10.720776Z DEBUG StfBlueprint::apply_slot{context=Node da_height=281}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=27e6c1e7509b31d7fa0027ea1916beb363053566ad6d883e8c84c3a0dff2bd2236002807fa26fc4e36a1586be9051e6fad1bb8902a5832585b9d475ca117cd75 next_version=281 time=1.130543ms accesses_build_time=45.03µs finishing_session_time=1.012234ms -2026-04-20T11:08:10.720988Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="751321bd61d83488e9ee8b8403e2a87a37f3f80996e6d067e6b6045799279dc3" -2026-04-20T11:08:10.721009Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="910b96ed94ee736d6c39c9176a6b62befcfe8424c03730b08e49ffb9a7144a19" -2026-04-20T11:08:10.721021Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="be6c7248a43678670b754e6f6d035121a740e66cdbe64ee35331c2856a831323" -2026-04-20T11:08:10.721033Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ab708a730ee982dcbd4a5eeee3701001179e1018134ad5b60bb6cf2a7c8e85d1" -2026-04-20T11:08:10.721045Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="fef1e7d9411865ef173698322742c534511d8f4ef4094639a627afb49d097e5c" -2026-04-20T11:08:10.721077Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c6a5069777fd4e94cc1a960a9f4fe6b9e852249e8447a2b60da4af756a4a14021" next_state_root="27e6c1e7509b31d7fa0027ea1916beb363053566ad6d883e8c84c3a0dff2bd2236002807fa26fc4e36a1586be9051e6fad1bb8902a5832585b9d475ca117cd75" aggregated_proofs=0 proof_receipts=5 -2026-04-20T11:08:10.721251Z  WARN sov_stf_runner::processes::stf_info_manager: State Transition Info is not consumed fast enough, cannot prune older entries. Please check that consumer works. next_height_to_receive=180 prune_up_to=181 -2026-04-20T11:08:10.721599Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=2 min=5 max=6 -2026-04-20T11:08:10.721654Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:08:10.721711Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=113 -2026-04-20T11:08:10.721825Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=200 -2026-04-20T11:08:10.722012Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:08:10.722171Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=200 sequence_number=296 -2026-04-20T11:08:10.722198Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=296 blob_id=2147878303432271130025394233157471241 visible_slot_number_after_increase=200 visible_slots_to_advance=10 -2026-04-20T11:08:10.722235Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:08:10.724125Z DEBUG manage_blob_submission_inside_task{blob_id=2147878303432271130025394233157471241 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xaae401e53367a04b696c3af60181b50e63f6fd0bc07f980b9724b5677875b8d6 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=282 include_at=282 bytes=13 time=667.195µs -2026-04-20T11:08:10.727584Z DEBUG compute_state_update{scope="sequencer" rollup_height=118 slot_number=200}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:08:10.727618Z DEBUG sov_stf_runner::runner: Block execution complete time=6.011093484s -2026-04-20T11:08:10.727635Z DEBUG compute_state_update{scope="sequencer" rollup_height=118 slot_number=200}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:08:10.727657Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:08:10.727709Z DEBUG compute_state_update{scope="sequencer" rollup_height=118 slot_number=200}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c6a5069777fd4e94cc1a960a9f4fe6b9e852249e8447a2b60da4af756a4a14021 next_version=280 sesssion_starting_time=5.056787ms -2026-04-20T11:08:10.727748Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:10.727932Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:10.728689Z DEBUG compute_state_update{scope="sequencer" rollup_height=118 slot_number=200}: sov_state::nomt::prover_storage: computed next state root state_root=34400c727e35784560e31434799f7daffee000dd502d3f976e3e06650fbe08da032409afb33f8ac94a322d031cd6da187fc5224297431ccb19fb214d2df38bdb next_version=280 time=6.063101ms accesses_build_time=25.71µs finishing_session_time=959.194µs -2026-04-20T11:08:11.285942Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9ECK7UFkRz2C2JZGKMQCYQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:11.292512Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:11.303305Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 991613 cycles -2026-04-20T11:08:11.305873Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [66, 107, 104, 139, 218, 10, 153, 61, 172, 188, 232, 24, 156, 188, 137, 35, 197, 165, 135, 249, 51, 54, 81, 80, 56, 4, 71, 114, 167, 32, 107, 212, 54, 231, 208, 181, 170, 184, 215, 39, 110, 149, 131, 119, 198, 51, 101, 128, 11, 238, 164, 38, 50, 23, 34, 203, 127, 149, 249, 120, 242, 63, 12, 171, 66, 107, 104, 139, 218, 10, 153, 61, 172, 188, 232, 24, 156, 188, 137, 35, 197, 165, 135, 249, 51, 54, 81, 80, 56, 4, 71, 114, 167, 32, 107, 212, 83, 232, 168, 2, 183, 102, 236, 159, 37, 183, 189, 169, 251, 151, 5, 93, 241, 244, 248, 12, 240, 136, 85, 51, 93, 19, 170, 149, 47, 92, 183, 203, 48, 111, 93, 136, 133, 0, 136, 191, 15, 152, 5, 192, 207, 77, 48, 47, 191, 232, 144, 242, 81, 140, 80, 249, 83, 67, 80, 186, 183, 228, 49, 149, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:11.360843Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:11.360902Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:11.435108Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:11.469475Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Qdb9_Hv1Qyq27xhigrb-uQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:11.472302Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Qdb9_Hv1Qyq27xhigrb-uQ==: stderr: -2026-04-20T11:08:11.472322Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Qdb9_Hv1Qyq27xhigrb-uQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:11.472332Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Qdb9_Hv1Qyq27xhigrb-uQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:11.472341Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Qdb9_Hv1Qyq27xhigrb-uQ==: stderr: stack backtrace: -2026-04-20T11:08:11.472349Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Qdb9_Hv1Qyq27xhigrb-uQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:11.472354Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Qdb9_Hv1Qyq27xhigrb-uQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:11.472521Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:11.473214Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:11.473541Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:11.539501Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:11.539544Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:11.539706Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:11.539894Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:11.539968Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:11.540338Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=297 blob_id=2147878304419970959462290989938442245 -2026-04-20T11:08:12.109747Z DEBUG sp1_core_executor_runner::native: CHILD sp1_7KgGLH2fSQKUK95ErH1EwQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:12.129139Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:12.140993Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2905082 cycles -2026-04-20T11:08:12.143772Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [66, 107, 104, 139, 218, 10, 153, 61, 172, 188, 232, 24, 156, 188, 137, 35, 197, 165, 135, 249, 51, 54, 81, 80, 56, 4, 71, 114, 167, 32, 107, 212, 3, 142, 73, 148, 186, 221, 255, 59, 2, 206, 1, 152, 242, 17, 70, 83, 142, 167, 119, 173, 139, 113, 182, 59, 246, 11, 83, 33, 161, 128, 170, 160, 49, 153, 94, 22, 90, 212, 181, 193, 99, 72, 32, 42, 97, 195, 120, 64, 98, 187, 195, 31, 93, 111, 29, 189, 133, 44, 203, 152, 99, 104, 104, 124, 9, 33, 55, 135, 70, 206, 0, 33, 233, 119, 4, 106, 169, 116, 173, 5, 185, 112, 218, 75, 15, 53, 161, 28, 93, 154, 247, 5, 217, 57, 182, 254, 94, 159, 188, 5, 227, 145, 163, 168, 249, 167, 98, 168, 17, 204, 225, 120, 203, 41, 92, 53, 228, 135, 181, 190, 159, 191, 24, 244, 7, 165, 36, 218, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:12.264652Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:12.264689Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:12.347691Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:12.382174Z DEBUG sp1_core_executor_runner::native: CHILD sp1_89cPvRcjTw2r2rEVvDRAPw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:12.385069Z DEBUG sp1_core_executor_runner::native: CHILD sp1_89cPvRcjTw2r2rEVvDRAPw==: stderr: -2026-04-20T11:08:12.385096Z DEBUG sp1_core_executor_runner::native: CHILD sp1_89cPvRcjTw2r2rEVvDRAPw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:12.385111Z DEBUG sp1_core_executor_runner::native: CHILD sp1_89cPvRcjTw2r2rEVvDRAPw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:12.385123Z DEBUG sp1_core_executor_runner::native: CHILD sp1_89cPvRcjTw2r2rEVvDRAPw==: stderr: stack backtrace: -2026-04-20T11:08:12.385134Z DEBUG sp1_core_executor_runner::native: CHILD sp1_89cPvRcjTw2r2rEVvDRAPw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:12.385146Z DEBUG sp1_core_executor_runner::native: CHILD sp1_89cPvRcjTw2r2rEVvDRAPw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:12.385180Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:12.385997Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:12.386289Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:12.457476Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:12.457522Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:12.457703Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:12.457821Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:12.457883Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:12.458242Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=298 blob_id=2147878305529749178250006514357727457 -2026-04-20T11:08:13.023699Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yYcMVznwRqOQwIrLCogkxg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:13.031864Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:13.043272Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1223193 cycles -2026-04-20T11:08:13.045826Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [86, 116, 243, 130, 74, 3, 141, 206, 61, 239, 231, 68, 59, 109, 105, 218, 174, 74, 103, 181, 169, 230, 183, 243, 150, 139, 122, 46, 0, 235, 103, 23, 41, 54, 167, 20, 115, 254, 255, 60, 255, 11, 162, 166, 249, 122, 178, 227, 107, 28, 119, 135, 120, 16, 71, 115, 215, 47, 135, 186, 186, 210, 50, 255, 86, 116, 243, 130, 74, 3, 141, 206, 61, 239, 231, 68, 59, 109, 105, 218, 174, 74, 103, 181, 169, 230, 183, 243, 150, 139, 122, 46, 0, 235, 103, 23, 31, 181, 182, 123, 30, 65, 253, 155, 172, 110, 207, 143, 85, 244, 222, 1, 141, 145, 223, 230, 33, 100, 153, 168, 25, 234, 150, 4, 245, 179, 8, 97, 59, 20, 20, 14, 64, 243, 3, 14, 207, 68, 147, 243, 127, 65, 113, 23, 69, 19, 109, 4, 0, 26, 30, 98, 94, 253, 4, 97, 49, 154, 136, 17, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:13.113443Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:13.113493Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:13.164893Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:13.201216Z DEBUG sp1_core_executor_runner::native: CHILD sp1_N95UHIVbTradVfvzQwQI8A==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:13.204064Z DEBUG sp1_core_executor_runner::native: CHILD sp1_N95UHIVbTradVfvzQwQI8A==: stderr: -2026-04-20T11:08:13.204088Z DEBUG sp1_core_executor_runner::native: CHILD sp1_N95UHIVbTradVfvzQwQI8A==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:13.204099Z DEBUG sp1_core_executor_runner::native: CHILD sp1_N95UHIVbTradVfvzQwQI8A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:13.204106Z DEBUG sp1_core_executor_runner::native: CHILD sp1_N95UHIVbTradVfvzQwQI8A==: stderr: stack backtrace: -2026-04-20T11:08:13.204113Z DEBUG sp1_core_executor_runner::native: CHILD sp1_N95UHIVbTradVfvzQwQI8A==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:13.204133Z DEBUG sp1_core_executor_runner::native: CHILD sp1_N95UHIVbTradVfvzQwQI8A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:13.204217Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:13.205021Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:13.205311Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:13.273273Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:13.273329Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:13.273528Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:13.273694Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:13.273752Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:13.274169Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=299 blob_id=2147878306516276661449942326094388463 -2026-04-20T11:08:13.831256Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ryCCGywwTFq6dWBgOKTfRA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:13.837943Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:13.848380Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1001528 cycles -2026-04-20T11:08:13.850824Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [86, 116, 243, 130, 74, 3, 141, 206, 61, 239, 231, 68, 59, 109, 105, 218, 174, 74, 103, 181, 169, 230, 183, 243, 150, 139, 122, 46, 0, 235, 103, 23, 115, 43, 106, 252, 48, 3, 162, 199, 192, 229, 56, 121, 44, 181, 167, 99, 88, 104, 94, 5, 61, 56, 97, 110, 53, 21, 235, 234, 171, 71, 12, 56, 86, 116, 243, 130, 74, 3, 141, 206, 61, 239, 231, 68, 59, 109, 105, 218, 174, 74, 103, 181, 169, 230, 183, 243, 150, 139, 122, 46, 0, 235, 103, 23, 37, 190, 216, 230, 131, 178, 211, 164, 14, 98, 216, 132, 83, 70, 218, 176, 113, 244, 93, 220, 198, 229, 233, 73, 55, 240, 128, 118, 71, 247, 181, 179, 191, 47, 113, 75, 223, 120, 116, 113, 65, 202, 126, 207, 182, 27, 77, 212, 229, 13, 249, 192, 92, 107, 118, 165, 90, 228, 102, 155, 148, 63, 30, 241, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:13.907406Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:13.907447Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:13.982679Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:14.017366Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RC_J_4d6SyOOGS6YPTqjOQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:14.020216Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RC_J_4d6SyOOGS6YPTqjOQ==: stderr: -2026-04-20T11:08:14.020241Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RC_J_4d6SyOOGS6YPTqjOQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:14.020252Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RC_J_4d6SyOOGS6YPTqjOQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:14.020259Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RC_J_4d6SyOOGS6YPTqjOQ==: stderr: stack backtrace: -2026-04-20T11:08:14.020266Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RC_J_4d6SyOOGS6YPTqjOQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:14.020273Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RC_J_4d6SyOOGS6YPTqjOQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:14.020368Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:14.021154Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:14.021454Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:14.092426Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:14.092469Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:14.092590Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:14.092760Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:14.092817Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:14.093341Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=300 blob_id=2147878307506349682955671540902431400 -2026-04-20T11:08:14.644485Z DEBUG sp1_core_executor_runner::native: CHILD sp1_STUvferWRN2t1MqSvBbRkQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:14.663638Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:14.674134Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2780321 cycles -2026-04-20T11:08:14.676903Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [86, 116, 243, 130, 74, 3, 141, 206, 61, 239, 231, 68, 59, 109, 105, 218, 174, 74, 103, 181, 169, 230, 183, 243, 150, 139, 122, 46, 0, 235, 103, 23, 94, 35, 225, 222, 105, 36, 2, 175, 77, 113, 130, 207, 80, 29, 255, 237, 53, 149, 19, 165, 121, 212, 247, 254, 2, 200, 248, 52, 198, 6, 81, 135, 108, 197, 229, 95, 225, 212, 228, 158, 71, 125, 40, 60, 50, 30, 72, 8, 245, 145, 39, 73, 13, 207, 231, 107, 228, 95, 58, 173, 241, 14, 88, 144, 95, 132, 112, 149, 237, 52, 124, 148, 46, 124, 65, 66, 139, 20, 55, 128, 166, 142, 118, 233, 51, 193, 164, 189, 130, 54, 4, 139, 126, 252, 73, 55, 101, 151, 123, 248, 105, 12, 102, 64, 10, 210, 127, 1, 17, 151, 110, 107, 34, 78, 160, 31, 166, 7, 124, 9, 109, 153, 103, 178, 215, 215, 96, 236, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:14.792207Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:14.792242Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:14.901408Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:14.934910Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TAXDsK4jRlqAfbQYRls51A==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:14.937743Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TAXDsK4jRlqAfbQYRls51A==: stderr: -2026-04-20T11:08:14.937756Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TAXDsK4jRlqAfbQYRls51A==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:14.937765Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TAXDsK4jRlqAfbQYRls51A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:14.937773Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TAXDsK4jRlqAfbQYRls51A==: stderr: stack backtrace: -2026-04-20T11:08:14.937779Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TAXDsK4jRlqAfbQYRls51A==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:14.937784Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TAXDsK4jRlqAfbQYRls51A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:14.937927Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:14.938708Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:14.939001Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:15.009051Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:15.009093Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:15.009256Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:15.009496Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:15.009577Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:15.009978Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=301 blob_id=2147878308614970688192590829458702466 -2026-04-20T11:08:15.562034Z DEBUG sp1_core_executor_runner::native: CHILD sp1_GlXFZc_tSqyouZIXqWCbmg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:15.576989Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:15.587160Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2061197 cycles -2026-04-20T11:08:15.589899Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [86, 151, 127, 4, 99, 68, 163, 200, 133, 27, 5, 242, 211, 78, 193, 6, 238, 1, 93, 43, 186, 219, 201, 143, 219, 69, 27, 139, 138, 32, 70, 4, 60, 89, 45, 107, 245, 42, 242, 53, 52, 99, 23, 185, 245, 7, 243, 202, 78, 76, 33, 122, 156, 142, 230, 109, 57, 99, 48, 60, 121, 13, 79, 229, 27, 70, 103, 137, 171, 4, 113, 106, 177, 137, 163, 71, 31, 249, 169, 147, 218, 68, 231, 31, 85, 164, 28, 146, 242, 44, 157, 198, 18, 5, 116, 77, 64, 120, 208, 24, 55, 90, 190, 164, 126, 76, 112, 160, 168, 109, 127, 203, 20, 31, 59, 250, 100, 127, 185, 55, 172, 145, 87, 119, 71, 233, 225, 117, 197, 233, 114, 66, 91, 152, 68, 247, 46, 224, 116, 232, 60, 152, 68, 120, 93, 0, 116, 115, 60, 30, 230, 169, 20, 183, 183, 232, 116, 30, 135, 29, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:15.684129Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:15.684163Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:15.718526Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:15.753824Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HrvSwjSGSY-Q2NGX69oiFA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:15.756673Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HrvSwjSGSY-Q2NGX69oiFA==: stderr: -2026-04-20T11:08:15.756697Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HrvSwjSGSY-Q2NGX69oiFA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:15.756706Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HrvSwjSGSY-Q2NGX69oiFA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:15.756713Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HrvSwjSGSY-Q2NGX69oiFA==: stderr: stack backtrace: -2026-04-20T11:08:15.756719Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HrvSwjSGSY-Q2NGX69oiFA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:15.756725Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HrvSwjSGSY-Q2NGX69oiFA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:15.756856Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:15.757624Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:15.757938Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:15.825710Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:15.825752Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:15.825920Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:15.826108Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:15.826167Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:15.826826Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=302 blob_id=2147878309601423715935874600682577203 -2026-04-20T11:08:16.342089Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Kgjzq_r9So61Bn3wVvh7Og==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:16.349024Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:16.358186Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1044265 cycles -2026-04-20T11:08:16.360724Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 69, 195, 91, 235, 156, 101, 13, 71, 242, 156, 194, 106, 92, 250, 178, 74, 214, 30, 22, 111, 96, 114, 155, 165, 216, 131, 221, 142, 0, 90, 121, 57, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 88, 42, 111, 170, 61, 158, 193, 53, 173, 115, 214, 78, 4, 242, 159, 232, 217, 208, 40, 1, 71, 213, 21, 127, 126, 191, 230, 15, 106, 49, 73, 24, 145, 148, 110, 109, 90, 210, 54, 170, 216, 188, 107, 100, 204, 88, 146, 36, 169, 224, 173, 206, 145, 22, 105, 171, 22, 50, 187, 130, 109, 160, 245, 93, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:16.419964Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:16.420007Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:16.433760Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:16.471116Z DEBUG sp1_core_executor_runner::native: CHILD sp1_acJjiFAISH6zbFGIhT9Tzw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:16.473945Z DEBUG sp1_core_executor_runner::native: CHILD sp1_acJjiFAISH6zbFGIhT9Tzw==: stderr: -2026-04-20T11:08:16.473956Z DEBUG sp1_core_executor_runner::native: CHILD sp1_acJjiFAISH6zbFGIhT9Tzw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:16.473965Z DEBUG sp1_core_executor_runner::native: CHILD sp1_acJjiFAISH6zbFGIhT9Tzw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:16.473972Z DEBUG sp1_core_executor_runner::native: CHILD sp1_acJjiFAISH6zbFGIhT9Tzw==: stderr: stack backtrace: -2026-04-20T11:08:16.473978Z DEBUG sp1_core_executor_runner::native: CHILD sp1_acJjiFAISH6zbFGIhT9Tzw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:16.473984Z DEBUG sp1_core_executor_runner::native: CHILD sp1_acJjiFAISH6zbFGIhT9Tzw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:16.474144Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:16.474941Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:16.475230Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:16.541233Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:16.541277Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:16.541434Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:16.541611Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:16.541665Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:16.542082Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=303 blob_id=2147878310467040632967992187939829645 -2026-04-20T11:08:16.711035Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=8 height=282 prev_hash=0x65476c87c71d2364aa533a9e80b87c804a3e5c88b1d57ff22a2e3cbe4333185c hash=0xe35b6e0d509340855e1650db9b376a93d0d98f91cb27442cd2f44653d951a651 producing_time=1.317811ms -2026-04-20T11:08:16.720083Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=282 current_state_root="27e6c1e7509b31d7fa0027ea1916beb363053566ad6d883e8c84c3a0dff2bd2236002807fa26fc4e36a1586be9051e6fad1bb8902a5832585b9d475ca117cd75" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xaae401e53367a04b696c3af60181b50e63f6fd0bc07f980b9724b5677875b8d6"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xb531e37e0aefe6f111bb5230c89866a8ee7d9526b1343b96dbb960538fd5ce00, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x7ab1bc263442b3e74d9fde14a4a82da588a43087bf5dedf2934539b584d4df19, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xeea663ffb44f26fbc3b94d12364ec63e1bafb8c0db37ad3163bae4adeebee1e1, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd79d7d651e930a9048c73e99384f45d7488856018f1144aac2548a6ab8b6293a, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9f97a3e65aa28706eb343356cbca5dc307fe4ddb7bd7b3f0df500e386d6a24db, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xbde5ac632222471141cebd7a288f4020d9ee2fd8886a153cf1b0a0a0df9b3815, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc885f4cf60ec05dd9aca044d697fba63d93f5a22d92ffe0e20ca9d18e44b5708, len=625"] -2026-04-20T11:08:16.720493Z DEBUG StfBlueprint::apply_slot{context=Node da_height=282}: sov_chain_state: Setting next visible slot number next_visible_slot_number=200 -2026-04-20T11:08:16.720639Z DEBUG StfBlueprint::apply_slot{context=Node da_height=282}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xaae401e53367a04b696c3af60181b50e63f6fd0bc07f980b9724b5677875b8d6}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:08:16.720844Z DEBUG StfBlueprint::apply_slot{context=Node da_height=282}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=27e6c1e7509b31d7fa0027ea1916beb363053566ad6d883e8c84c3a0dff2bd2236002807fa26fc4e36a1586be9051e6fad1bb8902a5832585b9d475ca117cd75 next_version=282 sesssion_starting_time=50.1µs -2026-04-20T11:08:16.722076Z DEBUG StfBlueprint::apply_slot{context=Node da_height=282}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=34400c727e35784560e31434799f7daffee000dd502d3f976e3e06650fbe08da2834db71d2bec2205ec309b3e9125bfde264b0371ae79d875b6e88c0f59a2708 next_version=282 time=1.333751ms accesses_build_time=50.519µs finishing_session_time=1.205882ms -2026-04-20T11:08:16.722282Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c16f4431c9597c3158c34574e5dfcf7c587333a2b285624a1aaf86147e75d7a56" next_state_root="34400c727e35784560e31434799f7daffee000dd502d3f976e3e06650fbe08da2834db71d2bec2205ec309b3e9125bfde264b0371ae79d875b6e88c0f59a2708" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:08:16.722755Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=3 min=5 max=6 -2026-04-20T11:08:16.722808Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:08:16.722867Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=114 -2026-04-20T11:08:16.722977Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=210 -2026-04-20T11:08:16.723254Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:08:16.723726Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=210 sequence_number=304 -2026-04-20T11:08:16.723757Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=304 blob_id=2147878310687036501607595448995497261 visible_slot_number_after_increase=210 visible_slots_to_advance=10 -2026-04-20T11:08:16.723782Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=7 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:08:16.725689Z DEBUG manage_blob_submission_inside_task{blob_id=2147878310687036501607595448995497261 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xd703ac5287b6250b5fd64997ebc15da1c713237d750af7fe23931ef63715fa58 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=283 include_at=283 bytes=13 time=584.336µs -2026-04-20T11:08:16.734593Z DEBUG compute_state_update{scope="sequencer" rollup_height=119 slot_number=210}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:08:16.734620Z DEBUG compute_state_update{scope="sequencer" rollup_height=119 slot_number=210}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:08:16.734620Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00696493s -2026-04-20T11:08:16.734652Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:08:16.734681Z DEBUG compute_state_update{scope="sequencer" rollup_height=119 slot_number=210}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c6a5069777fd4e94cc1a960a9f4fe6b9e852249e8447a2b60da4af756a4a14021 next_version=280 sesssion_starting_time=10.434373ms -2026-04-20T11:08:16.735660Z DEBUG compute_state_update{scope="sequencer" rollup_height=119 slot_number=210}: sov_state::nomt::prover_storage: computed next state root state_root=7e3ab002de214dc7e3ad9cbb1ffe80d7e335a0840ad39e82fb6d331cd5af354139c36d1657433ebdb98e86446d0aa03d05d8141e4559be20f5876dc2ae5ed7cb next_version=280 time=11.448357ms accesses_build_time=34.43µs finishing_session_time=944.624µs -2026-04-20T11:08:17.091496Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-HN1dLDfQJqebf4LX4b2wQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:17.098402Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:17.108081Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1019744 cycles -2026-04-20T11:08:17.110916Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 23, 94, 169, 186, 5, 189, 58, 36, 137, 23, 144, 69, 241, 240, 215, 157, 213, 233, 140, 54, 88, 233, 40, 120, 240, 94, 77, 152, 26, 130, 247, 82, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 112, 250, 34, 56, 72, 25, 66, 13, 248, 125, 173, 118, 71, 60, 114, 46, 173, 46, 106, 98, 247, 212, 108, 51, 220, 27, 185, 129, 201, 12, 214, 114, 129, 148, 156, 133, 32, 176, 228, 94, 176, 57, 157, 155, 207, 244, 55, 53, 165, 234, 251, 119, 97, 67, 13, 125, 213, 110, 199, 168, 3, 83, 198, 130, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:17.168206Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:17.168248Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:17.249242Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:17.283667Z DEBUG sp1_core_executor_runner::native: CHILD sp1_syJloHPFQT6wKpYixEAzJQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:17.286537Z DEBUG sp1_core_executor_runner::native: CHILD sp1_syJloHPFQT6wKpYixEAzJQ==: stderr: -2026-04-20T11:08:17.286549Z DEBUG sp1_core_executor_runner::native: CHILD sp1_syJloHPFQT6wKpYixEAzJQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:17.286557Z DEBUG sp1_core_executor_runner::native: CHILD sp1_syJloHPFQT6wKpYixEAzJQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:17.286578Z DEBUG sp1_core_executor_runner::native: CHILD sp1_syJloHPFQT6wKpYixEAzJQ==: stderr: stack backtrace: -2026-04-20T11:08:17.286584Z DEBUG sp1_core_executor_runner::native: CHILD sp1_syJloHPFQT6wKpYixEAzJQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:17.286590Z DEBUG sp1_core_executor_runner::native: CHILD sp1_syJloHPFQT6wKpYixEAzJQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:17.286736Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:17.287460Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:17.287750Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:17.355682Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:17.355726Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:17.355857Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:17.355992Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:17.356042Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:17.356481Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=305 blob_id=2147878311451117759737359129913791982 -2026-04-20T11:08:17.904873Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Kjumvk6aTaaLFsDK3HT4xg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:17.911260Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:17.921252Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 974636 cycles -2026-04-20T11:08:17.923869Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 6, 124, 156, 234, 67, 68, 11, 46, 170, 2, 76, 127, 162, 112, 7, 173, 5, 49, 170, 247, 0, 221, 34, 111, 233, 140, 139, 11, 158, 111, 217, 172, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 86, 97, 60, 25, 124, 178, 14, 118, 135, 53, 130, 100, 209, 80, 43, 167, 234, 180, 58, 141, 100, 148, 9, 8, 217, 249, 99, 14, 207, 145, 48, 164, 122, 37, 167, 85, 161, 140, 105, 62, 142, 36, 79, 188, 180, 10, 1, 23, 25, 5, 40, 136, 172, 15, 127, 194, 130, 3, 148, 89, 72, 166, 223, 57, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:17.979379Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:17.979436Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:18.063441Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:18.088431Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9BwHNLDxTXGattkbbbfjZw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:18.091268Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9BwHNLDxTXGattkbbbfjZw==: stderr: -2026-04-20T11:08:18.091293Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9BwHNLDxTXGattkbbbfjZw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:18.091302Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9BwHNLDxTXGattkbbbfjZw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:18.091309Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9BwHNLDxTXGattkbbbfjZw==: stderr: stack backtrace: -2026-04-20T11:08:18.091332Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9BwHNLDxTXGattkbbbfjZw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:18.091339Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9BwHNLDxTXGattkbbbfjZw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:18.091425Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:18.092209Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:18.092504Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:18.158395Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:18.158439Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:18.158601Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:18.158763Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:18.158818Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:18.159291Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=306 blob_id=2147878312421848596971220170116723982 -2026-04-20T11:08:18.706813Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9L9vtyUkQRqtDIrKbVQxNw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:18.713224Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:18.722815Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 973134 cycles -2026-04-20T11:08:18.725256Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 48, 203, 3, 24, 123, 254, 160, 179, 92, 174, 70, 19, 214, 194, 206, 184, 45, 7, 215, 203, 33, 135, 238, 186, 186, 243, 94, 219, 102, 65, 192, 50, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 16, 173, 82, 29, 150, 180, 184, 142, 32, 165, 167, 127, 25, 149, 87, 76, 126, 193, 95, 152, 254, 158, 125, 237, 141, 251, 153, 8, 84, 245, 229, 3, 1, 15, 148, 35, 10, 41, 242, 135, 67, 160, 107, 200, 40, 165, 135, 69, 162, 243, 79, 185, 251, 125, 175, 202, 137, 242, 106, 184, 245, 199, 154, 164, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:18.778799Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:18.778840Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:18.867130Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:18.899570Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JtQlcuFdTvafaY4wXoEPBg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:18.902420Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JtQlcuFdTvafaY4wXoEPBg==: stderr: -2026-04-20T11:08:18.902443Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JtQlcuFdTvafaY4wXoEPBg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:18.902454Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JtQlcuFdTvafaY4wXoEPBg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:18.902460Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JtQlcuFdTvafaY4wXoEPBg==: stderr: stack backtrace: -2026-04-20T11:08:18.902467Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JtQlcuFdTvafaY4wXoEPBg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:18.902473Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JtQlcuFdTvafaY4wXoEPBg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:18.902577Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:18.903382Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:18.903670Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:18.970049Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:18.970092Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:18.970248Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:18.970406Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:18.970454Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:18.970775Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=307 blob_id=2147878313403478027640678656366200537 -2026-04-20T11:08:19.513484Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vQFzSOc-SBm7j4n1MMlIYQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:19.519987Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:19.529139Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 989233 cycles -2026-04-20T11:08:19.531754Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 55, 25, 134, 221, 232, 172, 156, 145, 68, 13, 71, 152, 90, 107, 92, 47, 137, 155, 166, 161, 41, 90, 0, 152, 31, 180, 103, 54, 112, 90, 67, 81, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 18, 206, 61, 144, 103, 81, 16, 173, 216, 176, 57, 57, 26, 228, 130, 252, 166, 20, 22, 6, 241, 173, 6, 220, 159, 235, 47, 54, 174, 202, 46, 255, 206, 42, 152, 33, 84, 184, 216, 167, 243, 186, 143, 226, 76, 55, 50, 207, 53, 151, 234, 148, 28, 202, 51, 59, 163, 15, 43, 20, 134, 107, 15, 31, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:19.588053Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:19.588097Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:19.679286Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:19.713684Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BePj32DhTNu39h11BfkYww==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:19.716524Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BePj32DhTNu39h11BfkYww==: stderr: -2026-04-20T11:08:19.716548Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BePj32DhTNu39h11BfkYww==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:19.716559Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BePj32DhTNu39h11BfkYww==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:19.716566Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BePj32DhTNu39h11BfkYww==: stderr: stack backtrace: -2026-04-20T11:08:19.716587Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BePj32DhTNu39h11BfkYww==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:19.716594Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BePj32DhTNu39h11BfkYww==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:19.716701Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:19.717480Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:19.717773Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:19.786029Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:19.786071Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:19.786195Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:19.786349Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:19.786419Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:19.786857Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=308 blob_id=2147878314389946772225894332658525609 -2026-04-20T11:08:20.331463Z DEBUG sp1_core_executor_runner::native: CHILD sp1_lpukZaO6SMmf0kL5UE0VNA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:20.338002Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:20.347355Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 992015 cycles -2026-04-20T11:08:20.349783Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 103, 57, 73, 202, 123, 146, 255, 212, 26, 193, 249, 2, 127, 197, 33, 175, 55, 185, 176, 190, 97, 206, 62, 127, 34, 167, 126, 251, 107, 255, 116, 138, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 30, 175, 158, 47, 122, 175, 45, 251, 195, 11, 159, 22, 62, 81, 71, 201, 73, 113, 194, 133, 240, 43, 162, 11, 195, 60, 161, 179, 6, 137, 95, 125, 193, 90, 145, 188, 101, 247, 199, 128, 254, 83, 20, 192, 197, 208, 45, 37, 51, 154, 25, 159, 3, 229, 146, 73, 24, 174, 166, 199, 80, 64, 58, 142, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:20.406162Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:20.406206Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:20.492925Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:20.527544Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kFxHFjfCTTqg244tIh_mxQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:20.530381Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kFxHFjfCTTqg244tIh_mxQ==: stderr: -2026-04-20T11:08:20.530403Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kFxHFjfCTTqg244tIh_mxQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:20.530413Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kFxHFjfCTTqg244tIh_mxQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:20.530420Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kFxHFjfCTTqg244tIh_mxQ==: stderr: stack backtrace: -2026-04-20T11:08:20.530427Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kFxHFjfCTTqg244tIh_mxQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:20.530433Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kFxHFjfCTTqg244tIh_mxQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:20.530554Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:20.531294Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:20.531589Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:20.597272Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:20.597326Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:20.597486Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:20.597625Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:20.597678Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:20.598224Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=309 blob_id=2147878315370388213280263012970703734 -2026-04-20T11:08:21.133629Z DEBUG sp1_core_executor_runner::native: CHILD sp1_76cDE40SQomHGppjGthzeQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:21.140504Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:21.152492Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 969171 cycles -2026-04-20T11:08:21.155588Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 86, 173, 98, 95, 186, 147, 196, 252, 48, 76, 154, 229, 141, 131, 8, 139, 27, 104, 25, 145, 81, 3, 114, 253, 65, 29, 31, 254, 40, 203, 67, 246, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 41, 147, 79, 86, 220, 168, 24, 166, 15, 80, 67, 172, 98, 231, 192, 242, 61, 215, 126, 32, 200, 126, 125, 111, 160, 151, 45, 172, 123, 75, 10, 7, 15, 210, 187, 75, 218, 151, 117, 83, 119, 82, 180, 159, 74, 29, 115, 12, 20, 14, 139, 207, 107, 219, 95, 5, 161, 145, 212, 234, 169, 174, 105, 123, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:21.211072Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:21.211116Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:21.305549Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:21.340129Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NdHJJM3jR1GkL2_YKV74Lw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:21.342989Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NdHJJM3jR1GkL2_YKV74Lw==: stderr: -2026-04-20T11:08:21.343000Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NdHJJM3jR1GkL2_YKV74Lw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:21.343008Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NdHJJM3jR1GkL2_YKV74Lw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:21.343015Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NdHJJM3jR1GkL2_YKV74Lw==: stderr: stack backtrace: -2026-04-20T11:08:21.343021Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NdHJJM3jR1GkL2_YKV74Lw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:21.343027Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NdHJJM3jR1GkL2_YKV74Lw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:21.343207Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:21.343996Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:21.344341Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:21.410301Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:21.410358Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:21.410553Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:21.410735Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:21.410791Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:21.411226Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=310 blob_id=2147878316353244903614377254893350798 -2026-04-20T11:08:21.970393Z DEBUG sp1_core_executor_runner::native: CHILD sp1_e88-1nHbRzCvZiBRgLrufw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:21.976738Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:21.987820Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 963210 cycles -2026-04-20T11:08:21.990634Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 72, 88, 204, 226, 151, 208, 225, 176, 99, 91, 154, 182, 44, 120, 129, 15, 243, 174, 242, 227, 153, 224, 212, 146, 45, 194, 255, 3, 141, 172, 194, 159, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 14, 136, 69, 128, 125, 95, 71, 202, 37, 241, 225, 163, 178, 197, 180, 80, 100, 50, 60, 123, 208, 178, 141, 215, 157, 141, 20, 174, 92, 140, 97, 31, 39, 60, 173, 158, 151, 253, 36, 110, 66, 212, 241, 22, 242, 42, 34, 36, 37, 160, 31, 83, 234, 79, 36, 163, 123, 3, 245, 192, 226, 142, 250, 161, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:22.030559Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:22.030597Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:22.117726Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:22.154331Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SdF3X9RZSUCdG-YaKkt2lA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:22.157152Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SdF3X9RZSUCdG-YaKkt2lA==: stderr: -2026-04-20T11:08:22.157167Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SdF3X9RZSUCdG-YaKkt2lA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:22.157178Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SdF3X9RZSUCdG-YaKkt2lA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:22.157186Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SdF3X9RZSUCdG-YaKkt2lA==: stderr: stack backtrace: -2026-04-20T11:08:22.157195Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SdF3X9RZSUCdG-YaKkt2lA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:22.157218Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SdF3X9RZSUCdG-YaKkt2lA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:22.157364Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:22.158140Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:22.158441Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:22.229708Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:22.229751Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:22.229908Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:22.230020Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:22.230075Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:22.230377Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=311 blob_id=2147878317343365517641913634509497072 -2026-04-20T11:08:22.712859Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=8 height=283 prev_hash=0xe35b6e0d509340855e1650db9b376a93d0d98f91cb27442cd2f44653d951a651 hash=0xdff26499599bab7df709db322930c63ab36e15ff8a91fecd9f41741627cbdcff producing_time=1.164442ms -2026-04-20T11:08:22.716693Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=283 current_state_root="34400c727e35784560e31434799f7daffee000dd502d3f976e3e06650fbe08da2834db71d2bec2205ec309b3e9125bfde264b0371ae79d875b6e88c0f59a2708" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd703ac5287b6250b5fd64997ebc15da1c713237d750af7fe23931ef63715fa58"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xfaa015233231bbd6920b4405b26e2a53c0914fe969386ea004ae48f1e6715ca3, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe9ccd1292834f8ba6056e304e84dda1441346e84832077d92ad031187f7ae5f2, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9b801a10a1a3e753a5cba4ddc8ea0b51360a0bb1d3c2de3a512cd464925fd2ad, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0d0a9e17d9dbb5b00517b4cf77a6935950c981cae984b0ca523e8e702915d51e, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf0a069879aeb8a8885b1ad7aba2aa2f498e95c1e9d1f68d59e251a77a34dca32, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x58e0ef84245ea8575177865845f958d35bfc2ed44ead716440699c33b678ec08, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x3d7dd06e9bb0c9644ce5d332de7a9f5fc84ec941cf181830d815b058f7a50f05, len=625"] -2026-04-20T11:08:22.717169Z DEBUG StfBlueprint::apply_slot{context=Node da_height=283}: sov_chain_state: Setting next visible slot number next_visible_slot_number=210 -2026-04-20T11:08:22.717551Z DEBUG StfBlueprint::apply_slot{context=Node da_height=283}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xd703ac5287b6250b5fd64997ebc15da1c713237d750af7fe23931ef63715fa58}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=7 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:08:22.717767Z DEBUG StfBlueprint::apply_slot{context=Node da_height=283}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=34400c727e35784560e31434799f7daffee000dd502d3f976e3e06650fbe08da2834db71d2bec2205ec309b3e9125bfde264b0371ae79d875b6e88c0f59a2708 next_version=283 sesssion_starting_time=47.26µs -2026-04-20T11:08:22.718997Z DEBUG StfBlueprint::apply_slot{context=Node da_height=283}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=7e3ab002de214dc7e3ad9cbb1ffe80d7e335a0840ad39e82fb6d331cd5af354129a3d821e6256b0732fcef8b49ac0463315045b2f5069ff52693e576ad2398dd next_version=283 time=1.340082ms accesses_build_time=60.93µs finishing_session_time=1.207642ms -2026-04-20T11:08:22.719190Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="b531e37e0aefe6f111bb5230c89866a8ee7d9526b1343b96dbb960538fd5ce00" -2026-04-20T11:08:22.719206Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="7ab1bc263442b3e74d9fde14a4a82da588a43087bf5dedf2934539b584d4df19" -2026-04-20T11:08:22.719214Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="eea663ffb44f26fbc3b94d12364ec63e1bafb8c0db37ad3163bae4adeebee1e1" -2026-04-20T11:08:22.719223Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="d79d7d651e930a9048c73e99384f45d7488856018f1144aac2548a6ab8b6293a" -2026-04-20T11:08:22.719232Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="9f97a3e65aa28706eb343356cbca5dc307fe4ddb7bd7b3f0df500e386d6a24db" -2026-04-20T11:08:22.719254Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="bde5ac632222471141cebd7a288f4020d9ee2fd8886a153cf1b0a0a0df9b3815" -2026-04-20T11:08:22.719262Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="c885f4cf60ec05dd9aca044d697fba63d93f5a22d92ffe0e20ca9d18e44b5708" -2026-04-20T11:08:22.719273Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="27e6c1e7509b31d7fa0027ea1916beb363053566ad6d883e8c84c3a0dff2bd2236002807fa26fc4e36a1586be9051e6fad1bb8902a5832585b9d475ca117cd75" next_state_root="7e3ab002de214dc7e3ad9cbb1ffe80d7e335a0840ad39e82fb6d331cd5af354129a3d821e6256b0732fcef8b49ac0463315045b2f5069ff52693e576ad2398dd" aggregated_proofs=0 proof_receipts=7 -2026-04-20T11:08:22.719788Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=4 min=5 max=6 -2026-04-20T11:08:22.719840Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:08:22.719902Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=115 -2026-04-20T11:08:22.720014Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=220 -2026-04-20T11:08:22.720327Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:08:22.720791Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=220 sequence_number=312 -2026-04-20T11:08:22.720822Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=312 blob_id=2147878317936943981709474947190393433 visible_slot_number_after_increase=220 visible_slots_to_advance=10 -2026-04-20T11:08:22.720840Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=7 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:08:22.722489Z DEBUG manage_blob_submission_inside_task{blob_id=2147878317936943981709474947190393433 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x654334cbae7e85b916d2131bb3ad0819fa0b1c0e9e6518eb59d3ae642d81ff51 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=284 include_at=284 bytes=13 time=584.656µs -2026-04-20T11:08:22.731592Z DEBUG compute_state_update{scope="sequencer" rollup_height=120 slot_number=220}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:08:22.731617Z DEBUG compute_state_update{scope="sequencer" rollup_height=120 slot_number=220}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:08:22.731629Z DEBUG sov_stf_runner::runner: Block execution complete time=5.996978665s -2026-04-20T11:08:22.731647Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:08:22.731663Z DEBUG compute_state_update{scope="sequencer" rollup_height=120 slot_number=220}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c6a5069777fd4e94cc1a960a9f4fe6b9e852249e8447a2b60da4af756a4a14021 next_version=280 sesssion_starting_time=10.388893ms -2026-04-20T11:08:22.732727Z DEBUG compute_state_update{scope="sequencer" rollup_height=120 slot_number=220}: sov_state::nomt::prover_storage: computed next state root state_root=6f72f89b2a884697491196445d032a79b9255027eaa121e88818e8ff64713ade10a4b4d737bf03cd104d0d5d13808584d19bc275fede2c58c69273132bc60520 next_version=280 time=11.493646ms accesses_build_time=39.93µs finishing_session_time=1.047653ms -2026-04-20T11:08:22.787087Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TOoh-defSySjPkRUaCtzfQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:22.793854Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:22.803573Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 994287 cycles -2026-04-20T11:08:22.806226Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 113, 216, 100, 120, 204, 26, 226, 119, 79, 199, 68, 19, 103, 150, 137, 168, 207, 228, 76, 66, 33, 240, 19, 37, 75, 8, 184, 89, 52, 179, 168, 19, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 44, 114, 60, 192, 40, 155, 75, 69, 78, 123, 77, 55, 118, 241, 147, 4, 41, 225, 63, 48, 201, 252, 192, 68, 166, 92, 240, 204, 173, 7, 122, 64, 201, 98, 232, 28, 97, 28, 18, 206, 48, 213, 66, 74, 222, 63, 244, 138, 35, 55, 200, 156, 250, 143, 218, 102, 87, 151, 100, 242, 123, 217, 237, 223, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:22.862806Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:22.862849Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:22.936798Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:22.971555Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TotxG6o4TNWIVimarysftQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:22.974406Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TotxG6o4TNWIVimarysftQ==: stderr: -2026-04-20T11:08:22.974419Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TotxG6o4TNWIVimarysftQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:22.974428Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TotxG6o4TNWIVimarysftQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:22.974436Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TotxG6o4TNWIVimarysftQ==: stderr: stack backtrace: -2026-04-20T11:08:22.974443Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TotxG6o4TNWIVimarysftQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:22.974449Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TotxG6o4TNWIVimarysftQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:22.974613Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:22.975384Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:22.975708Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:23.041733Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:23.041781Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:23.041939Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:23.042095Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:23.042157Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:23.042529Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=313 blob_id=2147878318325007401966873760057095573 -2026-04-20T11:08:23.592295Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XQ-cUMxaQou0VsSE9qmN-A==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:23.598989Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:23.609689Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1005647 cycles -2026-04-20T11:08:23.612140Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 4, 70, 10, 50, 134, 252, 228, 92, 56, 116, 217, 230, 171, 212, 222, 112, 78, 249, 254, 237, 27, 23, 141, 73, 126, 236, 228, 78, 250, 115, 215, 110, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 111, 17, 37, 115, 118, 141, 103, 208, 6, 157, 156, 202, 105, 240, 235, 247, 101, 79, 30, 105, 28, 227, 176, 57, 205, 41, 92, 142, 100, 54, 104, 22, 134, 206, 15, 158, 192, 183, 10, 138, 64, 217, 115, 189, 237, 193, 108, 93, 83, 99, 188, 57, 200, 42, 143, 88, 226, 85, 28, 96, 252, 169, 110, 45, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:23.667788Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:23.667835Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:23.748982Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:23.782493Z DEBUG sp1_core_executor_runner::native: CHILD sp1_D-Xrp0TsSUSE1ncwIR9XOg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:23.785332Z DEBUG sp1_core_executor_runner::native: CHILD sp1_D-Xrp0TsSUSE1ncwIR9XOg==: stderr: -2026-04-20T11:08:23.785357Z DEBUG sp1_core_executor_runner::native: CHILD sp1_D-Xrp0TsSUSE1ncwIR9XOg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:23.785367Z DEBUG sp1_core_executor_runner::native: CHILD sp1_D-Xrp0TsSUSE1ncwIR9XOg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:23.785374Z DEBUG sp1_core_executor_runner::native: CHILD sp1_D-Xrp0TsSUSE1ncwIR9XOg==: stderr: stack backtrace: -2026-04-20T11:08:23.785381Z DEBUG sp1_core_executor_runner::native: CHILD sp1_D-Xrp0TsSUSE1ncwIR9XOg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:23.785389Z DEBUG sp1_core_executor_runner::native: CHILD sp1_D-Xrp0TsSUSE1ncwIR9XOg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:23.785475Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:23.786213Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:23.786506Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:23.857938Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:23.857978Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:23.858134Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:23.858285Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:23.858334Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:23.858704Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=314 blob_id=2147878319312741410764818226683295254 -2026-04-20T11:08:24.367783Z DEBUG sp1_core_executor_runner::native: CHILD sp1_X1qzHWmpTsKnEsZ2VILmwg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:24.374293Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:24.384524Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 983701 cycles -2026-04-20T11:08:24.387275Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 24, 226, 106, 32, 233, 26, 174, 253, 64, 49, 218, 82, 246, 154, 199, 29, 255, 171, 79, 233, 125, 13, 171, 11, 242, 21, 142, 102, 254, 161, 163, 244, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 89, 232, 216, 203, 32, 35, 165, 14, 27, 213, 251, 237, 3, 130, 34, 96, 192, 252, 143, 6, 22, 239, 180, 217, 173, 97, 80, 7, 147, 190, 130, 210, 1, 191, 195, 44, 133, 88, 61, 133, 102, 26, 159, 150, 92, 174, 79, 134, 60, 114, 213, 155, 148, 88, 75, 138, 171, 229, 11, 45, 75, 125, 166, 33, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:24.442008Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:24.442053Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:24.465444Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:24.499588Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fEz66pkIS7egPDVdZYHqBA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:24.502435Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fEz66pkIS7egPDVdZYHqBA==: stderr: -2026-04-20T11:08:24.502452Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fEz66pkIS7egPDVdZYHqBA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:24.502463Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fEz66pkIS7egPDVdZYHqBA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:24.502474Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fEz66pkIS7egPDVdZYHqBA==: stderr: stack backtrace: -2026-04-20T11:08:24.502482Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fEz66pkIS7egPDVdZYHqBA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:24.502491Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fEz66pkIS7egPDVdZYHqBA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:24.502635Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:24.503412Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:24.503706Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:24.570563Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:24.570605Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:24.570797Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:24.570941Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:24.570996Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:24.571412Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=315 blob_id=2147878320173498014244626977419916954 -2026-04-20T11:08:25.124368Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kX-Zh_jiSCuv8xz_FPK0ug==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:25.131227Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:25.141413Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1025967 cycles -2026-04-20T11:08:25.143939Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 55, 106, 187, 146, 5, 0, 113, 247, 211, 88, 98, 52, 96, 231, 191, 163, 200, 35, 159, 163, 15, 45, 102, 240, 165, 128, 214, 186, 123, 210, 86, 205, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 64, 71, 172, 132, 43, 89, 233, 149, 206, 180, 98, 202, 121, 143, 236, 61, 51, 177, 59, 75, 187, 243, 30, 210, 112, 188, 18, 247, 73, 113, 114, 84, 240, 38, 97, 170, 138, 254, 235, 35, 223, 243, 97, 75, 180, 189, 130, 200, 59, 201, 114, 13, 19, 216, 249, 82, 206, 96, 76, 8, 4, 30, 105, 255, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:25.201028Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:25.201073Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:25.278401Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:25.312989Z DEBUG sp1_core_executor_runner::native: CHILD sp1_089lIJc6TQmq1NA67T_PqA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:25.315810Z DEBUG sp1_core_executor_runner::native: CHILD sp1_089lIJc6TQmq1NA67T_PqA==: stderr: -2026-04-20T11:08:25.315822Z DEBUG sp1_core_executor_runner::native: CHILD sp1_089lIJc6TQmq1NA67T_PqA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:25.315831Z DEBUG sp1_core_executor_runner::native: CHILD sp1_089lIJc6TQmq1NA67T_PqA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:25.315839Z DEBUG sp1_core_executor_runner::native: CHILD sp1_089lIJc6TQmq1NA67T_PqA==: stderr: stack backtrace: -2026-04-20T11:08:25.315846Z DEBUG sp1_core_executor_runner::native: CHILD sp1_089lIJc6TQmq1NA67T_PqA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:25.315852Z DEBUG sp1_core_executor_runner::native: CHILD sp1_089lIJc6TQmq1NA67T_PqA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:25.316029Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:25.316713Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:25.317005Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:25.383056Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:25.383099Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:25.383265Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:25.383429Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:25.383492Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:25.384078Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=316 blob_id=2147878321156333806933442298954407168 -2026-04-20T11:08:25.934210Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JAJRWt4VTPWinNBtPwNmPA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:25.941106Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:25.950553Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1025684 cycles -2026-04-20T11:08:25.953082Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 124, 219, 12, 186, 124, 149, 187, 19, 250, 255, 135, 2, 96, 35, 104, 212, 223, 227, 57, 14, 132, 40, 211, 57, 177, 146, 27, 60, 50, 78, 130, 36, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 56, 14, 73, 124, 215, 117, 161, 193, 165, 222, 28, 233, 41, 163, 211, 211, 68, 175, 233, 119, 181, 32, 93, 59, 17, 29, 222, 88, 153, 154, 57, 188, 232, 123, 255, 46, 95, 134, 89, 228, 37, 31, 35, 71, 33, 205, 173, 186, 243, 244, 255, 66, 109, 70, 42, 209, 63, 157, 51, 79, 83, 227, 90, 71, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:26.010856Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:26.010899Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:26.090795Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:26.125017Z DEBUG sp1_core_executor_runner::native: CHILD sp1_lbrYMzoCTb6xvoatd31UMQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:26.127856Z DEBUG sp1_core_executor_runner::native: CHILD sp1_lbrYMzoCTb6xvoatd31UMQ==: stderr: -2026-04-20T11:08:26.127879Z DEBUG sp1_core_executor_runner::native: CHILD sp1_lbrYMzoCTb6xvoatd31UMQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:26.127890Z DEBUG sp1_core_executor_runner::native: CHILD sp1_lbrYMzoCTb6xvoatd31UMQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:26.127897Z DEBUG sp1_core_executor_runner::native: CHILD sp1_lbrYMzoCTb6xvoatd31UMQ==: stderr: stack backtrace: -2026-04-20T11:08:26.127903Z DEBUG sp1_core_executor_runner::native: CHILD sp1_lbrYMzoCTb6xvoatd31UMQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:26.127909Z DEBUG sp1_core_executor_runner::native: CHILD sp1_lbrYMzoCTb6xvoatd31UMQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:26.127997Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:26.128802Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:26.129088Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:26.194851Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:26.194895Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:26.195059Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:26.195205Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:26.195263Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:26.195717Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=317 blob_id=2147878322137987476600914213780013193 -2026-04-20T11:08:26.752270Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ehnwmh3nRiSmWY3_51IndQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:26.759058Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:26.769625Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1005295 cycles -2026-04-20T11:08:26.772248Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 123, 205, 80, 1, 182, 235, 18, 210, 117, 13, 209, 38, 135, 132, 144, 126, 220, 152, 235, 248, 180, 124, 71, 118, 168, 252, 26, 3, 124, 97, 234, 23, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 95, 151, 78, 218, 168, 251, 250, 185, 19, 245, 13, 171, 207, 195, 76, 55, 123, 207, 140, 19, 117, 68, 79, 80, 223, 67, 102, 168, 235, 220, 147, 66, 221, 102, 32, 54, 122, 147, 2, 116, 201, 81, 50, 108, 122, 184, 183, 86, 250, 183, 91, 224, 205, 79, 6, 247, 88, 141, 193, 44, 23, 35, 212, 9, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:26.827513Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:26.827555Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:26.901974Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:26.934197Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jtlF5yosSxGJykqa1ijb9A==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:26.937044Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jtlF5yosSxGJykqa1ijb9A==: stderr: -2026-04-20T11:08:26.937070Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jtlF5yosSxGJykqa1ijb9A==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:26.937080Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jtlF5yosSxGJykqa1ijb9A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:26.937087Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jtlF5yosSxGJykqa1ijb9A==: stderr: stack backtrace: -2026-04-20T11:08:26.937093Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jtlF5yosSxGJykqa1ijb9A==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:26.937099Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jtlF5yosSxGJykqa1ijb9A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:26.937220Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:26.938064Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:26.938367Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:27.003835Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:27.003879Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:27.004025Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:27.004185Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:27.004239Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:27.004666Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=318 blob_id=2147878323116022926161088103838040935 -2026-04-20T11:08:27.551110Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RYXTDlE6QoG4yUHD-NNrzQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:27.557772Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:27.567111Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1000377 cycles -2026-04-20T11:08:27.569554Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 65, 89, 84, 45, 245, 193, 226, 132, 216, 23, 115, 32, 184, 119, 87, 44, 38, 61, 117, 18, 41, 26, 59, 15, 96, 128, 168, 191, 173, 208, 108, 228, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 90, 95, 181, 196, 52, 128, 109, 25, 231, 200, 52, 2, 120, 243, 13, 219, 12, 37, 173, 34, 27, 142, 55, 228, 146, 150, 110, 25, 208, 225, 68, 191, 225, 50, 109, 62, 215, 128, 212, 247, 56, 193, 79, 25, 101, 209, 204, 112, 221, 79, 221, 104, 167, 98, 38, 4, 76, 157, 38, 217, 154, 177, 25, 115, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:27.626061Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:27.626106Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:27.714462Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:27.747949Z DEBUG sp1_core_executor_runner::native: CHILD sp1_q9zWuRgYSAeGnIFUBcUB8w==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:27.750780Z DEBUG sp1_core_executor_runner::native: CHILD sp1_q9zWuRgYSAeGnIFUBcUB8w==: stderr: -2026-04-20T11:08:27.750807Z DEBUG sp1_core_executor_runner::native: CHILD sp1_q9zWuRgYSAeGnIFUBcUB8w==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:27.750816Z DEBUG sp1_core_executor_runner::native: CHILD sp1_q9zWuRgYSAeGnIFUBcUB8w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:27.750824Z DEBUG sp1_core_executor_runner::native: CHILD sp1_q9zWuRgYSAeGnIFUBcUB8w==: stderr: stack backtrace: -2026-04-20T11:08:27.750830Z DEBUG sp1_core_executor_runner::native: CHILD sp1_q9zWuRgYSAeGnIFUBcUB8w==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:27.750836Z DEBUG sp1_core_executor_runner::native: CHILD sp1_q9zWuRgYSAeGnIFUBcUB8w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:27.750983Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:27.751718Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:27.752010Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:27.822944Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:27.822988Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:27.823149Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:27.823307Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:27.823367Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:27.823840Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=319 blob_id=2147878324106080633991830270824858500 -2026-04-20T11:08:28.334637Z DEBUG sp1_core_executor_runner::native: CHILD sp1_T4epAX2xT3qAVBKom_Eqng==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:28.340928Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:28.350620Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 958687 cycles -2026-04-20T11:08:28.353356Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 80, 221, 113, 170, 158, 221, 76, 160, 132, 222, 104, 136, 173, 183, 129, 21, 177, 68, 125, 60, 7, 224, 142, 249, 211, 189, 106, 148, 5, 176, 215, 230, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 85, 112, 61, 51, 152, 223, 177, 93, 232, 189, 45, 101, 219, 105, 124, 97, 250, 50, 90, 73, 162, 20, 67, 122, 99, 70, 21, 187, 174, 204, 130, 224, 36, 63, 215, 66, 112, 23, 79, 251, 107, 9, 198, 121, 58, 120, 61, 27, 82, 77, 68, 48, 71, 254, 53, 178, 65, 67, 166, 4, 55, 76, 119, 23, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:28.408145Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:28.408188Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:28.429349Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:28.465896Z DEBUG sp1_core_executor_runner::native: CHILD sp1_heAFPh_CQTe2VHaYinMd6A==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:28.468728Z DEBUG sp1_core_executor_runner::native: CHILD sp1_heAFPh_CQTe2VHaYinMd6A==: stderr: -2026-04-20T11:08:28.468740Z DEBUG sp1_core_executor_runner::native: CHILD sp1_heAFPh_CQTe2VHaYinMd6A==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:28.468748Z DEBUG sp1_core_executor_runner::native: CHILD sp1_heAFPh_CQTe2VHaYinMd6A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:28.468757Z DEBUG sp1_core_executor_runner::native: CHILD sp1_heAFPh_CQTe2VHaYinMd6A==: stderr: stack backtrace: -2026-04-20T11:08:28.468762Z DEBUG sp1_core_executor_runner::native: CHILD sp1_heAFPh_CQTe2VHaYinMd6A==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:28.468768Z DEBUG sp1_core_executor_runner::native: CHILD sp1_heAFPh_CQTe2VHaYinMd6A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:28.468928Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:28.469705Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:28.469995Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:28.536923Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:28.536966Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:28.537129Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:28.537274Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:28.537344Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:28.537818Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=320 blob_id=2147878324969257192583921927384957701 -2026-04-20T11:08:28.714773Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=9 height=284 prev_hash=0xdff26499599bab7df709db322930c63ab36e15ff8a91fecd9f41741627cbdcff hash=0xd132fb2573f64001fa8fca18968b10b5de176678862a0a9e13a00f510ccc99a5 producing_time=1.038223ms -2026-04-20T11:08:28.723554Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=284 current_state_root="7e3ab002de214dc7e3ad9cbb1ffe80d7e335a0840ad39e82fb6d331cd5af354129a3d821e6256b0732fcef8b49ac0463315045b2f5069ff52693e576ad2398dd" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x654334cbae7e85b916d2131bb3ad0819fa0b1c0e9e6518eb59d3ae642d81ff51"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x64a44d1916c0978bb58ab6ae21440cf02153be04d6c7abaca65b1ac2f4026ff2, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xba76dee862affc161c4459cee7bdbf528913c73cb5991b51335ec8446510cc0e, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc6789ed123701fb3642942e651c37597169901757e11f367d9c1782d48b92151, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x52bf8c0aafd1231a7f5f250144195e2968902824e7c21f8c84a5f5ac7ad9d49a, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x5f3eb0d64fd88b20307f66cd5a0099af504100cf13d8b3b85bab430c15cad49f, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf45b9ff864bcd04f30b25fc88fa3e0e21ad61cb5fef1fd0b8649fdd6b7f5e1b8, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x06012fdb5b0b938eda2083d4fe0b0917bda5b0eb23f10a2e89948e0be8bb2d8b, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x2256f43b2e1c1449640cdc643d0ed04cddb1add0212e4764e5b1a52da14b6eeb, len=625"] -2026-04-20T11:08:28.724006Z DEBUG StfBlueprint::apply_slot{context=Node da_height=284}: sov_chain_state: Setting next visible slot number next_visible_slot_number=220 -2026-04-20T11:08:28.724486Z DEBUG StfBlueprint::apply_slot{context=Node da_height=284}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x654334cbae7e85b916d2131bb3ad0819fa0b1c0e9e6518eb59d3ae642d81ff51}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=7 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:08:28.724724Z DEBUG StfBlueprint::apply_slot{context=Node da_height=284}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7e3ab002de214dc7e3ad9cbb1ffe80d7e335a0840ad39e82fb6d331cd5af354129a3d821e6256b0732fcef8b49ac0463315045b2f5069ff52693e576ad2398dd next_version=284 sesssion_starting_time=46.77µs -2026-04-20T11:08:28.725929Z DEBUG StfBlueprint::apply_slot{context=Node da_height=284}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6f72f89b2a884697491196445d032a79b9255027eaa121e88818e8ff64713ade72383a2fff09c880c98a872a29dfda1748132c73a356249a77dbca90144703fb next_version=284 time=1.322541ms accesses_build_time=69.079µs finishing_session_time=1.158522ms -2026-04-20T11:08:28.726132Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="faa015233231bbd6920b4405b26e2a53c0914fe969386ea004ae48f1e6715ca3" -2026-04-20T11:08:28.726153Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="e9ccd1292834f8ba6056e304e84dda1441346e84832077d92ad031187f7ae5f2" -2026-04-20T11:08:28.726166Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="9b801a10a1a3e753a5cba4ddc8ea0b51360a0bb1d3c2de3a512cd464925fd2ad" -2026-04-20T11:08:28.726178Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="0d0a9e17d9dbb5b00517b4cf77a6935950c981cae984b0ca523e8e702915d51e" -2026-04-20T11:08:28.726188Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="f0a069879aeb8a8885b1ad7aba2aa2f498e95c1e9d1f68d59e251a77a34dca32" -2026-04-20T11:08:28.726197Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="58e0ef84245ea8575177865845f958d35bfc2ed44ead716440699c33b678ec08" -2026-04-20T11:08:28.726205Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="3d7dd06e9bb0c9644ce5d332de7a9f5fc84ec941cf181830d815b058f7a50f05" -2026-04-20T11:08:28.726217Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="34400c727e35784560e31434799f7daffee000dd502d3f976e3e06650fbe08da2834db71d2bec2205ec309b3e9125bfde264b0371ae79d875b6e88c0f59a2708" next_state_root="6f72f89b2a884697491196445d032a79b9255027eaa121e88818e8ff64713ade72383a2fff09c880c98a872a29dfda1748132c73a356249a77dbca90144703fb" aggregated_proofs=0 proof_receipts=7 -2026-04-20T11:08:28.726748Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=5 min=5 max=6 -2026-04-20T11:08:28.726785Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:08:28.726840Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=116 -2026-04-20T11:08:28.726952Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=230 -2026-04-20T11:08:28.727208Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:08:28.727699Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=230 sequence_number=321 -2026-04-20T11:08:28.727723Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=321 blob_id=2147878325198970477152986320610902651 visible_slot_number_after_increase=230 visible_slots_to_advance=10 -2026-04-20T11:08:28.727759Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=8 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:08:28.729225Z DEBUG manage_blob_submission_inside_task{blob_id=2147878325198970477152986320610902651 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xef5cffc5fb65af1e96e998ffc788a43a9d2a3837a7f047a49a99660330bd957e sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=285 include_at=285 bytes=13 time=459.267µs -2026-04-20T11:08:28.740549Z DEBUG compute_state_update{scope="sequencer" rollup_height=121 slot_number=230}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:08:28.740582Z DEBUG compute_state_update{scope="sequencer" rollup_height=121 slot_number=230}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:08:28.740585Z DEBUG sov_stf_runner::runner: Block execution complete time=6.008940068s -2026-04-20T11:08:28.740608Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:08:28.740645Z DEBUG compute_state_update{scope="sequencer" rollup_height=121 slot_number=230}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c6a5069777fd4e94cc1a960a9f4fe6b9e852249e8447a2b60da4af756a4a14021 next_version=280 sesssion_starting_time=12.407461ms -2026-04-20T11:08:28.741827Z DEBUG compute_state_update{scope="sequencer" rollup_height=121 slot_number=230}: sov_state::nomt::prover_storage: computed next state root state_root=3a4a8ae6b9e246f7cc4332545b59e3e31671994de83d7bd7f09246d53d463d4b76784bd32fdc91adf1d8899cdde79166c524ae5320619e1dcbbf206846ee4ea8 next_version=280 time=13.637282ms accesses_build_time=46.779µs finishing_session_time=1.161853ms -2026-04-20T11:08:29.088358Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ftaC6kK5RRGjV_wwHbsadw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:29.095199Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:29.105104Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1017157 cycles -2026-04-20T11:08:29.107731Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 27, 51, 81, 122, 196, 107, 145, 141, 199, 88, 107, 78, 7, 210, 42, 131, 108, 82, 197, 187, 90, 0, 51, 80, 24, 154, 124, 188, 117, 252, 179, 53, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 81, 145, 195, 73, 57, 161, 212, 236, 24, 10, 44, 70, 111, 146, 191, 74, 164, 199, 186, 73, 132, 126, 44, 48, 169, 231, 49, 86, 125, 4, 25, 46, 95, 169, 13, 112, 201, 155, 115, 65, 209, 64, 241, 26, 13, 113, 48, 112, 107, 242, 133, 113, 200, 153, 29, 189, 211, 166, 197, 114, 249, 193, 55, 78, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:29.164910Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:29.164953Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:29.243662Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:29.278704Z DEBUG sp1_core_executor_runner::native: CHILD sp1_q4uIA_QKTRaBu8pmUzjvmw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:29.281541Z DEBUG sp1_core_executor_runner::native: CHILD sp1_q4uIA_QKTRaBu8pmUzjvmw==: stderr: -2026-04-20T11:08:29.281553Z DEBUG sp1_core_executor_runner::native: CHILD sp1_q4uIA_QKTRaBu8pmUzjvmw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:29.281562Z DEBUG sp1_core_executor_runner::native: CHILD sp1_q4uIA_QKTRaBu8pmUzjvmw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:29.281570Z DEBUG sp1_core_executor_runner::native: CHILD sp1_q4uIA_QKTRaBu8pmUzjvmw==: stderr: stack backtrace: -2026-04-20T11:08:29.281576Z DEBUG sp1_core_executor_runner::native: CHILD sp1_q4uIA_QKTRaBu8pmUzjvmw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:29.281583Z DEBUG sp1_core_executor_runner::native: CHILD sp1_q4uIA_QKTRaBu8pmUzjvmw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:29.281746Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:29.282506Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:29.282824Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:29.348968Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:29.349011Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:29.349175Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:29.349333Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:29.349396Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:29.349756Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=322 blob_id=2147878325950900493433236243612154155 -2026-04-20T11:08:29.894998Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9qEixsZ4RgWsStuisqMEMg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:29.901558Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:29.911035Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 986461 cycles -2026-04-20T11:08:29.913716Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 89, 156, 215, 159, 2, 200, 122, 144, 85, 96, 70, 110, 222, 216, 138, 103, 5, 111, 189, 27, 192, 58, 9, 158, 174, 109, 214, 192, 10, 147, 223, 9, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 107, 183, 87, 178, 159, 137, 83, 73, 64, 38, 212, 111, 38, 175, 92, 197, 121, 0, 243, 219, 69, 39, 82, 78, 94, 43, 244, 185, 245, 64, 159, 247, 240, 120, 153, 213, 43, 17, 235, 232, 128, 147, 142, 90, 232, 223, 202, 168, 32, 105, 146, 219, 19, 119, 165, 153, 169, 86, 248, 56, 99, 175, 134, 248, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:29.969440Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:29.969484Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:30.056904Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:30.090967Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8zQBnBCTT0SjwVV_9Y3YFg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:30.093800Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8zQBnBCTT0SjwVV_9Y3YFg==: stderr: -2026-04-20T11:08:30.093825Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8zQBnBCTT0SjwVV_9Y3YFg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:30.093834Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8zQBnBCTT0SjwVV_9Y3YFg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:30.093843Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8zQBnBCTT0SjwVV_9Y3YFg==: stderr: stack backtrace: -2026-04-20T11:08:30.093850Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8zQBnBCTT0SjwVV_9Y3YFg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:30.093857Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8zQBnBCTT0SjwVV_9Y3YFg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:30.094017Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:30.094759Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:30.095085Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:30.162583Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:30.162624Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:30.162783Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:30.162893Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:30.162947Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:30.163442Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=323 blob_id=2147878326933784393040792010249083973 -2026-04-20T11:08:30.660982Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Gn_6ne3pQtKHly3fGGV7tw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:30.667596Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:30.677525Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 997640 cycles -2026-04-20T11:08:30.680154Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 127, 118, 10, 114, 181, 148, 85, 111, 16, 29, 112, 172, 149, 209, 70, 244, 200, 168, 109, 106, 9, 18, 244, 215, 129, 73, 85, 26, 3, 149, 232, 114, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 31, 74, 159, 63, 122, 134, 231, 228, 249, 80, 91, 150, 238, 133, 82, 71, 40, 6, 21, 26, 95, 144, 26, 90, 111, 162, 64, 125, 241, 79, 144, 113, 52, 3, 65, 10, 144, 154, 146, 248, 174, 203, 82, 244, 139, 64, 168, 9, 38, 116, 249, 230, 147, 178, 6, 193, 157, 18, 133, 111, 59, 187, 245, 186, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:30.736447Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:30.736492Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:30.769562Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:30.804290Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Fk1mgjkkTzq4Gpe45hzSUA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:30.807112Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Fk1mgjkkTzq4Gpe45hzSUA==: stderr: -2026-04-20T11:08:30.807124Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Fk1mgjkkTzq4Gpe45hzSUA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:30.807133Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Fk1mgjkkTzq4Gpe45hzSUA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:30.807141Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Fk1mgjkkTzq4Gpe45hzSUA==: stderr: stack backtrace: -2026-04-20T11:08:30.807147Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Fk1mgjkkTzq4Gpe45hzSUA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:30.807153Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Fk1mgjkkTzq4Gpe45hzSUA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:30.807311Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:30.808081Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:30.808408Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:30.877607Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:30.877650Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:30.877799Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:30.877930Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:30.877960Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:30.878350Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=324 blob_id=2147878327798188158259107476864813495 -2026-04-20T11:08:31.380502Z DEBUG sp1_core_executor_runner::native: CHILD sp1_s3imY37bRX--obWmdVB6Jw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:31.387245Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:31.397211Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1010193 cycles -2026-04-20T11:08:31.399745Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 70, 45, 102, 236, 96, 4, 8, 24, 156, 75, 144, 179, 134, 1, 83, 188, 195, 242, 33, 60, 69, 135, 189, 231, 182, 191, 163, 185, 174, 246, 177, 248, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 114, 173, 15, 215, 243, 158, 204, 81, 122, 244, 114, 188, 213, 53, 204, 93, 161, 246, 55, 136, 24, 39, 253, 215, 141, 28, 95, 168, 201, 89, 6, 69, 136, 221, 65, 9, 224, 171, 122, 252, 241, 52, 121, 38, 15, 11, 47, 158, 58, 50, 90, 164, 244, 8, 141, 102, 42, 110, 149, 19, 69, 73, 91, 179, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:31.456136Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:31.456180Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:31.483954Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:31.519692Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vXkGVgS1TzSfw5b7ibHZcA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:31.522514Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vXkGVgS1TzSfw5b7ibHZcA==: stderr: -2026-04-20T11:08:31.522527Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vXkGVgS1TzSfw5b7ibHZcA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:31.522535Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vXkGVgS1TzSfw5b7ibHZcA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:31.522544Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vXkGVgS1TzSfw5b7ibHZcA==: stderr: stack backtrace: -2026-04-20T11:08:31.522549Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vXkGVgS1TzSfw5b7ibHZcA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:31.522555Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vXkGVgS1TzSfw5b7ibHZcA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:31.522683Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:31.523396Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:31.523699Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:31.589604Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:31.589647Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:31.589839Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:31.589987Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:31.590044Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:31.590473Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=325 blob_id=2147878328658950111809285532702674768 -2026-04-20T11:08:32.098156Z DEBUG sp1_core_executor_runner::native: CHILD sp1_owm9TzjAT2icMgHou5vRqg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:32.104695Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:32.114534Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 989915 cycles -2026-04-20T11:08:32.117138Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 122, 186, 124, 102, 32, 104, 31, 231, 236, 151, 240, 41, 85, 62, 166, 191, 183, 49, 82, 170, 93, 58, 233, 59, 13, 152, 49, 220, 127, 65, 0, 29, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 13, 134, 220, 58, 72, 198, 177, 250, 122, 195, 125, 53, 84, 37, 123, 137, 142, 197, 115, 88, 245, 37, 93, 41, 120, 27, 10, 186, 51, 207, 17, 243, 143, 20, 198, 251, 122, 177, 75, 55, 187, 126, 94, 98, 54, 16, 215, 225, 98, 206, 55, 63, 236, 30, 51, 242, 163, 146, 6, 235, 255, 231, 232, 195, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:32.173665Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:32.173709Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:32.195815Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:32.229873Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yO5eXFBHTbKW2HzAZHjJIQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:32.232693Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yO5eXFBHTbKW2HzAZHjJIQ==: stderr: -2026-04-20T11:08:32.232706Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yO5eXFBHTbKW2HzAZHjJIQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:32.232727Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yO5eXFBHTbKW2HzAZHjJIQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:32.232735Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yO5eXFBHTbKW2HzAZHjJIQ==: stderr: stack backtrace: -2026-04-20T11:08:32.232742Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yO5eXFBHTbKW2HzAZHjJIQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:32.232747Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yO5eXFBHTbKW2HzAZHjJIQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:32.232902Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:32.233662Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:32.233955Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:32.300025Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:32.300069Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:32.300236Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:32.300417Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:32.300480Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:32.300944Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=326 blob_id=2147878329518503787720572442452825530 -2026-04-20T11:08:32.803211Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jE7rydVgQP2OsfL7PNbYWQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:32.810252Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:32.821759Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1031554 cycles -2026-04-20T11:08:32.824299Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 39, 217, 160, 157, 102, 113, 18, 125, 181, 119, 255, 15, 151, 194, 222, 74, 106, 76, 250, 43, 118, 194, 194, 73, 91, 46, 34, 33, 88, 130, 74, 184, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 107, 131, 129, 233, 140, 108, 212, 106, 92, 79, 144, 223, 92, 9, 195, 127, 75, 209, 203, 206, 204, 24, 136, 114, 200, 192, 109, 227, 142, 42, 196, 203, 5, 71, 139, 128, 140, 158, 154, 118, 118, 174, 56, 58, 142, 163, 153, 2, 193, 157, 225, 159, 225, 244, 211, 77, 59, 179, 35, 101, 115, 23, 240, 250, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:32.880261Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:32.880308Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:32.906840Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:32.940497Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-x_0jyYaQwaIAENU95tPBQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:32.943344Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-x_0jyYaQwaIAENU95tPBQ==: stderr: -2026-04-20T11:08:32.943359Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-x_0jyYaQwaIAENU95tPBQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:32.943367Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-x_0jyYaQwaIAENU95tPBQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:32.943376Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-x_0jyYaQwaIAENU95tPBQ==: stderr: stack backtrace: -2026-04-20T11:08:32.943382Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-x_0jyYaQwaIAENU95tPBQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:32.943388Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-x_0jyYaQwaIAENU95tPBQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:32.943513Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:32.944227Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:32.944516Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:33.013929Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:33.013973Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:33.014138Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:33.014304Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:33.014383Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:33.014808Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=327 blob_id=2147878330381662081930579066210702087 -2026-04-20T11:08:33.518106Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QL7xkWB5TQGE_IhrmVEf7w==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:33.524714Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:33.534562Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 990453 cycles -2026-04-20T11:08:33.537020Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 78, 178, 13, 190, 167, 37, 77, 64, 171, 114, 149, 136, 228, 29, 214, 55, 43, 173, 110, 245, 227, 101, 36, 251, 140, 212, 95, 101, 42, 232, 65, 25, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 47, 68, 238, 159, 172, 225, 148, 33, 95, 187, 189, 150, 53, 119, 141, 179, 128, 243, 95, 16, 175, 56, 145, 50, 52, 43, 34, 31, 151, 66, 42, 74, 61, 169, 225, 129, 239, 180, 221, 59, 89, 110, 220, 40, 118, 169, 79, 66, 144, 147, 110, 61, 140, 47, 158, 179, 39, 14, 144, 162, 222, 65, 59, 110, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:33.592924Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:33.592969Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:33.620307Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:33.654169Z DEBUG sp1_core_executor_runner::native: CHILD sp1_otrwpoJNTLuCoSKRFHQW5g==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:33.656981Z DEBUG sp1_core_executor_runner::native: CHILD sp1_otrwpoJNTLuCoSKRFHQW5g==: stderr: -2026-04-20T11:08:33.656993Z DEBUG sp1_core_executor_runner::native: CHILD sp1_otrwpoJNTLuCoSKRFHQW5g==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:33.657001Z DEBUG sp1_core_executor_runner::native: CHILD sp1_otrwpoJNTLuCoSKRFHQW5g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:33.657010Z DEBUG sp1_core_executor_runner::native: CHILD sp1_otrwpoJNTLuCoSKRFHQW5g==: stderr: stack backtrace: -2026-04-20T11:08:33.657016Z DEBUG sp1_core_executor_runner::native: CHILD sp1_otrwpoJNTLuCoSKRFHQW5g==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:33.657022Z DEBUG sp1_core_executor_runner::native: CHILD sp1_otrwpoJNTLuCoSKRFHQW5g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:33.657187Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:33.657900Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:33.658225Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:33.724163Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:33.724207Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:33.724402Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:33.724576Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:33.724629Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:33.725089Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=328 blob_id=2147878331239958075359691102391282691 -2026-04-20T11:08:34.226982Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Q4WCiuHZRj-ws3AKkZLlAA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:34.233628Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:34.243074Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 999502 cycles -2026-04-20T11:08:34.245717Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 50, 116, 18, 255, 15, 196, 119, 188, 49, 98, 181, 234, 38, 37, 145, 122, 107, 0, 107, 70, 87, 248, 107, 70, 1, 176, 27, 136, 37, 230, 249, 221, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 122, 246, 126, 11, 174, 216, 48, 143, 149, 26, 107, 27, 209, 238, 145, 7, 29, 174, 8, 182, 117, 46, 168, 113, 173, 50, 112, 110, 70, 120, 200, 160, 117, 155, 211, 5, 169, 118, 178, 248, 150, 71, 33, 200, 149, 19, 224, 69, 24, 3, 232, 99, 207, 83, 2, 91, 100, 68, 156, 193, 182, 251, 111, 250, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:34.302372Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:34.302414Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:34.332568Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:34.367903Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jmkc9XQqTWy2DkKihxzZeA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:34.370777Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jmkc9XQqTWy2DkKihxzZeA==: stderr: -2026-04-20T11:08:34.370803Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jmkc9XQqTWy2DkKihxzZeA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:34.370828Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jmkc9XQqTWy2DkKihxzZeA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:34.370836Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jmkc9XQqTWy2DkKihxzZeA==: stderr: stack backtrace: -2026-04-20T11:08:34.370842Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jmkc9XQqTWy2DkKihxzZeA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:34.370849Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jmkc9XQqTWy2DkKihxzZeA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:34.370954Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:34.371707Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:34.371999Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:34.438463Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:34.438505Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:34.438670Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:34.438761Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:34.438816Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:34.439288Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=329 blob_id=2147878332103150260473215595608350496 -2026-04-20T11:08:34.716841Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=9 height=285 prev_hash=0xd132fb2573f64001fa8fca18968b10b5de176678862a0a9e13a00f510ccc99a5 hash=0x92092c22736ea96c802864973cc0b389d95a72e9fae45aa7f3a4734518fdef34 producing_time=1.128143ms -2026-04-20T11:08:34.722430Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=285 current_state_root="6f72f89b2a884697491196445d032a79b9255027eaa121e88818e8ff64713ade72383a2fff09c880c98a872a29dfda1748132c73a356249a77dbca90144703fb" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xef5cffc5fb65af1e96e998ffc788a43a9d2a3837a7f047a49a99660330bd957e"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x8cff883e5c5e177a4030588975a8de224ff5526c71cbaef00148fffeeeab1544, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x08ffc6535c35a5fd5009251f90865cab3e77f290658fee375a1076bdc6ef8e6c, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xea1d556f582575090e6bed58cd82852627f1435041a5090faf0b810dd77a79a5, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x35ad246dd4c9f32603fd6a60a0e388b81cec329ecd396f410fa89901cb22710a, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x7a6627d74b5875c6f970bd9028173ed5ae9689b39c9ba7196dc36fc871e7f853, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x576430d30203af01b5777b12a0786ede0eeae29999cf2de0f44233a2e0a11bca, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0782bad80ab74430712ec37f2effd886c0aa88d9796abf6f310696b3f9840c1d, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x4900306f131b0e96d7bcb9ce17d09ce9662378a123878c1d26b9ca0442061d38, len=625"] -2026-04-20T11:08:34.722687Z DEBUG StfBlueprint::apply_slot{context=Node da_height=285}: sov_chain_state: Setting next visible slot number next_visible_slot_number=230 -2026-04-20T11:08:34.722864Z DEBUG StfBlueprint::apply_slot{context=Node da_height=285}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xef5cffc5fb65af1e96e998ffc788a43a9d2a3837a7f047a49a99660330bd957e}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=8 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:08:34.722968Z DEBUG StfBlueprint::apply_slot{context=Node da_height=285}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6f72f89b2a884697491196445d032a79b9255027eaa121e88818e8ff64713ade72383a2fff09c880c98a872a29dfda1748132c73a356249a77dbca90144703fb next_version=285 sesssion_starting_time=26.32µs -2026-04-20T11:08:34.723968Z DEBUG StfBlueprint::apply_slot{context=Node da_height=285}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3a4a8ae6b9e246f7cc4332545b59e3e31671994de83d7bd7f09246d53d463d4b7d666c8a3ff7796d4613cd4e9cb1fb4cf4c8900286c095bd94e1778d127578ef next_version=285 time=1.053024ms accesses_build_time=26.05µs finishing_session_time=988.644µs -2026-04-20T11:08:34.724068Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="64a44d1916c0978bb58ab6ae21440cf02153be04d6c7abaca65b1ac2f4026ff2" -2026-04-20T11:08:34.724076Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ba76dee862affc161c4459cee7bdbf528913c73cb5991b51335ec8446510cc0e" -2026-04-20T11:08:34.724079Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="c6789ed123701fb3642942e651c37597169901757e11f367d9c1782d48b92151" -2026-04-20T11:08:34.724088Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="52bf8c0aafd1231a7f5f250144195e2968902824e7c21f8c84a5f5ac7ad9d49a" -2026-04-20T11:08:34.724092Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="5f3eb0d64fd88b20307f66cd5a0099af504100cf13d8b3b85bab430c15cad49f" -2026-04-20T11:08:34.724095Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="f45b9ff864bcd04f30b25fc88fa3e0e21ad61cb5fef1fd0b8649fdd6b7f5e1b8" -2026-04-20T11:08:34.724099Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="06012fdb5b0b938eda2083d4fe0b0917bda5b0eb23f10a2e89948e0be8bb2d8b" -2026-04-20T11:08:34.724103Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="2256f43b2e1c1449640cdc643d0ed04cddb1add0212e4764e5b1a52da14b6eeb" -2026-04-20T11:08:34.724108Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="7e3ab002de214dc7e3ad9cbb1ffe80d7e335a0840ad39e82fb6d331cd5af354129a3d821e6256b0732fcef8b49ac0463315045b2f5069ff52693e576ad2398dd" next_state_root="3a4a8ae6b9e246f7cc4332545b59e3e31671994de83d7bd7f09246d53d463d4b7d666c8a3ff7796d4613cd4e9cb1fb4cf4c8900286c095bd94e1778d127578ef" aggregated_proofs=0 proof_receipts=8 -2026-04-20T11:08:34.724421Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=6 min=5 max=6 -2026-04-20T11:08:34.724473Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:08:34.724534Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=117 -2026-04-20T11:08:34.724648Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=240 -2026-04-20T11:08:34.724896Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:08:34.725365Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=240 sequence_number=330 -2026-04-20T11:08:34.725394Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=330 blob_id=2147878332450113204493949051787775360 visible_slot_number_after_increase=240 visible_slots_to_advance=10 -2026-04-20T11:08:34.725422Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=8 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:08:34.725690Z  INFO update_state_task_inner: sov_sequencer::preferred: Recovery: catchup batches sent; sequencer will now wait for the node to process them. We will then re-evaluate if we need to catch up again (if there are so many batches that by the time the node catches up we need to bump the visible_slot_number some more). target_sequence_number=331 -2026-04-20T11:08:34.725745Z DEBUG update_state_task_inner: sov_sequencer::preferred: Recovery: waiting for the node to process sequencer's catchup batches... next_sequence_number_according_to_node=322 target_sequence_number=331 -2026-04-20T11:08:34.726895Z DEBUG manage_blob_submission_inside_task{blob_id=2147878332450113204493949051787775360 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x08b7acb3d33ab3c7ee94ed147edc42d04a8c08fe46f17192544c4f5302b22f53 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=286 include_at=286 bytes=13 time=510.227µs -2026-04-20T11:08:34.741889Z DEBUG compute_state_update{scope="sequencer" rollup_height=122 slot_number=240}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:08:34.741917Z DEBUG compute_state_update{scope="sequencer" rollup_height=122 slot_number=240}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:08:34.741920Z DEBUG sov_stf_runner::runner: Block execution complete time=6.001313366s -2026-04-20T11:08:34.741942Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:08:34.741970Z DEBUG compute_state_update{scope="sequencer" rollup_height=122 slot_number=240}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60262d9f022c57e51bd5337882156fad3bb343bbd16aaafc8932a539a0512e8c6a5069777fd4e94cc1a960a9f4fe6b9e852249e8447a2b60da4af756a4a14021 next_version=280 sesssion_starting_time=16.048047ms -2026-04-20T11:08:34.743237Z DEBUG compute_state_update{scope="sequencer" rollup_height=122 slot_number=240}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8378d2e68e8e3fb93305d5fdcb31a48b0e9106ad49925def5d929aef856862f7f next_version=280 time=17.368279ms accesses_build_time=53µs finishing_session_time=1.245382ms -2026-04-20T11:08:34.944306Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vdL9NeKBSMGDX1ihMDTEdA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:34.950965Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:34.961215Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1000034 cycles -2026-04-20T11:08:34.963984Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 12, 41, 195, 16, 158, 1, 122, 203, 125, 225, 125, 140, 76, 193, 87, 66, 97, 83, 254, 255, 28, 106, 32, 2, 126, 124, 191, 244, 168, 102, 247, 205, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 126, 15, 225, 75, 128, 63, 3, 132, 175, 172, 196, 222, 207, 145, 243, 107, 200, 170, 163, 173, 1, 132, 36, 157, 79, 122, 149, 183, 56, 215, 245, 205, 120, 171, 9, 17, 18, 25, 42, 225, 67, 221, 115, 52, 55, 87, 6, 213, 203, 202, 24, 231, 168, 118, 154, 222, 75, 55, 85, 234, 168, 196, 101, 30, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:35.019356Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:35.019401Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:35.045211Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:35.078723Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2cSlPPM7QliwJHVdELwCEQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:35.081564Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2cSlPPM7QliwJHVdELwCEQ==: stderr: -2026-04-20T11:08:35.081577Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2cSlPPM7QliwJHVdELwCEQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:35.081585Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2cSlPPM7QliwJHVdELwCEQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:35.081593Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2cSlPPM7QliwJHVdELwCEQ==: stderr: stack backtrace: -2026-04-20T11:08:35.081599Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2cSlPPM7QliwJHVdELwCEQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:35.081605Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2cSlPPM7QliwJHVdELwCEQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:35.081732Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:35.082461Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:35.082754Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:35.149225Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:35.149280Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:35.149467Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:35.149610Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:35.149666Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:35.150061Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=331 blob_id=2147878332962731362380364246264587377 -2026-04-20T11:08:35.659701Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PFaFOJqpTi-Xd5pfyj28Xg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:35.666749Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:35.676729Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1044449 cycles -2026-04-20T11:08:35.679447Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 95, 29, 198, 85, 11, 118, 239, 210, 95, 251, 105, 204, 176, 216, 119, 147, 46, 175, 82, 21, 207, 48, 234, 10, 44, 171, 161, 154, 19, 209, 177, 5, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 40, 85, 102, 154, 25, 201, 189, 91, 151, 129, 8, 221, 91, 3, 175, 210, 26, 202, 210, 244, 232, 48, 237, 232, 138, 174, 127, 137, 68, 123, 120, 142, 40, 234, 154, 49, 100, 228, 35, 22, 246, 248, 198, 180, 192, 127, 181, 164, 58, 93, 2, 232, 40, 54, 44, 216, 161, 209, 253, 144, 22, 27, 134, 220, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:35.738252Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:35.738295Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:35.756676Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:35.790576Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fODL3gkbSceSSZu6lLCzyw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:35.793436Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fODL3gkbSceSSZu6lLCzyw==: stderr: -2026-04-20T11:08:35.793450Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fODL3gkbSceSSZu6lLCzyw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:35.793460Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fODL3gkbSceSSZu6lLCzyw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:35.793480Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fODL3gkbSceSSZu6lLCzyw==: stderr: stack backtrace: -2026-04-20T11:08:35.793488Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fODL3gkbSceSSZu6lLCzyw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:35.793495Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fODL3gkbSceSSZu6lLCzyw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:35.793643Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:35.794391Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:35.794685Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:35.866332Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:35.866375Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:35.866533Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:35.866692Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:35.866723Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:35.867114Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=332 blob_id=2147878333829496625222391358816665075 -2026-04-20T11:08:36.371070Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hmfzn-tAQLSXI4xw0Em35g==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:36.377879Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:36.387434Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1018136 cycles -2026-04-20T11:08:36.390069Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 21, 85, 161, 69, 114, 61, 216, 153, 228, 13, 239, 195, 157, 227, 149, 167, 165, 186, 180, 28, 19, 45, 249, 125, 194, 24, 182, 69, 24, 137, 87, 238, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 3, 240, 35, 19, 214, 145, 183, 219, 205, 215, 152, 76, 250, 98, 68, 22, 245, 113, 155, 215, 15, 51, 195, 219, 173, 95, 157, 205, 238, 11, 46, 149, 118, 42, 147, 164, 162, 213, 14, 121, 15, 59, 222, 250, 255, 92, 67, 183, 217, 253, 127, 40, 173, 239, 146, 227, 181, 127, 157, 171, 214, 37, 244, 234, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:36.447533Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:36.447590Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:36.473730Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:36.507387Z DEBUG sp1_core_executor_runner::native: CHILD sp1_OLy-27ZqQ4qBmPmLBmMJiQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:36.510221Z DEBUG sp1_core_executor_runner::native: CHILD sp1_OLy-27ZqQ4qBmPmLBmMJiQ==: stderr: -2026-04-20T11:08:36.510245Z DEBUG sp1_core_executor_runner::native: CHILD sp1_OLy-27ZqQ4qBmPmLBmMJiQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:36.510255Z DEBUG sp1_core_executor_runner::native: CHILD sp1_OLy-27ZqQ4qBmPmLBmMJiQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:36.510262Z DEBUG sp1_core_executor_runner::native: CHILD sp1_OLy-27ZqQ4qBmPmLBmMJiQ==: stderr: stack backtrace: -2026-04-20T11:08:36.510268Z DEBUG sp1_core_executor_runner::native: CHILD sp1_OLy-27ZqQ4qBmPmLBmMJiQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:36.510274Z DEBUG sp1_core_executor_runner::native: CHILD sp1_OLy-27ZqQ4qBmPmLBmMJiQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:36.510394Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:36.511125Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:36.511423Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:36.577404Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:36.577446Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:36.577639Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:36.577783Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:36.577838Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:36.578274Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=333 blob_id=2147878334689026960493822436678654900 -2026-04-20T11:08:37.084507Z DEBUG sp1_core_executor_runner::native: CHILD sp1_uaoRMaKwRc-WdUoY8lKc6Q==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:37.091205Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:37.101409Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 982346 cycles -2026-04-20T11:08:37.104061Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 40, 18, 196, 211, 98, 144, 42, 6, 65, 93, 229, 30, 198, 152, 20, 1, 189, 146, 98, 126, 146, 213, 177, 30, 255, 58, 174, 163, 169, 168, 238, 12, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 21, 108, 26, 79, 159, 198, 183, 62, 137, 253, 59, 47, 177, 53, 240, 173, 67, 64, 140, 192, 110, 113, 216, 176, 199, 225, 67, 226, 28, 255, 204, 222, 207, 98, 220, 251, 97, 192, 224, 1, 63, 84, 39, 153, 196, 94, 216, 144, 214, 115, 174, 229, 10, 78, 210, 214, 167, 108, 194, 96, 218, 202, 237, 127, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:37.158794Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:37.158837Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:37.183878Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:37.217403Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ueq3rCZbRaOl6mJUuHBvCQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:37.220242Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ueq3rCZbRaOl6mJUuHBvCQ==: stderr: -2026-04-20T11:08:37.220268Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ueq3rCZbRaOl6mJUuHBvCQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:37.220278Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ueq3rCZbRaOl6mJUuHBvCQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:37.220285Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ueq3rCZbRaOl6mJUuHBvCQ==: stderr: stack backtrace: -2026-04-20T11:08:37.220291Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ueq3rCZbRaOl6mJUuHBvCQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:37.220298Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ueq3rCZbRaOl6mJUuHBvCQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:37.220424Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:37.221147Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:37.221445Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:37.289122Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:37.289164Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:37.289364Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:37.289545Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:37.289600Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:37.290010Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=334 blob_id=2147878335549775931258867394715125471 -2026-04-20T11:08:37.798935Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Ll6hcZf6QySOGQoze0xe0g==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:37.805516Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:37.816843Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 990782 cycles -2026-04-20T11:08:37.819551Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 90, 54, 43, 108, 226, 45, 104, 52, 216, 34, 242, 93, 215, 124, 157, 251, 32, 85, 21, 65, 61, 174, 233, 25, 157, 211, 102, 133, 229, 135, 57, 56, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 122, 107, 45, 6, 149, 44, 246, 130, 135, 239, 34, 11, 29, 226, 64, 229, 212, 188, 4, 189, 174, 208, 127, 161, 69, 144, 221, 81, 12, 122, 20, 103, 33, 5, 159, 233, 82, 42, 111, 101, 19, 173, 140, 193, 206, 127, 240, 120, 204, 15, 166, 205, 109, 98, 145, 250, 206, 197, 77, 85, 44, 158, 121, 142, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:37.872642Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:37.872684Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:37.895971Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:37.929173Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jLtyROMfSeKoUnryVf1pJA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:37.932027Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jLtyROMfSeKoUnryVf1pJA==: stderr: -2026-04-20T11:08:37.932052Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jLtyROMfSeKoUnryVf1pJA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:37.932061Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jLtyROMfSeKoUnryVf1pJA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:37.932068Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jLtyROMfSeKoUnryVf1pJA==: stderr: stack backtrace: -2026-04-20T11:08:37.932089Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jLtyROMfSeKoUnryVf1pJA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:37.932096Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jLtyROMfSeKoUnryVf1pJA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:37.932182Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:37.932958Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:37.933298Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:37.999263Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:37.999306Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:37.999521Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:37.999701Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:37.999756Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:38.000207Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=335 blob_id=2147878336408108851430493220042720319 -2026-04-20T11:08:38.502825Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BqCTuiMVQ7KsfjNm9UCDQw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:38.509607Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:38.519811Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1009281 cycles -2026-04-20T11:08:38.522420Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 127, 95, 140, 102, 119, 223, 111, 183, 224, 205, 112, 45, 97, 241, 7, 2, 200, 44, 184, 201, 245, 68, 215, 49, 56, 165, 254, 190, 63, 236, 204, 234, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 37, 60, 221, 17, 97, 199, 198, 162, 151, 148, 62, 124, 69, 53, 65, 17, 238, 78, 150, 147, 64, 140, 174, 13, 22, 152, 87, 82, 191, 103, 189, 247, 181, 12, 130, 18, 85, 99, 25, 186, 79, 41, 109, 218, 211, 228, 170, 36, 150, 171, 62, 65, 185, 229, 232, 180, 198, 35, 71, 54, 76, 76, 244, 61, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:38.578937Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:38.578979Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:38.606312Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:38.640343Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2B9it2HfQ-SqTwChtGRYiQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:38.643187Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2B9it2HfQ-SqTwChtGRYiQ==: stderr: -2026-04-20T11:08:38.643211Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2B9it2HfQ-SqTwChtGRYiQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:38.643221Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2B9it2HfQ-SqTwChtGRYiQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:38.643228Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2B9it2HfQ-SqTwChtGRYiQ==: stderr: stack backtrace: -2026-04-20T11:08:38.643235Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2B9it2HfQ-SqTwChtGRYiQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:38.643241Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2B9it2HfQ-SqTwChtGRYiQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:38.643364Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:38.644091Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:38.644399Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:38.712654Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:38.712695Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:38.712862Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:38.713033Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:38.713088Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:38.713666Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=336 blob_id=2147878337270145015472503120819091663 -2026-04-20T11:08:39.225391Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eI0x7dcJRGahVOUi47belw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:39.232272Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:39.242516Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1019988 cycles -2026-04-20T11:08:39.245206Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 15, 226, 64, 161, 59, 180, 2, 14, 126, 246, 234, 129, 64, 223, 139, 231, 118, 189, 182, 118, 178, 33, 81, 109, 25, 25, 8, 227, 224, 0, 30, 41, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 111, 101, 203, 195, 186, 176, 76, 57, 28, 52, 29, 203, 168, 125, 111, 149, 208, 121, 106, 87, 198, 75, 138, 79, 89, 177, 30, 9, 16, 78, 249, 70, 16, 70, 185, 205, 176, 91, 121, 144, 167, 46, 197, 205, 50, 117, 171, 232, 174, 82, 18, 78, 77, 91, 169, 200, 195, 133, 46, 97, 73, 111, 226, 18, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:39.301432Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:39.301474Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:39.320577Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:39.354927Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rqnNw353SWS3uPfWDXS67w==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:39.357768Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rqnNw353SWS3uPfWDXS67w==: stderr: -2026-04-20T11:08:39.357781Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rqnNw353SWS3uPfWDXS67w==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:39.357789Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rqnNw353SWS3uPfWDXS67w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:39.357798Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rqnNw353SWS3uPfWDXS67w==: stderr: stack backtrace: -2026-04-20T11:08:39.357804Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rqnNw353SWS3uPfWDXS67w==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:39.357810Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rqnNw353SWS3uPfWDXS67w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:39.357942Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:39.358685Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:39.359007Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:39.425057Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:39.425099Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:39.425261Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:39.425377Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:39.425440Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:39.425802Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=337 blob_id=2147878338132104051448066629883926179 -2026-04-20T11:08:39.931687Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xh6O8V7aRrud4CJV5VUSfA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:39.938610Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:39.949204Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1006748 cycles -2026-04-20T11:08:39.951960Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 24, 33, 153, 171, 67, 46, 152, 27, 227, 181, 3, 239, 173, 112, 219, 169, 101, 83, 158, 222, 135, 23, 227, 227, 227, 55, 204, 229, 160, 2, 199, 198, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 112, 143, 181, 242, 245, 191, 224, 224, 74, 239, 237, 166, 176, 41, 164, 243, 53, 79, 110, 4, 219, 3, 7, 250, 169, 106, 66, 18, 216, 139, 156, 115, 203, 194, 235, 130, 127, 181, 171, 14, 29, 148, 47, 5, 138, 47, 229, 166, 151, 210, 247, 135, 175, 168, 144, 121, 150, 213, 71, 59, 170, 78, 220, 246, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:40.007389Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:40.007430Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:40.032354Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:40.065162Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CkNP98z9TeSMXG3bjGkG-A==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:40.068017Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CkNP98z9TeSMXG3bjGkG-A==: stderr: -2026-04-20T11:08:40.068040Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CkNP98z9TeSMXG3bjGkG-A==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:40.068051Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CkNP98z9TeSMXG3bjGkG-A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:40.068058Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CkNP98z9TeSMXG3bjGkG-A==: stderr: stack backtrace: -2026-04-20T11:08:40.068064Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CkNP98z9TeSMXG3bjGkG-A==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:40.068083Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CkNP98z9TeSMXG3bjGkG-A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:40.068188Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:40.068976Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:40.069291Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:40.139617Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:40.139660Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:40.139833Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:40.139982Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:40.140031Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:40.140423Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=338 blob_id=2147878338995219276889753329959527499 -2026-04-20T11:08:40.647554Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Zz3rHBFjTG6cKyuDAzmj8w==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:40.653570Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:40.664165Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 955218 cycles -2026-04-20T11:08:40.666934Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 4, 164, 106, 95, 165, 160, 161, 251, 114, 30, 49, 114, 94, 188, 183, 122, 169, 223, 122, 226, 63, 142, 154, 238, 155, 47, 205, 188, 59, 26, 197, 207, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 118, 92, 24, 238, 197, 17, 168, 112, 47, 232, 127, 164, 168, 103, 136, 243, 159, 112, 64, 66, 118, 190, 28, 0, 29, 152, 113, 227, 86, 97, 219, 97, 208, 229, 37, 146, 172, 68, 224, 229, 96, 71, 155, 73, 158, 14, 212, 115, 29, 44, 150, 47, 173, 121, 52, 244, 53, 16, 50, 192, 247, 203, 66, 191, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:40.719862Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:40.719907Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:40.719995Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=9 height=286 prev_hash=0x92092c22736ea96c802864973cc0b389d95a72e9fae45aa7f3a4734518fdef34 hash=0x12cb2ce00800138b271a6dd0d7c668be338658fe8d18db63c5bca857be85fd65 producing_time=1.55825ms -2026-04-20T11:08:40.723832Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=286 current_state_root="3a4a8ae6b9e246f7cc4332545b59e3e31671994de83d7bd7f09246d53d463d4b7d666c8a3ff7796d4613cd4e9cb1fb4cf4c8900286c095bd94e1778d127578ef" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x08b7acb3d33ab3c7ee94ed147edc42d04a8c08fe46f17192544c4f5302b22f53"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xfe0e50da5933c718f32d2b207bd04626b3281466e82eda3d1bad8e7f2d30e74a, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf32dfb6952e9de1cc223508f798d1a27290b8001cc26be2eff5a9239c3d1addd, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0635d5e495bde78635631925f7a500bef6b710ab1596de3a3fdaa55f70990077, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x344bf260a5ac938ac59af4dae918d5087e394dd875e92126b9fe0c508f1eace6, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf6d97c171cf22852f864c5ae5ce2033da213ada1fef42012968eabae53cb0016, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x05d33d29277869ac4ceaedb6f80875d447af3e20fb6dd6c5fad8ea59d41c05cd, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x52c8f109be20c4d33a28045779b96e6c3c87d371c166181c5a8473e4c15b5e6a, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x496b12ba378e708e915b653beefffd5ccc2a60ba2674babf21f0400b66bc0b27, len=625"] -2026-04-20T11:08:40.724307Z DEBUG StfBlueprint::apply_slot{context=Node da_height=286}: sov_chain_state: Setting next visible slot number next_visible_slot_number=240 -2026-04-20T11:08:40.724725Z DEBUG StfBlueprint::apply_slot{context=Node da_height=286}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x08b7acb3d33ab3c7ee94ed147edc42d04a8c08fe46f17192544c4f5302b22f53}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=8 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:08:40.724938Z DEBUG StfBlueprint::apply_slot{context=Node da_height=286}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3a4a8ae6b9e246f7cc4332545b59e3e31671994de83d7bd7f09246d53d463d4b7d666c8a3ff7796d4613cd4e9cb1fb4cf4c8900286c095bd94e1778d127578ef next_version=286 sesssion_starting_time=46.58µs -2026-04-20T11:08:40.726050Z DEBUG StfBlueprint::apply_slot{context=Node da_height=286}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a81133738d9dcf6f7db673679372049fbda996cac6e4545d0700efbc27d4d2b4dc next_version=286 time=1.221022ms accesses_build_time=61.17µs finishing_session_time=1.067282ms -2026-04-20T11:08:40.726247Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="8cff883e5c5e177a4030588975a8de224ff5526c71cbaef00148fffeeeab1544" -2026-04-20T11:08:40.726263Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="08ffc6535c35a5fd5009251f90865cab3e77f290658fee375a1076bdc6ef8e6c" -2026-04-20T11:08:40.726273Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ea1d556f582575090e6bed58cd82852627f1435041a5090faf0b810dd77a79a5" -2026-04-20T11:08:40.726282Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="35ad246dd4c9f32603fd6a60a0e388b81cec329ecd396f410fa89901cb22710a" -2026-04-20T11:08:40.726291Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="7a6627d74b5875c6f970bd9028173ed5ae9689b39c9ba7196dc36fc871e7f853" -2026-04-20T11:08:40.726301Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="576430d30203af01b5777b12a0786ede0eeae29999cf2de0f44233a2e0a11bca" -2026-04-20T11:08:40.726309Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="0782bad80ab74430712ec37f2effd886c0aa88d9796abf6f310696b3f9840c1d" -2026-04-20T11:08:40.726487Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="4900306f131b0e96d7bcb9ce17d09ce9662378a123878c1d26b9ca0442061d38" -2026-04-20T11:08:40.726504Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6f72f89b2a884697491196445d032a79b9255027eaa121e88818e8ff64713ade72383a2fff09c880c98a872a29dfda1748132c73a356249a77dbca90144703fb" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a81133738d9dcf6f7db673679372049fbda996cac6e4545d0700efbc27d4d2b4dc" aggregated_proofs=0 proof_receipts=8 -2026-04-20T11:08:40.727068Z DEBUG update_state_task_inner: sov_sequencer::preferred: Recovery: waiting for the node to process sequencer's catchup batches... next_sequence_number_according_to_node=331 target_sequence_number=331 -2026-04-20T11:08:40.727094Z  INFO update_state_task_inner: sov_sequencer::preferred: Node sequence number caught up to our recovery batches. The sequencer may have finished recovery, or we may need to send another round of batches if catching up this far took too long -2026-04-20T11:08:40.727162Z DEBUG update_state_task_inner: sov_sequencer::preferred: Calculating amount of batches to send deferred_slots_count=109 maximum_delta=54 minimum_delta=43 current_catchup_delta=45 current_visible_slot_number=240 increase_per_batch=10 -2026-04-20T11:08:40.727180Z  INFO update_state_task_inner: sov_sequencer::preferred: Recovery: no need to send any more batches! min_batches_to_send=0 max_batches_to_send=1 -2026-04-20T11:08:40.727191Z  INFO update_state_task_inner: sov_sequencer::preferred: Sequencer exiting recovery and resuming normal operation. info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 286, latest_finalized_slot_number: 285, sync_status: Synced { synced_da_height: 285 }, .. } -2026-04-20T11:08:40.727260Z DEBUG sov_sequencer::preferred::block_executor: Replacing state for block executor old=019daa93-6177-7931-b2e3-d4d06d7d97f3 new=019daa94-0597-7f61-8da6-d170faf7f85a -2026-04-20T11:08:40.741632Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999691746s -2026-04-20T11:08:40.741660Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:08:40.745998Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:40.777349Z DEBUG sp1_core_executor_runner::native: CHILD sp1_w4avbJDhRdSNm8olOiEzCg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:40.780162Z DEBUG sp1_core_executor_runner::native: CHILD sp1_w4avbJDhRdSNm8olOiEzCg==: stderr: -2026-04-20T11:08:40.780187Z DEBUG sp1_core_executor_runner::native: CHILD sp1_w4avbJDhRdSNm8olOiEzCg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:40.780197Z DEBUG sp1_core_executor_runner::native: CHILD sp1_w4avbJDhRdSNm8olOiEzCg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:40.780204Z DEBUG sp1_core_executor_runner::native: CHILD sp1_w4avbJDhRdSNm8olOiEzCg==: stderr: stack backtrace: -2026-04-20T11:08:40.780210Z DEBUG sp1_core_executor_runner::native: CHILD sp1_w4avbJDhRdSNm8olOiEzCg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:40.780217Z DEBUG sp1_core_executor_runner::native: CHILD sp1_w4avbJDhRdSNm8olOiEzCg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:40.780309Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:40.781090Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:40.781384Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:40.847188Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:40.847243Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:40.847459Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:40.847611Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:40.847667Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:40.848026Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=339 blob_id=2147878339851173878419647806730783020 -2026-04-20T11:08:41.351366Z DEBUG sp1_core_executor_runner::native: CHILD sp1_45k7_Tr6TRGMo7unPnZJHw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:41.357908Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:41.368424Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 985483 cycles -2026-04-20T11:08:41.371110Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 70, 188, 219, 188, 53, 0, 223, 144, 119, 207, 179, 226, 111, 164, 121, 196, 140, 20, 240, 173, 123, 37, 240, 133, 54, 255, 176, 67, 32, 21, 74, 93, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 71, 143, 7, 217, 136, 119, 162, 187, 120, 34, 102, 20, 170, 154, 221, 165, 115, 223, 150, 106, 191, 102, 250, 76, 237, 235, 96, 191, 151, 236, 90, 90, 26, 26, 229, 58, 13, 8, 149, 23, 34, 255, 140, 12, 176, 180, 177, 80, 5, 235, 122, 119, 247, 123, 84, 173, 55, 232, 131, 192, 72, 54, 118, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:41.425180Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:41.425225Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:41.453958Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:41.486832Z DEBUG sp1_core_executor_runner::native: CHILD sp1_B7QAiXvFSA-cipavjMDyXA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:41.489656Z DEBUG sp1_core_executor_runner::native: CHILD sp1_B7QAiXvFSA-cipavjMDyXA==: stderr: -2026-04-20T11:08:41.489680Z DEBUG sp1_core_executor_runner::native: CHILD sp1_B7QAiXvFSA-cipavjMDyXA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:41.489690Z DEBUG sp1_core_executor_runner::native: CHILD sp1_B7QAiXvFSA-cipavjMDyXA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:41.489713Z DEBUG sp1_core_executor_runner::native: CHILD sp1_B7QAiXvFSA-cipavjMDyXA==: stderr: stack backtrace: -2026-04-20T11:08:41.489720Z DEBUG sp1_core_executor_runner::native: CHILD sp1_B7QAiXvFSA-cipavjMDyXA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:41.489727Z DEBUG sp1_core_executor_runner::native: CHILD sp1_B7QAiXvFSA-cipavjMDyXA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:41.489826Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:41.490572Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:41.490860Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:41.557525Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:41.557573Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:41.557719Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:41.557862Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:41.557918Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:41.558232Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=340 blob_id=2147878340709502963761104961572668525 -2026-04-20T11:08:42.116597Z DEBUG sp1_core_executor_runner::native: CHILD sp1_znOiSoksQpW_Gz3iUfOyRQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:42.123389Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:42.134422Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1019897 cycles -2026-04-20T11:08:42.137096Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 109, 120, 179, 57, 17, 71, 191, 97, 40, 186, 44, 248, 15, 24, 62, 8, 8, 39, 100, 54, 23, 219, 241, 210, 123, 134, 51, 7, 14, 87, 226, 241, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 123, 176, 37, 224, 122, 56, 77, 98, 175, 58, 189, 146, 204, 5, 200, 191, 79, 116, 79, 65, 125, 166, 213, 222, 24, 102, 98, 148, 170, 127, 15, 23, 65, 77, 158, 82, 146, 96, 120, 78, 206, 81, 54, 19, 198, 1, 96, 108, 217, 32, 24, 235, 51, 21, 227, 126, 157, 89, 172, 110, 30, 159, 141, 200, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:42.193274Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:42.193339Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:42.264814Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:42.299832Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4xhTPqIYRXWTzKiYG0fxrQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:42.302657Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4xhTPqIYRXWTzKiYG0fxrQ==: stderr: -2026-04-20T11:08:42.302670Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4xhTPqIYRXWTzKiYG0fxrQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:42.302679Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4xhTPqIYRXWTzKiYG0fxrQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:42.302687Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4xhTPqIYRXWTzKiYG0fxrQ==: stderr: stack backtrace: -2026-04-20T11:08:42.302693Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4xhTPqIYRXWTzKiYG0fxrQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:42.302699Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4xhTPqIYRXWTzKiYG0fxrQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:42.302827Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:42.303542Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:42.303671Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:42.374641Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:42.374688Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:42.374817Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:42.374974Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:42.375018Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:42.375458Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=341 blob_id=2147878341697221883052977138842187812 -2026-04-20T11:08:42.931569Z DEBUG sp1_core_executor_runner::native: CHILD sp1_dMOUY6VrR6it-OLKBrmpDA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:42.938254Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:42.951164Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 994094 cycles -2026-04-20T11:08:42.953904Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 8, 106, 51, 126, 199, 41, 164, 22, 55, 198, 100, 56, 229, 252, 59, 131, 86, 13, 45, 226, 133, 176, 97, 238, 25, 112, 75, 41, 206, 46, 101, 188, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 14, 145, 124, 151, 78, 96, 154, 144, 96, 75, 245, 46, 40, 135, 233, 251, 4, 169, 40, 104, 58, 106, 174, 233, 238, 193, 220, 148, 80, 221, 152, 67, 27, 221, 68, 59, 92, 225, 49, 202, 107, 5, 88, 62, 115, 93, 146, 149, 53, 206, 190, 200, 40, 130, 212, 240, 52, 132, 41, 181, 224, 174, 169, 199, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:43.006335Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:43.006376Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:43.083454Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:43.119508Z DEBUG sp1_core_executor_runner::native: CHILD sp1_upCmuoSlTz2H1JEIa_ufPw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:43.122324Z DEBUG sp1_core_executor_runner::native: CHILD sp1_upCmuoSlTz2H1JEIa_ufPw==: stderr: -2026-04-20T11:08:43.122337Z DEBUG sp1_core_executor_runner::native: CHILD sp1_upCmuoSlTz2H1JEIa_ufPw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:43.122345Z DEBUG sp1_core_executor_runner::native: CHILD sp1_upCmuoSlTz2H1JEIa_ufPw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:43.122352Z DEBUG sp1_core_executor_runner::native: CHILD sp1_upCmuoSlTz2H1JEIa_ufPw==: stderr: stack backtrace: -2026-04-20T11:08:43.122358Z DEBUG sp1_core_executor_runner::native: CHILD sp1_upCmuoSlTz2H1JEIa_ufPw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:43.122364Z DEBUG sp1_core_executor_runner::native: CHILD sp1_upCmuoSlTz2H1JEIa_ufPw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:43.122534Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:43.123275Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:43.123623Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:43.193914Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:43.193957Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:43.194090Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:43.194227Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:43.194271Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:43.194893Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=342 blob_id=2147878342688490607156844378970124540 -2026-04-20T11:08:43.756159Z DEBUG sp1_core_executor_runner::native: CHILD sp1_co5Xy8InShq-wfJWUYqFlg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:43.763068Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:43.774265Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1025777 cycles -2026-04-20T11:08:43.776812Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 125, 44, 253, 16, 73, 68, 246, 207, 241, 6, 102, 238, 121, 247, 7, 81, 5, 159, 183, 71, 167, 107, 154, 183, 68, 80, 201, 208, 134, 190, 110, 95, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 69, 126, 229, 108, 159, 127, 121, 237, 201, 103, 79, 190, 108, 215, 26, 185, 191, 245, 20, 40, 10, 89, 176, 55, 58, 51, 184, 236, 151, 187, 119, 251, 251, 247, 253, 85, 76, 200, 132, 229, 201, 220, 165, 46, 5, 224, 139, 217, 19, 249, 14, 42, 156, 144, 124, 3, 201, 191, 40, 65, 223, 29, 173, 178, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:43.833056Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:43.833100Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:43.902239Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:43.937056Z DEBUG sp1_core_executor_runner::native: CHILD sp1_l_MPR6sgS824IxzSqniYQw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:43.939881Z DEBUG sp1_core_executor_runner::native: CHILD sp1_l_MPR6sgS824IxzSqniYQw==: stderr: -2026-04-20T11:08:43.939894Z DEBUG sp1_core_executor_runner::native: CHILD sp1_l_MPR6sgS824IxzSqniYQw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:43.939903Z DEBUG sp1_core_executor_runner::native: CHILD sp1_l_MPR6sgS824IxzSqniYQw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:43.939909Z DEBUG sp1_core_executor_runner::native: CHILD sp1_l_MPR6sgS824IxzSqniYQw==: stderr: stack backtrace: -2026-04-20T11:08:43.939928Z DEBUG sp1_core_executor_runner::native: CHILD sp1_l_MPR6sgS824IxzSqniYQw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:43.939934Z DEBUG sp1_core_executor_runner::native: CHILD sp1_l_MPR6sgS824IxzSqniYQw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:43.940066Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:43.940792Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:43.941101Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:44.009253Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:44.009296Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:44.009545Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:44.009723Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:44.009779Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:44.010191Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=343 blob_id=2147878343673763948514656073464811381 -2026-04-20T11:08:44.565934Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0tkNtpX-RTqQvZj9JRmx7w==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:44.572523Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:44.582780Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 997863 cycles -2026-04-20T11:08:44.585412Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 118, 182, 249, 75, 155, 189, 193, 155, 232, 195, 101, 180, 47, 222, 90, 124, 65, 159, 236, 136, 151, 137, 42, 109, 88, 181, 126, 71, 126, 187, 20, 11, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 51, 229, 231, 74, 123, 37, 102, 208, 51, 29, 178, 85, 85, 146, 126, 132, 216, 29, 67, 125, 202, 7, 153, 141, 132, 13, 141, 140, 80, 46, 136, 153, 154, 178, 177, 224, 149, 225, 68, 205, 22, 172, 57, 56, 30, 247, 191, 200, 44, 126, 147, 125, 239, 2, 216, 112, 4, 169, 88, 247, 154, 250, 20, 247, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:44.640616Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:44.640661Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:44.718538Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:44.752736Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Git81dU6TsSnG9J2oBV7ng==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:44.755551Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Git81dU6TsSnG9J2oBV7ng==: stderr: -2026-04-20T11:08:44.755574Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Git81dU6TsSnG9J2oBV7ng==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:44.755584Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Git81dU6TsSnG9J2oBV7ng==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:44.755591Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Git81dU6TsSnG9J2oBV7ng==: stderr: stack backtrace: -2026-04-20T11:08:44.755597Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Git81dU6TsSnG9J2oBV7ng==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:44.755603Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Git81dU6TsSnG9J2oBV7ng==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:44.755658Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:44.756484Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:44.756772Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:44.822527Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:44.822570Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:44.822738Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:44.822913Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:44.822973Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:44.823466Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=344 blob_id=2147878344656653143915682807846922736 -2026-04-20T11:08:45.373838Z DEBUG sp1_core_executor_runner::native: CHILD sp1_7KBTzLKtT1SjAqxHhkEqJQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:45.380472Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:45.391081Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1001952 cycles -2026-04-20T11:08:45.393778Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 125, 229, 109, 124, 174, 117, 233, 42, 26, 16, 174, 231, 247, 224, 237, 79, 36, 73, 184, 172, 210, 234, 56, 171, 173, 46, 76, 198, 220, 191, 213, 218, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 30, 197, 132, 248, 2, 24, 124, 233, 150, 127, 94, 164, 235, 168, 59, 167, 17, 115, 241, 251, 255, 63, 144, 5, 139, 129, 238, 73, 98, 50, 228, 253, 45, 115, 220, 235, 136, 189, 211, 107, 187, 200, 22, 250, 181, 161, 186, 197, 17, 89, 85, 222, 237, 38, 179, 20, 128, 182, 191, 118, 36, 253, 214, 61, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:45.449018Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:45.449060Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:45.531553Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:45.564273Z DEBUG sp1_core_executor_runner::native: CHILD sp1_z7_aeHIWT9eoyl-hlA8vCg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:45.567135Z DEBUG sp1_core_executor_runner::native: CHILD sp1_z7_aeHIWT9eoyl-hlA8vCg==: stderr: -2026-04-20T11:08:45.567159Z DEBUG sp1_core_executor_runner::native: CHILD sp1_z7_aeHIWT9eoyl-hlA8vCg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:45.567169Z DEBUG sp1_core_executor_runner::native: CHILD sp1_z7_aeHIWT9eoyl-hlA8vCg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:45.567175Z DEBUG sp1_core_executor_runner::native: CHILD sp1_z7_aeHIWT9eoyl-hlA8vCg==: stderr: stack backtrace: -2026-04-20T11:08:45.567182Z DEBUG sp1_core_executor_runner::native: CHILD sp1_z7_aeHIWT9eoyl-hlA8vCg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:45.567188Z DEBUG sp1_core_executor_runner::native: CHILD sp1_z7_aeHIWT9eoyl-hlA8vCg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:45.567279Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:45.568064Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:45.568385Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:45.639827Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:45.639869Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:45.640052Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:45.640233Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:45.640280Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:45.640712Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=345 blob_id=2147878345645516078085756694043709565 -2026-04-20T11:08:46.205698Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1L5qkWQjR7GiqVfG29HgUQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:46.212495Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:46.224901Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1011118 cycles -2026-04-20T11:08:46.227432Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 80, 207, 171, 220, 33, 7, 131, 86, 14, 147, 38, 196, 30, 248, 185, 119, 6, 43, 221, 7, 75, 108, 250, 178, 199, 235, 205, 210, 224, 174, 176, 23, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 37, 236, 70, 179, 65, 195, 0, 186, 145, 33, 238, 217, 52, 239, 155, 151, 82, 147, 117, 153, 230, 254, 252, 75, 7, 197, 66, 82, 24, 115, 67, 151, 201, 60, 216, 112, 65, 30, 44, 240, 216, 239, 9, 101, 52, 176, 217, 172, 49, 172, 46, 232, 213, 156, 85, 2, 34, 61, 18, 0, 87, 138, 211, 115, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:46.281707Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:46.281750Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:46.347481Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:46.382323Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AXgSSETJSH275o2_1HqjSA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:46.385168Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AXgSSETJSH275o2_1HqjSA==: stderr: -2026-04-20T11:08:46.385183Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AXgSSETJSH275o2_1HqjSA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:46.385192Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AXgSSETJSH275o2_1HqjSA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:46.385200Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AXgSSETJSH275o2_1HqjSA==: stderr: stack backtrace: -2026-04-20T11:08:46.385205Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AXgSSETJSH275o2_1HqjSA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:46.385225Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AXgSSETJSH275o2_1HqjSA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:46.385324Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:46.386066Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:46.386364Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:46.452253Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:46.452294Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:46.452438Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:46.452607Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:46.452662Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:46.453064Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=346 blob_id=2147878346627208722298102559855620750 -2026-04-20T11:08:46.722525Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=8 height=287 prev_hash=0x12cb2ce00800138b271a6dd0d7c668be338658fe8d18db63c5bca857be85fd65 hash=0x110cc6767214d0987e0a7625d99fa7065e3beab3b957fdea332174d9cb68dc80 producing_time=1.083393ms -2026-04-20T11:08:46.723265Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=287 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a81133738d9dcf6f7db673679372049fbda996cac6e4545d0700efbc27d4d2b4dc" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x8fe451f386c164a53b3a15e9f3b9be686d2636a7497a20a23e499cc009d77154, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x7273f55c007488475a02f563f39cdb3e7cd0c1d10001580d8f800f77ed9beb1f, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x54ba35995120bca91061b90e36457f4f81caf44193dc03ddab9add12566354f9, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xdd2f210955dc42c89c28b47a6a1852380e0959d1004e631af697d910531d930c, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x6fb989b694574e53e8b6e0fce83a7c5a9bd299def59bce8b13c74456b854cf47, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9fe615d363c8c22c1a9940300b0bc35c1244c2082d6b39beccf6c37b6b161bd8, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x170f383141ce8e2578a75bdb001ea88a49784eb076de642c248193dbed937073, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xfc94bb500cc714d6405f45dc7ed67f16a8802b3a323e889c7ffbdc63e5e509fe, len=625"] -2026-04-20T11:08:46.723690Z DEBUG StfBlueprint::apply_slot{context=Node da_height=287}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a81133738d9dcf6f7db673679372049fbda996cac6e4545d0700efbc27d4d2b4dc next_version=287 sesssion_starting_time=48.41µs -2026-04-20T11:08:46.724625Z DEBUG StfBlueprint::apply_slot{context=Node da_height=287}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a86179fe65870ee7a33cc6f1d7dc79ff6b4200c7596d944d248b8dd708a8863fa0 next_version=287 time=1.013273ms accesses_build_time=28.399µs finishing_session_time=897.154µs -2026-04-20T11:08:46.724695Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3a4a8ae6b9e246f7cc4332545b59e3e31671994de83d7bd7f09246d53d463d4b7d666c8a3ff7796d4613cd4e9cb1fb4cf4c8900286c095bd94e1778d127578ef" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a86179fe65870ee7a33cc6f1d7dc79ff6b4200c7596d944d248b8dd708a8863fa0" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:08:46.725275Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 287, latest_finalized_slot_number: 286, sync_status: Synced { synced_da_height: 286 }, .. } -2026-04-20T11:08:46.725354Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Proceeding with `replay_soft_confirmations_on_top_of_node_state` initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: true } -2026-04-20T11:08:46.725389Z DEBUG sov_sequencer::preferred::transaction_subscriptions: Cleaning and overwriting transaction cache up to 0 -2026-04-20T11:08:46.725403Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Populating pinned cache for replay. This may take a few moments. inner_status=InitialStatus { is_startup: false, is_resync: false, is_recover: true } -2026-04-20T11:08:46.725413Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Pinned cache populated. Starting transaction replay. -2026-04-20T11:08:46.725590Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Completed proofs found without a completed batch; carrying them into final catchup pending_completed_proofs=16 next_sequence_number=331 -2026-04-20T11:08:46.725682Z DEBUG sov_sequencer::preferred::block_executor: Replacing state for block executor old=019daa94-0597-7f61-8da6-d170faf7f85a new=019daa94-1d05-7320-8e1f-f369922274ae -2026-04-20T11:08:46.739881Z DEBUG sov_stf_runner::runner: Block execution complete time=5.998220517s -2026-04-20T11:08:46.739918Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:08:47.012821Z DEBUG sp1_core_executor_runner::native: CHILD sp1_dqpCFfSASUi4zZ4NrtwE7w==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:47.019460Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:47.029573Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1000428 cycles -2026-04-20T11:08:47.032088Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 48, 195, 215, 153, 92, 189, 11, 11, 57, 157, 139, 89, 176, 74, 141, 123, 110, 99, 58, 23, 192, 53, 189, 81, 125, 150, 61, 144, 144, 191, 99, 64, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 88, 13, 43, 203, 108, 251, 181, 52, 88, 56, 203, 88, 254, 99, 43, 228, 36, 238, 66, 84, 221, 165, 89, 218, 203, 108, 124, 204, 75, 144, 144, 127, 160, 254, 86, 245, 103, 73, 59, 85, 5, 73, 65, 194, 137, 191, 162, 32, 121, 216, 177, 150, 20, 128, 122, 58, 218, 134, 233, 222, 16, 125, 244, 209, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:47.087573Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:47.087621Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:47.160826Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:47.194103Z DEBUG sp1_core_executor_runner::native: CHILD sp1_7m_V14mwSyigh6dADFS_ww==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:47.196938Z DEBUG sp1_core_executor_runner::native: CHILD sp1_7m_V14mwSyigh6dADFS_ww==: stderr: -2026-04-20T11:08:47.196962Z DEBUG sp1_core_executor_runner::native: CHILD sp1_7m_V14mwSyigh6dADFS_ww==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:47.196972Z DEBUG sp1_core_executor_runner::native: CHILD sp1_7m_V14mwSyigh6dADFS_ww==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:47.196978Z DEBUG sp1_core_executor_runner::native: CHILD sp1_7m_V14mwSyigh6dADFS_ww==: stderr: stack backtrace: -2026-04-20T11:08:47.196985Z DEBUG sp1_core_executor_runner::native: CHILD sp1_7m_V14mwSyigh6dADFS_ww==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:47.196991Z DEBUG sp1_core_executor_runner::native: CHILD sp1_7m_V14mwSyigh6dADFS_ww==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:47.197054Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:47.197822Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:47.198129Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:47.264159Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:47.264206Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:47.264407Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:47.264591Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:47.264650Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:47.264980Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=347 blob_id=2147878347608878862863195242008592643 -2026-04-20T11:08:47.809642Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hz2vb_FUQtKNmuLMcCynGA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:47.816289Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:47.826025Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 997355 cycles -2026-04-20T11:08:47.828743Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 99, 27, 80, 136, 14, 254, 245, 207, 80, 65, 214, 92, 124, 95, 191, 129, 28, 243, 113, 128, 144, 59, 74, 32, 83, 72, 11, 105, 33, 124, 26, 33, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 45, 99, 4, 216, 225, 21, 110, 50, 235, 175, 212, 233, 61, 156, 204, 135, 87, 72, 150, 6, 17, 218, 170, 137, 66, 122, 232, 144, 63, 177, 104, 240, 112, 51, 70, 35, 24, 190, 236, 155, 30, 83, 124, 112, 12, 72, 241, 64, 112, 141, 28, 122, 116, 134, 66, 162, 169, 133, 136, 167, 185, 142, 155, 150, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:47.884040Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:47.884079Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:47.973475Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:48.006847Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JW4cLuupT-e5vVxpZz66_g==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:48.009659Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JW4cLuupT-e5vVxpZz66_g==: stderr: -2026-04-20T11:08:48.009672Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JW4cLuupT-e5vVxpZz66_g==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:48.009694Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JW4cLuupT-e5vVxpZz66_g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:48.009703Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JW4cLuupT-e5vVxpZz66_g==: stderr: stack backtrace: -2026-04-20T11:08:48.009709Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JW4cLuupT-e5vVxpZz66_g==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:48.009715Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JW4cLuupT-e5vVxpZz66_g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:48.009808Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:48.010612Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:48.010907Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:48.052767Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:48.052806Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:48.052969Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:48.053122Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:48.053178Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:48.053708Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=348 blob_id=2147878348562704806050383970983352076 -2026-04-20T11:08:48.603464Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rxENaND6TDSKz8pO4VtfkA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:48.610061Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:48.621713Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 991882 cycles -2026-04-20T11:08:48.624146Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 80, 196, 247, 231, 150, 97, 5, 37, 116, 169, 141, 135, 52, 192, 174, 244, 69, 90, 185, 151, 147, 250, 234, 221, 83, 75, 222, 41, 153, 225, 11, 12, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 94, 107, 23, 186, 209, 41, 60, 41, 17, 30, 226, 202, 168, 113, 25, 111, 222, 76, 171, 133, 217, 47, 114, 7, 170, 41, 111, 165, 224, 245, 255, 137, 115, 117, 84, 167, 190, 79, 129, 0, 114, 182, 219, 87, 181, 0, 184, 156, 213, 42, 238, 84, 59, 73, 104, 233, 40, 74, 64, 181, 46, 181, 228, 39, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:48.678581Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:48.678625Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:48.760920Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:48.794469Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M8OJivr_QXqmjuGXGxv9cw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:48.797296Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M8OJivr_QXqmjuGXGxv9cw==: stderr: -2026-04-20T11:08:48.797311Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M8OJivr_QXqmjuGXGxv9cw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:48.797340Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M8OJivr_QXqmjuGXGxv9cw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:48.797349Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M8OJivr_QXqmjuGXGxv9cw==: stderr: stack backtrace: -2026-04-20T11:08:48.797355Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M8OJivr_QXqmjuGXGxv9cw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:48.797361Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M8OJivr_QXqmjuGXGxv9cw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:48.797473Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:48.798201Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:48.798502Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:48.861388Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:48.861420Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:48.861558Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:48.861704Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:48.861747Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:48.862088Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=349 blob_id=2147878349539496835192892854215216539 -2026-04-20T11:08:49.417167Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gej3RpuNTGutwx8AwfaKOA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:49.423909Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:49.434930Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1008514 cycles -2026-04-20T11:08:49.437617Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 51, 149, 5, 148, 150, 244, 188, 77, 237, 162, 133, 112, 192, 167, 7, 43, 102, 9, 130, 138, 59, 150, 50, 170, 185, 245, 12, 63, 29, 245, 244, 191, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 88, 204, 178, 46, 41, 31, 195, 35, 83, 3, 17, 3, 143, 117, 41, 103, 7, 83, 66, 104, 0, 152, 68, 88, 20, 63, 114, 195, 125, 241, 128, 76, 192, 83, 101, 223, 6, 39, 93, 244, 139, 85, 168, 136, 6, 143, 94, 164, 48, 145, 187, 106, 156, 28, 80, 57, 45, 48, 3, 50, 105, 51, 168, 84, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:49.493560Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:49.493600Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:49.569369Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:49.602928Z DEBUG sp1_core_executor_runner::native: CHILD sp1_79zyxqw1QTq1qoj1Y5QIrg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:49.605758Z DEBUG sp1_core_executor_runner::native: CHILD sp1_79zyxqw1QTq1qoj1Y5QIrg==: stderr: -2026-04-20T11:08:49.605770Z DEBUG sp1_core_executor_runner::native: CHILD sp1_79zyxqw1QTq1qoj1Y5QIrg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:49.605779Z DEBUG sp1_core_executor_runner::native: CHILD sp1_79zyxqw1QTq1qoj1Y5QIrg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:49.605787Z DEBUG sp1_core_executor_runner::native: CHILD sp1_79zyxqw1QTq1qoj1Y5QIrg==: stderr: stack backtrace: -2026-04-20T11:08:49.605794Z DEBUG sp1_core_executor_runner::native: CHILD sp1_79zyxqw1QTq1qoj1Y5QIrg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:49.605799Z DEBUG sp1_core_executor_runner::native: CHILD sp1_79zyxqw1QTq1qoj1Y5QIrg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:49.605927Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:49.606712Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:49.607004Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:49.676704Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:49.676767Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:49.676968Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:49.677128Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:49.677185Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:49.677590Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=350 blob_id=2147878350525967282295987207215559920 -2026-04-20T11:08:50.238828Z DEBUG sp1_core_executor_runner::native: CHILD sp1_un_nfNQsSVu_KaCXCTf1IQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:50.245354Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:50.255689Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 984252 cycles -2026-04-20T11:08:50.258308Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 66, 29, 208, 53, 88, 58, 179, 17, 11, 60, 27, 189, 47, 61, 26, 250, 232, 134, 52, 185, 112, 198, 92, 129, 28, 224, 102, 165, 191, 139, 27, 227, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 45, 185, 29, 164, 22, 114, 158, 199, 125, 178, 179, 48, 142, 224, 169, 45, 68, 90, 171, 31, 92, 133, 157, 121, 19, 154, 134, 126, 163, 29, 216, 234, 74, 243, 130, 228, 237, 226, 197, 122, 177, 187, 24, 72, 133, 188, 58, 23, 134, 242, 67, 255, 126, 1, 217, 206, 100, 17, 95, 122, 129, 130, 19, 180, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:50.312995Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:50.313035Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:50.383927Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:50.417880Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ibnQs17vTu6irO9SNR5cIw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:50.420700Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ibnQs17vTu6irO9SNR5cIw==: stderr: -2026-04-20T11:08:50.420714Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ibnQs17vTu6irO9SNR5cIw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:50.420722Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ibnQs17vTu6irO9SNR5cIw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:50.420745Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ibnQs17vTu6irO9SNR5cIw==: stderr: stack backtrace: -2026-04-20T11:08:50.420751Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ibnQs17vTu6irO9SNR5cIw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:50.420758Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ibnQs17vTu6irO9SNR5cIw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:50.420878Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:50.421628Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:50.421923Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:50.491886Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:50.491929Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:50.492087Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:50.492185Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:50.492241Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:50.492508Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=351 blob_id=2147878351511265162247036584521552992 -2026-04-20T11:08:51.048528Z DEBUG sp1_core_executor_runner::native: CHILD sp1_A63CZBkZRRG8HgPXjLJylg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:51.055278Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:51.065927Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1011874 cycles -2026-04-20T11:08:51.068840Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 110, 58, 162, 238, 200, 32, 35, 148, 59, 158, 9, 44, 186, 140, 51, 177, 64, 201, 163, 119, 240, 170, 50, 95, 4, 72, 203, 53, 119, 124, 70, 182, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 98, 96, 63, 183, 80, 150, 102, 73, 53, 240, 178, 196, 35, 178, 106, 85, 140, 182, 195, 99, 16, 156, 90, 248, 228, 97, 213, 141, 100, 26, 23, 133, 176, 212, 100, 39, 172, 149, 251, 87, 54, 92, 101, 203, 204, 102, 144, 249, 97, 39, 95, 23, 223, 0, 10, 79, 224, 235, 248, 48, 155, 79, 221, 233, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:51.125193Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:51.125251Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:51.198665Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:51.232028Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tdgiNEosSc6kGf0WYHqHEw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:51.234845Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tdgiNEosSc6kGf0WYHqHEw==: stderr: -2026-04-20T11:08:51.234869Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tdgiNEosSc6kGf0WYHqHEw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:51.234879Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tdgiNEosSc6kGf0WYHqHEw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:51.234886Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tdgiNEosSc6kGf0WYHqHEw==: stderr: stack backtrace: -2026-04-20T11:08:51.234892Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tdgiNEosSc6kGf0WYHqHEw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:51.234898Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tdgiNEosSc6kGf0WYHqHEw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:51.234991Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:51.235753Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:51.236042Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:51.301664Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:51.301708Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:51.301909Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:51.302072Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:51.302129Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:51.302496Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=352 blob_id=2147878352489277311082164892423114171 -2026-04-20T11:08:51.861068Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bGNCxeidSfqGP3dnBwt8ew==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:51.867871Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:51.879119Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1010897 cycles -2026-04-20T11:08:51.881735Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 45, 131, 196, 85, 240, 96, 241, 97, 207, 56, 60, 176, 168, 17, 42, 169, 67, 113, 222, 45, 10, 227, 3, 18, 78, 113, 66, 136, 143, 111, 186, 153, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 29, 194, 151, 134, 246, 248, 70, 254, 223, 65, 123, 143, 181, 25, 65, 222, 150, 108, 39, 45, 172, 110, 122, 131, 169, 177, 217, 192, 76, 64, 53, 228, 157, 203, 84, 136, 50, 189, 170, 3, 196, 86, 110, 231, 222, 20, 126, 39, 103, 191, 144, 199, 6, 93, 58, 207, 254, 83, 87, 238, 98, 193, 193, 152, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:51.937069Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:51.937115Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:52.010041Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:52.044473Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3isW44cKQ6WyqycciIW5vw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:52.047308Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3isW44cKQ6WyqycciIW5vw==: stderr: -2026-04-20T11:08:52.047338Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3isW44cKQ6WyqycciIW5vw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:52.047349Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3isW44cKQ6WyqycciIW5vw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:52.047358Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3isW44cKQ6WyqycciIW5vw==: stderr: stack backtrace: -2026-04-20T11:08:52.047364Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3isW44cKQ6WyqycciIW5vw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:52.047371Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3isW44cKQ6WyqycciIW5vw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:52.047451Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:52.048265Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:52.048593Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:52.102589Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:52.102633Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:52.102752Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:52.102899Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:52.102941Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:52.103239Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=353 blob_id=2147878353457645191518482226595353643 -2026-04-20T11:08:52.644537Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EhvGJylQSJWXzAaSgE2Agw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:52.651203Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:52.660855Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1002936 cycles -2026-04-20T11:08:52.663474Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 63, 124, 55, 113, 61, 134, 82, 254, 3, 179, 207, 79, 216, 54, 17, 77, 74, 136, 188, 56, 184, 226, 163, 49, 0, 116, 14, 18, 79, 191, 57, 166, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 22, 142, 108, 128, 22, 72, 250, 10, 128, 178, 81, 107, 98, 28, 11, 238, 115, 13, 208, 209, 141, 52, 24, 128, 205, 144, 15, 111, 143, 74, 183, 24, 229, 77, 108, 236, 206, 195, 159, 121, 230, 169, 116, 103, 121, 210, 247, 25, 67, 24, 16, 10, 199, 239, 59, 57, 116, 210, 191, 122, 99, 143, 164, 70, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:52.719652Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:52.719697Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:52.724609Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=7 height=288 prev_hash=0x110cc6767214d0987e0a7625d99fa7065e3beab3b957fdea332174d9cb68dc80 hash=0x6e89232c44f963b7059b03e08b5c528935a16fba9fae371fb906ae9a1e09875a producing_time=1.083424ms -2026-04-20T11:08:52.731432Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=288 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a86179fe65870ee7a33cc6f1d7dc79ff6b4200c7596d944d248b8dd708a8863fa0" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x13848481026a99217a1180793943a6df6c3c423667f919135f87ff9d274d6f7a, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xea8139b12adf61ffd4f23513fa95d27e4f3f7825a68ed091a6bb77ee44b698a6, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x6b1df991f4d885b30be76b243a8f2a29667efaf2c049bbd669ce584140238d8e, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xbb02112c2f972e122ba4e0e086f6ae86787c17eafcd28b49b13dc4c4cbb6fde1, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xb6c9f06f59ec9323d899be1b39edf132f4d1f834c33948e1f2ef808248d29e82, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x44849253205c88170cbc7a5930e46bff31fd312b4b2efe40b62bf2a65537c730, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9630e328157a5524b5c9edbc26a43872390f778cec9c027547cb8368eaf735d7, len=625"] -2026-04-20T11:08:52.731850Z DEBUG StfBlueprint::apply_slot{context=Node da_height=288}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a86179fe65870ee7a33cc6f1d7dc79ff6b4200c7596d944d248b8dd708a8863fa0 next_version=288 sesssion_starting_time=48.59µs -2026-04-20T11:08:52.732739Z DEBUG StfBlueprint::apply_slot{context=Node da_height=288}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a867c746097c3d8002d88a68724cf6ac2e4adda906035d5f0e2c0a1ebef96b86c6 next_version=288 time=967.184µs accesses_build_time=28.38µs finishing_session_time=858.634µs -2026-04-20T11:08:52.732810Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a81133738d9dcf6f7db673679372049fbda996cac6e4545d0700efbc27d4d2b4dc" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a867c746097c3d8002d88a68724cf6ac2e4adda906035d5f0e2c0a1ebef96b86c6" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:08:52.733382Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 288, latest_finalized_slot_number: 288, sync_status: Synced { synced_da_height: 287 }, .. } -2026-04-20T11:08:52.733486Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 288, latest_finalized_slot_number: 288, sync_status: Synced { synced_da_height: 287 }, .. } -2026-04-20T11:08:52.733548Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:08:52.746046Z DEBUG sov_stf_runner::runner: Block execution complete time=6.006130016s -2026-04-20T11:08:52.746063Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:08:52.810030Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:52.843560Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ncz140QcQ-K9fz5oMbEX6g==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:52.846396Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ncz140QcQ-K9fz5oMbEX6g==: stderr: -2026-04-20T11:08:52.846409Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ncz140QcQ-K9fz5oMbEX6g==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:52.846418Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ncz140QcQ-K9fz5oMbEX6g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:52.846426Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ncz140QcQ-K9fz5oMbEX6g==: stderr: stack backtrace: -2026-04-20T11:08:52.846433Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ncz140QcQ-K9fz5oMbEX6g==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:52.846439Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ncz140QcQ-K9fz5oMbEX6g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:52.846571Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:52.847297Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:52.847595Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:52.914174Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:52.914215Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:52.914410Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:52.914581Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:52.914639Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:52.915204Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=354 blob_id=2147878354439304489375663556105144579 -2026-04-20T11:08:53.478451Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gBEAbIjsRze0anhm0VXc4w==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:53.484946Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:53.495535Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 986371 cycles -2026-04-20T11:08:53.498235Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 15, 76, 253, 133, 75, 52, 44, 177, 243, 17, 236, 52, 73, 178, 201, 248, 13, 210, 244, 94, 29, 222, 3, 237, 56, 234, 173, 85, 194, 236, 238, 176, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 119, 42, 82, 250, 243, 193, 10, 170, 254, 0, 66, 12, 131, 38, 201, 62, 74, 51, 217, 235, 216, 210, 229, 173, 117, 119, 24, 65, 140, 82, 103, 75, 234, 112, 98, 114, 252, 173, 196, 246, 107, 116, 21, 23, 96, 244, 107, 183, 194, 113, 99, 20, 174, 228, 71, 38, 191, 44, 103, 35, 152, 34, 21, 138, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:53.552211Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:53.552258Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:53.622361Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:53.655812Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1GGOwon0SjetYFo8iMX33g==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:53.658632Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1GGOwon0SjetYFo8iMX33g==: stderr: -2026-04-20T11:08:53.658647Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1GGOwon0SjetYFo8iMX33g==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:53.658657Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1GGOwon0SjetYFo8iMX33g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:53.658665Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1GGOwon0SjetYFo8iMX33g==: stderr: stack backtrace: -2026-04-20T11:08:53.658674Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1GGOwon0SjetYFo8iMX33g==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:53.658682Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1GGOwon0SjetYFo8iMX33g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:53.658844Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:53.659606Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:53.659907Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:53.726804Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:53.726848Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:53.726974Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:53.727130Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:53.727201Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:53.727575Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=355 blob_id=2147878355422116555414099390035214794 -2026-04-20T11:08:54.282659Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Bmql3zAqRHiWI6dapGljew==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:54.289367Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:54.298722Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1000331 cycles -2026-04-20T11:08:54.301569Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 81, 171, 244, 228, 17, 7, 130, 229, 205, 106, 130, 159, 62, 54, 147, 168, 26, 237, 45, 77, 109, 96, 197, 86, 248, 208, 133, 224, 247, 78, 206, 208, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 40, 24, 134, 167, 186, 85, 24, 193, 243, 11, 145, 144, 38, 21, 73, 120, 41, 141, 108, 168, 111, 173, 162, 34, 193, 157, 135, 9, 68, 116, 37, 80, 139, 186, 52, 139, 89, 150, 217, 80, 98, 178, 203, 200, 77, 231, 9, 35, 11, 222, 74, 243, 153, 41, 244, 141, 42, 198, 155, 155, 90, 36, 39, 162, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:54.358123Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:54.358165Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:54.434859Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:54.470031Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pehR52NbTmSzZqRxZlgBAA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:54.472854Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pehR52NbTmSzZqRxZlgBAA==: stderr: -2026-04-20T11:08:54.472867Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pehR52NbTmSzZqRxZlgBAA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:54.472875Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pehR52NbTmSzZqRxZlgBAA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:54.472884Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pehR52NbTmSzZqRxZlgBAA==: stderr: stack backtrace: -2026-04-20T11:08:54.472890Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pehR52NbTmSzZqRxZlgBAA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:54.472896Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pehR52NbTmSzZqRxZlgBAA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:54.473020Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:54.473737Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:54.473865Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:54.540558Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:54.540600Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:54.540787Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:54.540926Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:54.540981Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:54.541402Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=356 blob_id=2147878356405019624298639419253931808 -2026-04-20T11:08:55.089271Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Z4cY8YbNSCytyzvZx1aLQQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:55.096133Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:55.106488Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1023084 cycles -2026-04-20T11:08:55.109167Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 11, 74, 78, 116, 24, 156, 183, 100, 44, 102, 216, 63, 29, 75, 199, 60, 212, 129, 197, 1, 115, 70, 89, 242, 98, 69, 15, 178, 156, 193, 107, 86, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 32, 238, 85, 217, 65, 128, 155, 167, 34, 135, 35, 155, 52, 170, 148, 137, 205, 135, 98, 63, 19, 37, 33, 142, 12, 158, 194, 35, 33, 241, 126, 169, 138, 201, 198, 188, 157, 233, 60, 196, 131, 15, 18, 116, 121, 73, 164, 50, 204, 184, 198, 42, 170, 27, 71, 161, 216, 208, 145, 80, 140, 11, 101, 156, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:55.165897Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:55.165942Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:55.247851Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:55.282359Z DEBUG sp1_core_executor_runner::native: CHILD sp1_q2rfhZzNTt6mKMJUmhGTxA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:55.285218Z DEBUG sp1_core_executor_runner::native: CHILD sp1_q2rfhZzNTt6mKMJUmhGTxA==: stderr: -2026-04-20T11:08:55.285232Z DEBUG sp1_core_executor_runner::native: CHILD sp1_q2rfhZzNTt6mKMJUmhGTxA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:55.285241Z DEBUG sp1_core_executor_runner::native: CHILD sp1_q2rfhZzNTt6mKMJUmhGTxA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:55.285247Z DEBUG sp1_core_executor_runner::native: CHILD sp1_q2rfhZzNTt6mKMJUmhGTxA==: stderr: stack backtrace: -2026-04-20T11:08:55.285254Z DEBUG sp1_core_executor_runner::native: CHILD sp1_q2rfhZzNTt6mKMJUmhGTxA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:55.285260Z DEBUG sp1_core_executor_runner::native: CHILD sp1_q2rfhZzNTt6mKMJUmhGTxA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:55.285435Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:55.286186Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:55.286482Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:55.357473Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:55.357516Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:55.357659Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:55.357810Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:55.357853Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:55.358383Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=357 blob_id=2147878357392648818463319074163259024 -2026-04-20T11:08:55.916774Z DEBUG sp1_core_executor_runner::native: CHILD sp1_E78aDlPSSRGBUakDQYelZQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:55.923305Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:55.933832Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 984166 cycles -2026-04-20T11:08:55.936514Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 126, 108, 186, 144, 10, 99, 121, 219, 212, 44, 186, 131, 129, 124, 254, 13, 131, 75, 175, 184, 159, 58, 70, 1, 107, 252, 41, 196, 189, 66, 88, 236, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 79, 185, 209, 236, 72, 110, 168, 132, 49, 144, 50, 112, 217, 51, 27, 242, 11, 241, 149, 81, 213, 141, 198, 143, 141, 134, 183, 57, 33, 35, 76, 108, 164, 164, 254, 9, 119, 59, 165, 87, 3, 137, 112, 5, 99, 11, 181, 130, 151, 147, 241, 16, 29, 62, 54, 232, 128, 185, 63, 74, 175, 35, 240, 147, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:55.990350Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:55.990391Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:56.065715Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:56.099433Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qaTIRGr_S_as7ce0mdBijQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:56.102299Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qaTIRGr_S_as7ce0mdBijQ==: stderr: -2026-04-20T11:08:56.102321Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qaTIRGr_S_as7ce0mdBijQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:56.102333Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qaTIRGr_S_as7ce0mdBijQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:56.102341Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qaTIRGr_S_as7ce0mdBijQ==: stderr: stack backtrace: -2026-04-20T11:08:56.102346Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qaTIRGr_S_as7ce0mdBijQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:56.102352Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qaTIRGr_S_as7ce0mdBijQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:56.102496Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:56.103363Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:56.103656Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:56.173385Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:56.173427Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:56.173588Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:56.173753Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:56.173807Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:56.174256Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=358 blob_id=2147878358379147341292743558788798543 -2026-04-20T11:08:56.728191Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hd25D9h0RjuG3KjdO_9etQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:56.734630Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:56.745599Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 983211 cycles -2026-04-20T11:08:56.748458Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 117, 161, 184, 50, 223, 167, 116, 90, 129, 124, 226, 196, 228, 203, 149, 151, 124, 13, 207, 163, 53, 129, 195, 20, 231, 96, 105, 116, 106, 230, 134, 218, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 75, 234, 74, 29, 122, 52, 35, 6, 139, 51, 15, 254, 200, 77, 39, 168, 71, 140, 60, 98, 53, 141, 218, 103, 239, 38, 162, 139, 140, 240, 101, 82, 56, 120, 116, 0, 200, 18, 138, 61, 193, 101, 19, 54, 114, 122, 95, 118, 121, 78, 173, 5, 194, 69, 115, 221, 227, 80, 55, 222, 192, 166, 55, 251, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:56.802449Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:56.802491Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:56.881356Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:56.914647Z DEBUG sp1_core_executor_runner::native: CHILD sp1_71INzUk3RBSpTXJH3BEnVQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:56.917518Z DEBUG sp1_core_executor_runner::native: CHILD sp1_71INzUk3RBSpTXJH3BEnVQ==: stderr: -2026-04-20T11:08:56.917542Z DEBUG sp1_core_executor_runner::native: CHILD sp1_71INzUk3RBSpTXJH3BEnVQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:56.917553Z DEBUG sp1_core_executor_runner::native: CHILD sp1_71INzUk3RBSpTXJH3BEnVQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:56.917559Z DEBUG sp1_core_executor_runner::native: CHILD sp1_71INzUk3RBSpTXJH3BEnVQ==: stderr: stack backtrace: -2026-04-20T11:08:56.917566Z DEBUG sp1_core_executor_runner::native: CHILD sp1_71INzUk3RBSpTXJH3BEnVQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:56.917572Z DEBUG sp1_core_executor_runner::native: CHILD sp1_71INzUk3RBSpTXJH3BEnVQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:56.917652Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:56.918440Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:56.918728Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:56.984287Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:56.984343Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:56.984509Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:56.984679Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:08:56.984735Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:56.985158Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=359 blob_id=2147878359359608370063792845491918091 -2026-04-20T11:08:57.524998Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QWHIgblGS-a55BkyGYSqKA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:08:57.531555Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:57.541145Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 996333 cycles -2026-04-20T11:08:57.543595Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 15, 128, 215, 116, 214, 223, 27, 124, 120, 161, 35, 254, 18, 23, 2, 230, 231, 45, 51, 128, 34, 25, 78, 149, 10, 92, 183, 87, 2, 185, 57, 115, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 123, 9, 218, 232, 238, 128, 208, 147, 135, 5, 106, 46, 41, 39, 46, 190, 225, 137, 178, 22, 120, 255, 233, 174, 245, 9, 143, 139, 215, 161, 124, 150, 84, 27, 6, 242, 93, 9, 138, 5, 202, 36, 45, 143, 235, 71, 100, 200, 164, 37, 190, 239, 36, 174, 40, 218, 66, 163, 36, 45, 42, 129, 248, 60, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:08:57.600051Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:57.600092Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:57.691771Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:08:57.725412Z DEBUG sp1_core_executor_runner::native: CHILD sp1_o6zozgyuRUyGy2os2RyMSg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:08:57.728225Z DEBUG sp1_core_executor_runner::native: CHILD sp1_o6zozgyuRUyGy2os2RyMSg==: stderr: -2026-04-20T11:08:57.728250Z DEBUG sp1_core_executor_runner::native: CHILD sp1_o6zozgyuRUyGy2os2RyMSg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:08:57.728258Z DEBUG sp1_core_executor_runner::native: CHILD sp1_o6zozgyuRUyGy2os2RyMSg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:57.728264Z DEBUG sp1_core_executor_runner::native: CHILD sp1_o6zozgyuRUyGy2os2RyMSg==: stderr: stack backtrace: -2026-04-20T11:08:57.728271Z DEBUG sp1_core_executor_runner::native: CHILD sp1_o6zozgyuRUyGy2os2RyMSg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:08:57.728277Z DEBUG sp1_core_executor_runner::native: CHILD sp1_o6zozgyuRUyGy2os2RyMSg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:08:57.728399Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:08:57.729125Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:08:57.729420Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:08:57.795609Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:08:57.795653Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:08:57.795779Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:08:57.796530Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=360 blob_id=2147878360340066929940191883882360043 -2026-04-20T11:08:58.727578Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=7 height=289 prev_hash=0x6e89232c44f963b7059b03e08b5c528935a16fba9fae371fb906ae9a1e09875a hash=0x34c629fb22d7824fe76312b081a0182b791453d15769373dc53f7a59f7118d4b producing_time=1.171902ms -2026-04-20T11:08:58.737943Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=289 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a867c746097c3d8002d88a68724cf6ac2e4adda906035d5f0e2c0a1ebef96b86c6" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xee09e63071ce488c061b1318ac5732e6a0f8e4b84972484ff3d4907e427e44da, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xee23a008365ac7cee6cfc9a9cc5077bb2f177255b6e2bdb88eb2e7c79f498596, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x205a6ebb58922951a2ca14366f20cb4bca1758d47242ca686154a45608f8d0c4, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x829249c5c2605e31f0b5a4e06da0a8cccf5ef4eab7b77dee39652bf2aaae4d04, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xb115027d5035390688f497db014446da1495969162c8a09710c118e2b78e246c, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xfd53e9ebbcca725d3df5ed2fde64a1f744c24cd3c8463961b2d116faf79d187a, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc3049a10de8af20524517ae183dd2fa45cedb64ff2695f3a24357099ae66cb33, len=625"] -2026-04-20T11:08:58.738360Z DEBUG StfBlueprint::apply_slot{context=Node da_height=289}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a867c746097c3d8002d88a68724cf6ac2e4adda906035d5f0e2c0a1ebef96b86c6 next_version=289 sesssion_starting_time=70.979µs -2026-04-20T11:08:58.739472Z DEBUG StfBlueprint::apply_slot{context=Node da_height=289}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8319767ea2aadd9cbc956aec9523795fb0fcefb12ac7f999f00989297bd61132c next_version=289 time=1.215022ms accesses_build_time=29.62µs finishing_session_time=1.069233ms -2026-04-20T11:08:58.739557Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a867c746097c3d8002d88a68724cf6ac2e4adda906035d5f0e2c0a1ebef96b86c6" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8319767ea2aadd9cbc956aec9523795fb0fcefb12ac7f999f00989297bd61132c" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:08:58.740114Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 289, latest_finalized_slot_number: 289, sync_status: Synced { synced_da_height: 288 }, .. } -2026-04-20T11:08:58.740212Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 289, latest_finalized_slot_number: 289, sync_status: Synced { synced_da_height: 288 }, .. } -2026-04-20T11:08:58.740282Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:08:58.747219Z DEBUG sov_stf_runner::runner: Block execution complete time=6.001156359s -2026-04-20T11:08:58.747248Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:09:04.730111Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=290 prev_hash=0x34c629fb22d7824fe76312b081a0182b791453d15769373dc53f7a59f7118d4b hash=0x8ced26dacd6f536028dc34b1b1c7a2d090ec917cf667a3a829f057caaf2629bb producing_time=1.159802ms -2026-04-20T11:09:04.738044Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=290 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8319767ea2aadd9cbc956aec9523795fb0fcefb12ac7f999f00989297bd61132c" batch_blobs=[] proof_blobs=[] -2026-04-20T11:09:04.738402Z DEBUG StfBlueprint::apply_slot{context=Node da_height=290}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8319767ea2aadd9cbc956aec9523795fb0fcefb12ac7f999f00989297bd61132c next_version=290 sesssion_starting_time=48.71µs -2026-04-20T11:09:04.739201Z DEBUG StfBlueprint::apply_slot{context=Node da_height=290}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a854cae30b6b67fb52be503205b404da58aaff8492db5ed5636dbe4fcef61b3c50 next_version=290 time=867.245µs accesses_build_time=17.09µs finishing_session_time=758.385µs -2026-04-20T11:09:04.739268Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8319767ea2aadd9cbc956aec9523795fb0fcefb12ac7f999f00989297bd61132c" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a854cae30b6b67fb52be503205b404da58aaff8492db5ed5636dbe4fcef61b3c50" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:09:04.739829Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 290, latest_finalized_slot_number: 290, sync_status: Synced { synced_da_height: 289 }, .. } -2026-04-20T11:09:04.739919Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 290, latest_finalized_slot_number: 290, sync_status: Synced { synced_da_height: 289 }, .. } -2026-04-20T11:09:04.739988Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:09:04.747427Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000180005s -2026-04-20T11:09:04.747460Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:09:10.732359Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=291 prev_hash=0x8ced26dacd6f536028dc34b1b1c7a2d090ec917cf667a3a829f057caaf2629bb hash=0x6f54740c63973f7afb49b13aafc347c0aa50ea0fd64df135e634cd10ba4c8906 producing_time=1.101033ms -2026-04-20T11:09:10.739014Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=291 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a854cae30b6b67fb52be503205b404da58aaff8492db5ed5636dbe4fcef61b3c50" batch_blobs=[] proof_blobs=[] -2026-04-20T11:09:10.739363Z DEBUG StfBlueprint::apply_slot{context=Node da_height=291}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a854cae30b6b67fb52be503205b404da58aaff8492db5ed5636dbe4fcef61b3c50 next_version=291 sesssion_starting_time=74.329µs -2026-04-20T11:09:10.740218Z DEBUG StfBlueprint::apply_slot{context=Node da_height=291}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a84eaee1ad9c15d0203be65ebc57bc36fb26040ca3abb0db31a1615c9a81f8ef52 next_version=291 time=945.884µs accesses_build_time=15.26µs finishing_session_time=819.765µs -2026-04-20T11:09:10.740283Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a854cae30b6b67fb52be503205b404da58aaff8492db5ed5636dbe4fcef61b3c50" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a84eaee1ad9c15d0203be65ebc57bc36fb26040ca3abb0db31a1615c9a81f8ef52" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:09:10.740787Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 291, latest_finalized_slot_number: 291, sync_status: Synced { synced_da_height: 290 }, .. } -2026-04-20T11:09:10.740894Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 291, latest_finalized_slot_number: 291, sync_status: Synced { synced_da_height: 290 }, .. } -2026-04-20T11:09:10.740954Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:09:10.750133Z DEBUG sov_stf_runner::runner: Block execution complete time=6.002674679s -2026-04-20T11:09:10.750158Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:09:16.735421Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=292 prev_hash=0x6f54740c63973f7afb49b13aafc347c0aa50ea0fd64df135e634cd10ba4c8906 hash=0x9455308bff515027053b98b9c535cc529186f83650a43e0cba68c056ba143a1d producing_time=1.085642ms -2026-04-20T11:09:16.741215Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=292 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a84eaee1ad9c15d0203be65ebc57bc36fb26040ca3abb0db31a1615c9a81f8ef52" batch_blobs=[] proof_blobs=[] -2026-04-20T11:09:16.741570Z DEBUG StfBlueprint::apply_slot{context=Node da_height=292}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a84eaee1ad9c15d0203be65ebc57bc36fb26040ca3abb0db31a1615c9a81f8ef52 next_version=292 sesssion_starting_time=47.69µs -2026-04-20T11:09:16.742376Z DEBUG StfBlueprint::apply_slot{context=Node da_height=292}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a82aca2faf11ef77fb05f70a7e3bfcecc51d029a8b37f70573647f4142e156d97f next_version=292 time=869.995µs accesses_build_time=15.28µs finishing_session_time=771.555µs -2026-04-20T11:09:16.742440Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a84eaee1ad9c15d0203be65ebc57bc36fb26040ca3abb0db31a1615c9a81f8ef52" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a82aca2faf11ef77fb05f70a7e3bfcecc51d029a8b37f70573647f4142e156d97f" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:09:16.742886Z DEBUG sov_stf_runner::runner: Block execution complete time=5.992729722s -2026-04-20T11:09:16.742915Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:09:16.742967Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 292, latest_finalized_slot_number: 291, sync_status: Syncing { synced_da_height: 291, target_da_height: 292 }, .. } -2026-04-20T11:09:16.743063Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 292, latest_finalized_slot_number: 291, sync_status: Syncing { synced_da_height: 291, target_da_height: 292 }, .. } -2026-04-20T11:09:16.743128Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:09:22.737778Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=293 prev_hash=0x9455308bff515027053b98b9c535cc529186f83650a43e0cba68c056ba143a1d hash=0x6f698b9c466aa20f06e1b717428d4d6f36ce251cb9282732e30b705ffc64e5fd producing_time=1.193032ms -2026-04-20T11:09:22.744658Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=293 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a82aca2faf11ef77fb05f70a7e3bfcecc51d029a8b37f70573647f4142e156d97f" batch_blobs=[] proof_blobs=[] -2026-04-20T11:09:22.744981Z DEBUG StfBlueprint::apply_slot{context=Node da_height=293}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a82aca2faf11ef77fb05f70a7e3bfcecc51d029a8b37f70573647f4142e156d97f next_version=293 sesssion_starting_time=48.47µs -2026-04-20T11:09:22.745752Z DEBUG StfBlueprint::apply_slot{context=Node da_height=293}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8506b6d39a712a13b400eb5581ae2f2d18c30ef1e37d1b2a0dc47d5298021019a next_version=293 time=836.145µs accesses_build_time=15.29µs finishing_session_time=742.415µs -2026-04-20T11:09:22.745819Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a84eaee1ad9c15d0203be65ebc57bc36fb26040ca3abb0db31a1615c9a81f8ef52" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8506b6d39a712a13b400eb5581ae2f2d18c30ef1e37d1b2a0dc47d5298021019a" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:09:22.746308Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 293, latest_finalized_slot_number: 292, sync_status: Syncing { synced_da_height: 292, target_da_height: 293 }, .. } -2026-04-20T11:09:22.746407Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 293, latest_finalized_slot_number: 292, sync_status: Syncing { synced_da_height: 292, target_da_height: 293 }, .. } -2026-04-20T11:09:22.746466Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:09:22.752947Z DEBUG sov_stf_runner::runner: Block execution complete time=6.010035121s -2026-04-20T11:09:22.752976Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:09:28.740022Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=294 prev_hash=0x6f698b9c466aa20f06e1b717428d4d6f36ce251cb9282732e30b705ffc64e5fd hash=0x077fcb99d446671938709c8b28a4797b833d594fc1a1067eb75c2e5dafc4941b producing_time=1.180253ms -2026-04-20T11:09:28.744904Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=294 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8506b6d39a712a13b400eb5581ae2f2d18c30ef1e37d1b2a0dc47d5298021019a" batch_blobs=[] proof_blobs=[] -2026-04-20T11:09:28.745227Z DEBUG StfBlueprint::apply_slot{context=Node da_height=294}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8506b6d39a712a13b400eb5581ae2f2d18c30ef1e37d1b2a0dc47d5298021019a next_version=294 sesssion_starting_time=47.59µs -2026-04-20T11:09:28.746071Z DEBUG StfBlueprint::apply_slot{context=Node da_height=294}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a861a617f96b291aa47e2c628e79a8bb3b797076eb50fc8d6b595fe63955f2696e next_version=294 time=907.425µs accesses_build_time=15.21µs finishing_session_time=814.075µs -2026-04-20T11:09:28.746134Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a82aca2faf11ef77fb05f70a7e3bfcecc51d029a8b37f70573647f4142e156d97f" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a861a617f96b291aa47e2c628e79a8bb3b797076eb50fc8d6b595fe63955f2696e" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:09:28.746622Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 294, latest_finalized_slot_number: 293, sync_status: Syncing { synced_da_height: 293, target_da_height: 294 }, .. } -2026-04-20T11:09:28.746719Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 294, latest_finalized_slot_number: 293, sync_status: Syncing { synced_da_height: 293, target_da_height: 294 }, .. } -2026-04-20T11:09:28.746778Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:09:28.753006Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000032366s -2026-04-20T11:09:28.753030Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:09:34.741602Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=295 prev_hash=0x077fcb99d446671938709c8b28a4797b833d594fc1a1067eb75c2e5dafc4941b hash=0x581f3630bf091cc7797e82b647346396d6360198049a2dc1426e0d2abcbcc86b producing_time=1.158782ms -2026-04-20T11:09:34.744416Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=295 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a861a617f96b291aa47e2c628e79a8bb3b797076eb50fc8d6b595fe63955f2696e" batch_blobs=[] proof_blobs=[] -2026-04-20T11:09:34.744739Z DEBUG StfBlueprint::apply_slot{context=Node da_height=295}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a861a617f96b291aa47e2c628e79a8bb3b797076eb50fc8d6b595fe63955f2696e next_version=295 sesssion_starting_time=48.409µs -2026-04-20T11:09:34.745618Z DEBUG StfBlueprint::apply_slot{context=Node da_height=295}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a805f7c5db6b1d49780e9aff06a91de16217427a16551ba28a71dc05b39c95e482 next_version=295 time=943.883µs accesses_build_time=14.889µs finishing_session_time=851.275µs -2026-04-20T11:09:34.745683Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8506b6d39a712a13b400eb5581ae2f2d18c30ef1e37d1b2a0dc47d5298021019a" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a805f7c5db6b1d49780e9aff06a91de16217427a16551ba28a71dc05b39c95e482" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:09:34.746238Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 295, latest_finalized_slot_number: 294, sync_status: Synced { synced_da_height: 294 }, .. } -2026-04-20T11:09:34.746347Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 295, latest_finalized_slot_number: 294, sync_status: Synced { synced_da_height: 294 }, .. } -2026-04-20T11:09:34.746416Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:09:34.753027Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999998506s -2026-04-20T11:09:34.753061Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:09:40.743634Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=296 prev_hash=0x581f3630bf091cc7797e82b647346396d6360198049a2dc1426e0d2abcbcc86b hash=0x0f429f6b1e29256c228a01536b0a145dbfd2d1bd67676cb36f698c5c792490bd producing_time=1.103224ms -2026-04-20T11:09:40.744179Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=296 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a805f7c5db6b1d49780e9aff06a91de16217427a16551ba28a71dc05b39c95e482" batch_blobs=[] proof_blobs=[] -2026-04-20T11:09:40.744507Z DEBUG StfBlueprint::apply_slot{context=Node da_height=296}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a805f7c5db6b1d49780e9aff06a91de16217427a16551ba28a71dc05b39c95e482 next_version=296 sesssion_starting_time=45.06µs -2026-04-20T11:09:40.745299Z DEBUG StfBlueprint::apply_slot{context=Node da_height=296}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8127d4d999f30b91339b7bda0f218fc3fe589f11a72828a257b03af0e4d4c2e2c next_version=296 time=852.965µs accesses_build_time=14.61µs finishing_session_time=756.206µs -2026-04-20T11:09:40.745373Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a861a617f96b291aa47e2c628e79a8bb3b797076eb50fc8d6b595fe63955f2696e" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8127d4d999f30b91339b7bda0f218fc3fe589f11a72828a257b03af0e4d4c2e2c" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:09:40.745882Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 296, latest_finalized_slot_number: 295, sync_status: Synced { synced_da_height: 295 }, .. } -2026-04-20T11:09:40.745971Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 296, latest_finalized_slot_number: 295, sync_status: Synced { synced_da_height: 295 }, .. } -2026-04-20T11:09:40.746032Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:09:40.753053Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999994136s -2026-04-20T11:09:40.753078Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:09:46.745998Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=297 prev_hash=0x0f429f6b1e29256c228a01536b0a145dbfd2d1bd67676cb36f698c5c792490bd hash=0xa731fb2374bfb1726939c43b7b0cfcce6b1c8f0c7625d5cd00cfceb79089377a producing_time=1.042354ms -2026-04-20T11:09:46.754830Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=297 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8127d4d999f30b91339b7bda0f218fc3fe589f11a72828a257b03af0e4d4c2e2c" batch_blobs=[] proof_blobs=[] -2026-04-20T11:09:46.755165Z DEBUG StfBlueprint::apply_slot{context=Node da_height=297}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8127d4d999f30b91339b7bda0f218fc3fe589f11a72828a257b03af0e4d4c2e2c next_version=297 sesssion_starting_time=50.22µs -2026-04-20T11:09:46.755959Z DEBUG StfBlueprint::apply_slot{context=Node da_height=297}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a874fa44e3ff908b3ba20e4658db7119bcf57ac3087e0cde6864f2893638688125 next_version=297 time=861.864µs accesses_build_time=16.7µs finishing_session_time=756.865µs -2026-04-20T11:09:46.756026Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a805f7c5db6b1d49780e9aff06a91de16217427a16551ba28a71dc05b39c95e482" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a874fa44e3ff908b3ba20e4658db7119bcf57ac3087e0cde6864f2893638688125" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:09:46.756545Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 297, latest_finalized_slot_number: 296, sync_status: Synced { synced_da_height: 296 }, .. } -2026-04-20T11:09:46.756655Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 297, latest_finalized_slot_number: 296, sync_status: Synced { synced_da_height: 296 }, .. } -2026-04-20T11:09:46.756723Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:09:46.762896Z DEBUG sov_stf_runner::runner: Block execution complete time=6.009818873s -2026-04-20T11:09:46.762928Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:09:52.747913Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=298 prev_hash=0xa731fb2374bfb1726939c43b7b0cfcce6b1c8f0c7625d5cd00cfceb79089377a hash=0x0a8ef291baf08446598c61b954bf188a44cb4e022ff1cc62ae0348d6cff8a050 producing_time=1.102213ms -2026-04-20T11:09:52.754714Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=298 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a874fa44e3ff908b3ba20e4658db7119bcf57ac3087e0cde6864f2893638688125" batch_blobs=[] proof_blobs=[] -2026-04-20T11:09:52.755041Z DEBUG StfBlueprint::apply_slot{context=Node da_height=298}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a874fa44e3ff908b3ba20e4658db7119bcf57ac3087e0cde6864f2893638688125 next_version=298 sesssion_starting_time=45.389µs -2026-04-20T11:09:52.755841Z DEBUG StfBlueprint::apply_slot{context=Node da_height=298}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8299530a96ad12720291e392a2e10cf60e0e73da58e693372eac37c9ecc0d7faf next_version=298 time=861.014µs accesses_build_time=14.93µs finishing_session_time=771.265µs -2026-04-20T11:09:52.755907Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8127d4d999f30b91339b7bda0f218fc3fe589f11a72828a257b03af0e4d4c2e2c" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8299530a96ad12720291e392a2e10cf60e0e73da58e693372eac37c9ecc0d7faf" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:09:52.756422Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 298, latest_finalized_slot_number: 297, sync_status: Synced { synced_da_height: 297 }, .. } -2026-04-20T11:09:52.756527Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 298, latest_finalized_slot_number: 297, sync_status: Synced { synced_da_height: 297 }, .. } -2026-04-20T11:09:52.756586Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:09:52.763105Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000178296s -2026-04-20T11:09:52.763144Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:09:58.750475Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=299 prev_hash=0x0a8ef291baf08446598c61b954bf188a44cb4e022ff1cc62ae0348d6cff8a050 hash=0xaea5af92911ec8d8b350e2b88b3d32f49578b732837cddff4dc4fe3a6e6024da producing_time=1.115013ms -2026-04-20T11:09:58.754243Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=299 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8299530a96ad12720291e392a2e10cf60e0e73da58e693372eac37c9ecc0d7faf" batch_blobs=[] proof_blobs=[] -2026-04-20T11:09:58.754604Z DEBUG StfBlueprint::apply_slot{context=Node da_height=299}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8299530a96ad12720291e392a2e10cf60e0e73da58e693372eac37c9ecc0d7faf next_version=299 sesssion_starting_time=53.059µs -2026-04-20T11:09:58.755406Z DEBUG StfBlueprint::apply_slot{context=Node da_height=299}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a81f039b06c289cd434a19454e29bb49490b56656dc09942734eb5818e64da8593 next_version=299 time=869.934µs accesses_build_time=13.99µs finishing_session_time=767.945µs -2026-04-20T11:09:58.755467Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a874fa44e3ff908b3ba20e4658db7119bcf57ac3087e0cde6864f2893638688125" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a81f039b06c289cd434a19454e29bb49490b56656dc09942734eb5818e64da8593" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:09:58.756045Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 299, latest_finalized_slot_number: 298, sync_status: Synced { synced_da_height: 298 }, .. } -2026-04-20T11:09:58.756137Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 299, latest_finalized_slot_number: 298, sync_status: Synced { synced_da_height: 298 }, .. } -2026-04-20T11:09:58.756211Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:09:58.763035Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999893217s -2026-04-20T11:09:58.763060Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:10:04.752650Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=300 prev_hash=0xaea5af92911ec8d8b350e2b88b3d32f49578b732837cddff4dc4fe3a6e6024da hash=0xda716c88035375a260a046e06785ccfa0c36e1b8eed0536b7635a6255dca94fe producing_time=856.085µs -2026-04-20T11:10:04.754020Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=300 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a81f039b06c289cd434a19454e29bb49490b56656dc09942734eb5818e64da8593" batch_blobs=[] proof_blobs=[] -2026-04-20T11:10:04.754234Z DEBUG StfBlueprint::apply_slot{context=Node da_height=300}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a81f039b06c289cd434a19454e29bb49490b56656dc09942734eb5818e64da8593 next_version=300 sesssion_starting_time=30.61µs -2026-04-20T11:10:04.754875Z DEBUG StfBlueprint::apply_slot{context=Node da_height=300}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a82d7f007a2fc5985092bdbf329ed92aa8bd540351ea469636a9065f4574d64b43 next_version=300 time=680.215µs accesses_build_time=8.56µs finishing_session_time=623.746µs -2026-04-20T11:10:04.754914Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8299530a96ad12720291e392a2e10cf60e0e73da58e693372eac37c9ecc0d7faf" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a82d7f007a2fc5985092bdbf329ed92aa8bd540351ea469636a9065f4574d64b43" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:10:04.755189Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 300, latest_finalized_slot_number: 299, sync_status: Synced { synced_da_height: 299 }, .. } -2026-04-20T11:10:04.755244Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 300, latest_finalized_slot_number: 299, sync_status: Synced { synced_da_height: 299 }, .. } -2026-04-20T11:10:04.755278Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:10:04.765199Z DEBUG sov_stf_runner::runner: Block execution complete time=6.002140433s -2026-04-20T11:10:04.765221Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:10:10.754888Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=301 prev_hash=0xda716c88035375a260a046e06785ccfa0c36e1b8eed0536b7635a6255dca94fe hash=0x889f0812f003ab416003e31bd09f4387f068f8429160989243f6380c88db5f61 producing_time=1.161043ms -2026-04-20T11:10:10.757173Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=301 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a82d7f007a2fc5985092bdbf329ed92aa8bd540351ea469636a9065f4574d64b43" batch_blobs=[] proof_blobs=[] -2026-04-20T11:10:10.757506Z DEBUG StfBlueprint::apply_slot{context=Node da_height=301}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a82d7f007a2fc5985092bdbf329ed92aa8bd540351ea469636a9065f4574d64b43 next_version=301 sesssion_starting_time=47.03µs -2026-04-20T11:10:10.758287Z DEBUG StfBlueprint::apply_slot{context=Node da_height=301}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a874fbd1a0dfb4d109fa0ceaeb1b94e4230ef5dc95383788903152a259a5c3a95e next_version=301 time=844.785µs accesses_build_time=15.85µs finishing_session_time=746.045µs -2026-04-20T11:10:10.758365Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a81f039b06c289cd434a19454e29bb49490b56656dc09942734eb5818e64da8593" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a874fbd1a0dfb4d109fa0ceaeb1b94e4230ef5dc95383788903152a259a5c3a95e" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:10:10.758956Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 301, latest_finalized_slot_number: 300, sync_status: Synced { synced_da_height: 300 }, .. } -2026-04-20T11:10:10.759052Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 301, latest_finalized_slot_number: 300, sync_status: Synced { synced_da_height: 300 }, .. } -2026-04-20T11:10:10.759122Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:10:10.769707Z DEBUG sov_stf_runner::runner: Block execution complete time=6.004486427s -2026-04-20T11:10:10.769733Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:10:16.757163Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=302 prev_hash=0x889f0812f003ab416003e31bd09f4387f068f8429160989243f6380c88db5f61 hash=0xc94122e3b8eb89c2749de96171b06c43a029713417c2b8e90b2c18b66d19ea5a producing_time=1.258952ms -2026-04-20T11:10:16.761829Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=302 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a874fbd1a0dfb4d109fa0ceaeb1b94e4230ef5dc95383788903152a259a5c3a95e" batch_blobs=[] proof_blobs=[] -2026-04-20T11:10:16.762167Z DEBUG StfBlueprint::apply_slot{context=Node da_height=302}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a874fbd1a0dfb4d109fa0ceaeb1b94e4230ef5dc95383788903152a259a5c3a95e next_version=302 sesssion_starting_time=47.489µs -2026-04-20T11:10:16.763006Z DEBUG StfBlueprint::apply_slot{context=Node da_height=302}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a82a0363ca97845ae72d3c7c63a578cc071459b36c60a9cdd0798497725f37d6ff next_version=302 time=904.054µs accesses_build_time=15.95µs finishing_session_time=802.935µs -2026-04-20T11:10:16.763072Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a82d7f007a2fc5985092bdbf329ed92aa8bd540351ea469636a9065f4574d64b43" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a82a0363ca97845ae72d3c7c63a578cc071459b36c60a9cdd0798497725f37d6ff" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:10:16.763632Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 302, latest_finalized_slot_number: 301, sync_status: Synced { synced_da_height: 301 }, .. } -2026-04-20T11:10:16.763745Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 302, latest_finalized_slot_number: 301, sync_status: Synced { synced_da_height: 301 }, .. } -2026-04-20T11:10:16.763815Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:10:16.770209Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000477324s -2026-04-20T11:10:16.770235Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:10:22.759146Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=303 prev_hash=0xc94122e3b8eb89c2749de96171b06c43a029713417c2b8e90b2c18b66d19ea5a hash=0xca6be05c027699f469a7f1fa9341d4a425df9405d1693788bafafe1eebbc2e50 producing_time=1.53167ms -2026-04-20T11:10:22.761830Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=303 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a82a0363ca97845ae72d3c7c63a578cc071459b36c60a9cdd0798497725f37d6ff" batch_blobs=[] proof_blobs=[] -2026-04-20T11:10:22.762160Z DEBUG StfBlueprint::apply_slot{context=Node da_height=303}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a82a0363ca97845ae72d3c7c63a578cc071459b36c60a9cdd0798497725f37d6ff next_version=303 sesssion_starting_time=47.28µs -2026-04-20T11:10:22.762830Z DEBUG StfBlueprint::apply_slot{context=Node da_height=303}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8469873d1c4700df352bd486033e1962a61cd464f4d627d11cda8a8e0217f4718 next_version=303 time=732.366µs accesses_build_time=13.82µs finishing_session_time=641.396µs -2026-04-20T11:10:22.762898Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a874fbd1a0dfb4d109fa0ceaeb1b94e4230ef5dc95383788903152a259a5c3a95e" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8469873d1c4700df352bd486033e1962a61cd464f4d627d11cda8a8e0217f4718" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:10:22.763426Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 303, latest_finalized_slot_number: 302, sync_status: Synced { synced_da_height: 302 }, .. } -2026-04-20T11:10:22.763530Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 303, latest_finalized_slot_number: 302, sync_status: Synced { synced_da_height: 302 }, .. } -2026-04-20T11:10:22.763591Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:10:22.773510Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003276056s -2026-04-20T11:10:22.773551Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:10:28.761532Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=304 prev_hash=0xca6be05c027699f469a7f1fa9341d4a425df9405d1693788bafafe1eebbc2e50 hash=0x72be84c990e04f68b33bf5b9b16cb43aaaac593b02825b04efeb198d61982270 producing_time=1.280772ms -2026-04-20T11:10:28.765072Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=304 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8469873d1c4700df352bd486033e1962a61cd464f4d627d11cda8a8e0217f4718" batch_blobs=[] proof_blobs=[] -2026-04-20T11:10:28.765403Z DEBUG StfBlueprint::apply_slot{context=Node da_height=304}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8469873d1c4700df352bd486033e1962a61cd464f4d627d11cda8a8e0217f4718 next_version=304 sesssion_starting_time=48.03µs -2026-04-20T11:10:28.766245Z DEBUG StfBlueprint::apply_slot{context=Node da_height=304}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a861821dde89741a2367ff8bdbd87d145c3e2ee5331278047050b1ba742542f5f6 next_version=304 time=904.974µs accesses_build_time=13.4µs finishing_session_time=810.845µs -2026-04-20T11:10:28.766303Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a82a0363ca97845ae72d3c7c63a578cc071459b36c60a9cdd0798497725f37d6ff" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a861821dde89741a2367ff8bdbd87d145c3e2ee5331278047050b1ba742542f5f6" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:10:28.766811Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 304, latest_finalized_slot_number: 303, sync_status: Synced { synced_da_height: 303 }, .. } -2026-04-20T11:10:28.766908Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 304, latest_finalized_slot_number: 303, sync_status: Synced { synced_da_height: 303 }, .. } -2026-04-20T11:10:28.766969Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:10:28.774184Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000636323s -2026-04-20T11:10:28.774212Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:10:34.764546Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=305 prev_hash=0x72be84c990e04f68b33bf5b9b16cb43aaaac593b02825b04efeb198d61982270 hash=0x79b92c858b3d61827374599e30a6b146df204caabb0ee7a61ae20a6c05920407 producing_time=1.177612ms -2026-04-20T11:10:34.765107Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=305 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a861821dde89741a2367ff8bdbd87d145c3e2ee5331278047050b1ba742542f5f6" batch_blobs=[] proof_blobs=[] -2026-04-20T11:10:34.765441Z DEBUG StfBlueprint::apply_slot{context=Node da_height=305}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a861821dde89741a2367ff8bdbd87d145c3e2ee5331278047050b1ba742542f5f6 next_version=305 sesssion_starting_time=49.029µs -2026-04-20T11:10:34.766197Z DEBUG StfBlueprint::apply_slot{context=Node da_height=305}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a85f212ee1ab6678704fa1abf9f2f9e5f402302592ea1f60771fa90ed47d8bd633 next_version=305 time=819.735µs accesses_build_time=13.68µs finishing_session_time=717.436µs -2026-04-20T11:10:34.766253Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8469873d1c4700df352bd486033e1962a61cd464f4d627d11cda8a8e0217f4718" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a85f212ee1ab6678704fa1abf9f2f9e5f402302592ea1f60771fa90ed47d8bd633" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:10:34.766793Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 305, latest_finalized_slot_number: 304, sync_status: Synced { synced_da_height: 304 }, .. } -2026-04-20T11:10:34.766904Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 305, latest_finalized_slot_number: 304, sync_status: Synced { synced_da_height: 304 }, .. } -2026-04-20T11:10:34.766975Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:10:34.774010Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999798768s -2026-04-20T11:10:34.774042Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:10:40.767577Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=306 prev_hash=0x79b92c858b3d61827374599e30a6b146df204caabb0ee7a61ae20a6c05920407 hash=0xf04313ec08f2d479f17b4b5534d0b7d5598daad060d5d7d9e66ce381b6af4d6d producing_time=1.144163ms -2026-04-20T11:10:40.775241Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=306 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a85f212ee1ab6678704fa1abf9f2f9e5f402302592ea1f60771fa90ed47d8bd633" batch_blobs=[] proof_blobs=[] -2026-04-20T11:10:40.775575Z DEBUG StfBlueprint::apply_slot{context=Node da_height=306}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a85f212ee1ab6678704fa1abf9f2f9e5f402302592ea1f60771fa90ed47d8bd633 next_version=306 sesssion_starting_time=45.85µs -2026-04-20T11:10:40.776423Z DEBUG StfBlueprint::apply_slot{context=Node da_height=306}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a86897918a4031c284c30b157a1c14192c8072452327f991c4dbc762a7430a792c next_version=306 time=907.944µs accesses_build_time=13.88µs finishing_session_time=813.145µs -2026-04-20T11:10:40.776488Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a861821dde89741a2367ff8bdbd87d145c3e2ee5331278047050b1ba742542f5f6" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a86897918a4031c284c30b157a1c14192c8072452327f991c4dbc762a7430a792c" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:10:40.776978Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 306, latest_finalized_slot_number: 305, sync_status: Synced { synced_da_height: 305 }, .. } -2026-04-20T11:10:40.777075Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 306, latest_finalized_slot_number: 305, sync_status: Synced { synced_da_height: 305 }, .. } -2026-04-20T11:10:40.777144Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:10:40.784241Z DEBUG sov_stf_runner::runner: Block execution complete time=6.010200522s -2026-04-20T11:10:40.784265Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:10:46.770483Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=307 prev_hash=0xf04313ec08f2d479f17b4b5534d0b7d5598daad060d5d7d9e66ce381b6af4d6d hash=0x183236f0e01efeefa4a385e93a3af6f4c1c0aaab33bef91ba1d519da3338dbb5 producing_time=1.209962ms -2026-04-20T11:10:46.775034Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=307 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a86897918a4031c284c30b157a1c14192c8072452327f991c4dbc762a7430a792c" batch_blobs=[] proof_blobs=[] -2026-04-20T11:10:46.775394Z DEBUG StfBlueprint::apply_slot{context=Node da_height=307}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a86897918a4031c284c30b157a1c14192c8072452327f991c4dbc762a7430a792c next_version=307 sesssion_starting_time=48.729µs -2026-04-20T11:10:46.776151Z DEBUG StfBlueprint::apply_slot{context=Node da_height=307}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a87be89e8eed5718537f7a03e6d5a363e20ae182b2723daead8deacdd0c4dc4755 next_version=307 time=844.234µs accesses_build_time=37.27µs finishing_session_time=721.885µs -2026-04-20T11:10:46.776210Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a85f212ee1ab6678704fa1abf9f2f9e5f402302592ea1f60771fa90ed47d8bd633" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a87be89e8eed5718537f7a03e6d5a363e20ae182b2723daead8deacdd0c4dc4755" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:10:46.776751Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 307, latest_finalized_slot_number: 306, sync_status: Synced { synced_da_height: 306 }, .. } -2026-04-20T11:10:46.776851Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 307, latest_finalized_slot_number: 306, sync_status: Synced { synced_da_height: 306 }, .. } -2026-04-20T11:10:46.776911Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:10:46.783229Z  INFO sov_db::storage_manager::nomt_based::groups: Starting pruner task iteration versions_to_keep=20 -2026-04-20T11:10:46.783432Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999168403s -2026-04-20T11:10:46.783461Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:10:46.783520Z  WARN sov_db::storage_manager::nomt_based::groups: Pruning temporarily disabled -2026-04-20T11:10:52.772289Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=308 prev_hash=0x183236f0e01efeefa4a385e93a3af6f4c1c0aaab33bef91ba1d519da3338dbb5 hash=0x8fff504b5f36a5e5c0d114c2172cf92483255772d47d0ccab6acfb7c9607f1d0 producing_time=670.735µs -2026-04-20T11:10:52.775675Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=308 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a87be89e8eed5718537f7a03e6d5a363e20ae182b2723daead8deacdd0c4dc4755" batch_blobs=[] proof_blobs=[] -2026-04-20T11:10:52.775855Z DEBUG StfBlueprint::apply_slot{context=Node da_height=308}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a87be89e8eed5718537f7a03e6d5a363e20ae182b2723daead8deacdd0c4dc4755 next_version=308 sesssion_starting_time=25µs -2026-04-20T11:10:52.776285Z DEBUG StfBlueprint::apply_slot{context=Node da_height=308}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8422d25ab92da67a49b7f9a235eb5544be2ba58c6ac2c64104494101e554e7620 next_version=308 time=462.468µs accesses_build_time=7.54µs finishing_session_time=416.668µs -2026-04-20T11:10:52.776322Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a86897918a4031c284c30b157a1c14192c8072452327f991c4dbc762a7430a792c" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8422d25ab92da67a49b7f9a235eb5544be2ba58c6ac2c64104494101e554e7620" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:10:52.776577Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 308, latest_finalized_slot_number: 307, sync_status: Synced { synced_da_height: 307 }, .. } -2026-04-20T11:10:52.776625Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 308, latest_finalized_slot_number: 307, sync_status: Synced { synced_da_height: 307 }, .. } -2026-04-20T11:10:52.776661Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:10:52.782140Z  INFO sov_db::storage_manager::nomt_based::groups: Pruner task has completed historical_state.hit_size_limit=false accessory_state.hit_size_limit=false -2026-04-20T11:10:52.782412Z DEBUG sov_stf_runner::runner: Block execution complete time=5.998953784s -2026-04-20T11:10:52.782432Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:10:58.774253Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=309 prev_hash=0x8fff504b5f36a5e5c0d114c2172cf92483255772d47d0ccab6acfb7c9607f1d0 hash=0x006afa1b97db92086f245c94f6df801d84dd454e56e436f2d3f88f29f06b5e9b producing_time=1.391441ms -2026-04-20T11:10:58.784180Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=309 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8422d25ab92da67a49b7f9a235eb5544be2ba58c6ac2c64104494101e554e7620" batch_blobs=[] proof_blobs=[] -2026-04-20T11:10:58.784524Z DEBUG StfBlueprint::apply_slot{context=Node da_height=309}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8422d25ab92da67a49b7f9a235eb5544be2ba58c6ac2c64104494101e554e7620 next_version=309 sesssion_starting_time=49.33µs -2026-04-20T11:10:58.785306Z DEBUG StfBlueprint::apply_slot{context=Node da_height=309}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a817cda9bb26c77c5e94390df6135c99c7680114a829921eff300c3295f389ade2 next_version=309 time=845.844µs accesses_build_time=13.409µs finishing_session_time=745.975µs -2026-04-20T11:10:58.785378Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a87be89e8eed5718537f7a03e6d5a363e20ae182b2723daead8deacdd0c4dc4755" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a817cda9bb26c77c5e94390df6135c99c7680114a829921eff300c3295f389ade2" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:10:58.785860Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 309, latest_finalized_slot_number: 309, sync_status: Synced { synced_da_height: 308 }, .. } -2026-04-20T11:10:58.785956Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 309, latest_finalized_slot_number: 309, sync_status: Synced { synced_da_height: 308 }, .. } -2026-04-20T11:10:58.786019Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:10:58.795482Z DEBUG sov_stf_runner::runner: Block execution complete time=6.013050383s -2026-04-20T11:10:58.795532Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:11:04.776403Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=310 prev_hash=0x006afa1b97db92086f245c94f6df801d84dd454e56e436f2d3f88f29f06b5e9b hash=0xcb50de8f79eb3808f16336d0a15fd983668b291bff8d5a08053c7ca46e98279e producing_time=1.298232ms -2026-04-20T11:11:04.776861Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=310 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a817cda9bb26c77c5e94390df6135c99c7680114a829921eff300c3295f389ade2" batch_blobs=[] proof_blobs=[] -2026-04-20T11:11:04.777188Z DEBUG StfBlueprint::apply_slot{context=Node da_height=310}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a817cda9bb26c77c5e94390df6135c99c7680114a829921eff300c3295f389ade2 next_version=310 sesssion_starting_time=46.38µs -2026-04-20T11:11:04.777963Z DEBUG StfBlueprint::apply_slot{context=Node da_height=310}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a85a6dd939b83cebbdd18bfdac77a02fbebdb91d578dee1a8927d2fb0db35a7bfa next_version=310 time=838.595µs accesses_build_time=15.88µs finishing_session_time=742.315µs -2026-04-20T11:11:04.778028Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a817cda9bb26c77c5e94390df6135c99c7680114a829921eff300c3295f389ade2" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a85a6dd939b83cebbdd18bfdac77a02fbebdb91d578dee1a8927d2fb0db35a7bfa" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:11:04.778432Z DEBUG sov_stf_runner::runner: Block execution complete time=5.982901868s -2026-04-20T11:11:04.778469Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:11:04.778502Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 310, latest_finalized_slot_number: 309, sync_status: Synced { synced_da_height: 309 }, .. } -2026-04-20T11:11:04.778602Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 310, latest_finalized_slot_number: 309, sync_status: Synced { synced_da_height: 309 }, .. } -2026-04-20T11:11:04.778666Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:11:10.779258Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=311 prev_hash=0xcb50de8f79eb3808f16336d0a15fd983668b291bff8d5a08053c7ca46e98279e hash=0xa88c747c800a5ca084edad94f4d94af4fcd1061051baf7b412ddc7510fc3a924 producing_time=1.154673ms -2026-04-20T11:11:10.780833Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=311 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a85a6dd939b83cebbdd18bfdac77a02fbebdb91d578dee1a8927d2fb0db35a7bfa" batch_blobs=[] proof_blobs=[] -2026-04-20T11:11:10.781153Z DEBUG StfBlueprint::apply_slot{context=Node da_height=311}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a85a6dd939b83cebbdd18bfdac77a02fbebdb91d578dee1a8927d2fb0db35a7bfa next_version=311 sesssion_starting_time=48.949µs -2026-04-20T11:11:10.782005Z DEBUG StfBlueprint::apply_slot{context=Node da_height=311}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a87a65878eae20575970d4b1501cda016403ffd906a77101db5df6ca6e1ec45368 next_version=311 time=917.074µs accesses_build_time=15.12µs finishing_session_time=819.065µs -2026-04-20T11:11:10.782071Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a817cda9bb26c77c5e94390df6135c99c7680114a829921eff300c3295f389ade2" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a87a65878eae20575970d4b1501cda016403ffd906a77101db5df6ca6e1ec45368" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:11:10.782564Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 311, latest_finalized_slot_number: 310, sync_status: Synced { synced_da_height: 310 }, .. } -2026-04-20T11:11:10.782659Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 311, latest_finalized_slot_number: 310, sync_status: Synced { synced_da_height: 310 }, .. } -2026-04-20T11:11:10.782732Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:11:10.789189Z DEBUG sov_stf_runner::runner: Block execution complete time=6.010721629s -2026-04-20T11:11:10.789233Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:11:16.780937Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=312 prev_hash=0xa88c747c800a5ca084edad94f4d94af4fcd1061051baf7b412ddc7510fc3a924 hash=0xffb94b67bd39462087c474323d18b3f95504d605fdd5ce11ea73958ea6559697 producing_time=1.223202ms -2026-04-20T11:11:16.789890Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=312 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a87a65878eae20575970d4b1501cda016403ffd906a77101db5df6ca6e1ec45368" batch_blobs=[] proof_blobs=[] -2026-04-20T11:11:16.790232Z DEBUG StfBlueprint::apply_slot{context=Node da_height=312}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a87a65878eae20575970d4b1501cda016403ffd906a77101db5df6ca6e1ec45368 next_version=312 sesssion_starting_time=50.84µs -2026-04-20T11:11:16.791064Z DEBUG StfBlueprint::apply_slot{context=Node da_height=312}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a856a3c1519211dae676f3104f8d530ddab588b06022dc0b21a56bbcb2ce59f841 next_version=312 time=898.484µs accesses_build_time=14.02µs finishing_session_time=798.535µs -2026-04-20T11:11:16.791129Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a85a6dd939b83cebbdd18bfdac77a02fbebdb91d578dee1a8927d2fb0db35a7bfa" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a856a3c1519211dae676f3104f8d530ddab588b06022dc0b21a56bbcb2ce59f841" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:11:16.791645Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 312, latest_finalized_slot_number: 312, sync_status: Syncing { synced_da_height: 311, target_da_height: 312 }, .. } -2026-04-20T11:11:16.791751Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 312, latest_finalized_slot_number: 312, sync_status: Syncing { synced_da_height: 311, target_da_height: 312 }, .. } -2026-04-20T11:11:16.791815Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:11:16.805474Z DEBUG sov_stf_runner::runner: Block execution complete time=6.016243853s -2026-04-20T11:11:16.805526Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:11:22.783449Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=313 prev_hash=0xffb94b67bd39462087c474323d18b3f95504d605fdd5ce11ea73958ea6559697 hash=0xa60e1c68ce894751c1841096b744d6a316161e33275b02b270499bffa5ca628d producing_time=1.080723ms -2026-04-20T11:11:22.787202Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=313 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a856a3c1519211dae676f3104f8d530ddab588b06022dc0b21a56bbcb2ce59f841" batch_blobs=[] proof_blobs=[] -2026-04-20T11:11:22.787544Z DEBUG StfBlueprint::apply_slot{context=Node da_height=313}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a856a3c1519211dae676f3104f8d530ddab588b06022dc0b21a56bbcb2ce59f841 next_version=313 sesssion_starting_time=44.49µs -2026-04-20T11:11:22.788263Z DEBUG StfBlueprint::apply_slot{context=Node da_height=313}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a87ba7ad267a6db1e1adc2dd696f2e0a15d87a3880a63f7ca4555154b25db9e2ef next_version=313 time=780.625µs accesses_build_time=15.68µs finishing_session_time=684.785µs -2026-04-20T11:11:22.788343Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a856a3c1519211dae676f3104f8d530ddab588b06022dc0b21a56bbcb2ce59f841" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a87ba7ad267a6db1e1adc2dd696f2e0a15d87a3880a63f7ca4555154b25db9e2ef" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:11:22.788830Z DEBUG sov_stf_runner::runner: Block execution complete time=5.983306625s -2026-04-20T11:11:22.788860Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:11:22.788903Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 313, latest_finalized_slot_number: 312, sync_status: Synced { synced_da_height: 312 }, .. } -2026-04-20T11:11:22.789011Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 313, latest_finalized_slot_number: 312, sync_status: Synced { synced_da_height: 312 }, .. } -2026-04-20T11:11:22.789074Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:11:28.786064Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=314 prev_hash=0xa60e1c68ce894751c1841096b744d6a316161e33275b02b270499bffa5ca628d hash=0xb31a12711134bde4f7bbcdb9a8ba82c761610ccb8b4d069151d509129669be66 producing_time=1.122373ms -2026-04-20T11:11:28.790667Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=314 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a87ba7ad267a6db1e1adc2dd696f2e0a15d87a3880a63f7ca4555154b25db9e2ef" batch_blobs=[] proof_blobs=[] -2026-04-20T11:11:28.790992Z DEBUG StfBlueprint::apply_slot{context=Node da_height=314}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a87ba7ad267a6db1e1adc2dd696f2e0a15d87a3880a63f7ca4555154b25db9e2ef next_version=314 sesssion_starting_time=47.389µs -2026-04-20T11:11:28.791859Z DEBUG StfBlueprint::apply_slot{context=Node da_height=314}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a877a7ce2dc45eb6327b3f6d237ecb2052d63b01f6b19689bcb9b4185c9399341b next_version=314 time=929.744µs accesses_build_time=13.77µs finishing_session_time=832.935µs -2026-04-20T11:11:28.791930Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a856a3c1519211dae676f3104f8d530ddab588b06022dc0b21a56bbcb2ce59f841" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a877a7ce2dc45eb6327b3f6d237ecb2052d63b01f6b19689bcb9b4185c9399341b" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:11:28.792432Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 314, latest_finalized_slot_number: 313, sync_status: Syncing { synced_da_height: 313, target_da_height: 314 }, .. } -2026-04-20T11:11:28.792533Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 314, latest_finalized_slot_number: 313, sync_status: Syncing { synced_da_height: 313, target_da_height: 314 }, .. } -2026-04-20T11:11:28.792610Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:11:28.798732Z DEBUG sov_stf_runner::runner: Block execution complete time=6.009872754s -2026-04-20T11:11:28.798780Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:11:34.787981Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=315 prev_hash=0xb31a12711134bde4f7bbcdb9a8ba82c761610ccb8b4d069151d509129669be66 hash=0x3d96605b3953e34423b2015240101a84cee3f0aef2af5426ad2875fd73742ef2 producing_time=1.166052ms -2026-04-20T11:11:34.790597Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=315 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a877a7ce2dc45eb6327b3f6d237ecb2052d63b01f6b19689bcb9b4185c9399341b" batch_blobs=[] proof_blobs=[] -2026-04-20T11:11:34.790921Z DEBUG StfBlueprint::apply_slot{context=Node da_height=315}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a877a7ce2dc45eb6327b3f6d237ecb2052d63b01f6b19689bcb9b4185c9399341b next_version=315 sesssion_starting_time=48.049µs -2026-04-20T11:11:34.791710Z DEBUG StfBlueprint::apply_slot{context=Node da_height=315}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a870ee79f61aa643a70942b870796a4af0bf43b324d0ff61943a45a0af5bdaa584 next_version=315 time=852.064µs accesses_build_time=14.24µs finishing_session_time=757.035µs -2026-04-20T11:11:34.791778Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a87ba7ad267a6db1e1adc2dd696f2e0a15d87a3880a63f7ca4555154b25db9e2ef" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a870ee79f61aa643a70942b870796a4af0bf43b324d0ff61943a45a0af5bdaa584" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:11:34.792308Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 315, latest_finalized_slot_number: 314, sync_status: Syncing { synced_da_height: 314, target_da_height: 315 }, .. } -2026-04-20T11:11:34.792410Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 315, latest_finalized_slot_number: 314, sync_status: Syncing { synced_da_height: 314, target_da_height: 315 }, .. } -2026-04-20T11:11:34.792472Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:11:34.802459Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003681004s -2026-04-20T11:11:34.802493Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:11:40.790016Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=316 prev_hash=0x3d96605b3953e34423b2015240101a84cee3f0aef2af5426ad2875fd73742ef2 hash=0x5e8d7d810d4d15408c1e0bd71f27603458ba6222dc1dce62549a7c7a29a6e189 producing_time=1.159173ms -2026-04-20T11:11:40.794711Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=316 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a870ee79f61aa643a70942b870796a4af0bf43b324d0ff61943a45a0af5bdaa584" batch_blobs=[] proof_blobs=[] -2026-04-20T11:11:40.795031Z DEBUG StfBlueprint::apply_slot{context=Node da_height=316}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a870ee79f61aa643a70942b870796a4af0bf43b324d0ff61943a45a0af5bdaa584 next_version=316 sesssion_starting_time=45.19µs -2026-04-20T11:11:40.795867Z DEBUG StfBlueprint::apply_slot{context=Node da_height=316}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a83fb011a66507d72bf437ee20d65a1ca6d8a8fa66e4ef0413675559c54cfa00a7 next_version=316 time=896.184µs accesses_build_time=13.57µs finishing_session_time=804.974µs -2026-04-20T11:11:40.795937Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a877a7ce2dc45eb6327b3f6d237ecb2052d63b01f6b19689bcb9b4185c9399341b" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a83fb011a66507d72bf437ee20d65a1ca6d8a8fa66e4ef0413675559c54cfa00a7" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:11:40.796497Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 316, latest_finalized_slot_number: 315, sync_status: Syncing { synced_da_height: 315, target_da_height: 316 }, .. } -2026-04-20T11:11:40.796591Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 316, latest_finalized_slot_number: 315, sync_status: Syncing { synced_da_height: 315, target_da_height: 316 }, .. } -2026-04-20T11:11:40.796664Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:11:40.802956Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000463785s -2026-04-20T11:11:40.802993Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:11:46.792533Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=317 prev_hash=0x5e8d7d810d4d15408c1e0bd71f27603458ba6222dc1dce62549a7c7a29a6e189 hash=0xe2e1b16fe8a39b3eb116dc8835900c2029236a070e898e5e15416c9506bbbf06 producing_time=1.159983ms -2026-04-20T11:11:46.794159Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=317 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a83fb011a66507d72bf437ee20d65a1ca6d8a8fa66e4ef0413675559c54cfa00a7" batch_blobs=[] proof_blobs=[] -2026-04-20T11:11:46.794509Z DEBUG StfBlueprint::apply_slot{context=Node da_height=317}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a83fb011a66507d72bf437ee20d65a1ca6d8a8fa66e4ef0413675559c54cfa00a7 next_version=317 sesssion_starting_time=48.17µs -2026-04-20T11:11:46.795282Z DEBUG StfBlueprint::apply_slot{context=Node da_height=317}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a85c4f8c2e8ba61ea905fddd59d84dbdbcc279bd2462acc0cb33251eb91ddcfeda next_version=317 time=835.535µs accesses_build_time=13.54µs finishing_session_time=738.495µs -2026-04-20T11:11:46.795356Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a870ee79f61aa643a70942b870796a4af0bf43b324d0ff61943a45a0af5bdaa584" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a85c4f8c2e8ba61ea905fddd59d84dbdbcc279bd2462acc0cb33251eb91ddcfeda" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:11:46.795835Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 317, latest_finalized_slot_number: 316, sync_status: Synced { synced_da_height: 316 }, .. } -2026-04-20T11:11:46.795921Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 317, latest_finalized_slot_number: 316, sync_status: Synced { synced_da_height: 316 }, .. } -2026-04-20T11:11:46.795981Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:11:46.803128Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000137217s -2026-04-20T11:11:46.803161Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:11:52.795278Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=318 prev_hash=0xe2e1b16fe8a39b3eb116dc8835900c2029236a070e898e5e15416c9506bbbf06 hash=0x7f343d4b2291971930ff47b1ced6d99cf164f29afc184d207095e27fdc41963f producing_time=1.231603ms -2026-04-20T11:11:52.805042Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=318 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a85c4f8c2e8ba61ea905fddd59d84dbdbcc279bd2462acc0cb33251eb91ddcfeda" batch_blobs=[] proof_blobs=[] -2026-04-20T11:11:52.805377Z DEBUG StfBlueprint::apply_slot{context=Node da_height=318}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a85c4f8c2e8ba61ea905fddd59d84dbdbcc279bd2462acc0cb33251eb91ddcfeda next_version=318 sesssion_starting_time=44.9µs -2026-04-20T11:11:52.806180Z DEBUG StfBlueprint::apply_slot{context=Node da_height=318}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8624a9751df8dc13e11bbe06f0309266f0bd84047e1f0a276490d61bc9fdee52b next_version=318 time=875.835µs accesses_build_time=26.81µs finishing_session_time=768.095µs -2026-04-20T11:11:52.806245Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a83fb011a66507d72bf437ee20d65a1ca6d8a8fa66e4ef0413675559c54cfa00a7" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8624a9751df8dc13e11bbe06f0309266f0bd84047e1f0a276490d61bc9fdee52b" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:11:52.806796Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 318, latest_finalized_slot_number: 317, sync_status: Synced { synced_da_height: 317 }, .. } -2026-04-20T11:11:52.806905Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 318, latest_finalized_slot_number: 317, sync_status: Synced { synced_da_height: 317 }, .. } -2026-04-20T11:11:52.806971Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:11:52.814025Z DEBUG sov_stf_runner::runner: Block execution complete time=6.010864588s -2026-04-20T11:11:52.814068Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:11:58.797031Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=319 prev_hash=0x7f343d4b2291971930ff47b1ced6d99cf164f29afc184d207095e27fdc41963f hash=0xcb01530371fea75dffdba2acafb4d37c4b1f70a28a3b7eb230a99066336291c7 producing_time=1.022503ms -2026-04-20T11:11:58.805662Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=319 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8624a9751df8dc13e11bbe06f0309266f0bd84047e1f0a276490d61bc9fdee52b" batch_blobs=[] proof_blobs=[] -2026-04-20T11:11:58.805990Z DEBUG StfBlueprint::apply_slot{context=Node da_height=319}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8624a9751df8dc13e11bbe06f0309266f0bd84047e1f0a276490d61bc9fdee52b next_version=319 sesssion_starting_time=48.9µs -2026-04-20T11:11:58.806797Z DEBUG StfBlueprint::apply_slot{context=Node da_height=319}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a82c1fb224d253635a4225858e4ec694abb744b7d0a24ae36ac16af50396078237 next_version=319 time=871.654µs accesses_build_time=14.17µs finishing_session_time=775.915µs -2026-04-20T11:11:58.806869Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a85c4f8c2e8ba61ea905fddd59d84dbdbcc279bd2462acc0cb33251eb91ddcfeda" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a82c1fb224d253635a4225858e4ec694abb744b7d0a24ae36ac16af50396078237" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:11:58.807380Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 319, latest_finalized_slot_number: 318, sync_status: Synced { synced_da_height: 318 }, .. } -2026-04-20T11:11:58.807476Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 319, latest_finalized_slot_number: 318, sync_status: Synced { synced_da_height: 318 }, .. } -2026-04-20T11:11:58.807538Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:11:58.813706Z DEBUG sov_stf_runner::runner: Block execution complete time=5.99963971s -2026-04-20T11:11:58.813742Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:12:04.798942Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=320 prev_hash=0xcb01530371fea75dffdba2acafb4d37c4b1f70a28a3b7eb230a99066336291c7 hash=0x328aa7282e95b344364641e9bb295afbe13c2a8adec3ede3b7546b2b09a2fcc4 producing_time=1.157123ms -2026-04-20T11:12:04.805660Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=320 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a82c1fb224d253635a4225858e4ec694abb744b7d0a24ae36ac16af50396078237" batch_blobs=[] proof_blobs=[] -2026-04-20T11:12:04.805992Z DEBUG StfBlueprint::apply_slot{context=Node da_height=320}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a82c1fb224d253635a4225858e4ec694abb744b7d0a24ae36ac16af50396078237 next_version=320 sesssion_starting_time=48.98µs -2026-04-20T11:12:04.806716Z DEBUG StfBlueprint::apply_slot{context=Node da_height=320}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a84ddeb1b2ea74175b0e60e678f51bbc473e879adb4b78f333b48996d4601697a3 next_version=320 time=788.775µs accesses_build_time=14.07µs finishing_session_time=692.826µs -2026-04-20T11:12:04.806785Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8624a9751df8dc13e11bbe06f0309266f0bd84047e1f0a276490d61bc9fdee52b" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a84ddeb1b2ea74175b0e60e678f51bbc473e879adb4b78f333b48996d4601697a3" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:12:04.807303Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 320, latest_finalized_slot_number: 319, sync_status: Synced { synced_da_height: 319 }, .. } -2026-04-20T11:12:04.807433Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 320, latest_finalized_slot_number: 319, sync_status: Synced { synced_da_height: 319 }, .. } -2026-04-20T11:12:04.807539Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:12:04.814063Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000321626s -2026-04-20T11:12:04.814119Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:12:10.801639Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=321 prev_hash=0x328aa7282e95b344364641e9bb295afbe13c2a8adec3ede3b7546b2b09a2fcc4 hash=0x1e765dad92b7e368fb290977763e18133653edaa20b0c56ee839cc9d2f02e842 producing_time=1.193553ms -2026-04-20T11:12:10.805225Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=321 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a84ddeb1b2ea74175b0e60e678f51bbc473e879adb4b78f333b48996d4601697a3" batch_blobs=[] proof_blobs=[] -2026-04-20T11:12:10.805581Z DEBUG StfBlueprint::apply_slot{context=Node da_height=321}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a84ddeb1b2ea74175b0e60e678f51bbc473e879adb4b78f333b48996d4601697a3 next_version=321 sesssion_starting_time=46.929µs -2026-04-20T11:12:10.806346Z DEBUG StfBlueprint::apply_slot{context=Node da_height=321}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a86a92277d3f623ec39ecd3a865f51c29a2b410c6b1ee6bcaf898e3dd26a402961 next_version=321 time=826.905µs accesses_build_time=14.04µs finishing_session_time=729.885µs -2026-04-20T11:12:10.806418Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a82c1fb224d253635a4225858e4ec694abb744b7d0a24ae36ac16af50396078237" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a86a92277d3f623ec39ecd3a865f51c29a2b410c6b1ee6bcaf898e3dd26a402961" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:12:10.806976Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 321, latest_finalized_slot_number: 320, sync_status: Synced { synced_da_height: 320 }, .. } -2026-04-20T11:12:10.807079Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 321, latest_finalized_slot_number: 320, sync_status: Synced { synced_da_height: 320 }, .. } -2026-04-20T11:12:10.807141Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:12:10.814153Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000036378s -2026-04-20T11:12:10.814190Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:12:16.803798Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=322 prev_hash=0x1e765dad92b7e368fb290977763e18133653edaa20b0c56ee839cc9d2f02e842 hash=0x775412bbba47f0ae7f3308db1e9307e309bb44e4499ee3beab275a1012009216 producing_time=1.206992ms -2026-04-20T11:12:16.805370Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=322 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a86a92277d3f623ec39ecd3a865f51c29a2b410c6b1ee6bcaf898e3dd26a402961" batch_blobs=[] proof_blobs=[] -2026-04-20T11:12:16.805701Z DEBUG StfBlueprint::apply_slot{context=Node da_height=322}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a86a92277d3f623ec39ecd3a865f51c29a2b410c6b1ee6bcaf898e3dd26a402961 next_version=322 sesssion_starting_time=48.59µs -2026-04-20T11:12:16.806516Z DEBUG StfBlueprint::apply_slot{context=Node da_height=322}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a80ced7b3f218839570368b05a74564a1b6aeb54f504226474c57aa2f654671e78 next_version=322 time=877.715µs accesses_build_time=13.31µs finishing_session_time=781.974µs -2026-04-20T11:12:16.806588Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a84ddeb1b2ea74175b0e60e678f51bbc473e879adb4b78f333b48996d4601697a3" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a80ced7b3f218839570368b05a74564a1b6aeb54f504226474c57aa2f654671e78" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:12:16.807127Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 322, latest_finalized_slot_number: 321, sync_status: Synced { synced_da_height: 321 }, .. } -2026-04-20T11:12:16.807234Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 322, latest_finalized_slot_number: 321, sync_status: Synced { synced_da_height: 321 }, .. } -2026-04-20T11:12:16.807309Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:12:16.814161Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999972368s -2026-04-20T11:12:16.814196Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:12:22.805758Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=323 prev_hash=0x775412bbba47f0ae7f3308db1e9307e309bb44e4499ee3beab275a1012009216 hash=0xfd7ffe842f89740538d60f123ac52401725ea2fac10c3be7bf7830e0a6b4539b producing_time=1.181763ms -2026-04-20T11:12:22.815507Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=323 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a80ced7b3f218839570368b05a74564a1b6aeb54f504226474c57aa2f654671e78" batch_blobs=[] proof_blobs=[] -2026-04-20T11:12:22.815827Z DEBUG StfBlueprint::apply_slot{context=Node da_height=323}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a80ced7b3f218839570368b05a74564a1b6aeb54f504226474c57aa2f654671e78 next_version=323 sesssion_starting_time=45.25µs -2026-04-20T11:12:22.816675Z DEBUG StfBlueprint::apply_slot{context=Node da_height=323}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a85cf29c09ed7e327531cf2c22318ce8c5303c1e133cbf117e157cf248b98c558b next_version=323 time=908.105µs accesses_build_time=13.56µs finishing_session_time=817.455µs -2026-04-20T11:12:22.816744Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a86a92277d3f623ec39ecd3a865f51c29a2b410c6b1ee6bcaf898e3dd26a402961" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a85cf29c09ed7e327531cf2c22318ce8c5303c1e133cbf117e157cf248b98c558b" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:12:22.817217Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 323, latest_finalized_slot_number: 322, sync_status: Synced { synced_da_height: 322 }, .. } -2026-04-20T11:12:22.817332Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 323, latest_finalized_slot_number: 322, sync_status: Synced { synced_da_height: 322 }, .. } -2026-04-20T11:12:22.817398Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:12:22.824202Z DEBUG sov_stf_runner::runner: Block execution complete time=6.010007384s -2026-04-20T11:12:22.824256Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:12:28.808300Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=324 prev_hash=0xfd7ffe842f89740538d60f123ac52401725ea2fac10c3be7bf7830e0a6b4539b hash=0x04702acfdb75f15225c9abff271b74270cc5104ed9b41a4a58614ff27ec7a4d8 producing_time=1.201143ms -2026-04-20T11:12:28.815205Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=324 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a85cf29c09ed7e327531cf2c22318ce8c5303c1e133cbf117e157cf248b98c558b" batch_blobs=[] proof_blobs=[] -2026-04-20T11:12:28.815547Z DEBUG StfBlueprint::apply_slot{context=Node da_height=324}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a85cf29c09ed7e327531cf2c22318ce8c5303c1e133cbf117e157cf248b98c558b next_version=324 sesssion_starting_time=48.35µs -2026-04-20T11:12:28.816384Z DEBUG StfBlueprint::apply_slot{context=Node da_height=324}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a858f0212f9937250026b6ff26b073db27749093d4b774722dfd37727fd0b6ffd6 next_version=324 time=899.165µs accesses_build_time=13.67µs finishing_session_time=801.255µs -2026-04-20T11:12:28.816452Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a80ced7b3f218839570368b05a74564a1b6aeb54f504226474c57aa2f654671e78" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a858f0212f9937250026b6ff26b073db27749093d4b774722dfd37727fd0b6ffd6" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:12:28.816919Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 324, latest_finalized_slot_number: 323, sync_status: Synced { synced_da_height: 323 }, .. } -2026-04-20T11:12:28.817018Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 324, latest_finalized_slot_number: 323, sync_status: Synced { synced_da_height: 323 }, .. } -2026-04-20T11:12:28.817097Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:12:28.824122Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999869759s -2026-04-20T11:12:28.824159Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:12:34.810196Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=325 prev_hash=0x04702acfdb75f15225c9abff271b74270cc5104ed9b41a4a58614ff27ec7a4d8 hash=0x51c0bf31d56af75bd8d98b4609ddab171c4def29100b4ab402832d4e314764eb producing_time=1.238592ms -2026-04-20T11:12:34.815810Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=325 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a858f0212f9937250026b6ff26b073db27749093d4b774722dfd37727fd0b6ffd6" batch_blobs=[] proof_blobs=[] -2026-04-20T11:12:34.816148Z DEBUG StfBlueprint::apply_slot{context=Node da_height=325}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a858f0212f9937250026b6ff26b073db27749093d4b774722dfd37727fd0b6ffd6 next_version=325 sesssion_starting_time=49.619µs -2026-04-20T11:12:34.817045Z DEBUG StfBlueprint::apply_slot{context=Node da_height=325}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8695d4fc7deab9750355b6b17612c9741a69c9bfdee51d0b64578182df8cdde18 next_version=325 time=963.974µs accesses_build_time=15.57µs finishing_session_time=856.245µs -2026-04-20T11:12:34.817131Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a85cf29c09ed7e327531cf2c22318ce8c5303c1e133cbf117e157cf248b98c558b" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8695d4fc7deab9750355b6b17612c9741a69c9bfdee51d0b64578182df8cdde18" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:12:34.817694Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 325, latest_finalized_slot_number: 324, sync_status: Synced { synced_da_height: 324 }, .. } -2026-04-20T11:12:34.817822Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 325, latest_finalized_slot_number: 324, sync_status: Synced { synced_da_height: 324 }, .. } -2026-04-20T11:12:34.817889Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:12:34.824002Z DEBUG sov_stf_runner::runner: Block execution complete time=5.99984467s -2026-04-20T11:12:34.824037Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:12:40.812525Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=326 prev_hash=0x51c0bf31d56af75bd8d98b4609ddab171c4def29100b4ab402832d4e314764eb hash=0x85c2e94115f1c222aa70b97f7285dec1699594e922bdf962bfd0971a3c211778 producing_time=1.231812ms -2026-04-20T11:12:40.815151Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=326 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8695d4fc7deab9750355b6b17612c9741a69c9bfdee51d0b64578182df8cdde18" batch_blobs=[] proof_blobs=[] -2026-04-20T11:12:40.815488Z DEBUG StfBlueprint::apply_slot{context=Node da_height=326}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8695d4fc7deab9750355b6b17612c9741a69c9bfdee51d0b64578182df8cdde18 next_version=326 sesssion_starting_time=44.249µs -2026-04-20T11:12:40.816337Z DEBUG StfBlueprint::apply_slot{context=Node da_height=326}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a86a895693813bc92fa8e208d0813d21f21e244806af9d8d671c5ff2b1dc12d001 next_version=326 time=907.775µs accesses_build_time=13.84µs finishing_session_time=813.085µs -2026-04-20T11:12:40.816406Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a858f0212f9937250026b6ff26b073db27749093d4b774722dfd37727fd0b6ffd6" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a86a895693813bc92fa8e208d0813d21f21e244806af9d8d671c5ff2b1dc12d001" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:12:40.816937Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 326, latest_finalized_slot_number: 325, sync_status: Synced { synced_da_height: 325 }, .. } -2026-04-20T11:12:40.817034Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 326, latest_finalized_slot_number: 325, sync_status: Synced { synced_da_height: 325 }, .. } -2026-04-20T11:12:40.817097Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:12:40.823887Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999850769s -2026-04-20T11:12:40.823921Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:12:46.814835Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=327 prev_hash=0x85c2e94115f1c222aa70b97f7285dec1699594e922bdf962bfd0971a3c211778 hash=0x5094e376b9062346c41dda0998455f68f9845df5a4ce9f7d27ce7d88bf513a88 producing_time=1.249082ms -2026-04-20T11:12:46.815283Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=327 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a86a895693813bc92fa8e208d0813d21f21e244806af9d8d671c5ff2b1dc12d001" batch_blobs=[] proof_blobs=[] -2026-04-20T11:12:46.815627Z DEBUG StfBlueprint::apply_slot{context=Node da_height=327}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a86a895693813bc92fa8e208d0813d21f21e244806af9d8d671c5ff2b1dc12d001 next_version=327 sesssion_starting_time=47.84µs -2026-04-20T11:12:46.816479Z DEBUG StfBlueprint::apply_slot{context=Node da_height=327}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a80b2ba38934a1dd0fc0f2cbaec25fce59cc3c62296b764a6d34df6503b7159bfc next_version=327 time=917.404µs accesses_build_time=16.22µs finishing_session_time=806.074µs -2026-04-20T11:12:46.816566Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8695d4fc7deab9750355b6b17612c9741a69c9bfdee51d0b64578182df8cdde18" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a80b2ba38934a1dd0fc0f2cbaec25fce59cc3c62296b764a6d34df6503b7159bfc" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:12:46.817124Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 327, latest_finalized_slot_number: 326, sync_status: Synced { synced_da_height: 326 }, .. } -2026-04-20T11:12:46.817233Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 327, latest_finalized_slot_number: 326, sync_status: Synced { synced_da_height: 326 }, .. } -2026-04-20T11:12:46.817297Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:12:46.824129Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000208977s -2026-04-20T11:12:46.824163Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:12:52.817340Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=328 prev_hash=0x5094e376b9062346c41dda0998455f68f9845df5a4ce9f7d27ce7d88bf513a88 hash=0x9c61e211c4b5e9e088e53a6d2ede5bd12924f86f8492d411963fc24fec2376f4 producing_time=1.246291ms -2026-04-20T11:12:52.825028Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=328 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a80b2ba38934a1dd0fc0f2cbaec25fce59cc3c62296b764a6d34df6503b7159bfc" batch_blobs=[] proof_blobs=[] -2026-04-20T11:12:52.825371Z DEBUG StfBlueprint::apply_slot{context=Node da_height=328}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a80b2ba38934a1dd0fc0f2cbaec25fce59cc3c62296b764a6d34df6503b7159bfc next_version=328 sesssion_starting_time=61.89µs -2026-04-20T11:12:52.826212Z DEBUG StfBlueprint::apply_slot{context=Node da_height=328}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a857d3860b59e4346e06b1e1acb79b45353dcf5a9500876736d8182d41de4d1976 next_version=328 time=917.384µs accesses_build_time=13.62µs finishing_session_time=799.954µs -2026-04-20T11:12:52.826276Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a86a895693813bc92fa8e208d0813d21f21e244806af9d8d671c5ff2b1dc12d001" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a857d3860b59e4346e06b1e1acb79b45353dcf5a9500876736d8182d41de4d1976" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:12:52.826830Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 328, latest_finalized_slot_number: 327, sync_status: Synced { synced_da_height: 327 }, .. } -2026-04-20T11:12:52.826936Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 328, latest_finalized_slot_number: 327, sync_status: Synced { synced_da_height: 327 }, .. } -2026-04-20T11:12:52.827000Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:12:52.834203Z DEBUG sov_stf_runner::runner: Block execution complete time=6.010041074s -2026-04-20T11:12:52.834270Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:12:58.820467Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=329 prev_hash=0x9c61e211c4b5e9e088e53a6d2ede5bd12924f86f8492d411963fc24fec2376f4 hash=0x2b85ade040c5f86da19dc8e0963f61f9b207ae8491ff9d78e3a9e2c930802411 producing_time=1.277732ms -2026-04-20T11:12:58.825070Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=329 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a857d3860b59e4346e06b1e1acb79b45353dcf5a9500876736d8182d41de4d1976" batch_blobs=[] proof_blobs=[] -2026-04-20T11:12:58.825410Z DEBUG StfBlueprint::apply_slot{context=Node da_height=329}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a857d3860b59e4346e06b1e1acb79b45353dcf5a9500876736d8182d41de4d1976 next_version=329 sesssion_starting_time=47.98µs -2026-04-20T11:12:58.826181Z DEBUG StfBlueprint::apply_slot{context=Node da_height=329}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a813b8b8767deac530b7b8db360743e6e747e78ccd681aadbb3ead711e8a51925d next_version=329 time=834.364µs accesses_build_time=13.32µs finishing_session_time=735.125µs -2026-04-20T11:12:58.826252Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a80b2ba38934a1dd0fc0f2cbaec25fce59cc3c62296b764a6d34df6503b7159bfc" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a813b8b8767deac530b7b8db360743e6e747e78ccd681aadbb3ead711e8a51925d" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:12:58.826794Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 329, latest_finalized_slot_number: 328, sync_status: Synced { synced_da_height: 328 }, .. } -2026-04-20T11:12:58.826901Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 329, latest_finalized_slot_number: 328, sync_status: Synced { synced_da_height: 328 }, .. } -2026-04-20T11:12:58.826965Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:12:58.834093Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999826309s -2026-04-20T11:12:58.834129Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:13:04.823523Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=330 prev_hash=0x2b85ade040c5f86da19dc8e0963f61f9b207ae8491ff9d78e3a9e2c930802411 hash=0x4fc77809c615317aa0deae71afb589be62ae29397592a0add0c39cdf46141ec8 producing_time=1.173242ms -2026-04-20T11:13:04.825100Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=330 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a813b8b8767deac530b7b8db360743e6e747e78ccd681aadbb3ead711e8a51925d" batch_blobs=[] proof_blobs=[] -2026-04-20T11:13:04.825443Z DEBUG StfBlueprint::apply_slot{context=Node da_height=330}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a813b8b8767deac530b7b8db360743e6e747e78ccd681aadbb3ead711e8a51925d next_version=330 sesssion_starting_time=47.63µs -2026-04-20T11:13:04.826254Z DEBUG StfBlueprint::apply_slot{context=Node da_height=330}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8429314f2e5d0ec26a0294ce91e61444e88d89a9a83fbf1bb8d87a87a41d507a1 next_version=330 time=873.625µs accesses_build_time=13.51µs finishing_session_time=776.045µs -2026-04-20T11:13:04.826328Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a857d3860b59e4346e06b1e1acb79b45353dcf5a9500876736d8182d41de4d1976" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8429314f2e5d0ec26a0294ce91e61444e88d89a9a83fbf1bb8d87a87a41d507a1" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:13:04.826784Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 330, latest_finalized_slot_number: 329, sync_status: Synced { synced_da_height: 329 }, .. } -2026-04-20T11:13:04.826900Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 330, latest_finalized_slot_number: 329, sync_status: Synced { synced_da_height: 329 }, .. } -2026-04-20T11:13:04.826966Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:13:04.834165Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000037189s -2026-04-20T11:13:04.834191Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:13:10.826293Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=331 prev_hash=0x4fc77809c615317aa0deae71afb589be62ae29397592a0add0c39cdf46141ec8 hash=0x2c12c9fe7f33f50421142fb917ec5c9e69b507c6112c2955a80e7e550cdaeb0a producing_time=1.174122ms -2026-04-20T11:13:10.835221Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=331 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8429314f2e5d0ec26a0294ce91e61444e88d89a9a83fbf1bb8d87a87a41d507a1" batch_blobs=[] proof_blobs=[] -2026-04-20T11:13:10.835575Z DEBUG StfBlueprint::apply_slot{context=Node da_height=331}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8429314f2e5d0ec26a0294ce91e61444e88d89a9a83fbf1bb8d87a87a41d507a1 next_version=331 sesssion_starting_time=51.319µs -2026-04-20T11:13:10.836403Z DEBUG StfBlueprint::apply_slot{context=Node da_height=331}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a809c17123d5683b2c61a7394149a574c0f69c7a9f143f770e2074fe74a9b9f189 next_version=331 time=895.874µs accesses_build_time=15µs finishing_session_time=791.455µs -2026-04-20T11:13:10.836487Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a813b8b8767deac530b7b8db360743e6e747e78ccd681aadbb3ead711e8a51925d" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a809c17123d5683b2c61a7394149a574c0f69c7a9f143f770e2074fe74a9b9f189" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:13:10.837031Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 331, latest_finalized_slot_number: 331, sync_status: Synced { synced_da_height: 330 }, .. } -2026-04-20T11:13:10.837145Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 331, latest_finalized_slot_number: 331, sync_status: Synced { synced_da_height: 330 }, .. } -2026-04-20T11:13:10.837217Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:13:10.845980Z DEBUG sov_stf_runner::runner: Block execution complete time=6.011790562s -2026-04-20T11:13:10.846000Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:13:16.828356Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=332 prev_hash=0x2c12c9fe7f33f50421142fb917ec5c9e69b507c6112c2955a80e7e550cdaeb0a hash=0x47817bf63e0a525f54dcfe1db66ea98327a5aeb2dc07288b7d7ab469fc0f331c producing_time=1.340352ms -2026-04-20T11:13:16.837161Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=332 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a809c17123d5683b2c61a7394149a574c0f69c7a9f143f770e2074fe74a9b9f189" batch_blobs=[] proof_blobs=[] -2026-04-20T11:13:16.837506Z DEBUG StfBlueprint::apply_slot{context=Node da_height=332}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a809c17123d5683b2c61a7394149a574c0f69c7a9f143f770e2074fe74a9b9f189 next_version=332 sesssion_starting_time=48.13µs -2026-04-20T11:13:16.838400Z DEBUG StfBlueprint::apply_slot{context=Node da_height=332}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8190ab829ab5ea0c5398496c5a53a71dc1d3b94409222d1ed626a69210873d903 next_version=332 time=961.224µs accesses_build_time=17µs finishing_session_time=846.074µs -2026-04-20T11:13:16.838474Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a809c17123d5683b2c61a7394149a574c0f69c7a9f143f770e2074fe74a9b9f189" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8190ab829ab5ea0c5398496c5a53a71dc1d3b94409222d1ed626a69210873d903" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:13:16.838965Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 332, latest_finalized_slot_number: 332, sync_status: Synced { synced_da_height: 331 }, .. } -2026-04-20T11:13:16.839076Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 332, latest_finalized_slot_number: 332, sync_status: Synced { synced_da_height: 331 }, .. } -2026-04-20T11:13:16.839151Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:13:16.845943Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999944049s -2026-04-20T11:13:16.845974Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:13:22.830666Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=333 prev_hash=0x47817bf63e0a525f54dcfe1db66ea98327a5aeb2dc07288b7d7ab469fc0f331c hash=0xe4e12fc9d80a08a0eae8d1b243b340e2143038cdb6b0b68cf9f00ba99e495075 producing_time=1.211392ms -2026-04-20T11:13:22.837450Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=333 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8190ab829ab5ea0c5398496c5a53a71dc1d3b94409222d1ed626a69210873d903" batch_blobs=[] proof_blobs=[] -2026-04-20T11:13:22.837785Z DEBUG StfBlueprint::apply_slot{context=Node da_height=333}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8190ab829ab5ea0c5398496c5a53a71dc1d3b94409222d1ed626a69210873d903 next_version=333 sesssion_starting_time=45.49µs -2026-04-20T11:13:22.838648Z DEBUG StfBlueprint::apply_slot{context=Node da_height=333}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8089c7dacc5610b2606a551d3ddb02b4088a964315fd19d404adf4fd65d8fe4f9 next_version=333 time=924.263µs accesses_build_time=15.539µs finishing_session_time=831.224µs -2026-04-20T11:13:22.838717Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8190ab829ab5ea0c5398496c5a53a71dc1d3b94409222d1ed626a69210873d903" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8089c7dacc5610b2606a551d3ddb02b4088a964315fd19d404adf4fd65d8fe4f9" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:13:22.839205Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 333, latest_finalized_slot_number: 333, sync_status: Synced { synced_da_height: 332 }, .. } -2026-04-20T11:13:22.839305Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 333, latest_finalized_slot_number: 333, sync_status: Synced { synced_da_height: 332 }, .. } -2026-04-20T11:13:22.839464Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:13:22.845671Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999698141s -2026-04-20T11:13:22.845695Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:13:28.833477Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=334 prev_hash=0xe4e12fc9d80a08a0eae8d1b243b340e2143038cdb6b0b68cf9f00ba99e495075 hash=0xdc403fa41f396cc8f833d7813b2e73dd71a6c8819c19fa3b40e306ead3b18e3e producing_time=1.100753ms -2026-04-20T11:13:28.837097Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=334 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8089c7dacc5610b2606a551d3ddb02b4088a964315fd19d404adf4fd65d8fe4f9" batch_blobs=[] proof_blobs=[] -2026-04-20T11:13:28.837428Z DEBUG StfBlueprint::apply_slot{context=Node da_height=334}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8089c7dacc5610b2606a551d3ddb02b4088a964315fd19d404adf4fd65d8fe4f9 next_version=334 sesssion_starting_time=47.6µs -2026-04-20T11:13:28.838208Z DEBUG StfBlueprint::apply_slot{context=Node da_height=334}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8358fc8c0a8573ae78d867a364cecc6f1c1fb144a6a01cf0f1e285860b68e4bc9 next_version=334 time=850.994µs accesses_build_time=21.1µs finishing_session_time=746.185µs -2026-04-20T11:13:28.838268Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8089c7dacc5610b2606a551d3ddb02b4088a964315fd19d404adf4fd65d8fe4f9" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8358fc8c0a8573ae78d867a364cecc6f1c1fb144a6a01cf0f1e285860b68e4bc9" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:13:28.838693Z DEBUG sov_stf_runner::runner: Block execution complete time=5.992999234s -2026-04-20T11:13:28.838724Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:13:28.838785Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 334, latest_finalized_slot_number: 333, sync_status: Synced { synced_da_height: 333 }, .. } -2026-04-20T11:13:28.838886Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 334, latest_finalized_slot_number: 333, sync_status: Synced { synced_da_height: 333 }, .. } -2026-04-20T11:13:28.838947Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:13:34.836395Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=335 prev_hash=0xdc403fa41f396cc8f833d7813b2e73dd71a6c8819c19fa3b40e306ead3b18e3e hash=0xaff47aeceaa653a586abfee3b3ecf6fd33ffc83b6d62b2a3ec482d64c7ae6db5 producing_time=1.088173ms -2026-04-20T11:13:34.839994Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=335 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8358fc8c0a8573ae78d867a364cecc6f1c1fb144a6a01cf0f1e285860b68e4bc9" batch_blobs=[] proof_blobs=[] -2026-04-20T11:13:34.840349Z DEBUG StfBlueprint::apply_slot{context=Node da_height=335}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8358fc8c0a8573ae78d867a364cecc6f1c1fb144a6a01cf0f1e285860b68e4bc9 next_version=335 sesssion_starting_time=61.78µs -2026-04-20T11:13:34.841112Z DEBUG StfBlueprint::apply_slot{context=Node da_height=335}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a84d483944b1d41286f955d4e7b9e0a863764c89a0ced37ca147a74c9076613e3e next_version=335 time=842.335µs accesses_build_time=16.24µs finishing_session_time=717.765µs -2026-04-20T11:13:34.841178Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8089c7dacc5610b2606a551d3ddb02b4088a964315fd19d404adf4fd65d8fe4f9" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a84d483944b1d41286f955d4e7b9e0a863764c89a0ced37ca147a74c9076613e3e" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:13:34.841629Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 335, latest_finalized_slot_number: 334, sync_status: Syncing { synced_da_height: 334, target_da_height: 335 }, .. } -2026-04-20T11:13:34.841715Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 335, latest_finalized_slot_number: 334, sync_status: Syncing { synced_da_height: 334, target_da_height: 335 }, .. } -2026-04-20T11:13:34.841775Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:13:34.847963Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00924133s -2026-04-20T11:13:34.847989Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:13:40.839448Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=336 prev_hash=0xaff47aeceaa653a586abfee3b3ecf6fd33ffc83b6d62b2a3ec482d64c7ae6db5 hash=0xe5286580f83d6c4946b543c9b43dd5af05820700219914f401cfdb3ea6c532cc producing_time=1.108773ms -2026-04-20T11:13:40.849223Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=336 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a84d483944b1d41286f955d4e7b9e0a863764c89a0ced37ca147a74c9076613e3e" batch_blobs=[] proof_blobs=[] -2026-04-20T11:13:40.849592Z DEBUG StfBlueprint::apply_slot{context=Node da_height=336}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a84d483944b1d41286f955d4e7b9e0a863764c89a0ced37ca147a74c9076613e3e next_version=336 sesssion_starting_time=54.74µs -2026-04-20T11:13:40.850416Z DEBUG StfBlueprint::apply_slot{context=Node da_height=336}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8338e75b6b69525a48e863b0b11c35e1d6ba53753d448e8e961a0b728155d52cb next_version=336 time=898.284µs accesses_build_time=17.46µs finishing_session_time=780.195µs -2026-04-20T11:13:40.850485Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8358fc8c0a8573ae78d867a364cecc6f1c1fb144a6a01cf0f1e285860b68e4bc9" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8338e75b6b69525a48e863b0b11c35e1d6ba53753d448e8e961a0b728155d52cb" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:13:40.851043Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 336, latest_finalized_slot_number: 335, sync_status: Syncing { synced_da_height: 335, target_da_height: 336 }, .. } -2026-04-20T11:13:40.851144Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 336, latest_finalized_slot_number: 335, sync_status: Syncing { synced_da_height: 335, target_da_height: 336 }, .. } -2026-04-20T11:13:40.851209Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:13:40.858243Z DEBUG sov_stf_runner::runner: Block execution complete time=6.010255833s -2026-04-20T11:13:40.858279Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:13:46.841921Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=337 prev_hash=0xe5286580f83d6c4946b543c9b43dd5af05820700219914f401cfdb3ea6c532cc hash=0x1f56aa033f348961797a451ae5e83aa0175bb9297ab65deffd5e9bd540d993e6 producing_time=1.139462ms -2026-04-20T11:13:46.849552Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=337 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8338e75b6b69525a48e863b0b11c35e1d6ba53753d448e8e961a0b728155d52cb" batch_blobs=[] proof_blobs=[] -2026-04-20T11:13:46.849883Z DEBUG StfBlueprint::apply_slot{context=Node da_height=337}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8338e75b6b69525a48e863b0b11c35e1d6ba53753d448e8e961a0b728155d52cb next_version=337 sesssion_starting_time=48.75µs -2026-04-20T11:13:46.850706Z DEBUG StfBlueprint::apply_slot{context=Node da_height=337}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a80952748a329775b0d105e142d61a1afe0da81b67ac36265ee02c63267818d241 next_version=337 time=887.625µs accesses_build_time=14.56µs finishing_session_time=790.665µs -2026-04-20T11:13:46.850769Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a84d483944b1d41286f955d4e7b9e0a863764c89a0ced37ca147a74c9076613e3e" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a80952748a329775b0d105e142d61a1afe0da81b67ac36265ee02c63267818d241" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:13:46.851299Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 337, latest_finalized_slot_number: 336, sync_status: Synced { synced_da_height: 336 }, .. } -2026-04-20T11:13:46.851405Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 337, latest_finalized_slot_number: 336, sync_status: Synced { synced_da_height: 336 }, .. } -2026-04-20T11:13:46.851469Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:13:46.858004Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999726101s -2026-04-20T11:13:46.858039Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:13:52.844431Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=338 prev_hash=0x1f56aa033f348961797a451ae5e83aa0175bb9297ab65deffd5e9bd540d993e6 hash=0x45d2b1fe5f6f97a6c0942184f82746011e95cf5ef0ed5a85440098e558b5e8b0 producing_time=1.093463ms -2026-04-20T11:13:52.849136Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=338 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a80952748a329775b0d105e142d61a1afe0da81b67ac36265ee02c63267818d241" batch_blobs=[] proof_blobs=[] -2026-04-20T11:13:52.849476Z DEBUG StfBlueprint::apply_slot{context=Node da_height=338}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a80952748a329775b0d105e142d61a1afe0da81b67ac36265ee02c63267818d241 next_version=338 sesssion_starting_time=44.28µs -2026-04-20T11:13:52.850324Z DEBUG StfBlueprint::apply_slot{context=Node da_height=338}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a80effe68ba48b363b48409328cbd8522aefddd551c87018caf754e041cbc7350f next_version=338 time=908.324µs accesses_build_time=14.939µs finishing_session_time=804.015µs -2026-04-20T11:13:52.850389Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8338e75b6b69525a48e863b0b11c35e1d6ba53753d448e8e961a0b728155d52cb" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a80effe68ba48b363b48409328cbd8522aefddd551c87018caf754e041cbc7350f" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:13:52.850896Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 338, latest_finalized_slot_number: 337, sync_status: Synced { synced_da_height: 337 }, .. } -2026-04-20T11:13:52.851006Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 338, latest_finalized_slot_number: 337, sync_status: Synced { synced_da_height: 337 }, .. } -2026-04-20T11:13:52.851104Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 -2026-04-20T11:13:52.858050Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000012119s -2026-04-20T11:13:52.858094Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:13:58.847408Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=339 prev_hash=0x45d2b1fe5f6f97a6c0942184f82746011e95cf5ef0ed5a85440098e558b5e8b0 hash=0xdfc4428428a236ab9574a22f9bc3b298dae3b67644fb01d82aa6eca253c55a24 producing_time=1.242962ms -2026-04-20T11:13:58.848973Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=339 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a80effe68ba48b363b48409328cbd8522aefddd551c87018caf754e041cbc7350f" batch_blobs=[] proof_blobs=[] -2026-04-20T11:13:58.849298Z DEBUG StfBlueprint::apply_slot{context=Node da_height=339}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a80effe68ba48b363b48409328cbd8522aefddd551c87018caf754e041cbc7350f next_version=339 sesssion_starting_time=48.67µs -2026-04-20T11:13:58.850134Z DEBUG StfBlueprint::apply_slot{context=Node da_height=339}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a801dd45a6e9444ccd37bfe17fb1e3ec015ba013dae3f846014fdcd175ea406f5d next_version=339 time=899.734µs accesses_build_time=14.67µs finishing_session_time=787.865µs -2026-04-20T11:13:58.850193Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a80952748a329775b0d105e142d61a1afe0da81b67ac36265ee02c63267818d241" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a801dd45a6e9444ccd37bfe17fb1e3ec015ba013dae3f846014fdcd175ea406f5d" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:13:58.850669Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 339, latest_finalized_slot_number: 338, sync_status: Synced { synced_da_height: 338 }, .. } -2026-04-20T11:13:58.850743Z ERROR sov_sequencer::preferred::sync_sequencer_state::conditions_table: Sequencer has detected that it is past, or very close to, having the visible_slot_number lag behind the deferred_slots_count threshold. Normal operation will be suspended until this can be remedied. slot_number_according_to_node=339 current_visible_slot_number=240 deferred_slots=120 -2026-04-20T11:13:58.850787Z DEBUG sov_sequencer::preferred::executor_events: Recovery: No in-progress batch to terminate. -2026-04-20T11:13:58.850846Z DEBUG sov_sequencer::preferred::block_executor: Replacing state for block executor old=019daa94-1d05-7320-8e1f-f369922274ae new=019daa98-e042-7e80-b124-604db064d2bf -2026-04-20T11:13:58.850959Z  INFO sov_sequencer::preferred::sync_sequencer_state::inner: Beginning sequencer recovery info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 339, latest_finalized_slot_number: 338, sync_status: Synced { synced_da_height: 338 }, .. } current_visible_slot_number=240 -2026-04-20T11:13:58.850957Z  WARN sov_sequencer::preferred::side_effects: TryToSave recovery strategy has been configured. The currently pending soft confirmations will be flushed to the node. This may save some of the transactions, but if any are no longer valid, the sequencer will be penalised. num_batches_to_replay=30 -2026-04-20T11:13:58.851015Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=331 blob_id=2147878332962731362380364246264587377 -2026-04-20T11:13:58.851028Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878332962731362380364246264587377 -2026-04-20T11:13:58.851037Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=332 blob_id=2147878333829496625222391358816665075 -2026-04-20T11:13:58.851045Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878333829496625222391358816665075 -2026-04-20T11:13:58.851054Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=333 blob_id=2147878334689026960493822436678654900 -2026-04-20T11:13:58.851052Z DEBUG update_state_task_inner: sov_sequencer::preferred: Calculating amount of batches to send deferred_slots_count=109 maximum_delta=54 minimum_delta=43 current_catchup_delta=98 current_visible_slot_number=240 increase_per_batch=10 -2026-04-20T11:13:58.851061Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878334689026960493822436678654900 -2026-04-20T11:13:58.851069Z  INFO update_state_task_inner: sov_sequencer::preferred: Recovery: sending max_batches_to_send empty catchup batches to bump the visible_slot_number min_batches_to_send=5 max_batches_to_send=6 -2026-04-20T11:13:58.851073Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=334 blob_id=2147878335549775931258867394715125471 -2026-04-20T11:13:58.851084Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878335549775931258867394715125471 -2026-04-20T11:13:58.851091Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=335 blob_id=2147878336408108851430493220042720319 -2026-04-20T11:13:58.851099Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878336408108851430493220042720319 -2026-04-20T11:13:58.851106Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=336 blob_id=2147878337270145015472503120819091663 -2026-04-20T11:13:58.851128Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878337270145015472503120819091663 -2026-04-20T11:13:58.851136Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=337 blob_id=2147878338132104051448066629883926179 -2026-04-20T11:13:58.851144Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878338132104051448066629883926179 -2026-04-20T11:13:58.851152Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=338 blob_id=2147878338995219276889753329959527499 -2026-04-20T11:13:58.851159Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878338995219276889753329959527499 -2026-04-20T11:13:58.851167Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=339 blob_id=2147878339851173878419647806730783020 -2026-04-20T11:13:58.851174Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878339851173878419647806730783020 -2026-04-20T11:13:58.851182Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=340 blob_id=2147878340709502963761104961572668525 -2026-04-20T11:13:58.851190Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878340709502963761104961572668525 -2026-04-20T11:13:58.851197Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=341 blob_id=2147878341697221883052977138842187812 -2026-04-20T11:13:58.851205Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878341697221883052977138842187812 -2026-04-20T11:13:58.851213Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=342 blob_id=2147878342688490607156844378970124540 -2026-04-20T11:13:58.851220Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878342688490607156844378970124540 -2026-04-20T11:13:58.851228Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=343 blob_id=2147878343673763948514656073464811381 -2026-04-20T11:13:58.851236Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878343673763948514656073464811381 -2026-04-20T11:13:58.851244Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=344 blob_id=2147878344656653143915682807846922736 -2026-04-20T11:13:58.851252Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878344656653143915682807846922736 -2026-04-20T11:13:58.851267Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=345 blob_id=2147878345645516078085756694043709565 -2026-04-20T11:13:58.851275Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878345645516078085756694043709565 -2026-04-20T11:13:58.851282Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=346 blob_id=2147878346627208722298102559855620750 -2026-04-20T11:13:58.851290Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878346627208722298102559855620750 -2026-04-20T11:13:58.851298Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=347 blob_id=2147878347608878862863195242008592643 -2026-04-20T11:13:58.851305Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878347608878862863195242008592643 -2026-04-20T11:13:58.851322Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=348 blob_id=2147878348562704806050383970983352076 -2026-04-20T11:13:58.851407Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878348562704806050383970983352076 -2026-04-20T11:13:58.851415Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=349 blob_id=2147878349539496835192892854215216539 -2026-04-20T11:13:58.851422Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878349539496835192892854215216539 -2026-04-20T11:13:58.851430Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=350 blob_id=2147878350525967282295987207215559920 -2026-04-20T11:13:58.851437Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878350525967282295987207215559920 -2026-04-20T11:13:58.851445Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=351 blob_id=2147878351511265162247036584521552992 -2026-04-20T11:13:58.851452Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878351511265162247036584521552992 -2026-04-20T11:13:58.851460Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=352 blob_id=2147878352489277311082164892423114171 -2026-04-20T11:13:58.851468Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878352489277311082164892423114171 -2026-04-20T11:13:58.851475Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=353 blob_id=2147878353457645191518482226595353643 -2026-04-20T11:13:58.851490Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878353457645191518482226595353643 -2026-04-20T11:13:58.851498Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=354 blob_id=2147878354439304489375663556105144579 -2026-04-20T11:13:58.851506Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878354439304489375663556105144579 -2026-04-20T11:13:58.851513Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=355 blob_id=2147878355422116555414099390035214794 -2026-04-20T11:13:58.851521Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878355422116555414099390035214794 -2026-04-20T11:13:58.851528Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=356 blob_id=2147878356405019624298639419253931808 -2026-04-20T11:13:58.851536Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878356405019624298639419253931808 -2026-04-20T11:13:58.851543Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=357 blob_id=2147878357392648818463319074163259024 -2026-04-20T11:13:58.851551Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878357392648818463319074163259024 -2026-04-20T11:13:58.851558Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=358 blob_id=2147878358379147341292743558788798543 -2026-04-20T11:13:58.851566Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878358379147341292743558788798543 -2026-04-20T11:13:58.851573Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=359 blob_id=2147878359359608370063792845491918091 -2026-04-20T11:13:58.851581Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878359359608370063792845491918091 -2026-04-20T11:13:58.851588Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=360 blob_id=2147878360340066929940191883882360043 -2026-04-20T11:13:58.851595Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878360340066929940191883882360043 -2026-04-20T11:13:58.856911Z DEBUG sov_stf_runner::runner: Block execution complete time=5.998819577s -2026-04-20T11:13:58.856933Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:14:04.849878Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=340 prev_hash=0xdfc4428428a236ab9574a22f9bc3b298dae3b67644fb01d82aa6eca253c55a24 hash=0xa3150a50fd22c8a1f31b7bf979ec0b1ae360df37cbd64d98429f8ddee89350ad producing_time=1.217613ms -2026-04-20T11:14:04.858636Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=340 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a801dd45a6e9444ccd37bfe17fb1e3ec015ba013dae3f846014fdcd175ea406f5d" batch_blobs=[] proof_blobs=[] -2026-04-20T11:14:04.858984Z DEBUG StfBlueprint::apply_slot{context=Node da_height=340}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a801dd45a6e9444ccd37bfe17fb1e3ec015ba013dae3f846014fdcd175ea406f5d next_version=340 sesssion_starting_time=47.91µs -2026-04-20T11:14:04.859849Z DEBUG StfBlueprint::apply_slot{context=Node da_height=340}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8145e15eadc9e447e41ee363300afbb44874b7da1d6a5dc558bb243b403c66fa9 next_version=340 time=928.585µs accesses_build_time=14.86µs finishing_session_time=833.294µs -2026-04-20T11:14:04.859921Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a80effe68ba48b363b48409328cbd8522aefddd551c87018caf754e041cbc7350f" next_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8145e15eadc9e447e41ee363300afbb44874b7da1d6a5dc558bb243b403c66fa9" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:14:04.860300Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=1 min=5 max=6 -2026-04-20T11:14:04.860367Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:14:04.860471Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=118 -2026-04-20T11:14:04.860561Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=250 -2026-04-20T11:14:04.860784Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:14:04.861988Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=250 sequence_number=361 -2026-04-20T11:14:04.862023Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=361 blob_id=2147878731560049635054826201163984655 visible_slot_number_after_increase=250 visible_slots_to_advance=10 -2026-04-20T11:14:04.862047Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=30 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:14:04.863886Z DEBUG manage_blob_submission_inside_task{blob_id=2147878731560049635054826201163984655 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x118a38a75252986283eb072e23c2ce5233deafbb814892a0b5679f55a047669b sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=341 include_at=341 bytes=13 time=685.205µs -2026-04-20T11:14:04.866852Z DEBUG compute_state_update{scope="sequencer" rollup_height=123 slot_number=250}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:14:04.866878Z DEBUG sov_stf_runner::runner: Block execution complete time=6.009946175s -2026-04-20T11:14:04.866893Z DEBUG compute_state_update{scope="sequencer" rollup_height=123 slot_number=250}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:14:04.866914Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:14:04.866973Z DEBUG compute_state_update{scope="sequencer" rollup_height=123 slot_number=250}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a801dd45a6e9444ccd37bfe17fb1e3ec015ba013dae3f846014fdcd175ea406f5d next_version=340 sesssion_starting_time=4.470351ms -2026-04-20T11:14:04.867782Z DEBUG compute_state_update{scope="sequencer" rollup_height=123 slot_number=250}: sov_state::nomt::prover_storage: computed next state root state_root=054c560828997a4fb92c1fba23285cb39c2bb7003a232a837096d7215bce675152572c50561ca48397d838c9d720fb5505f92de5191c1964df9a9ce7bfc2ab28 next_version=340 time=5.297545ms accesses_build_time=17.779µs finishing_session_time=788.285µs -2026-04-20T11:14:10.852660Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=341 prev_hash=0xa3150a50fd22c8a1f31b7bf979ec0b1ae360df37cbd64d98429f8ddee89350ad hash=0x0e27908038a27873846a4ae2102f08d8117b9b7c1ba1e6f9bb7ca1b39acde86d producing_time=1.201422ms -2026-04-20T11:14:10.858280Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=341 current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8145e15eadc9e447e41ee363300afbb44874b7da1d6a5dc558bb243b403c66fa9" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x118a38a75252986283eb072e23c2ce5233deafbb814892a0b5679f55a047669b"] proof_blobs=[] -2026-04-20T11:14:10.859238Z DEBUG StfBlueprint::apply_slot{context=Node da_height=341}: sov_chain_state: Setting next visible slot number next_visible_slot_number=250 -2026-04-20T11:14:10.860243Z DEBUG StfBlueprint::apply_slot{context=Node da_height=341}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x118a38a75252986283eb072e23c2ce5233deafbb814892a0b5679f55a047669b}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=30 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:14:10.860488Z DEBUG StfBlueprint::apply_slot{context=Node da_height=341}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8145e15eadc9e447e41ee363300afbb44874b7da1d6a5dc558bb243b403c66fa9 next_version=341 sesssion_starting_time=48.28µs -2026-04-20T11:14:10.861969Z DEBUG StfBlueprint::apply_slot{context=Node da_height=341}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=054c560828997a4fb92c1fba23285cb39c2bb7003a232a837096d7215bce675137acf0992aa519046792d94cd904157515a69794feea5554832acc0f2d98f0ef next_version=341 time=1.605619ms accesses_build_time=74.759µs finishing_session_time=1.45391ms -2026-04-20T11:14:10.862171Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="fe0e50da5933c718f32d2b207bd04626b3281466e82eda3d1bad8e7f2d30e74a" -2026-04-20T11:14:10.862187Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="f32dfb6952e9de1cc223508f798d1a27290b8001cc26be2eff5a9239c3d1addd" -2026-04-20T11:14:10.862195Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="0635d5e495bde78635631925f7a500bef6b710ab1596de3a3fdaa55f70990077" -2026-04-20T11:14:10.862204Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="344bf260a5ac938ac59af4dae918d5087e394dd875e92126b9fe0c508f1eace6" -2026-04-20T11:14:10.862226Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="f6d97c171cf22852f864c5ae5ce2033da213ada1fef42012968eabae53cb0016" -2026-04-20T11:14:10.862235Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="05d33d29277869ac4ceaedb6f80875d447af3e20fb6dd6c5fad8ea59d41c05cd" -2026-04-20T11:14:10.862243Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="52c8f109be20c4d33a28045779b96e6c3c87d371c166181c5a8473e4c15b5e6a" -2026-04-20T11:14:10.862251Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="496b12ba378e708e915b653beefffd5ccc2a60ba2674babf21f0400b66bc0b27" -2026-04-20T11:14:10.862259Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="8fe451f386c164a53b3a15e9f3b9be686d2636a7497a20a23e499cc009d77154" -2026-04-20T11:14:10.862268Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="7273f55c007488475a02f563f39cdb3e7cd0c1d10001580d8f800f77ed9beb1f" -2026-04-20T11:14:10.862275Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="54ba35995120bca91061b90e36457f4f81caf44193dc03ddab9add12566354f9" -2026-04-20T11:14:10.862283Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="dd2f210955dc42c89c28b47a6a1852380e0959d1004e631af697d910531d930c" -2026-04-20T11:14:10.862292Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="6fb989b694574e53e8b6e0fce83a7c5a9bd299def59bce8b13c74456b854cf47" -2026-04-20T11:14:10.862299Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="9fe615d363c8c22c1a9940300b0bc35c1244c2082d6b39beccf6c37b6b161bd8" -2026-04-20T11:14:10.862307Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="170f383141ce8e2578a75bdb001ea88a49784eb076de642c248193dbed937073" -2026-04-20T11:14:10.862325Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="fc94bb500cc714d6405f45dc7ed67f16a8802b3a323e889c7ffbdc63e5e509fe" -2026-04-20T11:14:10.862337Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="13848481026a99217a1180793943a6df6c3c423667f919135f87ff9d274d6f7a" -2026-04-20T11:14:10.862346Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ea8139b12adf61ffd4f23513fa95d27e4f3f7825a68ed091a6bb77ee44b698a6" -2026-04-20T11:14:10.862361Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="6b1df991f4d885b30be76b243a8f2a29667efaf2c049bbd669ce584140238d8e" -2026-04-20T11:14:10.862369Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="bb02112c2f972e122ba4e0e086f6ae86787c17eafcd28b49b13dc4c4cbb6fde1" -2026-04-20T11:14:10.862377Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="b6c9f06f59ec9323d899be1b39edf132f4d1f834c33948e1f2ef808248d29e82" -2026-04-20T11:14:10.862385Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="44849253205c88170cbc7a5930e46bff31fd312b4b2efe40b62bf2a65537c730" -2026-04-20T11:14:10.862393Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="9630e328157a5524b5c9edbc26a43872390f778cec9c027547cb8368eaf735d7" -2026-04-20T11:14:10.862401Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ee09e63071ce488c061b1318ac5732e6a0f8e4b84972484ff3d4907e427e44da" -2026-04-20T11:14:10.862408Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ee23a008365ac7cee6cfc9a9cc5077bb2f177255b6e2bdb88eb2e7c79f498596" -2026-04-20T11:14:10.862416Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="205a6ebb58922951a2ca14366f20cb4bca1758d47242ca686154a45608f8d0c4" -2026-04-20T11:14:10.862424Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="829249c5c2605e31f0b5a4e06da0a8cccf5ef4eab7b77dee39652bf2aaae4d04" -2026-04-20T11:14:10.862432Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="b115027d5035390688f497db014446da1495969162c8a09710c118e2b78e246c" -2026-04-20T11:14:10.862440Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="fd53e9ebbcca725d3df5ed2fde64a1f744c24cd3c8463961b2d116faf79d187a" -2026-04-20T11:14:10.862447Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="c3049a10de8af20524517ae183dd2fa45cedb64ff2695f3a24357099ae66cb33" -2026-04-20T11:14:10.862459Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a801dd45a6e9444ccd37bfe17fb1e3ec015ba013dae3f846014fdcd175ea406f5d" next_state_root="054c560828997a4fb92c1fba23285cb39c2bb7003a232a837096d7215bce675137acf0992aa519046792d94cd904157515a69794feea5554832acc0f2d98f0ef" aggregated_proofs=0 proof_receipts=30 -2026-04-20T11:14:10.862650Z  WARN sov_stf_runner::processes::stf_info_manager: State Transition Info is not consumed fast enough, cannot prune older entries. Please check that consumer works. next_height_to_receive=240 prune_up_to=241 -2026-04-20T11:14:10.863002Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=2 min=5 max=6 -2026-04-20T11:14:10.863053Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:14:10.863117Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=119 -2026-04-20T11:14:10.863229Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=260 -2026-04-20T11:14:10.863448Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:14:10.863616Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=260 sequence_number=362 -2026-04-20T11:14:10.863649Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=362 blob_id=2147878738816004086250284134083845824 visible_slot_number_after_increase=260 visible_slots_to_advance=10 -2026-04-20T11:14:10.863672Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:14:10.865632Z DEBUG manage_blob_submission_inside_task{blob_id=2147878738816004086250284134083845824 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x53c5cd06ebad0ccf3a63cacbc72fe15e30eb6d6f2556bb216e6a657475e0b3c7 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=342 include_at=342 bytes=13 time=768.805µs -2026-04-20T11:14:10.869799Z DEBUG compute_state_update{scope="sequencer" rollup_height=124 slot_number=260}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:14:10.869831Z DEBUG sov_stf_runner::runner: Block execution complete time=6.002918361s -2026-04-20T11:14:10.869838Z DEBUG compute_state_update{scope="sequencer" rollup_height=124 slot_number=260}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:14:10.869858Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:14:10.869915Z DEBUG compute_state_update{scope="sequencer" rollup_height=124 slot_number=260}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a801dd45a6e9444ccd37bfe17fb1e3ec015ba013dae3f846014fdcd175ea406f5d next_version=340 sesssion_starting_time=5.863802ms -2026-04-20T11:14:10.870049Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:10.870122Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:10.870793Z DEBUG compute_state_update{scope="sequencer" rollup_height=124 slot_number=260}: sov_state::nomt::prover_storage: computed next state root state_root=1dc252e9056ff11677b8c7ffe66036688a6f7a66f4248394d4b72ac95193eb16435a4aeb3d4132fe19edf125d26181c063b5f5258fbc98ad2ee45525e2257c31 next_version=340 time=6.769977ms accesses_build_time=26.25µs finishing_session_time=854.815µs -2026-04-20T11:14:11.384682Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eofu3ekKSUe-fEgdY7qD3Q==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:11.391405Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:11.402329Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1010670 cycles -2026-04-20T11:14:11.404950Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 114, 144, 199, 231, 234, 143, 236, 205, 239, 85, 216, 201, 85, 53, 89, 185, 179, 108, 204, 191, 205, 154, 130, 173, 10, 13, 120, 119, 36, 155, 114, 83, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 119, 25, 47, 91, 70, 211, 140, 137, 219, 143, 112, 78, 90, 145, 128, 238, 137, 18, 196, 219, 66, 131, 163, 169, 228, 113, 221, 87, 179, 144, 221, 94, 63, 175, 109, 141, 216, 110, 251, 83, 228, 165, 141, 193, 10, 236, 165, 100, 32, 208, 26, 157, 124, 227, 196, 87, 9, 127, 204, 251, 96, 8, 157, 205, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:11.463009Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:11.463068Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:11.476869Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:11.510757Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gNPyA97_QcqPJ5ATTRv2tQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:11.513609Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gNPyA97_QcqPJ5ATTRv2tQ==: stderr: -2026-04-20T11:14:11.513634Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gNPyA97_QcqPJ5ATTRv2tQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:11.513644Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gNPyA97_QcqPJ5ATTRv2tQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:11.513651Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gNPyA97_QcqPJ5ATTRv2tQ==: stderr: stack backtrace: -2026-04-20T11:14:11.513657Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gNPyA97_QcqPJ5ATTRv2tQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:11.513664Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gNPyA97_QcqPJ5ATTRv2tQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:11.513754Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:11.514526Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:11.514817Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:11.582443Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:11.582488Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:11.582642Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:11.582785Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:11.582841Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:11.583111Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=363 blob_id=2147878739685279896019826713780760363 -2026-04-20T11:14:12.153370Z DEBUG sp1_core_executor_runner::native: CHILD sp1_B8Ml-xoTSYuWgZomGd9Vjw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:12.159911Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:12.171704Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 984745 cycles -2026-04-20T11:14:12.174357Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 82, 158, 249, 200, 205, 192, 21, 203, 177, 190, 110, 254, 140, 22, 113, 146, 157, 164, 19, 243, 92, 18, 70, 203, 93, 207, 107, 237, 118, 33, 141, 33, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 3, 131, 64, 144, 246, 241, 199, 131, 227, 47, 23, 73, 236, 97, 71, 78, 131, 66, 70, 44, 92, 236, 96, 241, 110, 200, 6, 34, 222, 236, 63, 147, 47, 46, 57, 210, 29, 237, 18, 117, 94, 233, 1, 25, 14, 166, 143, 186, 60, 42, 166, 89, 76, 162, 158, 181, 239, 252, 42, 59, 39, 129, 189, 74, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:12.228519Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:12.228561Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:12.290788Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:12.325593Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rd_YTH5RQwOLo31qH31vqg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:12.328441Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rd_YTH5RQwOLo31qH31vqg==: stderr: -2026-04-20T11:14:12.328455Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rd_YTH5RQwOLo31qH31vqg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:12.328463Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rd_YTH5RQwOLo31qH31vqg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:12.328473Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rd_YTH5RQwOLo31qH31vqg==: stderr: stack backtrace: -2026-04-20T11:14:12.328478Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rd_YTH5RQwOLo31qH31vqg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:12.328485Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rd_YTH5RQwOLo31qH31vqg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:12.328551Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:12.329384Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:12.329670Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:12.395270Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:12.395328Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:12.395532Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:12.395690Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:12.395764Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:12.396179Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=364 blob_id=2147878740668074054720134763617231540 -2026-04-20T11:14:12.960819Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BRo4JzB1THKqjAB5vmIV6g==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:12.967668Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:12.978582Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1021407 cycles -2026-04-20T11:14:12.981210Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 3, 246, 34, 154, 44, 29, 149, 113, 105, 209, 124, 89, 180, 140, 203, 213, 115, 238, 152, 79, 160, 22, 39, 41, 2, 28, 84, 235, 252, 198, 62, 127, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 24, 219, 208, 255, 112, 120, 229, 230, 5, 145, 120, 77, 122, 37, 227, 155, 224, 56, 12, 176, 142, 45, 231, 76, 124, 152, 137, 220, 197, 45, 246, 205, 43, 81, 160, 184, 60, 141, 114, 178, 57, 161, 86, 198, 193, 126, 152, 224, 178, 139, 74, 241, 92, 186, 119, 75, 69, 80, 4, 251, 52, 176, 94, 24, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:13.037062Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:13.037105Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:13.103568Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:13.137189Z DEBUG sp1_core_executor_runner::native: CHILD sp1_7mV80WYRQI2ChJUoHqTI8g==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:13.140009Z DEBUG sp1_core_executor_runner::native: CHILD sp1_7mV80WYRQI2ChJUoHqTI8g==: stderr: -2026-04-20T11:14:13.140022Z DEBUG sp1_core_executor_runner::native: CHILD sp1_7mV80WYRQI2ChJUoHqTI8g==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:13.140031Z DEBUG sp1_core_executor_runner::native: CHILD sp1_7mV80WYRQI2ChJUoHqTI8g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:13.140040Z DEBUG sp1_core_executor_runner::native: CHILD sp1_7mV80WYRQI2ChJUoHqTI8g==: stderr: stack backtrace: -2026-04-20T11:14:13.140046Z DEBUG sp1_core_executor_runner::native: CHILD sp1_7mV80WYRQI2ChJUoHqTI8g==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:13.140053Z DEBUG sp1_core_executor_runner::native: CHILD sp1_7mV80WYRQI2ChJUoHqTI8g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:13.140147Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:13.140976Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:13.141267Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:13.207787Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:13.207829Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:13.207993Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:13.208156Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:13.208212Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:13.208631Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=365 blob_id=2147878741650943102272835163151931537 -2026-04-20T11:14:13.766335Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zsBKsU6CSamvmPLRv-wQ8A==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:13.773105Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:13.783527Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1007433 cycles -2026-04-20T11:14:13.786196Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 1, 107, 185, 24, 102, 144, 187, 93, 124, 12, 32, 72, 65, 149, 240, 206, 156, 202, 112, 213, 62, 196, 210, 127, 248, 220, 136, 237, 83, 175, 209, 108, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 30, 205, 211, 79, 62, 55, 18, 208, 202, 197, 50, 248, 130, 12, 155, 243, 248, 249, 201, 192, 138, 44, 93, 157, 131, 48, 31, 47, 195, 49, 223, 158, 127, 191, 80, 118, 162, 77, 207, 127, 231, 191, 10, 138, 177, 80, 114, 83, 28, 194, 135, 175, 146, 188, 143, 98, 140, 210, 165, 49, 21, 117, 7, 6, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:13.840311Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:13.840363Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:13.914824Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:13.948530Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xtURMQSlQJelsY9RqPmOWA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:13.951366Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xtURMQSlQJelsY9RqPmOWA==: stderr: -2026-04-20T11:14:13.951380Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xtURMQSlQJelsY9RqPmOWA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:13.951388Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xtURMQSlQJelsY9RqPmOWA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:13.951397Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xtURMQSlQJelsY9RqPmOWA==: stderr: stack backtrace: -2026-04-20T11:14:13.951403Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xtURMQSlQJelsY9RqPmOWA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:13.951409Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xtURMQSlQJelsY9RqPmOWA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:13.951483Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:13.952277Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:13.952456Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:14.013142Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:14.013183Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:14.013299Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:14.013469Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:14.013505Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:14.014019Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=366 blob_id=2147878742624177086430234726422586227 -2026-04-20T11:14:14.539289Z DEBUG sp1_core_executor_runner::native: CHILD sp1_O7WJj3c4Q02oL2Ouxj-Pog==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:14.545941Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:14.555571Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1000150 cycles -2026-04-20T11:14:14.556716Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 60, 157, 127, 240, 5, 126, 246, 25, 150, 46, 194, 217, 176, 57, 142, 7, 160, 101, 213, 32, 83, 207, 87, 43, 221, 243, 131, 183, 18, 145, 200, 192, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 52, 49, 27, 59, 41, 209, 225, 7, 8, 138, 106, 207, 146, 162, 54, 173, 147, 113, 255, 143, 109, 32, 36, 57, 223, 251, 253, 194, 166, 127, 238, 181, 138, 6, 199, 164, 83, 234, 146, 77, 105, 105, 50, 217, 123, 162, 4, 90, 44, 59, 28, 58, 247, 26, 31, 235, 159, 170, 181, 23, 92, 160, 225, 105, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:14.614449Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:14.614494Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:14.721244Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:14.755862Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ieVLUKIoQrGDSM4Zm71xyg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:14.758713Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ieVLUKIoQrGDSM4Zm71xyg==: stderr: -2026-04-20T11:14:14.758725Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ieVLUKIoQrGDSM4Zm71xyg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:14.758733Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ieVLUKIoQrGDSM4Zm71xyg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:14.758741Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ieVLUKIoQrGDSM4Zm71xyg==: stderr: stack backtrace: -2026-04-20T11:14:14.758747Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ieVLUKIoQrGDSM4Zm71xyg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:14.758753Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ieVLUKIoQrGDSM4Zm71xyg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:14.758896Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:14.759643Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:14.759938Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:14.824801Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:14.824844Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:14.824961Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:14.825114Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:14.825148Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:14.825516Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=367 blob_id=2147878743605805078735579381685123978 -2026-04-20T11:14:15.351393Z DEBUG sp1_core_executor_runner::native: CHILD sp1_t-y2jMGtSBCjvVvDF1spgg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:15.358094Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:15.367570Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1004718 cycles -2026-04-20T11:14:15.370469Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 65, 51, 177, 159, 72, 228, 68, 144, 238, 198, 169, 154, 233, 38, 187, 102, 126, 80, 240, 32, 154, 150, 7, 251, 52, 16, 196, 154, 124, 153, 254, 127, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 50, 29, 56, 188, 167, 129, 17, 164, 62, 13, 60, 229, 92, 96, 36, 9, 129, 210, 75, 241, 184, 12, 41, 231, 253, 13, 240, 233, 112, 120, 214, 147, 22, 112, 14, 198, 222, 244, 25, 74, 191, 5, 37, 230, 31, 231, 44, 158, 170, 198, 151, 193, 167, 34, 104, 250, 92, 201, 37, 120, 78, 193, 118, 146, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:15.427258Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:15.427302Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:15.532023Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:15.566289Z DEBUG sp1_core_executor_runner::native: CHILD sp1_u9Y_MyrqR3uAa7CzjkqZRg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:15.569122Z DEBUG sp1_core_executor_runner::native: CHILD sp1_u9Y_MyrqR3uAa7CzjkqZRg==: stderr: -2026-04-20T11:14:15.569135Z DEBUG sp1_core_executor_runner::native: CHILD sp1_u9Y_MyrqR3uAa7CzjkqZRg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:15.569144Z DEBUG sp1_core_executor_runner::native: CHILD sp1_u9Y_MyrqR3uAa7CzjkqZRg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:15.569153Z DEBUG sp1_core_executor_runner::native: CHILD sp1_u9Y_MyrqR3uAa7CzjkqZRg==: stderr: stack backtrace: -2026-04-20T11:14:15.569159Z DEBUG sp1_core_executor_runner::native: CHILD sp1_u9Y_MyrqR3uAa7CzjkqZRg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:15.569165Z DEBUG sp1_core_executor_runner::native: CHILD sp1_u9Y_MyrqR3uAa7CzjkqZRg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:15.569262Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:15.570033Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:15.570337Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:15.636897Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:15.636939Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:15.637075Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:15.637234Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:15.637269Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:15.637917Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=368 blob_id=2147878744587456994694919836875966428 -2026-04-20T11:14:16.185737Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jjGD2oaMRIGuEuVaImcRoQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:16.192527Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:16.202248Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1018193 cycles -2026-04-20T11:14:16.204984Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 66, 206, 91, 173, 236, 158, 251, 42, 41, 82, 205, 64, 21, 116, 166, 135, 227, 255, 127, 243, 231, 25, 102, 20, 109, 169, 32, 203, 162, 147, 101, 97, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 88, 136, 169, 212, 229, 13, 89, 150, 102, 158, 6, 166, 12, 244, 123, 45, 179, 87, 173, 201, 118, 200, 86, 102, 49, 18, 196, 32, 65, 83, 153, 129, 188, 139, 255, 8, 198, 31, 191, 92, 124, 235, 152, 135, 104, 37, 169, 159, 150, 69, 73, 113, 12, 234, 182, 119, 57, 196, 208, 12, 207, 249, 234, 91, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:16.261388Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:16.261431Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:16.346497Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:16.380241Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3Cb8LHoHRKyFcQoUYjX7sQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:16.383105Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3Cb8LHoHRKyFcQoUYjX7sQ==: stderr: -2026-04-20T11:14:16.383213Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3Cb8LHoHRKyFcQoUYjX7sQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:16.383223Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3Cb8LHoHRKyFcQoUYjX7sQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:16.383230Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3Cb8LHoHRKyFcQoUYjX7sQ==: stderr: stack backtrace: -2026-04-20T11:14:16.383236Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3Cb8LHoHRKyFcQoUYjX7sQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:16.383242Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3Cb8LHoHRKyFcQoUYjX7sQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:16.383267Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:16.384056Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:16.384361Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:16.450745Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:16.450787Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:16.450933Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:16.451084Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:16.451122Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:16.451568Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=369 blob_id=2147878745570318131323232375384527949 -2026-04-20T11:14:16.854953Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=8 height=342 prev_hash=0x0e27908038a27873846a4ae2102f08d8117b9b7c1ba1e6f9bb7ca1b39acde86d hash=0x4de790620bdd3b4c8c35affc33d2f7860e0c53c5684bdce33a4ca9627c148521 producing_time=1.338791ms -2026-04-20T11:14:16.861981Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=342 current_state_root="054c560828997a4fb92c1fba23285cb39c2bb7003a232a837096d7215bce675137acf0992aa519046792d94cd904157515a69794feea5554832acc0f2d98f0ef" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x53c5cd06ebad0ccf3a63cacbc72fe15e30eb6d6f2556bb216e6a657475e0b3c7"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xdb569d247694efb4513b409613419ef0bd1c13b933d505f8eb2b7e6784a79b60, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xde85ce4186a8876b3c4052347377633657ec5e9cbd9304af93a71e6882d17009, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x922ffb6921719c218b3b57d85f27752307e22b4599d50117cc9264494e9c5c4e, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1ba5d70871d74f86ea757911de32e27a42945692c0e9a9e88814e93b2dab2714, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x6a65894328577911c5c5ec78eb4d694b74a89efe6be3ee96a3de298b91cb2938, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x98976e78f228ecc9a4f1c7fa7c39ddf3e435fe599e69e185449eaadc7d5b93a5, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x232a426b44b6a6774d8ea4461c0b8dde4c153fef2e3ecff7ac344c3bc445372a, len=625"] -2026-04-20T11:14:16.862366Z DEBUG StfBlueprint::apply_slot{context=Node da_height=342}: sov_chain_state: Setting next visible slot number next_visible_slot_number=260 -2026-04-20T11:14:16.862531Z DEBUG StfBlueprint::apply_slot{context=Node da_height=342}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x53c5cd06ebad0ccf3a63cacbc72fe15e30eb6d6f2556bb216e6a657475e0b3c7}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:14:16.862731Z DEBUG StfBlueprint::apply_slot{context=Node da_height=342}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=054c560828997a4fb92c1fba23285cb39c2bb7003a232a837096d7215bce675137acf0992aa519046792d94cd904157515a69794feea5554832acc0f2d98f0ef next_version=342 sesssion_starting_time=53.139µs -2026-04-20T11:14:16.863798Z DEBUG StfBlueprint::apply_slot{context=Node da_height=342}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=1dc252e9056ff11677b8c7ffe66036688a6f7a66f4248394d4b72ac95193eb16568b36e608466c2c53ec4b51fdf91b9bbe6d4bd2e0d0736308340154ea3613d5 next_version=342 time=1.169792ms accesses_build_time=48.579µs finishing_session_time=1.042833ms -2026-04-20T11:14:16.863995Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a8145e15eadc9e447e41ee363300afbb44874b7da1d6a5dc558bb243b403c66fa9" next_state_root="1dc252e9056ff11677b8c7ffe66036688a6f7a66f4248394d4b72ac95193eb16568b36e608466c2c53ec4b51fdf91b9bbe6d4bd2e0d0736308340154ea3613d5" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:14:16.864440Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=3 min=5 max=6 -2026-04-20T11:14:16.864505Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:14:16.864568Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=120 -2026-04-20T11:14:16.864675Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=270 -2026-04-20T11:14:16.864973Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:14:16.865484Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=270 sequence_number=370 -2026-04-20T11:14:16.865513Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=370 blob_id=2147878746071983939069327430577120129 visible_slot_number_after_increase=270 visible_slots_to_advance=10 -2026-04-20T11:14:16.865549Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=7 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:14:16.867362Z DEBUG manage_blob_submission_inside_task{blob_id=2147878746071983939069327430577120129 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xfa7194c2cf4749f214f9f918a3f9a9264c910461afdb43e8c6ea715bb645e810 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=343 include_at=343 bytes=13 time=600.856µs -2026-04-20T11:14:16.878901Z DEBUG compute_state_update{scope="sequencer" rollup_height=125 slot_number=270}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:14:16.878928Z DEBUG compute_state_update{scope="sequencer" rollup_height=125 slot_number=270}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:14:16.878940Z DEBUG sov_stf_runner::runner: Block execution complete time=6.009083362s -2026-04-20T11:14:16.878959Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:14:16.878981Z DEBUG compute_state_update{scope="sequencer" rollup_height=125 slot_number=270}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a801dd45a6e9444ccd37bfe17fb1e3ec015ba013dae3f846014fdcd175ea406f5d next_version=340 sesssion_starting_time=12.936066ms -2026-04-20T11:14:16.879962Z DEBUG compute_state_update{scope="sequencer" rollup_height=125 slot_number=270}: sov_state::nomt::prover_storage: computed next state root state_root=764af2328a67261865d83ba0a39d62d0265d5e07a2917e46b1de0937340d116e3b7178c2ae7e71966ed8f31f19c66af678018c099891c470be7f1ab08c1ad545 next_version=340 time=13.94987ms accesses_build_time=31.51µs finishing_session_time=949.944µs -2026-04-20T11:14:16.981924Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eCKEGVrHQOSbxQ-X2kI-qw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:16.988948Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:16.998108Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1014767 cycles -2026-04-20T11:14:17.000648Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 93, 232, 70, 5, 93, 138, 55, 51, 66, 130, 35, 158, 253, 250, 180, 132, 118, 181, 71, 6, 127, 163, 246, 159, 3, 246, 149, 138, 62, 72, 232, 215, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 78, 218, 60, 179, 152, 47, 186, 182, 144, 191, 67, 199, 240, 96, 70, 102, 21, 225, 26, 40, 186, 186, 117, 107, 55, 144, 18, 186, 87, 60, 86, 252, 117, 164, 192, 97, 82, 214, 36, 229, 65, 252, 101, 194, 72, 169, 103, 102, 213, 54, 153, 251, 72, 49, 87, 153, 35, 119, 158, 248, 7, 214, 105, 114, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:17.058620Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:17.058662Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:17.159059Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:17.193039Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bEx3NRxtTPGfukKHZg-f0g==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:17.195860Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bEx3NRxtTPGfukKHZg-f0g==: stderr: -2026-04-20T11:14:17.195873Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bEx3NRxtTPGfukKHZg-f0g==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:17.195882Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bEx3NRxtTPGfukKHZg-f0g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:17.195890Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bEx3NRxtTPGfukKHZg-f0g==: stderr: stack backtrace: -2026-04-20T11:14:17.195896Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bEx3NRxtTPGfukKHZg-f0g==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:17.195915Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bEx3NRxtTPGfukKHZg-f0g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:17.196025Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:17.196836Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:17.197127Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:17.262385Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:17.262431Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:17.262552Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:17.262696Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:17.262731Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:17.263062Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=371 blob_id=2147878746551950511619145206372421540 -2026-04-20T11:14:17.800998Z DEBUG sp1_core_executor_runner::native: CHILD sp1_41sTfONoSPSoKKXNW78Qkg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:17.807744Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:17.818635Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1007594 cycles -2026-04-20T11:14:17.821189Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 91, 182, 138, 183, 65, 192, 20, 127, 192, 49, 179, 134, 147, 184, 249, 219, 216, 206, 236, 50, 0, 200, 120, 0, 50, 84, 136, 198, 21, 184, 241, 239, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 102, 58, 143, 200, 54, 104, 175, 215, 198, 110, 229, 174, 229, 236, 120, 161, 202, 164, 189, 97, 240, 27, 150, 2, 201, 98, 44, 113, 147, 125, 42, 33, 18, 247, 138, 110, 188, 43, 163, 51, 103, 165, 94, 168, 122, 111, 186, 5, 138, 237, 79, 227, 230, 46, 217, 83, 98, 138, 20, 147, 232, 96, 93, 121, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:17.877402Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:17.877449Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:17.970995Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:18.005390Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CcmTnoh4Ti6SGFEwTnU_Zw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:18.008245Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CcmTnoh4Ti6SGFEwTnU_Zw==: stderr: -2026-04-20T11:14:18.008269Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CcmTnoh4Ti6SGFEwTnU_Zw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:18.008279Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CcmTnoh4Ti6SGFEwTnU_Zw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:18.008286Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CcmTnoh4Ti6SGFEwTnU_Zw==: stderr: stack backtrace: -2026-04-20T11:14:18.008292Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CcmTnoh4Ti6SGFEwTnU_Zw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:18.008299Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CcmTnoh4Ti6SGFEwTnU_Zw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:18.008392Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:18.009154Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:18.009450Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:18.076567Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:18.076611Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:18.076813Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:18.076980Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:18.077037Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:18.077466Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=372 blob_id=2147878747536043263510918032038212083 -2026-04-20T11:14:18.629574Z DEBUG sp1_core_executor_runner::native: CHILD sp1_d-qAyXHVQDiIOYKJHKLEWA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:18.636271Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:18.645527Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1003788 cycles -2026-04-20T11:14:18.648383Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 71, 163, 234, 93, 238, 154, 162, 171, 173, 225, 161, 55, 169, 62, 201, 228, 219, 200, 249, 98, 46, 23, 229, 133, 250, 243, 213, 82, 141, 211, 57, 23, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 16, 198, 4, 252, 70, 48, 236, 254, 39, 243, 164, 57, 185, 12, 157, 252, 226, 196, 14, 209, 239, 85, 12, 221, 107, 207, 157, 40, 244, 3, 31, 99, 72, 200, 244, 169, 7, 161, 36, 121, 137, 131, 106, 201, 208, 146, 196, 59, 48, 180, 119, 163, 188, 233, 227, 27, 153, 115, 213, 254, 41, 68, 66, 52, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:18.705191Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:18.705233Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:18.785588Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:18.819957Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VgCoXNqWS3OwYr8dx_KsRA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:18.822788Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VgCoXNqWS3OwYr8dx_KsRA==: stderr: -2026-04-20T11:14:18.822812Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VgCoXNqWS3OwYr8dx_KsRA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:18.822822Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VgCoXNqWS3OwYr8dx_KsRA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:18.822828Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VgCoXNqWS3OwYr8dx_KsRA==: stderr: stack backtrace: -2026-04-20T11:14:18.822834Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VgCoXNqWS3OwYr8dx_KsRA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:18.822841Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VgCoXNqWS3OwYr8dx_KsRA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:18.822954Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:18.823717Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:18.824008Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:18.881193Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:18.881225Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:18.881353Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:18.881502Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:18.881537Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:18.881989Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=373 blob_id=2147878748509183743337973954392083508 -2026-04-20T11:14:19.381284Z DEBUG sp1_core_executor_runner::native: CHILD sp1_UxdREYkwSdCZn3MNxWwyYQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:19.387620Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:19.397145Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 961311 cycles -2026-04-20T11:14:19.399994Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 65, 44, 191, 111, 122, 197, 61, 3, 30, 87, 5, 211, 102, 165, 250, 221, 22, 108, 233, 29, 157, 33, 141, 12, 144, 154, 254, 235, 69, 183, 78, 77, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 90, 163, 69, 160, 212, 90, 248, 5, 255, 135, 135, 60, 149, 1, 67, 64, 228, 232, 90, 65, 152, 42, 186, 243, 7, 62, 204, 66, 132, 208, 23, 19, 77, 18, 142, 89, 77, 232, 216, 189, 101, 43, 163, 225, 80, 12, 97, 79, 193, 205, 60, 190, 32, 163, 6, 189, 104, 114, 84, 89, 6, 99, 229, 145, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:19.453817Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:19.453862Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:19.488579Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:19.522763Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8aY6xtgzQvyfdiGUQ8Mjlg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:19.525620Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8aY6xtgzQvyfdiGUQ8Mjlg==: stderr: -2026-04-20T11:14:19.525644Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8aY6xtgzQvyfdiGUQ8Mjlg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:19.525654Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8aY6xtgzQvyfdiGUQ8Mjlg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:19.525661Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8aY6xtgzQvyfdiGUQ8Mjlg==: stderr: stack backtrace: -2026-04-20T11:14:19.525667Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8aY6xtgzQvyfdiGUQ8Mjlg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:19.525674Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8aY6xtgzQvyfdiGUQ8Mjlg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:19.525726Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:19.526618Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:19.526907Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:19.593407Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:19.593451Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:19.593582Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:19.593707Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:19.593740Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:19.594230Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=374 blob_id=2147878749369930919459910131561186236 -2026-04-20T11:14:20.123942Z DEBUG sp1_core_executor_runner::native: CHILD sp1_MB-RsiNpS1emvGDWOdw_aA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:20.130450Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:20.139951Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 984214 cycles -2026-04-20T11:14:20.142599Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 112, 51, 253, 115, 10, 44, 158, 98, 202, 174, 67, 175, 58, 221, 16, 108, 52, 20, 141, 229, 201, 255, 224, 34, 226, 231, 95, 238, 191, 112, 114, 79, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 120, 189, 122, 216, 232, 42, 185, 223, 81, 51, 86, 82, 88, 153, 49, 108, 111, 111, 235, 72, 204, 231, 15, 226, 93, 93, 229, 204, 133, 189, 116, 241, 149, 185, 33, 218, 252, 244, 112, 110, 26, 103, 155, 12, 230, 144, 89, 146, 167, 59, 139, 133, 80, 25, 207, 111, 180, 100, 19, 232, 43, 99, 149, 206, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:20.198660Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:20.198704Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:20.302345Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:20.336410Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-hM1iK9lQqKCK_UVu6nrqA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:20.339249Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-hM1iK9lQqKCK_UVu6nrqA==: stderr: -2026-04-20T11:14:20.339261Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-hM1iK9lQqKCK_UVu6nrqA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:20.339269Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-hM1iK9lQqKCK_UVu6nrqA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:20.339275Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-hM1iK9lQqKCK_UVu6nrqA==: stderr: stack backtrace: -2026-04-20T11:14:20.339282Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-hM1iK9lQqKCK_UVu6nrqA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:20.339288Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-hM1iK9lQqKCK_UVu6nrqA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:20.339436Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:20.340229Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:20.340526Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:20.406432Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:20.406472Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:20.406601Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:20.406709Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:20.406759Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:20.406947Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=375 blob_id=2147878750352832161606770088888580603 -2026-04-20T11:14:20.961791Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9PHmTTB1Q2qLJjyt3KxlKA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:20.968493Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:20.978840Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1010512 cycles -2026-04-20T11:14:20.981386Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 95, 152, 0, 44, 137, 25, 230, 31, 143, 32, 89, 154, 158, 107, 168, 60, 70, 222, 194, 76, 232, 160, 144, 202, 82, 27, 12, 163, 31, 26, 140, 82, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 13, 0, 79, 48, 109, 217, 42, 20, 194, 89, 104, 190, 1, 62, 117, 64, 187, 100, 79, 144, 184, 40, 66, 110, 86, 52, 123, 144, 91, 183, 186, 123, 252, 66, 179, 119, 10, 167, 168, 101, 145, 77, 100, 179, 254, 130, 197, 240, 33, 27, 164, 237, 0, 59, 81, 214, 145, 205, 241, 167, 28, 133, 203, 109, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:21.037640Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:21.037686Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:21.114551Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:21.149158Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gRrMBvnFQgeLV_ehd3i8Rw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:21.152005Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gRrMBvnFQgeLV_ehd3i8Rw==: stderr: -2026-04-20T11:14:21.152019Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gRrMBvnFQgeLV_ehd3i8Rw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:21.152027Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gRrMBvnFQgeLV_ehd3i8Rw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:21.152035Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gRrMBvnFQgeLV_ehd3i8Rw==: stderr: stack backtrace: -2026-04-20T11:14:21.152041Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gRrMBvnFQgeLV_ehd3i8Rw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:21.152047Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gRrMBvnFQgeLV_ehd3i8Rw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:21.152180Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:21.152988Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:21.153280Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:21.220192Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:21.220230Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:21.220402Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:21.220540Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:21.220604Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:21.220886Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=376 blob_id=2147878751336862395534639203912456045 -2026-04-20T11:14:21.774070Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9LVfC8IYTaqHj5MQTJSK2g==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:21.780668Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:21.791521Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 991583 cycles -2026-04-20T11:14:21.794079Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 103, 156, 29, 136, 47, 129, 82, 193, 202, 155, 153, 47, 225, 85, 51, 152, 104, 82, 184, 3, 212, 11, 135, 248, 38, 191, 45, 158, 41, 162, 86, 22, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 25, 203, 114, 232, 179, 96, 113, 177, 197, 4, 54, 24, 243, 159, 55, 175, 140, 133, 72, 93, 185, 186, 157, 15, 81, 231, 105, 187, 170, 97, 177, 157, 68, 128, 65, 122, 15, 98, 203, 20, 40, 14, 144, 114, 39, 177, 202, 217, 125, 177, 44, 172, 18, 12, 5, 88, 52, 239, 95, 106, 232, 125, 124, 211, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:21.849211Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:21.849252Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:21.928658Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:21.962187Z DEBUG sp1_core_executor_runner::native: CHILD sp1_WhhT-9dvRwmCgIvXHa6yQA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:21.965046Z DEBUG sp1_core_executor_runner::native: CHILD sp1_WhhT-9dvRwmCgIvXHa6yQA==: stderr: -2026-04-20T11:14:21.965071Z DEBUG sp1_core_executor_runner::native: CHILD sp1_WhhT-9dvRwmCgIvXHa6yQA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:21.965084Z DEBUG sp1_core_executor_runner::native: CHILD sp1_WhhT-9dvRwmCgIvXHa6yQA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:21.965093Z DEBUG sp1_core_executor_runner::native: CHILD sp1_WhhT-9dvRwmCgIvXHa6yQA==: stderr: stack backtrace: -2026-04-20T11:14:21.965101Z DEBUG sp1_core_executor_runner::native: CHILD sp1_WhhT-9dvRwmCgIvXHa6yQA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:21.965109Z DEBUG sp1_core_executor_runner::native: CHILD sp1_WhhT-9dvRwmCgIvXHa6yQA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:21.965176Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:21.965941Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:21.966231Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:22.032521Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:22.032562Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:22.032673Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:22.032811Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:22.032846Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:22.033309Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=377 blob_id=2147878752318548829039915171631490144 -2026-04-20T11:14:22.566804Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mHwFhtkeS6-zbE-RJY3AwQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:22.573617Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:22.583714Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1019357 cycles -2026-04-20T11:14:22.586152Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 22, 116, 3, 129, 130, 19, 222, 222, 218, 137, 49, 31, 30, 205, 150, 40, 20, 117, 224, 168, 84, 190, 174, 206, 127, 134, 153, 62, 58, 106, 47, 95, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 119, 48, 221, 20, 143, 122, 229, 234, 31, 86, 92, 34, 85, 70, 253, 213, 203, 102, 203, 3, 61, 31, 140, 4, 174, 222, 195, 27, 186, 30, 143, 172, 217, 28, 254, 222, 213, 75, 98, 70, 229, 137, 244, 1, 115, 190, 12, 147, 224, 52, 112, 97, 46, 86, 37, 169, 212, 39, 192, 255, 142, 35, 244, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:22.644162Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:22.644207Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:22.739852Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:22.772137Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sjtfCYTMSSG4HwQXvI-wbg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:22.775012Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sjtfCYTMSSG4HwQXvI-wbg==: stderr: -2026-04-20T11:14:22.775036Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sjtfCYTMSSG4HwQXvI-wbg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:22.775046Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sjtfCYTMSSG4HwQXvI-wbg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:22.775053Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sjtfCYTMSSG4HwQXvI-wbg==: stderr: stack backtrace: -2026-04-20T11:14:22.775059Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sjtfCYTMSSG4HwQXvI-wbg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:22.775066Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sjtfCYTMSSG4HwQXvI-wbg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:22.775125Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:22.775963Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:22.776252Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:22.842355Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:22.842399Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:22.842516Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:22.842655Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:22.842692Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:22.843105Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=378 blob_id=2147878753297727073178402331558926894 -2026-04-20T11:14:22.856425Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=9 height=343 prev_hash=0x4de790620bdd3b4c8c35affc33d2f7860e0c53c5684bdce33a4ca9627c148521 hash=0x16af51e6553e5d242c2f1d5d079755335fcc7742003d84729710605a0fe85273 producing_time=744.315µs -2026-04-20T11:14:22.860140Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=343 current_state_root="1dc252e9056ff11677b8c7ffe66036688a6f7a66f4248394d4b72ac95193eb16568b36e608466c2c53ec4b51fdf91b9bbe6d4bd2e0d0736308340154ea3613d5" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xfa7194c2cf4749f214f9f918a3f9a9264c910461afdb43e8c6ea715bb645e810"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1d8c83090c77a6ae014e35f0a07d3bacf2dd002ed290ecc6d88103bb8bee35bf, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x3c5784f0db000b2d6dcf9a287942e6d89cda53adea0756ffc6a1109d7e9e51e6, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x76515176d45606deae59bd594ce8d45a39ce16f39427f172dc9ea6a02576290d, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x58a1b359562829e2d29a022b983affcef984cee906daf9a43ad40639e8c279ef, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc9e2a45ed08e3d520f4dd4fb5a1d9a1f3f7dfd18d0ec5ce854c60b0cbd28767f, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x40b99a7ab5aa115ac5d1c6e362cd32459374ae3a8eb0c1dc57b1e07f89f7749c, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe944f8e7866b78c7762dd249c3124e806e06c244d468dfee36ceb6076ac32570, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xea013c1f63a2548c392cfee449c50a42b835eda6cdfc4e5d362c05e7092c0438, len=625"] -2026-04-20T11:14:22.860632Z DEBUG StfBlueprint::apply_slot{context=Node da_height=343}: sov_chain_state: Setting next visible slot number next_visible_slot_number=270 -2026-04-20T11:14:22.861019Z DEBUG StfBlueprint::apply_slot{context=Node da_height=343}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xfa7194c2cf4749f214f9f918a3f9a9264c910461afdb43e8c6ea715bb645e810}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=7 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:14:22.861229Z DEBUG StfBlueprint::apply_slot{context=Node da_height=343}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1dc252e9056ff11677b8c7ffe66036688a6f7a66f4248394d4b72ac95193eb16568b36e608466c2c53ec4b51fdf91b9bbe6d4bd2e0d0736308340154ea3613d5 next_version=343 sesssion_starting_time=48.049µs -2026-04-20T11:14:22.862465Z DEBUG StfBlueprint::apply_slot{context=Node da_height=343}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=764af2328a67261865d83ba0a39d62d0265d5e07a2917e46b1de0937340d116e0b5600901c588924fdea184aa40bcd9c7a19cdb4e43b4216bda5308fef1a0cf8 next_version=343 time=1.345172ms accesses_build_time=59.52µs finishing_session_time=1.211113ms -2026-04-20T11:14:22.862655Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="db569d247694efb4513b409613419ef0bd1c13b933d505f8eb2b7e6784a79b60" -2026-04-20T11:14:22.862672Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="de85ce4186a8876b3c4052347377633657ec5e9cbd9304af93a71e6882d17009" -2026-04-20T11:14:22.862695Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="922ffb6921719c218b3b57d85f27752307e22b4599d50117cc9264494e9c5c4e" -2026-04-20T11:14:22.862703Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="1ba5d70871d74f86ea757911de32e27a42945692c0e9a9e88814e93b2dab2714" -2026-04-20T11:14:22.862711Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="6a65894328577911c5c5ec78eb4d694b74a89efe6be3ee96a3de298b91cb2938" -2026-04-20T11:14:22.862720Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="98976e78f228ecc9a4f1c7fa7c39ddf3e435fe599e69e185449eaadc7d5b93a5" -2026-04-20T11:14:22.862728Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="232a426b44b6a6774d8ea4461c0b8dde4c153fef2e3ecff7ac344c3bc445372a" -2026-04-20T11:14:22.862740Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="054c560828997a4fb92c1fba23285cb39c2bb7003a232a837096d7215bce675137acf0992aa519046792d94cd904157515a69794feea5554832acc0f2d98f0ef" next_state_root="764af2328a67261865d83ba0a39d62d0265d5e07a2917e46b1de0937340d116e0b5600901c588924fdea184aa40bcd9c7a19cdb4e43b4216bda5308fef1a0cf8" aggregated_proofs=0 proof_receipts=7 -2026-04-20T11:14:22.863260Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=4 min=5 max=6 -2026-04-20T11:14:22.863304Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:14:22.863380Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=121 -2026-04-20T11:14:22.863489Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=280 -2026-04-20T11:14:22.863798Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:14:22.864348Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=280 sequence_number=379 -2026-04-20T11:14:22.864372Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=379 blob_id=2147878753324327606739041346550010053 visible_slot_number_after_increase=280 visible_slots_to_advance=10 -2026-04-20T11:14:22.864404Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=8 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:14:22.866039Z DEBUG manage_blob_submission_inside_task{blob_id=2147878753324327606739041346550010053 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x83fcc4a9a213507498173711229124533fd7ec350351b81311f5355f40154835 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=344 include_at=344 bytes=13 time=544.497µs -2026-04-20T11:14:22.874211Z DEBUG compute_state_update{scope="sequencer" rollup_height=126 slot_number=280}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:14:22.874223Z DEBUG compute_state_update{scope="sequencer" rollup_height=126 slot_number=280}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:14:22.874248Z DEBUG compute_state_update{scope="sequencer" rollup_height=126 slot_number=280}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a801dd45a6e9444ccd37bfe17fb1e3ec015ba013dae3f846014fdcd175ea406f5d next_version=340 sesssion_starting_time=9.31983ms -2026-04-20T11:14:22.874251Z DEBUG sov_stf_runner::runner: Block execution complete time=5.99529364s -2026-04-20T11:14:22.874273Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:14:22.875232Z DEBUG compute_state_update{scope="sequencer" rollup_height=126 slot_number=280}: sov_state::nomt::prover_storage: computed next state root state_root=5d2a90d3b215fd4f5aace138c342e362589a21ab46bad9b192a5f5b68e4f509f27c0fefa935ec64814ee67363689573338811484dcfe1a1fe17b6f38cbf2df21 next_version=340 time=10.352133ms accesses_build_time=47.05µs finishing_session_time=974.434µs -2026-04-20T11:14:23.363478Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rm2ZMlFjQdqWK9fCmbYdeg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:23.370417Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:23.381157Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1027419 cycles -2026-04-20T11:14:23.383781Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 20, 190, 77, 220, 51, 9, 18, 205, 99, 188, 232, 169, 85, 68, 147, 32, 252, 244, 120, 118, 167, 76, 225, 198, 135, 84, 195, 158, 193, 139, 56, 48, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 16, 105, 156, 14, 248, 91, 177, 167, 46, 238, 175, 13, 144, 85, 249, 91, 67, 196, 237, 2, 199, 65, 147, 212, 60, 200, 15, 177, 213, 103, 3, 90, 249, 197, 133, 97, 177, 56, 28, 4, 184, 86, 39, 138, 224, 113, 75, 101, 104, 209, 255, 109, 123, 244, 191, 205, 119, 97, 36, 47, 11, 30, 109, 56, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:23.440589Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:23.440639Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:23.448598Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:23.482243Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YIZzifQ_RLGbiDrs5g8lGQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:23.485068Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YIZzifQ_RLGbiDrs5g8lGQ==: stderr: -2026-04-20T11:14:23.485092Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YIZzifQ_RLGbiDrs5g8lGQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:23.485102Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YIZzifQ_RLGbiDrs5g8lGQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:23.485109Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YIZzifQ_RLGbiDrs5g8lGQ==: stderr: stack backtrace: -2026-04-20T11:14:23.485115Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YIZzifQ_RLGbiDrs5g8lGQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:23.485121Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YIZzifQ_RLGbiDrs5g8lGQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:23.485174Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:23.485969Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:23.486282Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:23.552145Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:23.552188Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:23.552330Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:23.552503Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:23.552552Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:23.552939Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=380 blob_id=2147878754156072688194934457061270705 -2026-04-20T11:14:24.089379Z DEBUG sp1_core_executor_runner::native: CHILD sp1_iB3tVRyYQ5OpvCIOGQ6hzA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:24.096105Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:24.105806Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1011269 cycles -2026-04-20T11:14:24.108250Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 107, 68, 8, 184, 179, 144, 63, 140, 189, 53, 89, 160, 183, 241, 81, 105, 181, 11, 56, 73, 65, 237, 102, 35, 113, 155, 201, 72, 115, 140, 63, 245, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 80, 216, 41, 68, 210, 228, 165, 190, 141, 36, 236, 216, 240, 147, 190, 249, 163, 13, 49, 114, 27, 147, 88, 109, 166, 171, 153, 221, 16, 112, 33, 218, 75, 155, 15, 205, 248, 105, 70, 191, 192, 249, 176, 78, 188, 54, 109, 179, 188, 15, 44, 15, 147, 130, 228, 57, 219, 43, 55, 39, 116, 247, 169, 24, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:24.167180Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:24.167219Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:24.260280Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:24.295211Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fJKwnkJDRVKBwykdiXJGhw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:24.298032Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fJKwnkJDRVKBwykdiXJGhw==: stderr: -2026-04-20T11:14:24.298044Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fJKwnkJDRVKBwykdiXJGhw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:24.298052Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fJKwnkJDRVKBwykdiXJGhw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:24.298060Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fJKwnkJDRVKBwykdiXJGhw==: stderr: stack backtrace: -2026-04-20T11:14:24.298065Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fJKwnkJDRVKBwykdiXJGhw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:24.298071Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fJKwnkJDRVKBwykdiXJGhw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:24.298174Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:24.298933Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:24.299230Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:24.365230Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:24.365272Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:24.365402Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:24.365557Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:24.365592Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:24.366167Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=381 blob_id=2147878755138969778232376053588151632 -2026-04-20T11:14:24.903178Z DEBUG sp1_core_executor_runner::native: CHILD sp1_66wmC4QRTMeMxEXWK2yXnw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:24.909851Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:24.920650Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1010928 cycles -2026-04-20T11:14:24.923252Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 53, 254, 81, 105, 0, 146, 89, 97, 39, 191, 232, 44, 196, 79, 54, 2, 252, 2, 128, 192, 214, 152, 238, 143, 99, 113, 156, 102, 121, 60, 206, 229, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 67, 225, 62, 12, 66, 97, 82, 175, 143, 98, 192, 13, 192, 98, 240, 75, 218, 217, 148, 238, 84, 240, 43, 11, 31, 161, 194, 124, 95, 53, 27, 32, 187, 148, 244, 236, 241, 222, 224, 213, 229, 152, 35, 146, 107, 45, 148, 150, 196, 85, 86, 142, 205, 188, 23, 33, 184, 149, 141, 169, 211, 31, 98, 40, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:24.980712Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:24.980754Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:25.074221Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:25.108438Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YP7uBLdKRligUjreKA4yFg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:25.111311Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YP7uBLdKRligUjreKA4yFg==: stderr: -2026-04-20T11:14:25.111348Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YP7uBLdKRligUjreKA4yFg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:25.111358Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YP7uBLdKRligUjreKA4yFg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:25.111365Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YP7uBLdKRligUjreKA4yFg==: stderr: stack backtrace: -2026-04-20T11:14:25.111371Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YP7uBLdKRligUjreKA4yFg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:25.111377Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YP7uBLdKRligUjreKA4yFg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:25.111467Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:25.112232Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:25.112546Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:25.177276Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:25.177328Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:25.177464Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:25.177610Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:25.177645Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:25.178051Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=382 blob_id=2147878756120592470719096360240993168 -2026-04-20T11:14:25.704418Z DEBUG sp1_core_executor_runner::native: CHILD sp1_b26s9uGaQU6EyMq6077a4w==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:25.711120Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:25.721120Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1011462 cycles -2026-04-20T11:14:25.723851Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 126, 183, 154, 197, 47, 44, 246, 12, 128, 20, 222, 184, 183, 192, 214, 205, 230, 208, 48, 192, 103, 30, 188, 49, 168, 250, 73, 244, 231, 175, 63, 109, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 88, 223, 203, 233, 208, 160, 32, 27, 178, 228, 107, 108, 36, 207, 17, 213, 153, 167, 176, 127, 124, 65, 176, 75, 197, 208, 139, 223, 107, 218, 229, 178, 212, 51, 10, 244, 82, 134, 84, 2, 32, 94, 45, 60, 124, 146, 126, 136, 181, 160, 7, 104, 180, 113, 9, 85, 164, 126, 153, 221, 120, 132, 67, 241, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:25.778978Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:25.779021Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:25.884990Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:25.916672Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AWzc4TXyQWOb7cvIJ0KSTw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:25.919538Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AWzc4TXyQWOb7cvIJ0KSTw==: stderr: -2026-04-20T11:14:25.919552Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AWzc4TXyQWOb7cvIJ0KSTw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:25.919561Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AWzc4TXyQWOb7cvIJ0KSTw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:25.919569Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AWzc4TXyQWOb7cvIJ0KSTw==: stderr: stack backtrace: -2026-04-20T11:14:25.919575Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AWzc4TXyQWOb7cvIJ0KSTw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:25.919581Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AWzc4TXyQWOb7cvIJ0KSTw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:25.919676Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:25.920499Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:25.920791Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:25.986356Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:25.986397Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:25.986562Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:25.986725Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:25.986779Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:25.987165Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=383 blob_id=2147878757098647718078139111972669601 -2026-04-20T11:14:26.535355Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rMCAufBTRvCF4RETJ6IE-w==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:26.541827Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:26.551537Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 985327 cycles -2026-04-20T11:14:26.554133Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 49, 158, 31, 103, 188, 32, 15, 89, 198, 186, 40, 160, 143, 230, 74, 201, 14, 36, 141, 104, 153, 179, 146, 170, 100, 155, 17, 1, 127, 205, 201, 41, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 36, 117, 145, 2, 23, 29, 28, 89, 214, 165, 115, 113, 176, 68, 165, 95, 245, 177, 72, 164, 63, 226, 46, 101, 164, 97, 177, 75, 9, 132, 192, 29, 138, 115, 34, 52, 240, 204, 132, 229, 254, 71, 121, 239, 215, 41, 250, 190, 134, 252, 26, 200, 32, 152, 57, 118, 65, 49, 196, 110, 165, 142, 139, 220, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:26.609598Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:26.609639Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:26.693982Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:26.728407Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ezgAZ7yhTvWECC-WDXM6vQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:26.731270Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ezgAZ7yhTvWECC-WDXM6vQ==: stderr: -2026-04-20T11:14:26.731293Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ezgAZ7yhTvWECC-WDXM6vQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:26.731303Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ezgAZ7yhTvWECC-WDXM6vQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:26.731310Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ezgAZ7yhTvWECC-WDXM6vQ==: stderr: stack backtrace: -2026-04-20T11:14:26.731332Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ezgAZ7yhTvWECC-WDXM6vQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:26.731338Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ezgAZ7yhTvWECC-WDXM6vQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:26.731467Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:26.732257Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:26.732556Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:26.799527Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:26.799570Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:26.799704Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:26.799855Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:26.799888Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:26.800290Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=384 blob_id=2147878758081447167282385099437150440 -2026-04-20T11:14:27.331283Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3lkJSP6KSpOsCeFaShGI_w==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:27.338063Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:27.348353Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1003335 cycles -2026-04-20T11:14:27.351058Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 59, 218, 52, 242, 180, 249, 154, 32, 186, 157, 183, 22, 139, 243, 185, 157, 226, 63, 191, 47, 246, 123, 40, 243, 26, 188, 4, 88, 56, 116, 74, 170, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 29, 37, 212, 154, 141, 244, 17, 155, 225, 37, 223, 223, 208, 70, 210, 33, 108, 142, 114, 0, 27, 130, 18, 226, 51, 242, 185, 151, 65, 119, 40, 224, 102, 81, 201, 160, 17, 46, 194, 109, 196, 111, 195, 6, 126, 132, 213, 254, 225, 134, 192, 45, 72, 17, 149, 19, 88, 38, 200, 220, 116, 49, 201, 123, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:27.406511Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:27.406558Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:27.506763Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:27.540356Z DEBUG sp1_core_executor_runner::native: CHILD sp1_WxLNzeT-T8qJjQO1_Phhig==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:27.543215Z DEBUG sp1_core_executor_runner::native: CHILD sp1_WxLNzeT-T8qJjQO1_Phhig==: stderr: -2026-04-20T11:14:27.543257Z DEBUG sp1_core_executor_runner::native: CHILD sp1_WxLNzeT-T8qJjQO1_Phhig==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:27.543269Z DEBUG sp1_core_executor_runner::native: CHILD sp1_WxLNzeT-T8qJjQO1_Phhig==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:27.543279Z DEBUG sp1_core_executor_runner::native: CHILD sp1_WxLNzeT-T8qJjQO1_Phhig==: stderr: stack backtrace: -2026-04-20T11:14:27.543288Z DEBUG sp1_core_executor_runner::native: CHILD sp1_WxLNzeT-T8qJjQO1_Phhig==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:27.543297Z DEBUG sp1_core_executor_runner::native: CHILD sp1_WxLNzeT-T8qJjQO1_Phhig==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:27.543419Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:27.544127Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:27.544418Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:27.610192Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:27.610237Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:27.610354Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:27.610507Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:27.610541Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:27.610930Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=385 blob_id=2147878759061896301708205662139586156 -2026-04-20T11:14:28.140832Z DEBUG sp1_core_executor_runner::native: CHILD sp1_z_kQ18m3TyCtxkyqU4URog==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:28.147706Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:28.157521Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1025038 cycles -2026-04-20T11:14:28.159965Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 89, 247, 174, 11, 22, 221, 7, 12, 109, 182, 84, 158, 190, 79, 136, 220, 178, 61, 227, 222, 234, 191, 233, 114, 191, 75, 163, 248, 156, 56, 24, 245, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 6, 69, 243, 48, 165, 3, 78, 131, 40, 153, 97, 175, 133, 92, 69, 20, 237, 255, 0, 109, 183, 31, 214, 37, 20, 94, 148, 203, 48, 40, 235, 251, 50, 129, 232, 93, 126, 33, 249, 135, 220, 59, 211, 85, 41, 104, 127, 232, 45, 176, 240, 71, 8, 35, 104, 45, 226, 162, 217, 204, 154, 161, 10, 165, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:28.217240Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:28.217287Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:28.317937Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:28.352566Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CnGHJB2nQVqVwPmSWEEU1Q==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:28.355418Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CnGHJB2nQVqVwPmSWEEU1Q==: stderr: -2026-04-20T11:14:28.355429Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CnGHJB2nQVqVwPmSWEEU1Q==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:28.355437Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CnGHJB2nQVqVwPmSWEEU1Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:28.355445Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CnGHJB2nQVqVwPmSWEEU1Q==: stderr: stack backtrace: -2026-04-20T11:14:28.355450Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CnGHJB2nQVqVwPmSWEEU1Q==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:28.355456Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CnGHJB2nQVqVwPmSWEEU1Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:28.355590Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:28.356335Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:28.356638Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:28.423056Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:28.423102Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:28.423340Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:28.423508Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:28.423573Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:28.423908Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=386 blob_id=2147878760044750961399951764390844171 -2026-04-20T11:14:28.859458Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=8 height=344 prev_hash=0x16af51e6553e5d242c2f1d5d079755335fcc7742003d84729710605a0fe85273 hash=0x3f2a3bd59d93da69f72c57ce74286af5abd8dc19537af08b4f78a1df61f9e7a1 producing_time=1.239412ms -2026-04-20T11:14:28.865136Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=344 current_state_root="764af2328a67261865d83ba0a39d62d0265d5e07a2917e46b1de0937340d116e0b5600901c588924fdea184aa40bcd9c7a19cdb4e43b4216bda5308fef1a0cf8" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x83fcc4a9a213507498173711229124533fd7ec350351b81311f5355f40154835"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x2234e09ab1e74f192903e1028eb66eae17d6f08b724cb8a23e546df45f9487f6, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x7add7e7eba6583fe367ba4d06c3b354505cb6cc34b2665cce25b3598311b4570, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x6b99f61854bd5ec58e82d8ba28422be244f1097594d9bdc5d130306700d1f1e2, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xdb28d64e98625ed614e2829afceea909bc07bb25a552525543cb42e1b437772d, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x92db406fdcfe532914c9c0247238dd3fdd0b67ae47fda38bbafde2a5a61545e4, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1433c30c62971e210ce75f2c5da38b56370e9187fe38f4d85da8d3f2571f14c3, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x00d67ce15b1efa2f76ee342bf5983f770cc1232c4791d330536a8596a3327ba2, len=625"] -2026-04-20T11:14:28.865625Z DEBUG StfBlueprint::apply_slot{context=Node da_height=344}: sov_chain_state: Setting next visible slot number next_visible_slot_number=280 -2026-04-20T11:14:28.866048Z DEBUG StfBlueprint::apply_slot{context=Node da_height=344}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x83fcc4a9a213507498173711229124533fd7ec350351b81311f5355f40154835}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=8 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:14:28.866262Z DEBUG StfBlueprint::apply_slot{context=Node da_height=344}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=764af2328a67261865d83ba0a39d62d0265d5e07a2917e46b1de0937340d116e0b5600901c588924fdea184aa40bcd9c7a19cdb4e43b4216bda5308fef1a0cf8 next_version=344 sesssion_starting_time=48.629µs -2026-04-20T11:14:28.867506Z DEBUG StfBlueprint::apply_slot{context=Node da_height=344}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=5d2a90d3b215fd4f5aace138c342e362589a21ab46bad9b192a5f5b68e4f509f1ce4df10443e2a36f67ddb182423f7a9047a68ad7b4dcf4ddd089d468d740ce9 next_version=344 time=1.355371ms accesses_build_time=61.22µs finishing_session_time=1.219692ms -2026-04-20T11:14:28.867717Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="1d8c83090c77a6ae014e35f0a07d3bacf2dd002ed290ecc6d88103bb8bee35bf" -2026-04-20T11:14:28.867734Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="3c5784f0db000b2d6dcf9a287942e6d89cda53adea0756ffc6a1109d7e9e51e6" -2026-04-20T11:14:28.867744Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="76515176d45606deae59bd594ce8d45a39ce16f39427f172dc9ea6a02576290d" -2026-04-20T11:14:28.867753Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="58a1b359562829e2d29a022b983affcef984cee906daf9a43ad40639e8c279ef" -2026-04-20T11:14:28.867761Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="c9e2a45ed08e3d520f4dd4fb5a1d9a1f3f7dfd18d0ec5ce854c60b0cbd28767f" -2026-04-20T11:14:28.867770Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="40b99a7ab5aa115ac5d1c6e362cd32459374ae3a8eb0c1dc57b1e07f89f7749c" -2026-04-20T11:14:28.867778Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="e944f8e7866b78c7762dd249c3124e806e06c244d468dfee36ceb6076ac32570" -2026-04-20T11:14:28.867786Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ea013c1f63a2548c392cfee449c50a42b835eda6cdfc4e5d362c05e7092c0438" -2026-04-20T11:14:28.867797Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="1dc252e9056ff11677b8c7ffe66036688a6f7a66f4248394d4b72ac95193eb16568b36e608466c2c53ec4b51fdf91b9bbe6d4bd2e0d0736308340154ea3613d5" next_state_root="5d2a90d3b215fd4f5aace138c342e362589a21ab46bad9b192a5f5b68e4f509f1ce4df10443e2a36f67ddb182423f7a9047a68ad7b4dcf4ddd089d468d740ce9" aggregated_proofs=0 proof_receipts=8 -2026-04-20T11:14:28.868349Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=5 min=5 max=6 -2026-04-20T11:14:28.868410Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:14:28.868496Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=122 -2026-04-20T11:14:28.868603Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=290 -2026-04-20T11:14:28.868907Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:14:28.869394Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=290 sequence_number=387 -2026-04-20T11:14:28.869431Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=387 blob_id=2147878760583935068793205480885983774 visible_slot_number_after_increase=290 visible_slots_to_advance=10 -2026-04-20T11:14:28.869451Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=7 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:14:28.871102Z DEBUG manage_blob_submission_inside_task{blob_id=2147878760583935068793205480885983774 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x1c63c3d9d977fd0f35de7bf7403415a9de3ff5b48d6d950b17327fe8eea506d3 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=345 include_at=345 bytes=13 time=561.456µs -2026-04-20T11:14:28.882951Z DEBUG compute_state_update{scope="sequencer" rollup_height=127 slot_number=290}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:14:28.882968Z DEBUG compute_state_update{scope="sequencer" rollup_height=127 slot_number=290}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:14:28.882999Z DEBUG compute_state_update{scope="sequencer" rollup_height=127 slot_number=290}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a801dd45a6e9444ccd37bfe17fb1e3ec015ba013dae3f846014fdcd175ea406f5d next_version=340 sesssion_starting_time=13.066806ms -2026-04-20T11:14:28.883027Z DEBUG sov_stf_runner::runner: Block execution complete time=6.008754123s -2026-04-20T11:14:28.883064Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:14:28.883970Z DEBUG compute_state_update{scope="sequencer" rollup_height=127 slot_number=290}: sov_state::nomt::prover_storage: computed next state root state_root=3a473051b0f5dafbb111cada01701a0830f62ff57302c6d8c4863448c5ac86ad6c96729940273ea86fea9facbc66e9afa792c023ae2b02d81ef5a42238fa042e next_version=340 time=14.079209ms accesses_build_time=40.389µs finishing_session_time=961.554µs -2026-04-20T11:14:28.971540Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gBGfbEumQ9OgWR-PVd_D7A==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:28.978403Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:28.992210Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1027009 cycles -2026-04-20T11:14:28.994948Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 84, 58, 236, 39, 71, 253, 27, 154, 109, 53, 91, 108, 139, 125, 81, 35, 15, 194, 146, 61, 237, 64, 113, 72, 144, 113, 174, 180, 147, 38, 25, 54, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 125, 219, 0, 98, 1, 254, 106, 196, 141, 180, 116, 16, 187, 7, 102, 38, 139, 209, 197, 238, 118, 242, 11, 63, 193, 239, 166, 219, 170, 49, 229, 210, 185, 253, 53, 245, 147, 134, 207, 167, 18, 183, 48, 87, 172, 248, 204, 20, 84, 10, 74, 83, 110, 210, 187, 167, 57, 121, 18, 59, 46, 32, 57, 57, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:29.011081Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:29.011104Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:29.030335Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:29.064591Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wq5__6buTVmv3ukq-RqTig==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:29.067433Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wq5__6buTVmv3ukq-RqTig==: stderr: -2026-04-20T11:14:29.067457Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wq5__6buTVmv3ukq-RqTig==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:29.067468Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wq5__6buTVmv3ukq-RqTig==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:29.067475Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wq5__6buTVmv3ukq-RqTig==: stderr: stack backtrace: -2026-04-20T11:14:29.067481Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wq5__6buTVmv3ukq-RqTig==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:29.067487Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wq5__6buTVmv3ukq-RqTig==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:29.067574Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:29.068408Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:29.068738Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:29.135421Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:29.135467Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:29.135625Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:29.135775Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:29.135834Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:29.136333Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=388 blob_id=2147878760905527691670070517288699139 -2026-04-20T11:14:29.684875Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PD-0H40ETSujF70yVq0RCg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:29.691556Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:29.707623Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1007638 cycles -2026-04-20T11:14:29.710289Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 30, 234, 184, 213, 194, 197, 251, 97, 223, 144, 70, 48, 77, 226, 163, 172, 248, 200, 239, 93, 31, 54, 236, 226, 36, 34, 91, 58, 134, 6, 52, 126, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 72, 94, 160, 249, 118, 195, 195, 20, 41, 116, 245, 88, 100, 230, 178, 41, 155, 122, 125, 126, 87, 1, 234, 142, 107, 240, 56, 228, 201, 176, 217, 237, 94, 104, 250, 181, 167, 135, 182, 74, 51, 140, 239, 181, 132, 11, 27, 232, 190, 96, 193, 193, 38, 231, 173, 46, 88, 29, 178, 124, 140, 6, 251, 80, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:29.724541Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:29.724566Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:29.741878Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:29.775854Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ERR_74MOReeZzYZBEh5dSA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:29.778689Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ERR_74MOReeZzYZBEh5dSA==: stderr: -2026-04-20T11:14:29.778714Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ERR_74MOReeZzYZBEh5dSA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:29.778724Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ERR_74MOReeZzYZBEh5dSA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:29.778730Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ERR_74MOReeZzYZBEh5dSA==: stderr: stack backtrace: -2026-04-20T11:14:29.778737Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ERR_74MOReeZzYZBEh5dSA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:29.778744Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ERR_74MOReeZzYZBEh5dSA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:29.778821Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:29.779629Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:29.779919Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:29.847793Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:29.847841Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:29.848039Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:29.848188Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:29.848244Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:29.848539Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=389 blob_id=2147878761767487058354166650973179339 -2026-04-20T11:14:30.377498Z DEBUG sp1_core_executor_runner::native: CHILD sp1_X0aXdOoFR3aKsDdotCCQvw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:30.384363Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:30.394288Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1020739 cycles -2026-04-20T11:14:30.396793Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 113, 9, 107, 74, 178, 193, 154, 219, 30, 55, 45, 82, 68, 5, 252, 71, 53, 118, 217, 45, 28, 75, 142, 73, 19, 3, 30, 100, 88, 87, 124, 208, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 26, 238, 171, 85, 21, 209, 69, 203, 184, 225, 181, 91, 222, 0, 231, 217, 139, 17, 3, 13, 138, 19, 73, 126, 151, 181, 204, 9, 68, 72, 172, 114, 41, 183, 92, 149, 78, 168, 42, 55, 166, 57, 34, 168, 65, 132, 57, 212, 49, 67, 113, 136, 181, 223, 3, 39, 193, 75, 107, 124, 123, 5, 228, 173, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:30.453751Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:30.453792Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:30.554846Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:30.588200Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ltiBMhviR7a0vTSIkgZdBg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:30.591014Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ltiBMhviR7a0vTSIkgZdBg==: stderr: -2026-04-20T11:14:30.591026Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ltiBMhviR7a0vTSIkgZdBg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:30.591035Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ltiBMhviR7a0vTSIkgZdBg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:30.591041Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ltiBMhviR7a0vTSIkgZdBg==: stderr: stack backtrace: -2026-04-20T11:14:30.591049Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ltiBMhviR7a0vTSIkgZdBg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:30.591055Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ltiBMhviR7a0vTSIkgZdBg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:30.591189Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:30.592058Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:30.592705Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:30.662938Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:30.662983Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:30.663164Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:30.663335Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:30.663407Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:30.663804Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=390 blob_id=2147878762752798791630928363950624082 -2026-04-20T11:14:31.211876Z DEBUG sp1_core_executor_runner::native: CHILD sp1_A6UNNQ18Tz2AhHLXSozLVg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:31.218541Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:31.227659Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 994701 cycles -2026-04-20T11:14:31.230301Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 0, 155, 76, 140, 34, 87, 105, 23, 156, 120, 151, 117, 208, 125, 93, 250, 234, 196, 215, 232, 236, 111, 144, 15, 111, 92, 247, 61, 149, 214, 110, 252, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 1, 177, 39, 119, 237, 79, 154, 253, 128, 104, 145, 115, 33, 255, 130, 248, 106, 201, 242, 0, 28, 189, 47, 226, 187, 5, 96, 67, 10, 130, 193, 118, 211, 148, 182, 38, 156, 222, 240, 70, 2, 103, 28, 94, 223, 115, 153, 109, 254, 174, 30, 219, 121, 106, 143, 192, 41, 182, 150, 115, 213, 126, 54, 199, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:31.286740Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:31.286786Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:31.372555Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:31.404580Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M8-25h0TTC29YrFR6vJ8Tg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:31.407431Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M8-25h0TTC29YrFR6vJ8Tg==: stderr: -2026-04-20T11:14:31.407456Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M8-25h0TTC29YrFR6vJ8Tg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:31.407466Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M8-25h0TTC29YrFR6vJ8Tg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:31.407473Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M8-25h0TTC29YrFR6vJ8Tg==: stderr: stack backtrace: -2026-04-20T11:14:31.407479Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M8-25h0TTC29YrFR6vJ8Tg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:31.407485Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M8-25h0TTC29YrFR6vJ8Tg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:31.407615Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:31.408373Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:31.408662Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:31.474170Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:31.474215Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:31.474330Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:31.474512Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:31.474542Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:31.474959Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=391 blob_id=2147878763733219000966276847262982132 -2026-04-20T11:14:31.984038Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EAK57Wv9THayCuzLlRjZkQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:31.990438Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:31.999831Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 960382 cycles -2026-04-20T11:14:32.002437Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 22, 33, 212, 89, 39, 117, 134, 96, 151, 29, 60, 156, 53, 57, 177, 159, 124, 207, 60, 230, 140, 23, 128, 87, 45, 11, 95, 12, 85, 98, 84, 200, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 26, 198, 227, 23, 169, 214, 50, 39, 179, 111, 163, 112, 108, 66, 122, 46, 160, 239, 191, 108, 54, 230, 1, 248, 62, 231, 57, 59, 114, 231, 240, 57, 244, 65, 7, 201, 188, 180, 167, 117, 114, 113, 48, 18, 131, 247, 217, 209, 183, 174, 212, 31, 109, 230, 110, 241, 91, 231, 67, 39, 58, 32, 195, 6, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:32.056445Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:32.056487Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:32.081330Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:32.115381Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hAWPgSWcQ32KSBk5a3i5mQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:32.118222Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hAWPgSWcQ32KSBk5a3i5mQ==: stderr: -2026-04-20T11:14:32.118245Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hAWPgSWcQ32KSBk5a3i5mQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:32.118267Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hAWPgSWcQ32KSBk5a3i5mQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:32.118275Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hAWPgSWcQ32KSBk5a3i5mQ==: stderr: stack backtrace: -2026-04-20T11:14:32.118281Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hAWPgSWcQ32KSBk5a3i5mQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:32.118288Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hAWPgSWcQ32KSBk5a3i5mQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:32.118405Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:32.119177Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:32.119479Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:32.187816Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:32.187862Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:32.188021Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:32.188180Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:32.188236Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:32.188676Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=392 blob_id=2147878764596379088284955446490175192 -2026-04-20T11:14:32.734416Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5LY1bkrASf-5W1BI27oMoA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:32.741236Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:32.750981Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1021692 cycles -2026-04-20T11:14:32.753625Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 89, 43, 33, 107, 135, 210, 198, 197, 111, 209, 211, 44, 3, 251, 112, 5, 194, 120, 15, 48, 11, 245, 167, 3, 60, 134, 11, 236, 109, 241, 53, 109, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 75, 131, 238, 244, 59, 197, 75, 189, 144, 150, 157, 110, 68, 125, 20, 70, 0, 24, 77, 151, 118, 201, 117, 183, 12, 59, 0, 243, 84, 230, 42, 152, 79, 182, 75, 170, 132, 98, 0, 162, 206, 64, 59, 42, 20, 126, 228, 170, 156, 67, 77, 131, 121, 106, 72, 23, 132, 202, 189, 251, 189, 60, 112, 24, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:32.810734Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:32.810776Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:32.895435Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:32.929907Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rHeTFjdeTNa95B8VsApPrg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:32.932714Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rHeTFjdeTNa95B8VsApPrg==: stderr: -2026-04-20T11:14:32.932736Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rHeTFjdeTNa95B8VsApPrg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:32.932746Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rHeTFjdeTNa95B8VsApPrg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:32.932756Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rHeTFjdeTNa95B8VsApPrg==: stderr: stack backtrace: -2026-04-20T11:14:32.932765Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rHeTFjdeTNa95B8VsApPrg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:32.932772Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rHeTFjdeTNa95B8VsApPrg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:32.932919Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:32.933657Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:32.933947Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:32.999794Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:32.999837Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:32.999996Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:33.000136Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:33.000184Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:33.000598Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=393 blob_id=2147878765577983742935252415177638964 -2026-04-20T11:14:33.537861Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LNtaGqVmSdO1Q7yH9avqyQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:33.544527Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:33.553673Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1009117 cycles -2026-04-20T11:14:33.556179Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 82, 7, 247, 240, 71, 40, 16, 55, 50, 22, 20, 157, 146, 174, 189, 124, 247, 109, 162, 129, 61, 55, 212, 24, 192, 247, 201, 241, 232, 195, 16, 147, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 14, 82, 183, 0, 237, 253, 252, 113, 54, 159, 116, 250, 201, 99, 10, 81, 210, 25, 89, 186, 2, 136, 205, 103, 50, 48, 116, 64, 217, 4, 124, 5, 98, 236, 176, 163, 33, 83, 211, 29, 226, 32, 239, 143, 174, 158, 54, 190, 185, 245, 82, 96, 116, 151, 179, 174, 34, 89, 4, 183, 47, 129, 117, 143, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:33.613853Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:33.613899Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:33.707685Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:33.741159Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nNIFRs8NQgiM4iJ0mxSRnA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:33.744015Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nNIFRs8NQgiM4iJ0mxSRnA==: stderr: -2026-04-20T11:14:33.744028Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nNIFRs8NQgiM4iJ0mxSRnA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:33.744036Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nNIFRs8NQgiM4iJ0mxSRnA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:33.744045Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nNIFRs8NQgiM4iJ0mxSRnA==: stderr: stack backtrace: -2026-04-20T11:14:33.744051Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nNIFRs8NQgiM4iJ0mxSRnA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:33.744056Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nNIFRs8NQgiM4iJ0mxSRnA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:33.744193Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:33.744913Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:33.745227Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:33.811084Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:33.811128Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:33.811291Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:33.811444Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:33.811508Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:33.812001Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=394 blob_id=2147878766558445936253420747777766510 -2026-04-20T11:14:34.364296Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vkv7DsWTRFuSW9h0yb2nGg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:34.371106Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:34.380450Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1017396 cycles -2026-04-20T11:14:34.383080Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 101, 26, 111, 96, 252, 95, 23, 114, 205, 228, 224, 126, 102, 25, 18, 160, 182, 164, 91, 121, 246, 201, 55, 39, 7, 209, 83, 146, 76, 171, 113, 29, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 17, 128, 177, 118, 168, 247, 155, 211, 155, 190, 105, 144, 9, 61, 166, 90, 89, 97, 97, 15, 78, 87, 62, 1, 243, 77, 98, 43, 27, 206, 206, 84, 165, 152, 39, 93, 212, 160, 49, 120, 49, 237, 251, 28, 100, 228, 227, 68, 160, 151, 98, 244, 231, 232, 127, 104, 90, 251, 70, 233, 36, 247, 58, 114, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:34.441208Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:34.441255Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:34.519608Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:34.554885Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2Q6zoerVRnuSOJA_QZ2R5Q==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:34.557707Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2Q6zoerVRnuSOJA_QZ2R5Q==: stderr: -2026-04-20T11:14:34.557719Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2Q6zoerVRnuSOJA_QZ2R5Q==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:34.557739Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2Q6zoerVRnuSOJA_QZ2R5Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:34.557748Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2Q6zoerVRnuSOJA_QZ2R5Q==: stderr: stack backtrace: -2026-04-20T11:14:34.557755Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2Q6zoerVRnuSOJA_QZ2R5Q==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:34.557761Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2Q6zoerVRnuSOJA_QZ2R5Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:34.557917Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:34.558672Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:34.559003Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:34.625902Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:34.625947Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:34.626142Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:34.626292Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:34.626368Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:34.626737Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=395 blob_id=2147878767543753497201766032790452632 -2026-04-20T11:14:34.861989Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=9 height=345 prev_hash=0x3f2a3bd59d93da69f72c57ce74286af5abd8dc19537af08b4f78a1df61f9e7a1 hash=0x696ef6eb781de089ac7dd0fb5c727c5b42594ebf60e765c7fb1b09b5c2066ed4 producing_time=1.239043ms -2026-04-20T11:14:34.864684Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=345 current_state_root="5d2a90d3b215fd4f5aace138c342e362589a21ab46bad9b192a5f5b68e4f509f1ce4df10443e2a36f67ddb182423f7a9047a68ad7b4dcf4ddd089d468d740ce9" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1c63c3d9d977fd0f35de7bf7403415a9de3ff5b48d6d950b17327fe8eea506d3"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa5d08378a5b99f17b0d595b79ab4d71f75df7148d08506b477b4f144d311493b, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x99bec0a32d3c28657b4482808a8e78a08fcd9a4ac30555ab3e653eea048777d8, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x463554b600f64af038549064c9a7fb3119227539d2787d3f83facd97a307978c, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x3b190086014122e645d9a635defc9c942a4a970f5d0cea7ec4a35d0eadf4221e, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x5d5c954270a4e2fbfe2d7bae4f55c4ea626a249684b79e998ca46ee256a93594, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xab9575425a2911325fb020f9d9c2072c8a5e4ac190ea38bae94e2d986bf91cb7, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x2938de8da6468ba91c916305d9d14b52a3dceed3dda3842f3fb15104d76c6b1e, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x22d2934df9a5c0fcfd2a70ad75ff067674f027306f32720b8711e97b44c51155, len=625"] -2026-04-20T11:14:34.865166Z DEBUG StfBlueprint::apply_slot{context=Node da_height=345}: sov_chain_state: Setting next visible slot number next_visible_slot_number=290 -2026-04-20T11:14:34.865552Z DEBUG StfBlueprint::apply_slot{context=Node da_height=345}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x1c63c3d9d977fd0f35de7bf7403415a9de3ff5b48d6d950b17327fe8eea506d3}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=7 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:14:34.865778Z DEBUG StfBlueprint::apply_slot{context=Node da_height=345}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5d2a90d3b215fd4f5aace138c342e362589a21ab46bad9b192a5f5b68e4f509f1ce4df10443e2a36f67ddb182423f7a9047a68ad7b4dcf4ddd089d468d740ce9 next_version=345 sesssion_starting_time=49.13µs -2026-04-20T11:14:34.867034Z DEBUG StfBlueprint::apply_slot{context=Node da_height=345}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3a473051b0f5dafbb111cada01701a0830f62ff57302c6d8c4863448c5ac86ad0d64c08d1b4d006ea5b0231fbe65574cdc908e10dcbefc332e49a46d8dfd6bfb next_version=345 time=1.369361ms accesses_build_time=62.769µs finishing_session_time=1.233352ms -2026-04-20T11:14:34.867228Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="2234e09ab1e74f192903e1028eb66eae17d6f08b724cb8a23e546df45f9487f6" -2026-04-20T11:14:34.867243Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="7add7e7eba6583fe367ba4d06c3b354505cb6cc34b2665cce25b3598311b4570" -2026-04-20T11:14:34.867252Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="6b99f61854bd5ec58e82d8ba28422be244f1097594d9bdc5d130306700d1f1e2" -2026-04-20T11:14:34.867272Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="db28d64e98625ed614e2829afceea909bc07bb25a552525543cb42e1b437772d" -2026-04-20T11:14:34.867280Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="92db406fdcfe532914c9c0247238dd3fdd0b67ae47fda38bbafde2a5a61545e4" -2026-04-20T11:14:34.867289Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="1433c30c62971e210ce75f2c5da38b56370e9187fe38f4d85da8d3f2571f14c3" -2026-04-20T11:14:34.867297Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="00d67ce15b1efa2f76ee342bf5983f770cc1232c4791d330536a8596a3327ba2" -2026-04-20T11:14:34.867309Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="764af2328a67261865d83ba0a39d62d0265d5e07a2917e46b1de0937340d116e0b5600901c588924fdea184aa40bcd9c7a19cdb4e43b4216bda5308fef1a0cf8" next_state_root="3a473051b0f5dafbb111cada01701a0830f62ff57302c6d8c4863448c5ac86ad0d64c08d1b4d006ea5b0231fbe65574cdc908e10dcbefc332e49a46d8dfd6bfb" aggregated_proofs=0 proof_receipts=7 -2026-04-20T11:14:34.867889Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=6 min=5 max=6 -2026-04-20T11:14:34.867936Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:14:34.868009Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=123 -2026-04-20T11:14:34.868136Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=300 -2026-04-20T11:14:34.868444Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:14:34.868961Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=300 sequence_number=396 -2026-04-20T11:14:34.868988Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=396 blob_id=2147878767836332158671820444726099642 visible_slot_number_after_increase=300 visible_slots_to_advance=10 -2026-04-20T11:14:34.869008Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=8 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:14:34.869256Z  INFO update_state_task_inner: sov_sequencer::preferred: Recovery: catchup batches sent; sequencer will now wait for the node to process them. We will then re-evaluate if we need to catch up again (if there are so many batches that by the time the node catches up we need to bump the visible_slot_number some more). target_sequence_number=397 -2026-04-20T11:14:34.869311Z DEBUG update_state_task_inner: sov_sequencer::preferred: Recovery: waiting for the node to process sequencer's catchup batches... next_sequence_number_according_to_node=388 target_sequence_number=397 -2026-04-20T11:14:34.870775Z DEBUG manage_blob_submission_inside_task{blob_id=2147878767836332158671820444726099642 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xb37a1d25172836e189a3af721f626e68b60c7964d5175d37f6cba8561c7cf9aa sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=346 include_at=346 bytes=13 time=572.906µs -2026-04-20T11:14:34.879853Z DEBUG compute_state_update{scope="sequencer" rollup_height=128 slot_number=300}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:14:34.879886Z DEBUG sov_stf_runner::runner: Block execution complete time=5.99682513s -2026-04-20T11:14:34.879889Z DEBUG compute_state_update{scope="sequencer" rollup_height=128 slot_number=300}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:14:34.879905Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:14:34.879958Z DEBUG compute_state_update{scope="sequencer" rollup_height=128 slot_number=300}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4819edb44b21416f31960f9c60854eb501cfd248ae58f77f956d438ba4dba8a801dd45a6e9444ccd37bfe17fb1e3ec015ba013dae3f846014fdcd175ea406f5d next_version=340 sesssion_starting_time=10.422023ms -2026-04-20T11:14:34.881283Z DEBUG compute_state_update{scope="sequencer" rollup_height=128 slot_number=300}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a2cd441cc8ffe089b4d95d6fd6f60b82b5ad1c37e60f8156f7af91dc91f27c177 next_version=340 time=11.801714ms accesses_build_time=53.82µs finishing_session_time=1.295461ms -2026-04-20T11:14:35.174966Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8w-Qd-8_TPCjKKDBwuGNgw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:35.181983Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:35.191507Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1043215 cycles -2026-04-20T11:14:35.194014Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 40, 196, 169, 142, 150, 99, 190, 59, 63, 160, 64, 130, 250, 57, 84, 224, 67, 53, 147, 244, 204, 133, 56, 7, 81, 14, 197, 87, 72, 154, 40, 111, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 65, 41, 207, 41, 4, 86, 90, 195, 202, 78, 30, 226, 252, 53, 32, 6, 57, 62, 100, 93, 209, 153, 220, 143, 30, 227, 146, 112, 110, 112, 219, 56, 134, 63, 198, 189, 57, 207, 176, 73, 232, 141, 24, 237, 55, 235, 49, 188, 226, 23, 143, 116, 132, 23, 40, 35, 72, 133, 25, 197, 214, 52, 64, 35, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:35.251466Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:35.251514Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:35.334093Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:35.367669Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LKwDVWEYQXK_UbeizkAaIA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:35.370516Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LKwDVWEYQXK_UbeizkAaIA==: stderr: -2026-04-20T11:14:35.370529Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LKwDVWEYQXK_UbeizkAaIA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:35.370537Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LKwDVWEYQXK_UbeizkAaIA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:35.370546Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LKwDVWEYQXK_UbeizkAaIA==: stderr: stack backtrace: -2026-04-20T11:14:35.370552Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LKwDVWEYQXK_UbeizkAaIA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:35.370558Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LKwDVWEYQXK_UbeizkAaIA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:35.370696Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:35.371422Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:35.371719Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:35.442614Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:35.442663Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:35.442805Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:35.442962Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:35.443006Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:35.443292Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=397 blob_id=2147878768530233127251971793481023623 -2026-04-20T11:14:35.990583Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eUX8NlDoRPqvd_mTIo0RPw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:35.997239Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:36.006443Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1003690 cycles -2026-04-20T11:14:36.009050Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 77, 144, 202, 172, 13, 80, 214, 223, 23, 217, 84, 37, 118, 151, 146, 16, 67, 96, 63, 39, 7, 237, 25, 255, 194, 23, 20, 223, 237, 137, 175, 239, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 82, 13, 156, 63, 91, 164, 133, 32, 118, 80, 131, 243, 108, 133, 203, 216, 18, 223, 146, 38, 216, 113, 167, 173, 35, 71, 152, 220, 239, 47, 147, 191, 155, 61, 36, 110, 53, 97, 188, 161, 69, 127, 242, 86, 103, 117, 126, 15, 160, 150, 133, 165, 247, 208, 28, 224, 143, 86, 221, 16, 153, 164, 52, 85, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:36.065753Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:36.065798Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:36.150704Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:36.184920Z DEBUG sp1_core_executor_runner::native: CHILD sp1_85KzJNlBRPelqRgaXhIf8w==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:36.187762Z DEBUG sp1_core_executor_runner::native: CHILD sp1_85KzJNlBRPelqRgaXhIf8w==: stderr: -2026-04-20T11:14:36.187785Z DEBUG sp1_core_executor_runner::native: CHILD sp1_85KzJNlBRPelqRgaXhIf8w==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:36.187796Z DEBUG sp1_core_executor_runner::native: CHILD sp1_85KzJNlBRPelqRgaXhIf8w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:36.187802Z DEBUG sp1_core_executor_runner::native: CHILD sp1_85KzJNlBRPelqRgaXhIf8w==: stderr: stack backtrace: -2026-04-20T11:14:36.187809Z DEBUG sp1_core_executor_runner::native: CHILD sp1_85KzJNlBRPelqRgaXhIf8w==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:36.187828Z DEBUG sp1_core_executor_runner::native: CHILD sp1_85KzJNlBRPelqRgaXhIf8w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:36.187884Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:36.188674Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:36.188994Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:36.254798Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:36.254844Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:36.255023Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:36.255185Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:36.255249Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:36.255613Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=398 blob_id=2147878769513106366705749876396456867 -2026-04-20T11:14:36.802050Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Fl_PeCX2TyuCeLGnxDn_sg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:36.808778Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:36.819580Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1010517 cycles -2026-04-20T11:14:36.822171Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 50, 217, 71, 14, 253, 145, 188, 52, 74, 187, 94, 54, 131, 91, 223, 200, 59, 179, 173, 130, 63, 11, 113, 89, 117, 162, 255, 184, 32, 198, 229, 211, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 67, 246, 148, 106, 14, 15, 215, 158, 116, 226, 5, 95, 114, 243, 156, 100, 251, 73, 135, 236, 190, 42, 67, 155, 233, 146, 201, 121, 27, 112, 249, 14, 20, 2, 24, 28, 17, 17, 103, 243, 71, 253, 28, 221, 182, 9, 126, 255, 188, 248, 216, 91, 248, 59, 120, 149, 5, 153, 131, 174, 45, 19, 143, 240, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:36.878571Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:36.878615Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:36.963531Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:36.997684Z DEBUG sp1_core_executor_runner::native: CHILD sp1_COMs6EBOSASaN7kmB6oGZg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:37.000527Z DEBUG sp1_core_executor_runner::native: CHILD sp1_COMs6EBOSASaN7kmB6oGZg==: stderr: -2026-04-20T11:14:37.000551Z DEBUG sp1_core_executor_runner::native: CHILD sp1_COMs6EBOSASaN7kmB6oGZg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:37.000561Z DEBUG sp1_core_executor_runner::native: CHILD sp1_COMs6EBOSASaN7kmB6oGZg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:37.000568Z DEBUG sp1_core_executor_runner::native: CHILD sp1_COMs6EBOSASaN7kmB6oGZg==: stderr: stack backtrace: -2026-04-20T11:14:37.000574Z DEBUG sp1_core_executor_runner::native: CHILD sp1_COMs6EBOSASaN7kmB6oGZg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:37.000581Z DEBUG sp1_core_executor_runner::native: CHILD sp1_COMs6EBOSASaN7kmB6oGZg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:37.000691Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:37.001416Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:37.001727Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:37.068951Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:37.068994Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:37.069179Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:37.069347Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:37.069424Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:37.069743Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=399 blob_id=2147878770497107327482097238409196854 -2026-04-20T11:14:37.622765Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RFxamCE0TwKHqwXTF9j2EA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:37.629800Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:37.640205Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1032950 cycles -2026-04-20T11:14:37.643069Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 103, 120, 34, 38, 202, 192, 180, 128, 21, 92, 4, 166, 115, 149, 115, 83, 27, 41, 215, 110, 27, 202, 48, 35, 145, 161, 26, 168, 68, 93, 23, 195, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 71, 130, 148, 96, 223, 9, 110, 91, 36, 14, 172, 251, 62, 113, 155, 32, 213, 143, 29, 77, 71, 197, 10, 200, 29, 203, 222, 211, 180, 118, 2, 111, 126, 50, 212, 224, 181, 62, 90, 80, 167, 14, 26, 4, 158, 237, 182, 48, 151, 73, 210, 153, 75, 232, 173, 10, 251, 153, 212, 190, 118, 28, 221, 232, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:37.700663Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:37.700707Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:37.776207Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:37.811103Z DEBUG sp1_core_executor_runner::native: CHILD sp1_x8DN6fjcTJOl3PsvquCvFw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:37.813929Z DEBUG sp1_core_executor_runner::native: CHILD sp1_x8DN6fjcTJOl3PsvquCvFw==: stderr: -2026-04-20T11:14:37.813944Z DEBUG sp1_core_executor_runner::native: CHILD sp1_x8DN6fjcTJOl3PsvquCvFw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:37.813955Z DEBUG sp1_core_executor_runner::native: CHILD sp1_x8DN6fjcTJOl3PsvquCvFw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:37.813966Z DEBUG sp1_core_executor_runner::native: CHILD sp1_x8DN6fjcTJOl3PsvquCvFw==: stderr: stack backtrace: -2026-04-20T11:14:37.813975Z DEBUG sp1_core_executor_runner::native: CHILD sp1_x8DN6fjcTJOl3PsvquCvFw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:37.813984Z DEBUG sp1_core_executor_runner::native: CHILD sp1_x8DN6fjcTJOl3PsvquCvFw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:37.814143Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:37.814916Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:37.815249Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:37.881671Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:37.881716Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:37.881893Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:37.882063Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:37.882157Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:37.882563Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=400 blob_id=2147878771478765443581930206870181217 -2026-04-20T11:14:38.434360Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tSWlMvgtR9yHQInlTmGxhA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:38.441353Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:38.451630Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1028453 cycles -2026-04-20T11:14:38.454252Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 114, 195, 27, 34, 229, 195, 52, 72, 23, 233, 5, 37, 191, 241, 53, 130, 129, 164, 158, 252, 105, 96, 131, 160, 25, 130, 205, 3, 165, 234, 175, 246, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 119, 235, 239, 160, 243, 254, 253, 217, 229, 204, 83, 152, 120, 89, 207, 241, 189, 162, 145, 133, 64, 240, 103, 229, 189, 10, 16, 181, 175, 26, 172, 140, 61, 129, 96, 17, 84, 78, 106, 204, 56, 32, 85, 225, 65, 109, 56, 133, 8, 225, 164, 164, 190, 155, 6, 69, 86, 129, 22, 116, 228, 100, 48, 66, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:38.511368Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:38.511413Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:38.588697Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:38.622984Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EqwpWbHETlGNGpaZMfqHrQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:38.625810Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EqwpWbHETlGNGpaZMfqHrQ==: stderr: -2026-04-20T11:14:38.625824Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EqwpWbHETlGNGpaZMfqHrQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:38.625833Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EqwpWbHETlGNGpaZMfqHrQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:38.625839Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EqwpWbHETlGNGpaZMfqHrQ==: stderr: stack backtrace: -2026-04-20T11:14:38.625847Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EqwpWbHETlGNGpaZMfqHrQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:38.625853Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EqwpWbHETlGNGpaZMfqHrQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:38.625985Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:38.626682Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:38.626971Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:38.692924Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:38.692969Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:38.693147Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:38.693332Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:38.693417Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:38.693934Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=401 blob_id=2147878772460417618579677848507382624 -2026-04-20T11:14:39.255063Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kHI-B8DQTPyPr_JqZDnwdg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:39.262097Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:39.271897Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1035367 cycles -2026-04-20T11:14:39.274637Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 14, 52, 133, 173, 37, 70, 211, 204, 186, 128, 117, 23, 229, 103, 3, 51, 131, 100, 216, 178, 97, 159, 73, 101, 214, 163, 203, 177, 218, 42, 27, 158, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 17, 48, 210, 49, 254, 222, 164, 24, 146, 64, 87, 104, 240, 115, 220, 82, 39, 177, 34, 125, 35, 167, 253, 101, 99, 190, 109, 86, 129, 105, 80, 172, 152, 2, 254, 162, 152, 124, 132, 205, 13, 138, 136, 9, 216, 174, 212, 92, 204, 254, 210, 221, 3, 56, 2, 188, 178, 241, 63, 62, 59, 37, 241, 129, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:39.333343Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:39.333388Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:39.400189Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:39.437843Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ES-Vp7NXRTie5v3DyOaoZQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:39.440704Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ES-Vp7NXRTie5v3DyOaoZQ==: stderr: -2026-04-20T11:14:39.440718Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ES-Vp7NXRTie5v3DyOaoZQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:39.440726Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ES-Vp7NXRTie5v3DyOaoZQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:39.440735Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ES-Vp7NXRTie5v3DyOaoZQ==: stderr: stack backtrace: -2026-04-20T11:14:39.440742Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ES-Vp7NXRTie5v3DyOaoZQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:39.440748Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ES-Vp7NXRTie5v3DyOaoZQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:39.440879Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:39.441645Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:39.441934Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:39.513752Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:39.513796Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:39.513946Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:39.514098Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:39.514152Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:39.514434Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=402 blob_id=2147878773451764848058345531876839863 -2026-04-20T11:14:40.066417Z DEBUG sp1_core_executor_runner::native: CHILD sp1_thUDgGhMQKWsIWmZ1Cmp_g==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:40.073067Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:40.083021Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1000150 cycles -2026-04-20T11:14:40.085475Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 41, 255, 234, 172, 188, 91, 203, 127, 143, 177, 143, 94, 105, 190, 69, 161, 70, 118, 160, 104, 91, 100, 113, 108, 183, 177, 131, 119, 217, 255, 79, 227, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 63, 178, 71, 211, 233, 226, 142, 248, 14, 32, 42, 27, 219, 151, 170, 98, 200, 135, 136, 127, 67, 76, 188, 205, 174, 228, 27, 213, 14, 147, 98, 224, 40, 113, 78, 179, 18, 197, 74, 136, 4, 47, 123, 190, 78, 32, 108, 208, 33, 205, 202, 53, 42, 250, 30, 236, 204, 221, 169, 114, 130, 177, 132, 11, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:40.141367Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:40.141415Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:40.222057Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:40.256137Z DEBUG sp1_core_executor_runner::native: CHILD sp1_e4s774sJS6S1CZeLP-bUhQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:40.258979Z DEBUG sp1_core_executor_runner::native: CHILD sp1_e4s774sJS6S1CZeLP-bUhQ==: stderr: -2026-04-20T11:14:40.258991Z DEBUG sp1_core_executor_runner::native: CHILD sp1_e4s774sJS6S1CZeLP-bUhQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:40.258999Z DEBUG sp1_core_executor_runner::native: CHILD sp1_e4s774sJS6S1CZeLP-bUhQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:40.259007Z DEBUG sp1_core_executor_runner::native: CHILD sp1_e4s774sJS6S1CZeLP-bUhQ==: stderr: stack backtrace: -2026-04-20T11:14:40.259014Z DEBUG sp1_core_executor_runner::native: CHILD sp1_e4s774sJS6S1CZeLP-bUhQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:40.259020Z DEBUG sp1_core_executor_runner::native: CHILD sp1_e4s774sJS6S1CZeLP-bUhQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:40.259201Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:40.259941Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:40.260257Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:40.327454Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:40.327497Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:40.327648Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:40.327813Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:40.327877Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:40.328189Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=403 blob_id=2147878774435819818193979750013687914 -2026-04-20T11:14:40.864674Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=8 height=346 prev_hash=0x696ef6eb781de089ac7dd0fb5c727c5b42594ebf60e765c7fb1b09b5c2066ed4 hash=0x303bbd86481fabd05c0a1e7c4c9f268b4744c608bc7e00efdba48007045d6e0c producing_time=1.327691ms -2026-04-20T11:14:40.871493Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=346 current_state_root="3a473051b0f5dafbb111cada01701a0830f62ff57302c6d8c4863448c5ac86ad0d64c08d1b4d006ea5b0231fbe65574cdc908e10dcbefc332e49a46d8dfd6bfb" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xb37a1d25172836e189a3af721f626e68b60c7964d5175d37f6cba8561c7cf9aa"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x2ce8f6e66d78f82d03013b284f108732b7aabd48614189562eb0d8865e49a7c9, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x60a14a09cff8060feb7bf71813cbfb111952c013306c4462e81354f9e7f77885, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x3e42ed006f8565763950ac8ff12b35b7323d9eea047317a2806467ae70ca9b7e, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd166aa47fd90a2543c980ec512dd13ee8fa8f076c62aec45b26ce7c8c142d401, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0df1a6eb430247ab7fa1b55ce5a478b708559163fdd3858afca21c6f337d9a0c, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x3db5f58de0b5489f5747cd6b2645a746f8c975ed3318539e995d552795907962, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x39776874964edad1280af32e54858abd7bddcc665979ce83c4ead1b954723702, len=625"] -2026-04-20T11:14:40.871964Z DEBUG StfBlueprint::apply_slot{context=Node da_height=346}: sov_chain_state: Setting next visible slot number next_visible_slot_number=300 -2026-04-20T11:14:40.872378Z DEBUG StfBlueprint::apply_slot{context=Node da_height=346}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xb37a1d25172836e189a3af721f626e68b60c7964d5175d37f6cba8561c7cf9aa}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=8 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:14:40.872592Z DEBUG StfBlueprint::apply_slot{context=Node da_height=346}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3a473051b0f5dafbb111cada01701a0830f62ff57302c6d8c4863448c5ac86ad0d64c08d1b4d006ea5b0231fbe65574cdc908e10dcbefc332e49a46d8dfd6bfb next_version=346 sesssion_starting_time=48.429µs -2026-04-20T11:14:40.873728Z DEBUG StfBlueprint::apply_slot{context=Node da_height=346}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a4b56d909c6c7b5bdb358d6136c8167c191be08ad90bff2ab0adf1d6483103862 next_version=346 time=1.245152ms accesses_build_time=59.43µs finishing_session_time=1.093903ms -2026-04-20T11:14:40.873916Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="a5d08378a5b99f17b0d595b79ab4d71f75df7148d08506b477b4f144d311493b" -2026-04-20T11:14:40.873932Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="99bec0a32d3c28657b4482808a8e78a08fcd9a4ac30555ab3e653eea048777d8" -2026-04-20T11:14:40.873941Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="463554b600f64af038549064c9a7fb3119227539d2787d3f83facd97a307978c" -2026-04-20T11:14:40.873949Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="3b190086014122e645d9a635defc9c942a4a970f5d0cea7ec4a35d0eadf4221e" -2026-04-20T11:14:40.873957Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="5d5c954270a4e2fbfe2d7bae4f55c4ea626a249684b79e998ca46ee256a93594" -2026-04-20T11:14:40.873966Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ab9575425a2911325fb020f9d9c2072c8a5e4ac190ea38bae94e2d986bf91cb7" -2026-04-20T11:14:40.873974Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="2938de8da6468ba91c916305d9d14b52a3dceed3dda3842f3fb15104d76c6b1e" -2026-04-20T11:14:40.873982Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="22d2934df9a5c0fcfd2a70ad75ff067674f027306f32720b8711e97b44c51155" -2026-04-20T11:14:40.873994Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="5d2a90d3b215fd4f5aace138c342e362589a21ab46bad9b192a5f5b68e4f509f1ce4df10443e2a36f67ddb182423f7a9047a68ad7b4dcf4ddd089d468d740ce9" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a4b56d909c6c7b5bdb358d6136c8167c191be08ad90bff2ab0adf1d6483103862" aggregated_proofs=0 proof_receipts=8 -2026-04-20T11:14:40.874194Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zXkgbogaTNmuiir1wy8wVA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:40.874552Z DEBUG update_state_task_inner: sov_sequencer::preferred: Recovery: waiting for the node to process sequencer's catchup batches... next_sequence_number_according_to_node=397 target_sequence_number=397 -2026-04-20T11:14:40.874588Z  INFO update_state_task_inner: sov_sequencer::preferred: Node sequence number caught up to our recovery batches. The sequencer may have finished recovery, or we may need to send another round of batches if catching up this far took too long -2026-04-20T11:14:40.874626Z DEBUG update_state_task_inner: sov_sequencer::preferred: Calculating amount of batches to send deferred_slots_count=109 maximum_delta=54 minimum_delta=43 current_catchup_delta=45 current_visible_slot_number=300 increase_per_batch=10 -2026-04-20T11:14:40.874639Z  INFO update_state_task_inner: sov_sequencer::preferred: Recovery: no need to send any more batches! min_batches_to_send=0 max_batches_to_send=1 -2026-04-20T11:14:40.874648Z  INFO update_state_task_inner: sov_sequencer::preferred: Sequencer exiting recovery and resuming normal operation. info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 346, latest_finalized_slot_number: 345, sync_status: Synced { synced_da_height: 345 }, .. } -2026-04-20T11:14:40.874717Z DEBUG sov_sequencer::preferred::block_executor: Replacing state for block executor old=019daa98-e042-7e80-b124-604db064d2bf new=019daa99-846a-7e41-a2ef-47d6edd4cf78 -2026-04-20T11:14:40.880690Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:40.888886Z DEBUG sov_stf_runner::runner: Block execution complete time=6.008982562s -2026-04-20T11:14:40.888915Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:14:40.890862Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 990474 cycles -2026-04-20T11:14:40.893300Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 32, 205, 224, 117, 193, 14, 90, 37, 160, 255, 58, 107, 180, 139, 95, 100, 19, 116, 214, 209, 201, 123, 218, 5, 159, 187, 237, 213, 36, 247, 236, 174, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 96, 203, 190, 24, 108, 11, 162, 93, 22, 19, 6, 231, 38, 162, 221, 24, 93, 87, 27, 228, 186, 20, 173, 140, 136, 139, 13, 174, 32, 246, 35, 109, 7, 157, 60, 241, 140, 2, 109, 100, 50, 237, 2, 168, 6, 237, 42, 255, 113, 104, 252, 177, 242, 105, 172, 222, 27, 237, 212, 129, 210, 98, 149, 144, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:40.949350Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:40.949393Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:41.035132Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:41.069909Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JMGEstSZReqlU6R-843KcA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:41.072739Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JMGEstSZReqlU6R-843KcA==: stderr: -2026-04-20T11:14:41.072754Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JMGEstSZReqlU6R-843KcA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:41.072763Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JMGEstSZReqlU6R-843KcA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:41.072772Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JMGEstSZReqlU6R-843KcA==: stderr: stack backtrace: -2026-04-20T11:14:41.072779Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JMGEstSZReqlU6R-843KcA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:41.072785Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JMGEstSZReqlU6R-843KcA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:41.072951Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:41.073640Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:41.073934Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:41.141557Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:41.141603Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:41.141728Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:41.141890Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:41.141945Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:41.142361Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=404 blob_id=2147878775419857987592629182163330644 -2026-04-20T11:14:41.691055Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4jG-qpRRR-e1E82nHyOlBQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:41.697965Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:41.708748Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1035602 cycles -2026-04-20T11:14:41.711346Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 84, 151, 75, 201, 34, 165, 153, 163, 244, 119, 198, 159, 52, 120, 230, 226, 176, 212, 53, 116, 162, 253, 237, 25, 101, 89, 128, 234, 251, 216, 81, 165, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 102, 98, 229, 16, 2, 89, 85, 141, 24, 119, 210, 98, 82, 226, 255, 60, 31, 232, 187, 192, 39, 50, 105, 39, 48, 175, 249, 36, 41, 91, 229, 224, 129, 164, 34, 69, 165, 238, 157, 157, 186, 197, 5, 118, 171, 141, 143, 91, 220, 53, 59, 39, 55, 19, 209, 184, 7, 198, 165, 15, 18, 61, 116, 81, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:41.768231Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:41.768276Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:41.848826Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:41.884155Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9WGRnNFaS7qZcqQV7IT7Lg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:41.886976Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9WGRnNFaS7qZcqQV7IT7Lg==: stderr: -2026-04-20T11:14:41.886990Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9WGRnNFaS7qZcqQV7IT7Lg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:41.886998Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9WGRnNFaS7qZcqQV7IT7Lg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:41.887004Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9WGRnNFaS7qZcqQV7IT7Lg==: stderr: stack backtrace: -2026-04-20T11:14:41.887013Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9WGRnNFaS7qZcqQV7IT7Lg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:41.887019Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9WGRnNFaS7qZcqQV7IT7Lg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:41.887166Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:41.887916Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:41.888208Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:41.953768Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:41.953811Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:41.953993Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:41.954155Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:41.954243Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:41.954660Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=405 blob_id=2147878776402758674854946451585715233 -2026-04-20T11:14:42.517204Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YkL6LN5fSSGEsEL39YTYwQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:42.523912Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:42.537307Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 997118 cycles -2026-04-20T11:14:42.539860Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 4, 89, 87, 45, 117, 237, 243, 139, 90, 200, 122, 7, 236, 132, 0, 143, 250, 144, 13, 165, 26, 84, 0, 87, 167, 194, 249, 111, 19, 25, 150, 111, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 63, 130, 46, 106, 32, 198, 154, 210, 223, 38, 137, 186, 143, 126, 233, 190, 81, 171, 26, 140, 113, 40, 32, 13, 212, 28, 82, 39, 133, 36, 67, 151, 3, 255, 234, 16, 238, 127, 6, 150, 168, 241, 151, 216, 23, 106, 166, 124, 24, 18, 252, 177, 100, 238, 44, 11, 234, 155, 185, 231, 147, 104, 150, 199, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:42.592140Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:42.592185Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:42.661522Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:42.695952Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hqqLZMlQTJuoDtoTVsZRYA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:42.698793Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hqqLZMlQTJuoDtoTVsZRYA==: stderr: -2026-04-20T11:14:42.698816Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hqqLZMlQTJuoDtoTVsZRYA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:42.698826Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hqqLZMlQTJuoDtoTVsZRYA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:42.698833Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hqqLZMlQTJuoDtoTVsZRYA==: stderr: stack backtrace: -2026-04-20T11:14:42.698840Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hqqLZMlQTJuoDtoTVsZRYA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:42.698846Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hqqLZMlQTJuoDtoTVsZRYA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:42.698920Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:42.699743Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:42.700053Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:42.766601Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:42.766646Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:42.766830Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:42.766989Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:42.767056Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:42.767410Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=406 blob_id=2147878777384414372958020841169962943 -2026-04-20T11:14:43.327971Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PfH0cbhUQeq-Pi4Z2oJu4A==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:43.334908Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:43.345405Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1026268 cycles -2026-04-20T11:14:43.347850Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 106, 80, 105, 119, 127, 212, 233, 76, 193, 169, 96, 169, 244, 254, 107, 158, 133, 34, 73, 232, 68, 122, 43, 96, 218, 74, 247, 86, 164, 161, 64, 33, 96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 48, 146, 210, 110, 80, 201, 117, 156, 69, 166, 209, 250, 87, 193, 209, 92, 89, 6, 254, 150, 131, 32, 244, 117, 76, 124, 41, 86, 191, 67, 4, 109, 127, 255, 234, 225, 144, 77, 3, 122, 207, 44, 155, 188, 115, 116, 101, 141, 37, 66, 186, 64, 3, 219, 62, 200, 173, 35, 50, 56, 40, 147, 227, 119, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:43.406143Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:43.406187Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:43.474117Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:43.508111Z DEBUG sp1_core_executor_runner::native: CHILD sp1_V13T1TF8RF6TFV9ShCtxBA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:43.510942Z DEBUG sp1_core_executor_runner::native: CHILD sp1_V13T1TF8RF6TFV9ShCtxBA==: stderr: -2026-04-20T11:14:43.510955Z DEBUG sp1_core_executor_runner::native: CHILD sp1_V13T1TF8RF6TFV9ShCtxBA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:43.510964Z DEBUG sp1_core_executor_runner::native: CHILD sp1_V13T1TF8RF6TFV9ShCtxBA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:43.510970Z DEBUG sp1_core_executor_runner::native: CHILD sp1_V13T1TF8RF6TFV9ShCtxBA==: stderr: stack backtrace: -2026-04-20T11:14:43.510978Z DEBUG sp1_core_executor_runner::native: CHILD sp1_V13T1TF8RF6TFV9ShCtxBA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:43.510984Z DEBUG sp1_core_executor_runner::native: CHILD sp1_V13T1TF8RF6TFV9ShCtxBA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:43.511128Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:43.511908Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:43.512230Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:43.578493Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:43.578541Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:43.578680Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:43.578860Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:43.578928Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:43.579842Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=407 blob_id=2147878778366028804671362637093193179 -2026-04-20T11:14:44.136086Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Y5LfF-PeQ_yXmIJs-IaKEw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:44.159547Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:44.170503Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 3519184 cycles -2026-04-20T11:14:44.173239Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 38, 45, 159, 2, 44, 87, 229, 27, 213, 51, 120, 130, 21, 111, 173, 59, 179, 67, 187, 209, 106, 170, 252, 137, 50, 165, 57, 160, 81, 46, 140, 22, 244, 67, 28, 149, 151, 195, 21, 140, 52, 87, 78, 93, 252, 247, 197, 135, 51, 58, 43, 40, 86, 36, 161, 170, 248, 97, 71, 231, 93, 122, 86, 31, 166, 146, 114, 157, 25, 228, 201, 234, 111, 21, 53, 129, 213, 188, 154, 174, 186, 108, 198, 56, 187, 61, 118, 59, 139, 220, 31, 57, 103, 29, 94, 89, 16, 60, 216, 228, 71, 225, 188, 215, 58, 212, 196, 140, 22, 93, 1, 72, 156, 6, 196, 24, 209, 103, 150, 159, 90, 93, 234, 64, 224, 14, 44, 101, 71, 108, 135, 199, 29, 35, 100, 170, 83, 58, 158, 128, 184, 124, 128, 74, 62, 92, 136, 177, 213, 127, 242, 42, 46, 60, 190, 67, 51, 24, 92, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:44.309965Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:44.309999Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:44.387720Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:44.421520Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TZJkl4vaQu-DS_3c0W_WDw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:44.424332Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TZJkl4vaQu-DS_3c0W_WDw==: stderr: -2026-04-20T11:14:44.424356Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TZJkl4vaQu-DS_3c0W_WDw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:44.424366Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TZJkl4vaQu-DS_3c0W_WDw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:44.424373Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TZJkl4vaQu-DS_3c0W_WDw==: stderr: stack backtrace: -2026-04-20T11:14:44.424380Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TZJkl4vaQu-DS_3c0W_WDw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:44.424386Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TZJkl4vaQu-DS_3c0W_WDw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:44.424440Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:44.425245Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:44.425556Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:44.451831Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:44.451852Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:44.452000Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:44.452204Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:44.452302Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:44.452579Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=408 blob_id=2147878779422657440611668422752400905 -2026-04-20T11:14:45.010204Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LJPs2plUTgKyMmucLDtOWA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:45.029792Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:45.040415Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2723344 cycles -2026-04-20T11:14:45.043019Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [39, 230, 193, 231, 80, 155, 49, 215, 250, 0, 39, 234, 25, 22, 190, 179, 99, 5, 53, 102, 173, 109, 136, 62, 140, 132, 195, 160, 223, 242, 189, 34, 54, 0, 40, 7, 250, 38, 252, 78, 54, 161, 88, 107, 233, 5, 30, 111, 173, 27, 184, 144, 42, 88, 50, 88, 91, 157, 71, 92, 161, 23, 205, 117, 26, 153, 185, 90, 247, 248, 215, 103, 44, 109, 202, 182, 73, 175, 129, 36, 207, 184, 218, 30, 35, 231, 182, 234, 121, 170, 203, 240, 128, 246, 116, 14, 89, 203, 10, 18, 126, 6, 151, 251, 41, 227, 205, 104, 205, 81, 42, 194, 222, 144, 25, 230, 236, 41, 135, 246, 73, 213, 62, 167, 169, 37, 166, 183, 227, 91, 110, 13, 80, 147, 64, 133, 94, 22, 80, 219, 155, 55, 106, 147, 208, 217, 143, 145, 203, 39, 68, 44, 210, 244, 70, 83, 217, 81, 166, 81, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:45.158993Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:45.159028Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:45.259825Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:45.293600Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hehnOz1_Q5qqHbHwmrqiuQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:45.296414Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hehnOz1_Q5qqHbHwmrqiuQ==: stderr: -2026-04-20T11:14:45.296428Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hehnOz1_Q5qqHbHwmrqiuQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:45.296436Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hehnOz1_Q5qqHbHwmrqiuQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:45.296444Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hehnOz1_Q5qqHbHwmrqiuQ==: stderr: stack backtrace: -2026-04-20T11:14:45.296451Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hehnOz1_Q5qqHbHwmrqiuQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:45.296458Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hehnOz1_Q5qqHbHwmrqiuQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:45.296640Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:45.297355Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:45.297649Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:45.362901Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:45.362945Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:45.363120Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:45.363353Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:45.363441Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:45.363813Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=409 blob_id=2147878780523945197514769840892103352 -2026-04-20T11:14:45.925639Z DEBUG sp1_core_executor_runner::native: CHILD sp1_la8qT4YATAWcnKUq1xj_Wg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:45.955140Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:45.966865Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4465290 cycles -2026-04-20T11:14:45.969671Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [52, 64, 12, 114, 126, 53, 120, 69, 96, 227, 20, 52, 121, 159, 125, 175, 254, 224, 0, 221, 80, 45, 63, 151, 110, 62, 6, 101, 15, 190, 8, 218, 40, 52, 219, 113, 210, 190, 194, 32, 94, 195, 9, 179, 233, 18, 91, 253, 226, 100, 176, 55, 26, 231, 157, 135, 91, 110, 136, 192, 245, 154, 39, 8, 13, 238, 77, 159, 13, 108, 70, 1, 6, 111, 46, 154, 112, 57, 94, 164, 165, 250, 240, 82, 197, 50, 131, 91, 23, 25, 28, 70, 254, 95, 146, 155, 51, 181, 196, 124, 128, 120, 210, 171, 253, 108, 154, 82, 242, 62, 215, 144, 4, 203, 44, 81, 96, 189, 48, 232, 230, 82, 143, 12, 184, 49, 29, 199, 223, 242, 100, 153, 89, 155, 171, 125, 247, 9, 219, 50, 41, 48, 198, 58, 179, 110, 21, 255, 138, 145, 254, 205, 159, 65, 116, 22, 39, 203, 220, 255, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:46.129296Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:46.129335Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:46.170971Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:46.204742Z DEBUG sp1_core_executor_runner::native: CHILD sp1_k5XEJ4l9Sx-6KCkbw9JkGw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:46.207559Z DEBUG sp1_core_executor_runner::native: CHILD sp1_k5XEJ4l9Sx-6KCkbw9JkGw==: stderr: -2026-04-20T11:14:46.207572Z DEBUG sp1_core_executor_runner::native: CHILD sp1_k5XEJ4l9Sx-6KCkbw9JkGw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:46.207581Z DEBUG sp1_core_executor_runner::native: CHILD sp1_k5XEJ4l9Sx-6KCkbw9JkGw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:46.207590Z DEBUG sp1_core_executor_runner::native: CHILD sp1_k5XEJ4l9Sx-6KCkbw9JkGw==: stderr: stack backtrace: -2026-04-20T11:14:46.207597Z DEBUG sp1_core_executor_runner::native: CHILD sp1_k5XEJ4l9Sx-6KCkbw9JkGw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:46.207603Z DEBUG sp1_core_executor_runner::native: CHILD sp1_k5XEJ4l9Sx-6KCkbw9JkGw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:46.207761Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:46.208471Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:46.208781Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:46.276066Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:46.276110Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:46.276268Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:46.276516Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:46.276623Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:46.276953Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=410 blob_id=2147878781627757597010446565480271917 -2026-04-20T11:14:46.833560Z DEBUG sp1_core_executor_runner::native: CHILD sp1_L5rS0h0uSbGs4TEkGW9Drw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:46.861580Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:46.867335Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=7 height=347 prev_hash=0x303bbd86481fabd05c0a1e7c4c9f268b4744c608bc7e00efdba48007045d6e0c hash=0x30ee46163cfdd250e4eb3b9f1b6f097e5013ecaf7ba609051e1edfee8027d995 producing_time=1.201332ms -2026-04-20T11:14:46.869983Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=347 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a4b56d909c6c7b5bdb358d6136c8167c191be08ad90bff2ab0adf1d6483103862" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x5d6962c58248aa86a4ca7d2755eb19ace10c68799e7860fb949ce88355540045, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd14b2974efcdf69686ffa5f7eafde05647f28ef3f52794ff142da1d9a9639a44, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xefb2459000e28aee08091c325a46edff4bc43c3203d0991b50a2be48f3bfd0b7, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xebb5a91e27b9b567623eeaa69befa56b0dbe867c1b4e388b2a81627a70b81156, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xdcf4611839411085a4eed12166cfbffc044456efedb497958415f8a32d50b870, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x795178c749779212cfeb93b18f4cd7e6cc3f9922e9626a9958bd6cecccfdfb44, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x7c3b960bd1249269f7df2b2ac2cae32661d6c54b684186cd4edc33a6e6852470, len=625"] -2026-04-20T11:14:46.870407Z DEBUG StfBlueprint::apply_slot{context=Node da_height=347}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a4b56d909c6c7b5bdb358d6136c8167c191be08ad90bff2ab0adf1d6483103862 next_version=347 sesssion_starting_time=51.85µs -2026-04-20T11:14:46.871403Z DEBUG StfBlueprint::apply_slot{context=Node da_height=347}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a68c2d0c1b5d12d2a6b2b47200b172a80ba39022b14ea933feceb240479ceb29f next_version=347 time=1.091283ms accesses_build_time=42.36µs finishing_session_time=961.014µs -2026-04-20T11:14:46.871477Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3a473051b0f5dafbb111cada01701a0830f62ff57302c6d8c4863448c5ac86ad0d64c08d1b4d006ea5b0231fbe65574cdc908e10dcbefc332e49a46d8dfd6bfb" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a68c2d0c1b5d12d2a6b2b47200b172a80ba39022b14ea933feceb240479ceb29f" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:14:46.872078Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 347, latest_finalized_slot_number: 346, sync_status: Synced { synced_da_height: 346 }, .. } -2026-04-20T11:14:46.872165Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Proceeding with `replay_soft_confirmations_on_top_of_node_state` initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: true } -2026-04-20T11:14:46.872194Z DEBUG sov_sequencer::preferred::transaction_subscriptions: Cleaning and overwriting transaction cache up to 0 -2026-04-20T11:14:46.872240Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Populating pinned cache for replay. This may take a few moments. inner_status=InitialStatus { is_startup: false, is_resync: false, is_recover: true } -2026-04-20T11:14:46.872254Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Pinned cache populated. Starting transaction replay. -2026-04-20T11:14:46.872420Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Completed proofs found without a completed batch; carrying them into final catchup pending_completed_proofs=14 next_sequence_number=397 -2026-04-20T11:14:46.872538Z DEBUG sov_sequencer::preferred::block_executor: Replacing state for block executor old=019daa99-846a-7e41-a2ef-47d6edd4cf78 new=019daa99-9bd8-7e71-bff6-908cc5339cfd -2026-04-20T11:14:46.873375Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4356182 cycles -2026-04-20T11:14:46.875900Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [126, 58, 176, 2, 222, 33, 77, 199, 227, 173, 156, 187, 31, 254, 128, 215, 227, 53, 160, 132, 10, 211, 158, 130, 251, 109, 51, 28, 213, 175, 53, 65, 41, 163, 216, 33, 230, 37, 107, 7, 50, 252, 239, 139, 73, 172, 4, 99, 49, 80, 69, 178, 245, 6, 159, 245, 38, 147, 229, 118, 173, 35, 152, 221, 19, 43, 160, 5, 200, 234, 12, 195, 171, 5, 179, 157, 27, 46, 133, 84, 77, 116, 196, 202, 64, 174, 56, 58, 247, 63, 190, 145, 107, 196, 204, 194, 112, 150, 119, 227, 17, 244, 96, 57, 222, 151, 104, 168, 203, 99, 195, 167, 211, 49, 251, 178, 220, 168, 226, 222, 11, 215, 220, 21, 22, 244, 111, 206, 209, 50, 251, 37, 115, 246, 64, 1, 250, 143, 202, 24, 150, 139, 16, 181, 222, 23, 102, 120, 134, 42, 10, 158, 19, 160, 15, 81, 12, 204, 153, 165, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:46.887903Z DEBUG sov_stf_runner::runner: Block execution complete time=5.998989777s -2026-04-20T11:14:46.887943Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:14:47.032248Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:47.032286Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:47.084800Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:47.118628Z DEBUG sp1_core_executor_runner::native: CHILD sp1_6TXfupafQ327b1dBvBJiAg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:47.121450Z DEBUG sp1_core_executor_runner::native: CHILD sp1_6TXfupafQ327b1dBvBJiAg==: stderr: -2026-04-20T11:14:47.121473Z DEBUG sp1_core_executor_runner::native: CHILD sp1_6TXfupafQ327b1dBvBJiAg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:47.121483Z DEBUG sp1_core_executor_runner::native: CHILD sp1_6TXfupafQ327b1dBvBJiAg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:47.121491Z DEBUG sp1_core_executor_runner::native: CHILD sp1_6TXfupafQ327b1dBvBJiAg==: stderr: stack backtrace: -2026-04-20T11:14:47.121511Z DEBUG sp1_core_executor_runner::native: CHILD sp1_6TXfupafQ327b1dBvBJiAg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:47.121518Z DEBUG sp1_core_executor_runner::native: CHILD sp1_6TXfupafQ327b1dBvBJiAg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:47.121622Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:47.122621Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:47.122935Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:47.188936Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:47.188986Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:47.189129Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:47.189347Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:47.189425Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:47.189730Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=411 blob_id=2147878782731495671826793503487461497 -2026-04-20T11:14:47.746257Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gMEmfx1iRFOpTnqGFv4F9Q==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:47.775510Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:47.788123Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4588335 cycles -2026-04-20T11:14:47.790908Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [111, 114, 248, 155, 42, 136, 70, 151, 73, 17, 150, 68, 93, 3, 42, 121, 185, 37, 80, 39, 234, 161, 33, 232, 136, 24, 232, 255, 100, 113, 58, 222, 114, 56, 58, 47, 255, 9, 200, 128, 201, 138, 135, 42, 41, 223, 218, 23, 72, 19, 44, 115, 163, 86, 36, 154, 119, 219, 202, 144, 20, 71, 3, 251, 31, 85, 17, 129, 205, 234, 48, 32, 250, 115, 154, 228, 55, 14, 227, 73, 203, 231, 77, 81, 105, 55, 234, 200, 217, 51, 202, 28, 148, 132, 8, 56, 99, 61, 223, 51, 185, 74, 166, 14, 251, 225, 5, 166, 241, 242, 0, 249, 231, 177, 187, 45, 40, 28, 117, 39, 42, 237, 3, 192, 242, 122, 132, 46, 146, 9, 44, 34, 115, 110, 169, 108, 128, 40, 100, 151, 60, 192, 179, 137, 217, 90, 114, 233, 250, 228, 90, 167, 243, 164, 115, 69, 24, 253, 239, 52, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:47.952905Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:47.952943Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:47.998130Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:48.031632Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JvKRmu7RTMGPrIZ1F1HADw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:48.034471Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JvKRmu7RTMGPrIZ1F1HADw==: stderr: -2026-04-20T11:14:48.034496Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JvKRmu7RTMGPrIZ1F1HADw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:48.034506Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JvKRmu7RTMGPrIZ1F1HADw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:48.034513Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JvKRmu7RTMGPrIZ1F1HADw==: stderr: stack backtrace: -2026-04-20T11:14:48.034520Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JvKRmu7RTMGPrIZ1F1HADw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:48.034526Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JvKRmu7RTMGPrIZ1F1HADw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:48.034619Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:48.035404Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:48.035694Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:48.105199Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:48.105256Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:48.105465Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:48.105697Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:48.105787Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:48.106106Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=412 blob_id=2147878783838850785226676308974525225 -2026-04-20T11:14:48.668982Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XUPY8OKyTQyXSga7DhzMkw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:48.698602Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:48.710535Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4611031 cycles -2026-04-20T11:14:48.713069Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [58, 74, 138, 230, 185, 226, 70, 247, 204, 67, 50, 84, 91, 89, 227, 227, 22, 113, 153, 77, 232, 61, 123, 215, 240, 146, 70, 213, 61, 70, 61, 75, 125, 102, 108, 138, 63, 247, 121, 109, 70, 19, 205, 78, 156, 177, 251, 76, 244, 200, 144, 2, 134, 192, 149, 189, 148, 225, 119, 141, 18, 117, 120, 239, 111, 0, 74, 95, 209, 222, 133, 3, 89, 155, 3, 247, 128, 228, 142, 8, 211, 4, 168, 252, 213, 115, 18, 122, 218, 165, 55, 26, 59, 153, 29, 171, 3, 214, 188, 170, 184, 83, 106, 130, 172, 14, 44, 190, 38, 60, 232, 116, 196, 12, 91, 81, 146, 240, 28, 139, 122, 182, 24, 220, 138, 89, 65, 229, 18, 203, 44, 224, 8, 0, 19, 139, 39, 26, 109, 208, 215, 198, 104, 190, 51, 134, 88, 254, 141, 24, 219, 99, 197, 188, 168, 87, 190, 133, 253, 101, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:48.879542Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:48.879579Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:48.913713Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:48.949630Z DEBUG sp1_core_executor_runner::native: CHILD sp1_a_UzAH_qT-ejf3Wp7LwTDg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:48.952481Z DEBUG sp1_core_executor_runner::native: CHILD sp1_a_UzAH_qT-ejf3Wp7LwTDg==: stderr: -2026-04-20T11:14:48.952506Z DEBUG sp1_core_executor_runner::native: CHILD sp1_a_UzAH_qT-ejf3Wp7LwTDg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:48.952517Z DEBUG sp1_core_executor_runner::native: CHILD sp1_a_UzAH_qT-ejf3Wp7LwTDg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:48.952523Z DEBUG sp1_core_executor_runner::native: CHILD sp1_a_UzAH_qT-ejf3Wp7LwTDg==: stderr: stack backtrace: -2026-04-20T11:14:48.952530Z DEBUG sp1_core_executor_runner::native: CHILD sp1_a_UzAH_qT-ejf3Wp7LwTDg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:48.952537Z DEBUG sp1_core_executor_runner::native: CHILD sp1_a_UzAH_qT-ejf3Wp7LwTDg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:48.952656Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:48.953405Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:48.953723Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:49.020125Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:49.020171Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:49.020347Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:49.020564Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:49.020632Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:49.021211Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=413 blob_id=2147878784944980684409655190544413822 -2026-04-20T11:14:49.586189Z DEBUG sp1_core_executor_runner::native: CHILD sp1_dH1WID-eTDqLDM4LihXckQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:49.596371Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:49.607095Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1503861 cycles -2026-04-20T11:14:49.609778Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 17, 51, 115, 141, 157, 207, 111, 125, 182, 115, 103, 147, 114, 4, 159, 189, 169, 150, 202, 198, 228, 84, 93, 7, 0, 239, 188, 39, 212, 210, 180, 220, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 56, 135, 15, 88, 110, 74, 129, 140, 178, 127, 229, 92, 207, 118, 55, 83, 64, 39, 130, 32, 39, 181, 191, 114, 231, 15, 215, 21, 203, 60, 143, 177, 17, 12, 198, 118, 114, 20, 208, 152, 126, 10, 118, 37, 217, 159, 167, 6, 94, 59, 234, 179, 185, 87, 253, 234, 51, 33, 116, 217, 203, 104, 220, 128, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:49.691406Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:49.691439Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:49.728228Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:49.760894Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QanvMYT_RpmXJLK6TBu5Jw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:49.763719Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QanvMYT_RpmXJLK6TBu5Jw==: stderr: -2026-04-20T11:14:49.763731Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QanvMYT_RpmXJLK6TBu5Jw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:49.763739Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QanvMYT_RpmXJLK6TBu5Jw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:49.763747Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QanvMYT_RpmXJLK6TBu5Jw==: stderr: stack backtrace: -2026-04-20T11:14:49.763753Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QanvMYT_RpmXJLK6TBu5Jw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:49.763772Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QanvMYT_RpmXJLK6TBu5Jw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:49.763876Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:49.764660Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:49.764975Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:49.832247Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:49.832290Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:49.832451Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:49.832628Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:49.832700Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:49.833027Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=414 blob_id=2147878785926639110221000611292424217 -2026-04-20T11:14:50.386655Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bxYL5g0YRN-jB25l3BAgPA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:50.396038Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:50.406875Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1442345 cycles -2026-04-20T11:14:50.409666Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 97, 121, 254, 101, 135, 14, 231, 163, 60, 198, 241, 215, 220, 121, 255, 107, 66, 0, 199, 89, 109, 148, 77, 36, 139, 141, 215, 8, 168, 134, 63, 160, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 9, 179, 24, 101, 20, 46, 179, 151, 228, 201, 227, 60, 58, 178, 162, 67, 183, 169, 132, 114, 200, 105, 170, 53, 78, 28, 196, 197, 57, 13, 28, 206, 110, 137, 35, 44, 68, 249, 99, 183, 5, 155, 3, 224, 139, 92, 82, 137, 53, 161, 111, 186, 159, 174, 55, 31, 185, 6, 174, 154, 30, 9, 135, 90, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:50.488874Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:50.488923Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:50.539851Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:50.574828Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qJY72GDaTSmPGIrsVDRfNg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:50.577660Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qJY72GDaTSmPGIrsVDRfNg==: stderr: -2026-04-20T11:14:50.577672Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qJY72GDaTSmPGIrsVDRfNg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:50.577680Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qJY72GDaTSmPGIrsVDRfNg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:50.577688Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qJY72GDaTSmPGIrsVDRfNg==: stderr: stack backtrace: -2026-04-20T11:14:50.577694Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qJY72GDaTSmPGIrsVDRfNg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:50.577700Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qJY72GDaTSmPGIrsVDRfNg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:50.577826Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:50.578626Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:50.578940Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:50.645123Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:50.645169Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:50.645371Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:50.645570Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:50.645643Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:50.645982Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=415 blob_id=2147878786909551530288022785067984173 -2026-04-20T11:14:51.206609Z DEBUG sp1_core_executor_runner::native: CHILD sp1_6OkpI7NRRY6I_vqBH_DbjQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:51.216881Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:51.227796Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1505536 cycles -2026-04-20T11:14:51.230373Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 103, 199, 70, 9, 124, 61, 128, 2, 216, 138, 104, 114, 76, 246, 172, 46, 74, 221, 169, 6, 3, 93, 95, 14, 44, 10, 30, 190, 249, 107, 134, 198, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 122, 79, 106, 131, 6, 40, 37, 234, 20, 44, 195, 58, 50, 90, 88, 0, 181, 152, 41, 185, 200, 163, 158, 199, 235, 21, 138, 188, 5, 230, 60, 171, 52, 198, 41, 251, 34, 215, 130, 79, 231, 99, 18, 176, 129, 160, 24, 43, 121, 20, 83, 209, 87, 105, 55, 61, 197, 63, 122, 89, 247, 17, 141, 75, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:51.308890Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:51.308925Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:51.353936Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:51.388635Z DEBUG sp1_core_executor_runner::native: CHILD sp1_frhTu92LT66xGwqe2k7nPg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:51.391476Z DEBUG sp1_core_executor_runner::native: CHILD sp1_frhTu92LT66xGwqe2k7nPg==: stderr: -2026-04-20T11:14:51.391501Z DEBUG sp1_core_executor_runner::native: CHILD sp1_frhTu92LT66xGwqe2k7nPg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:51.391511Z DEBUG sp1_core_executor_runner::native: CHILD sp1_frhTu92LT66xGwqe2k7nPg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:51.391518Z DEBUG sp1_core_executor_runner::native: CHILD sp1_frhTu92LT66xGwqe2k7nPg==: stderr: stack backtrace: -2026-04-20T11:14:51.391524Z DEBUG sp1_core_executor_runner::native: CHILD sp1_frhTu92LT66xGwqe2k7nPg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:51.391531Z DEBUG sp1_core_executor_runner::native: CHILD sp1_frhTu92LT66xGwqe2k7nPg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:51.391644Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:51.392414Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:51.392703Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:51.463689Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:51.463735Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:51.463910Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:51.464069Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:51.464157Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:51.464498Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=416 blob_id=2147878787898381444700403051177318925 -2026-04-20T11:14:52.017027Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M81HAiXISuSdRGj0FHWVTg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:52.024185Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:52.033751Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1071476 cycles -2026-04-20T11:14:52.036543Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 49, 151, 103, 234, 42, 173, 217, 203, 201, 86, 174, 201, 82, 55, 149, 251, 15, 206, 251, 18, 172, 127, 153, 159, 0, 152, 146, 151, 189, 97, 19, 44, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 27, 98, 135, 220, 248, 136, 47, 219, 160, 27, 209, 77, 127, 107, 190, 247, 220, 106, 163, 227, 184, 144, 242, 255, 164, 108, 157, 17, 41, 240, 169, 194, 140, 237, 38, 218, 205, 111, 83, 96, 40, 220, 52, 177, 177, 199, 162, 208, 144, 236, 145, 124, 246, 103, 163, 168, 41, 240, 87, 202, 175, 38, 41, 187, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:52.096555Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:52.096600Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:52.172436Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:52.206205Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wL4hf1bETtGs6H6PsH4jFA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:52.209054Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wL4hf1bETtGs6H6PsH4jFA==: stderr: -2026-04-20T11:14:52.209066Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wL4hf1bETtGs6H6PsH4jFA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:52.209074Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wL4hf1bETtGs6H6PsH4jFA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:52.209082Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wL4hf1bETtGs6H6PsH4jFA==: stderr: stack backtrace: -2026-04-20T11:14:52.209088Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wL4hf1bETtGs6H6PsH4jFA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:52.209094Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wL4hf1bETtGs6H6PsH4jFA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:52.209247Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:52.209984Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:52.210300Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:52.276352Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:52.276398Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:52.276612Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:52.276773Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:52.276839Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:52.277260Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=417 blob_id=2147878788881300687854008893736122421 -2026-04-20T11:14:52.825631Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zAIJi9DBRzWHdQtrnXyp9g==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:52.832669Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:52.843245Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1062967 cycles -2026-04-20T11:14:52.846341Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 84, 202, 227, 11, 107, 103, 251, 82, 190, 80, 50, 5, 180, 4, 218, 88, 170, 255, 132, 146, 219, 94, 213, 99, 109, 190, 79, 206, 246, 27, 60, 80, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 17, 131, 94, 153, 213, 165, 153, 37, 201, 133, 151, 56, 10, 69, 166, 4, 26, 196, 250, 194, 58, 16, 106, 164, 187, 84, 88, 111, 61, 59, 33, 218, 111, 84, 116, 12, 99, 151, 63, 122, 251, 73, 177, 58, 175, 195, 71, 192, 170, 80, 234, 15, 214, 77, 241, 53, 230, 52, 205, 16, 186, 76, 137, 6, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:52.869901Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=7 height=348 prev_hash=0x30ee46163cfdd250e4eb3b9f1b6f097e5013ecaf7ba609051e1edfee8027d995 hash=0x152588e726b66af11440485659d0c5c8edf88ae36d9d5aa07c90a8e5f84dcc53 producing_time=1.222302ms -2026-04-20T11:14:52.879673Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=348 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a68c2d0c1b5d12d2a6b2b47200b172a80ba39022b14ea933feceb240479ceb29f" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x8a9eafaabe07f3b067ec9c61a55dfa6ff9402cdeca6a47e4db34f31fccb118af, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc6d32ad69f3c21c54b40bffc97bb362ee5a1046b7c04bb117936bb65a4379ef7, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa0e2992a8ffcd4e2899e1a0685f365b72ef58a56c4fa9327fad165fc978df1dc, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xbacbafc4db6605bacee8546c825ebc8b2385569f3b0b907f8648396a05803be1, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x923850eff1d94e219007485565387b7728c6dc94e1859cb8a3568037aec330e8, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xab601194f0354023fff0995686e938d193773e91e2f7f67f81c814b3070b846a, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9d8893fe267122786344d12560448e3c752183dc5cdea497e654fc1722703c3b, len=625"] -2026-04-20T11:14:52.880099Z DEBUG StfBlueprint::apply_slot{context=Node da_height=348}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a68c2d0c1b5d12d2a6b2b47200b172a80ba39022b14ea933feceb240479ceb29f next_version=348 sesssion_starting_time=51.269µs -2026-04-20T11:14:52.880995Z DEBUG StfBlueprint::apply_slot{context=Node da_height=348}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a21341ee2e65d27977458b66a3db4a65a74593032dc5c8673757d6640d1b5bd88 next_version=348 time=978.064µs accesses_build_time=29.8µs finishing_session_time=861.385µs -2026-04-20T11:14:52.881084Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a4b56d909c6c7b5bdb358d6136c8167c191be08ad90bff2ab0adf1d6483103862" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a21341ee2e65d27977458b66a3db4a65a74593032dc5c8673757d6640d1b5bd88" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:14:52.881705Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 348, latest_finalized_slot_number: 347, sync_status: Synced { synced_da_height: 347 }, .. } -2026-04-20T11:14:52.881806Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 348, latest_finalized_slot_number: 347, sync_status: Synced { synced_da_height: 347 }, .. } -2026-04-20T11:14:52.881884Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:14:52.888493Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000553096s -2026-04-20T11:14:52.888517Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:14:52.904791Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:52.904835Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:52.984853Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:53.019183Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5aszA395QgiihuwLlAT84A==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:53.022005Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5aszA395QgiihuwLlAT84A==: stderr: -2026-04-20T11:14:53.022019Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5aszA395QgiihuwLlAT84A==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:53.022027Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5aszA395QgiihuwLlAT84A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:53.022035Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5aszA395QgiihuwLlAT84A==: stderr: stack backtrace: -2026-04-20T11:14:53.022041Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5aszA395QgiihuwLlAT84A==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:53.022047Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5aszA395QgiihuwLlAT84A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:53.022147Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:53.022948Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:53.023295Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:53.090439Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:53.090486Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:53.090631Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:53.090778Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:53.090829Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:53.091191Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=418 blob_id=2147878789865366028356305479662992732 -2026-04-20T11:14:53.634095Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qy6UpU8QT1KkWdO0gkveaA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:53.641137Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:53.651174Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1066918 cycles -2026-04-20T11:14:53.653820Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 78, 174, 225, 173, 156, 21, 208, 32, 59, 230, 94, 188, 87, 188, 54, 251, 38, 4, 12, 163, 171, 176, 219, 49, 161, 97, 92, 154, 129, 248, 239, 82, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 88, 250, 68, 143, 173, 55, 129, 182, 7, 19, 193, 214, 166, 249, 162, 189, 105, 119, 93, 178, 127, 182, 219, 48, 144, 105, 128, 8, 201, 58, 53, 167, 148, 85, 48, 139, 255, 81, 80, 39, 5, 59, 152, 185, 197, 53, 204, 82, 145, 134, 248, 54, 80, 164, 62, 12, 186, 104, 192, 86, 186, 20, 58, 29, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:53.713498Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:53.713544Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:53.799372Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:53.833835Z DEBUG sp1_core_executor_runner::native: CHILD sp1_DCCjxEJUTMi__YZkr4AUQg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:53.836672Z DEBUG sp1_core_executor_runner::native: CHILD sp1_DCCjxEJUTMi__YZkr4AUQg==: stderr: -2026-04-20T11:14:53.836685Z DEBUG sp1_core_executor_runner::native: CHILD sp1_DCCjxEJUTMi__YZkr4AUQg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:53.836693Z DEBUG sp1_core_executor_runner::native: CHILD sp1_DCCjxEJUTMi__YZkr4AUQg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:53.836701Z DEBUG sp1_core_executor_runner::native: CHILD sp1_DCCjxEJUTMi__YZkr4AUQg==: stderr: stack backtrace: -2026-04-20T11:14:53.836707Z DEBUG sp1_core_executor_runner::native: CHILD sp1_DCCjxEJUTMi__YZkr4AUQg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:53.836712Z DEBUG sp1_core_executor_runner::native: CHILD sp1_DCCjxEJUTMi__YZkr4AUQg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:53.836880Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:53.837645Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:53.837970Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:53.887983Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:53.888017Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:53.888149Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:53.888320Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:53.888380Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:53.888928Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=419 blob_id=2147878790830089164735899051911128874 -2026-04-20T11:14:54.444216Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rj7DoU4uSsGVzc9bY5TF9A==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:54.451669Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:54.462168Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1099929 cycles -2026-04-20T11:14:54.464839Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 42, 202, 47, 175, 17, 239, 119, 251, 5, 247, 10, 126, 59, 252, 236, 197, 29, 2, 154, 139, 55, 247, 5, 115, 100, 127, 65, 66, 225, 86, 217, 127, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 29, 99, 86, 150, 214, 33, 188, 51, 41, 255, 191, 137, 29, 70, 58, 119, 17, 134, 1, 38, 190, 94, 54, 25, 239, 123, 141, 198, 74, 38, 193, 65, 111, 105, 139, 156, 70, 106, 162, 15, 6, 225, 183, 23, 66, 141, 77, 111, 54, 206, 37, 28, 185, 40, 39, 50, 227, 11, 112, 95, 252, 100, 229, 253, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:54.528986Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:54.529033Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:54.595165Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:54.620797Z DEBUG sp1_core_executor_runner::native: CHILD sp1_KPSzfQVKSJ2-v7KFQkbw8w==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:54.623633Z DEBUG sp1_core_executor_runner::native: CHILD sp1_KPSzfQVKSJ2-v7KFQkbw8w==: stderr: -2026-04-20T11:14:54.623660Z DEBUG sp1_core_executor_runner::native: CHILD sp1_KPSzfQVKSJ2-v7KFQkbw8w==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:54.623687Z DEBUG sp1_core_executor_runner::native: CHILD sp1_KPSzfQVKSJ2-v7KFQkbw8w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:54.623694Z DEBUG sp1_core_executor_runner::native: CHILD sp1_KPSzfQVKSJ2-v7KFQkbw8w==: stderr: stack backtrace: -2026-04-20T11:14:54.623702Z DEBUG sp1_core_executor_runner::native: CHILD sp1_KPSzfQVKSJ2-v7KFQkbw8w==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:54.623709Z DEBUG sp1_core_executor_runner::native: CHILD sp1_KPSzfQVKSJ2-v7KFQkbw8w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:54.623815Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:54.624524Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:54.624822Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:54.690803Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:54.690850Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:54.691005Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:54.691158Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:54.691212Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:54.691633Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=420 blob_id=2147878791800837375982267798463347992 -2026-04-20T11:14:55.248004Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Oam7F92xSu2D4XbW-f3cDA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:55.255494Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:55.265259Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1105131 cycles -2026-04-20T11:14:55.267947Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 80, 107, 109, 57, 167, 18, 161, 59, 64, 14, 181, 88, 26, 226, 242, 209, 140, 48, 239, 30, 55, 209, 178, 160, 220, 71, 213, 41, 128, 33, 1, 154, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 28, 17, 33, 244, 186, 220, 118, 114, 227, 104, 143, 147, 147, 156, 20, 132, 171, 24, 151, 66, 24, 61, 102, 160, 226, 243, 117, 43, 99, 49, 214, 244, 7, 127, 203, 153, 212, 70, 103, 25, 56, 112, 156, 139, 40, 164, 121, 123, 131, 61, 89, 79, 193, 161, 6, 126, 183, 92, 46, 93, 175, 196, 148, 27, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:55.329175Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:55.329220Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:55.398443Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:55.432944Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PmoGkLnyTjWnbggOJLOVfw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:55.435795Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PmoGkLnyTjWnbggOJLOVfw==: stderr: -2026-04-20T11:14:55.435819Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PmoGkLnyTjWnbggOJLOVfw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:55.435832Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PmoGkLnyTjWnbggOJLOVfw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:55.435839Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PmoGkLnyTjWnbggOJLOVfw==: stderr: stack backtrace: -2026-04-20T11:14:55.435846Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PmoGkLnyTjWnbggOJLOVfw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:55.435853Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PmoGkLnyTjWnbggOJLOVfw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:55.435942Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:55.436689Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:55.436973Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:55.502949Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:55.502993Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:55.503115Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:55.503269Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:55.503338Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:55.503719Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=421 blob_id=2147878792782449132042376824472889816 -2026-04-20T11:14:56.057323Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Vl9ijfZjTM2tdBR01Zc_7Q==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:56.064742Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:56.074488Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1105016 cycles -2026-04-20T11:14:56.077228Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 97, 166, 23, 249, 107, 41, 26, 164, 126, 44, 98, 142, 121, 168, 187, 59, 121, 112, 118, 235, 80, 252, 141, 107, 89, 95, 230, 57, 85, 242, 105, 110, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 70, 179, 209, 210, 229, 222, 250, 12, 178, 195, 77, 189, 200, 87, 137, 128, 193, 251, 116, 219, 27, 205, 170, 43, 255, 188, 176, 131, 51, 128, 149, 57, 88, 31, 54, 48, 191, 9, 28, 199, 121, 126, 130, 182, 71, 52, 99, 150, 214, 54, 1, 152, 4, 154, 45, 193, 66, 110, 13, 42, 188, 188, 200, 107, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:56.138239Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:56.138285Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:56.211617Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:56.245699Z DEBUG sp1_core_executor_runner::native: CHILD sp1_D8CnxliXRHGpWYdRi5O4GQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:56.248569Z DEBUG sp1_core_executor_runner::native: CHILD sp1_D8CnxliXRHGpWYdRi5O4GQ==: stderr: -2026-04-20T11:14:56.248606Z DEBUG sp1_core_executor_runner::native: CHILD sp1_D8CnxliXRHGpWYdRi5O4GQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:56.248620Z DEBUG sp1_core_executor_runner::native: CHILD sp1_D8CnxliXRHGpWYdRi5O4GQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:56.248629Z DEBUG sp1_core_executor_runner::native: CHILD sp1_D8CnxliXRHGpWYdRi5O4GQ==: stderr: stack backtrace: -2026-04-20T11:14:56.248638Z DEBUG sp1_core_executor_runner::native: CHILD sp1_D8CnxliXRHGpWYdRi5O4GQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:56.248648Z DEBUG sp1_core_executor_runner::native: CHILD sp1_D8CnxliXRHGpWYdRi5O4GQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:56.248663Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:56.249491Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:56.249796Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:56.315618Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:56.315664Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:56.315841Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:56.315977Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:56.316042Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:56.316329Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=422 blob_id=2147878793764126711190991692927620381 -2026-04-20T11:14:56.857122Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3S3S_-BcQ0GOZd8LEpOlZw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:56.864585Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:56.873970Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1102811 cycles -2026-04-20T11:14:56.876802Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 5, 247, 197, 219, 107, 29, 73, 120, 14, 154, 255, 6, 169, 29, 225, 98, 23, 66, 122, 22, 85, 27, 162, 138, 113, 220, 5, 179, 156, 149, 228, 130, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 57, 251, 152, 21, 130, 201, 189, 147, 131, 143, 56, 247, 210, 247, 216, 246, 39, 130, 214, 142, 48, 61, 202, 88, 99, 119, 94, 217, 136, 106, 76, 62, 15, 66, 159, 107, 30, 41, 37, 108, 34, 138, 1, 83, 107, 10, 20, 93, 191, 210, 209, 189, 103, 103, 108, 179, 111, 105, 140, 92, 121, 36, 144, 189, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:56.939197Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:56.939244Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:57.024258Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:57.058492Z DEBUG sp1_core_executor_runner::native: CHILD sp1_dMu3RxtTTuqWgVId5_fw2w==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:57.061330Z DEBUG sp1_core_executor_runner::native: CHILD sp1_dMu3RxtTTuqWgVId5_fw2w==: stderr: -2026-04-20T11:14:57.061354Z DEBUG sp1_core_executor_runner::native: CHILD sp1_dMu3RxtTTuqWgVId5_fw2w==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:57.061377Z DEBUG sp1_core_executor_runner::native: CHILD sp1_dMu3RxtTTuqWgVId5_fw2w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:57.061384Z DEBUG sp1_core_executor_runner::native: CHILD sp1_dMu3RxtTTuqWgVId5_fw2w==: stderr: stack backtrace: -2026-04-20T11:14:57.061390Z DEBUG sp1_core_executor_runner::native: CHILD sp1_dMu3RxtTTuqWgVId5_fw2w==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:57.061397Z DEBUG sp1_core_executor_runner::native: CHILD sp1_dMu3RxtTTuqWgVId5_fw2w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:57.061449Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:57.062241Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:57.062528Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:57.128329Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:57.128374Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:57.128570Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:57.128733Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:57.128791Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:57.129195Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=423 blob_id=2147878794747001975201157451549678875 -2026-04-20T11:14:57.672132Z DEBUG sp1_core_executor_runner::native: CHILD sp1_T38cWULRSi-PE3oovoZ6fw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:57.679429Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:57.689574Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1093292 cycles -2026-04-20T11:14:57.692402Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 18, 125, 77, 153, 159, 48, 185, 19, 57, 183, 189, 160, 242, 24, 252, 63, 229, 137, 241, 26, 114, 130, 138, 37, 123, 3, 175, 14, 77, 76, 46, 44, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 75, 88, 196, 169, 100, 171, 151, 9, 186, 163, 230, 209, 75, 195, 86, 29, 30, 80, 100, 189, 133, 163, 51, 4, 41, 22, 159, 197, 165, 42, 120, 40, 167, 49, 251, 35, 116, 191, 177, 114, 105, 57, 196, 59, 123, 12, 252, 206, 107, 28, 143, 12, 118, 37, 213, 205, 0, 207, 206, 183, 144, 137, 55, 122, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:57.753241Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:57.753287Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:57.836961Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:57.870672Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AWTiLzIOTMCIFVePjJ1mPQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:57.873495Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AWTiLzIOTMCIFVePjJ1mPQ==: stderr: -2026-04-20T11:14:57.873519Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AWTiLzIOTMCIFVePjJ1mPQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:57.873529Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AWTiLzIOTMCIFVePjJ1mPQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:57.873536Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AWTiLzIOTMCIFVePjJ1mPQ==: stderr: stack backtrace: -2026-04-20T11:14:57.873542Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AWTiLzIOTMCIFVePjJ1mPQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:57.873548Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AWTiLzIOTMCIFVePjJ1mPQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:57.873633Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:57.874428Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:57.874741Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:57.940481Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:57.940525Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:57.940691Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:57.940847Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:57.940903Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:57.941305Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=424 blob_id=2147878795728634746471458873897164752 -2026-04-20T11:14:58.482209Z DEBUG sp1_core_executor_runner::native: CHILD sp1_lAHZOeFRQTSlYsrblwjiSg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:58.489594Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:58.500252Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1103872 cycles -2026-04-20T11:14:58.502940Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 116, 250, 68, 227, 255, 144, 139, 59, 162, 14, 70, 88, 219, 113, 25, 188, 245, 122, 195, 8, 126, 12, 222, 104, 100, 242, 137, 54, 56, 104, 129, 37, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 19, 196, 97, 3, 140, 163, 242, 101, 152, 83, 23, 117, 69, 170, 252, 133, 157, 188, 204, 177, 218, 143, 168, 48, 204, 6, 112, 202, 71, 150, 209, 26, 10, 142, 242, 145, 186, 240, 132, 70, 89, 140, 97, 185, 84, 191, 24, 138, 68, 203, 78, 2, 47, 241, 204, 98, 174, 3, 72, 214, 207, 248, 160, 80, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:58.563348Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:58.563390Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:58.648985Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:58.681901Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Dh8V-ML8Rqm6-ULmb2OLMw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:58.684727Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Dh8V-ML8Rqm6-ULmb2OLMw==: stderr: -2026-04-20T11:14:58.684740Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Dh8V-ML8Rqm6-ULmb2OLMw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:58.684749Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Dh8V-ML8Rqm6-ULmb2OLMw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:58.684757Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Dh8V-ML8Rqm6-ULmb2OLMw==: stderr: stack backtrace: -2026-04-20T11:14:58.684764Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Dh8V-ML8Rqm6-ULmb2OLMw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:58.684770Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Dh8V-ML8Rqm6-ULmb2OLMw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:58.684850Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:58.685631Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:58.685943Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:58.753178Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:58.753234Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:58.753409Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:58.753577Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:14:58.753632Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:58.754181Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=425 blob_id=2147878796711504679854131772156034449 -2026-04-20T11:14:58.871573Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=8 height=349 prev_hash=0x152588e726b66af11440485659d0c5c8edf88ae36d9d5aa07c90a8e5f84dcc53 hash=0x4c05124ef93e18a28f181729df0f03c079b2a0626a49c73ffb72e25b1273490e producing_time=1.150082ms -2026-04-20T11:14:58.880353Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=349 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a21341ee2e65d27977458b66a3db4a65a74593032dc5c8673757d6640d1b5bd88" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x8455277b27080b69e635cf79e7a748606f8cf3bb3ccdedec448c999c639b63fe, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x2e3f3f3379b1bc3b2b97c2421f768b3d3fada2f9068be2ae176fecf57d7c0e2a, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x8068a93d0bead75448243a485af80dc7bbda7e91441dbbe98f7b349ce721a71b, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x692310baec517cd5b1ddd716c9e3ea7212561192a31850ef1fc1e817b97488c3, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x2e0960cf526f6871b68d2019a2503131f750eb2a1561d82e953217696c8146d0, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x6825b5a57afb1683225864a0761b4c392862f891b2cfab01331e86edffcafd8c, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x72248bd3ba883563bc26c0ad90e552c23e9d132255b325f919888e2dd2d32108, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa0ff4e5410eda0a9b73f98c40bce59aba7c6592aa855061b956b9db1c7d0890b, len=625"] -2026-04-20T11:14:58.880727Z DEBUG StfBlueprint::apply_slot{context=Node da_height=349}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a21341ee2e65d27977458b66a3db4a65a74593032dc5c8673757d6640d1b5bd88 next_version=349 sesssion_starting_time=49.07µs -2026-04-20T11:14:58.881609Z DEBUG StfBlueprint::apply_slot{context=Node da_height=349}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a67e1533165fe2e57b144fc679985d6e01c64cb9998ae29b6e985ee8b0bbba12e next_version=349 time=961.043µs accesses_build_time=28.489µs finishing_session_time=854.334µs -2026-04-20T11:14:58.881696Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a68c2d0c1b5d12d2a6b2b47200b172a80ba39022b14ea933feceb240479ceb29f" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a67e1533165fe2e57b144fc679985d6e01c64cb9998ae29b6e985ee8b0bbba12e" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:14:58.882250Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 349, latest_finalized_slot_number: 348, sync_status: Synced { synced_da_height: 348 }, .. } -2026-04-20T11:14:58.882372Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 349, latest_finalized_slot_number: 348, sync_status: Synced { synced_da_height: 348 }, .. } -2026-04-20T11:14:58.882446Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:14:58.889239Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000722786s -2026-04-20T11:14:58.889270Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:14:59.307688Z DEBUG sp1_core_executor_runner::native: CHILD sp1_GdORv7_AQLiv4nzYwNFV4A==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:14:59.314925Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:59.324490Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1086781 cycles -2026-04-20T11:14:59.327327Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 41, 149, 48, 169, 106, 209, 39, 32, 41, 30, 57, 42, 46, 16, 207, 96, 224, 231, 61, 165, 142, 105, 51, 114, 234, 195, 124, 158, 204, 13, 127, 175, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 27, 217, 26, 247, 58, 204, 239, 229, 215, 102, 33, 57, 215, 80, 225, 202, 35, 254, 184, 225, 11, 150, 12, 214, 218, 90, 60, 178, 199, 123, 19, 143, 174, 165, 175, 146, 145, 30, 200, 216, 179, 80, 226, 184, 139, 61, 50, 244, 149, 120, 183, 50, 131, 124, 221, 255, 77, 196, 254, 58, 110, 96, 36, 218, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:14:59.389335Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:59.389394Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:59.461289Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:14:59.495156Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SkI6fSzzSD20N1sXHxGiNQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:14:59.498047Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SkI6fSzzSD20N1sXHxGiNQ==: stderr: -2026-04-20T11:14:59.498073Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SkI6fSzzSD20N1sXHxGiNQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:14:59.498083Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SkI6fSzzSD20N1sXHxGiNQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:59.498089Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SkI6fSzzSD20N1sXHxGiNQ==: stderr: stack backtrace: -2026-04-20T11:14:59.498096Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SkI6fSzzSD20N1sXHxGiNQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:14:59.498102Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SkI6fSzzSD20N1sXHxGiNQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:14:59.498165Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:14:59.498924Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:14:59.499210Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:14:59.565992Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:14:59.566036Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:14:59.566193Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:14:59.566813Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=426 blob_id=2147878797694334220494954898062270084 -2026-04-20T11:15:04.873786Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=350 prev_hash=0x4c05124ef93e18a28f181729df0f03c079b2a0626a49c73ffb72e25b1273490e hash=0xa23cc19690e0082a1fbfb0a496ada2f3d9659e05d098e7c00819238af4376ea8 producing_time=1.100413ms -2026-04-20T11:15:04.880479Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=350 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a67e1533165fe2e57b144fc679985d6e01c64cb9998ae29b6e985ee8b0bbba12e" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf4ec025a54c84b5187305ec46806f7aa49c4a86e3f979f3f19b294adee31738c, len=625"] -2026-04-20T11:15:04.880857Z DEBUG StfBlueprint::apply_slot{context=Node da_height=350}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a67e1533165fe2e57b144fc679985d6e01c64cb9998ae29b6e985ee8b0bbba12e next_version=350 sesssion_starting_time=48.57µs -2026-04-20T11:15:04.881697Z DEBUG StfBlueprint::apply_slot{context=Node da_height=350}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a4b2fa70e151e85e3cdee4f8efc3d2af03461efb24a5001f1b16c30849aecdfbb next_version=350 time=910.164µs accesses_build_time=19.48µs finishing_session_time=805.695µs -2026-04-20T11:15:04.881779Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a21341ee2e65d27977458b66a3db4a65a74593032dc5c8673757d6640d1b5bd88" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a4b2fa70e151e85e3cdee4f8efc3d2af03461efb24a5001f1b16c30849aecdfbb" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:15:04.882306Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 350, latest_finalized_slot_number: 349, sync_status: Synced { synced_da_height: 349 }, .. } -2026-04-20T11:15:04.882435Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 350, latest_finalized_slot_number: 349, sync_status: Synced { synced_da_height: 349 }, .. } -2026-04-20T11:15:04.882504Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:15:04.889080Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999811252s -2026-04-20T11:15:04.889107Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:15:10.876089Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=351 prev_hash=0xa23cc19690e0082a1fbfb0a496ada2f3d9659e05d098e7c00819238af4376ea8 hash=0xdb79f02625e6a286183eaece1023683b599b38183f281140dee9c49890a47fbc producing_time=1.045083ms -2026-04-20T11:15:10.880673Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=351 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a4b2fa70e151e85e3cdee4f8efc3d2af03461efb24a5001f1b16c30849aecdfbb" batch_blobs=[] proof_blobs=[] -2026-04-20T11:15:10.881000Z DEBUG StfBlueprint::apply_slot{context=Node da_height=351}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a4b2fa70e151e85e3cdee4f8efc3d2af03461efb24a5001f1b16c30849aecdfbb next_version=351 sesssion_starting_time=46.49µs -2026-04-20T11:15:10.881691Z DEBUG StfBlueprint::apply_slot{context=Node da_height=351}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a705a37517452782aa7c6d3c357f3b26b63dc9c3251e886622b965e159583c1d7 next_version=351 time=754.966µs accesses_build_time=16.02µs finishing_session_time=664.386µs -2026-04-20T11:15:10.881756Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a67e1533165fe2e57b144fc679985d6e01c64cb9998ae29b6e985ee8b0bbba12e" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a705a37517452782aa7c6d3c357f3b26b63dc9c3251e886622b965e159583c1d7" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:15:10.882249Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 351, latest_finalized_slot_number: 350, sync_status: Synced { synced_da_height: 350 }, .. } -2026-04-20T11:15:10.882347Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 351, latest_finalized_slot_number: 350, sync_status: Synced { synced_da_height: 350 }, .. } -2026-04-20T11:15:10.882503Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:15:10.889226Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00011966s -2026-04-20T11:15:10.889267Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:15:16.878170Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=352 prev_hash=0xdb79f02625e6a286183eaece1023683b599b38183f281140dee9c49890a47fbc hash=0xaeb5ad9a0af184f0004527d0520711da547ca1addbb5b1d50c57d405bef31faa producing_time=1.146262ms -2026-04-20T11:15:16.880805Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=352 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a705a37517452782aa7c6d3c357f3b26b63dc9c3251e886622b965e159583c1d7" batch_blobs=[] proof_blobs=[] -2026-04-20T11:15:16.881148Z DEBUG StfBlueprint::apply_slot{context=Node da_height=352}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a705a37517452782aa7c6d3c357f3b26b63dc9c3251e886622b965e159583c1d7 next_version=352 sesssion_starting_time=52.339µs -2026-04-20T11:15:16.881933Z DEBUG StfBlueprint::apply_slot{context=Node da_height=352}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a5ff852137daae5c23d70c0c377feac25c15d4457dd3f25dd68981d62006db5a7 next_version=352 time=854.524µs accesses_build_time=15.96µs finishing_session_time=753.965µs -2026-04-20T11:15:16.882009Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a4b2fa70e151e85e3cdee4f8efc3d2af03461efb24a5001f1b16c30849aecdfbb" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a5ff852137daae5c23d70c0c377feac25c15d4457dd3f25dd68981d62006db5a7" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:15:16.882488Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 352, latest_finalized_slot_number: 351, sync_status: Synced { synced_da_height: 351 }, .. } -2026-04-20T11:15:16.882594Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 352, latest_finalized_slot_number: 351, sync_status: Synced { synced_da_height: 351 }, .. } -2026-04-20T11:15:16.882661Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:15:16.892524Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003258259s -2026-04-20T11:15:16.892548Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:15:22.880690Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=353 prev_hash=0xaeb5ad9a0af184f0004527d0520711da547ca1addbb5b1d50c57d405bef31faa hash=0xfef1914033eda7b46030a73008d33783066d220eeb6b23000fc2c24a613d3ee9 producing_time=1.254202ms -2026-04-20T11:15:22.884624Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=353 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a5ff852137daae5c23d70c0c377feac25c15d4457dd3f25dd68981d62006db5a7" batch_blobs=[] proof_blobs=[] -2026-04-20T11:15:22.884969Z DEBUG StfBlueprint::apply_slot{context=Node da_height=353}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a5ff852137daae5c23d70c0c377feac25c15d4457dd3f25dd68981d62006db5a7 next_version=353 sesssion_starting_time=47.94µs -2026-04-20T11:15:22.885794Z DEBUG StfBlueprint::apply_slot{context=Node da_height=353}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a603adda9b85d760a5cbd70da28ec23fa778b69dd95919c8ef33c3f344702c3aa next_version=353 time=889.064µs accesses_build_time=14.71µs finishing_session_time=797.295µs -2026-04-20T11:15:22.885860Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a705a37517452782aa7c6d3c357f3b26b63dc9c3251e886622b965e159583c1d7" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a603adda9b85d760a5cbd70da28ec23fa778b69dd95919c8ef33c3f344702c3aa" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:15:22.886398Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 353, latest_finalized_slot_number: 353, sync_status: Synced { synced_da_height: 352 }, .. } -2026-04-20T11:15:22.886497Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 353, latest_finalized_slot_number: 353, sync_status: Synced { synced_da_height: 352 }, .. } -2026-04-20T11:15:22.886555Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:15:22.902461Z DEBUG sov_stf_runner::runner: Block execution complete time=6.009914806s -2026-04-20T11:15:22.902477Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:15:28.882916Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=354 prev_hash=0xfef1914033eda7b46030a73008d33783066d220eeb6b23000fc2c24a613d3ee9 hash=0xf569abc18b1bc856a8e1eacfa066ba7b11f15e7f46b191005028be9a4cbeb023 producing_time=1.073983ms -2026-04-20T11:15:28.884698Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=354 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a603adda9b85d760a5cbd70da28ec23fa778b69dd95919c8ef33c3f344702c3aa" batch_blobs=[] proof_blobs=[] -2026-04-20T11:15:28.885095Z DEBUG StfBlueprint::apply_slot{context=Node da_height=354}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a603adda9b85d760a5cbd70da28ec23fa778b69dd95919c8ef33c3f344702c3aa next_version=354 sesssion_starting_time=51.699µs -2026-04-20T11:15:28.885863Z DEBUG StfBlueprint::apply_slot{context=Node da_height=354}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a362c425bb8e4f908e37a0899ffa18f0024defd4845125bddbac18a3b55d2887b next_version=354 time=838.245µs accesses_build_time=18.1µs finishing_session_time=732.465µs -2026-04-20T11:15:28.885954Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a603adda9b85d760a5cbd70da28ec23fa778b69dd95919c8ef33c3f344702c3aa" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a362c425bb8e4f908e37a0899ffa18f0024defd4845125bddbac18a3b55d2887b" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:15:28.886390Z DEBUG sov_stf_runner::runner: Block execution complete time=5.983913664s -2026-04-20T11:15:28.886426Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:15:28.886476Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 354, latest_finalized_slot_number: 353, sync_status: Synced { synced_da_height: 353 }, .. } -2026-04-20T11:15:28.886569Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 354, latest_finalized_slot_number: 353, sync_status: Synced { synced_da_height: 353 }, .. } -2026-04-20T11:15:28.886631Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:15:34.885085Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=355 prev_hash=0xf569abc18b1bc856a8e1eacfa066ba7b11f15e7f46b191005028be9a4cbeb023 hash=0x8d48b4df6233fe021aaad6e6c7c4cc7d17b064d5917c30c9d5540dc8bf07c51e producing_time=1.154162ms -2026-04-20T11:15:34.888778Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=355 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a362c425bb8e4f908e37a0899ffa18f0024defd4845125bddbac18a3b55d2887b" batch_blobs=[] proof_blobs=[] -2026-04-20T11:15:34.889141Z DEBUG StfBlueprint::apply_slot{context=Node da_height=355}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a362c425bb8e4f908e37a0899ffa18f0024defd4845125bddbac18a3b55d2887b next_version=355 sesssion_starting_time=51.54µs -2026-04-20T11:15:34.889991Z DEBUG StfBlueprint::apply_slot{context=Node da_height=355}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a454963f3388853c435b87f9ad0ff9bec7c37da1ddf246c52ff5945f960eec620 next_version=355 time=920.334µs accesses_build_time=17.259µs finishing_session_time=814.695µs -2026-04-20T11:15:34.890078Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a603adda9b85d760a5cbd70da28ec23fa778b69dd95919c8ef33c3f344702c3aa" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a454963f3388853c435b87f9ad0ff9bec7c37da1ddf246c52ff5945f960eec620" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:15:34.890574Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 355, latest_finalized_slot_number: 354, sync_status: Synced { synced_da_height: 354 }, .. } -2026-04-20T11:15:34.890680Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 355, latest_finalized_slot_number: 354, sync_status: Synced { synced_da_height: 354 }, .. } -2026-04-20T11:15:34.890748Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:15:34.900503Z DEBUG sov_stf_runner::runner: Block execution complete time=6.01408023s -2026-04-20T11:15:34.900527Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:15:40.887432Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=356 prev_hash=0x8d48b4df6233fe021aaad6e6c7c4cc7d17b064d5917c30c9d5540dc8bf07c51e hash=0xad4cd33f1282478cd4ba1c2cf31df40b576ab7bfbb8b2dd12f2df67dde870407 producing_time=1.224052ms -2026-04-20T11:15:40.892197Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=356 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a454963f3388853c435b87f9ad0ff9bec7c37da1ddf246c52ff5945f960eec620" batch_blobs=[] proof_blobs=[] -2026-04-20T11:15:40.892553Z DEBUG StfBlueprint::apply_slot{context=Node da_height=356}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a454963f3388853c435b87f9ad0ff9bec7c37da1ddf246c52ff5945f960eec620 next_version=356 sesssion_starting_time=47.41µs -2026-04-20T11:15:40.893261Z DEBUG StfBlueprint::apply_slot{context=Node da_height=356}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a6557c1b223fa1f2f695fd56e93cb94ee34ba1d22cb64e6638514d9feb0e06fe6 next_version=356 time=772.095µs accesses_build_time=14.99µs finishing_session_time=677.885µs -2026-04-20T11:15:40.893354Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a362c425bb8e4f908e37a0899ffa18f0024defd4845125bddbac18a3b55d2887b" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a6557c1b223fa1f2f695fd56e93cb94ee34ba1d22cb64e6638514d9feb0e06fe6" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:15:40.893877Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 356, latest_finalized_slot_number: 355, sync_status: Syncing { synced_da_height: 355, target_da_height: 356 }, .. } -2026-04-20T11:15:40.893964Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 356, latest_finalized_slot_number: 355, sync_status: Syncing { synced_da_height: 355, target_da_height: 356 }, .. } -2026-04-20T11:15:40.894032Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:15:40.900912Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000386658s -2026-04-20T11:15:40.900948Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:15:46.890282Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=357 prev_hash=0xad4cd33f1282478cd4ba1c2cf31df40b576ab7bfbb8b2dd12f2df67dde870407 hash=0x11e37f3337836b03350b40e3a500b1519454475881908f37c79671d7760d0700 producing_time=1.134312ms -2026-04-20T11:15:46.892026Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=357 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a6557c1b223fa1f2f695fd56e93cb94ee34ba1d22cb64e6638514d9feb0e06fe6" batch_blobs=[] proof_blobs=[] -2026-04-20T11:15:46.892384Z DEBUG StfBlueprint::apply_slot{context=Node da_height=357}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a6557c1b223fa1f2f695fd56e93cb94ee34ba1d22cb64e6638514d9feb0e06fe6 next_version=357 sesssion_starting_time=46.61µs -2026-04-20T11:15:46.893083Z DEBUG StfBlueprint::apply_slot{context=Node da_height=357}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a46e29179606a309384db472f0e72e06bdd6dda5744af69d2d81a222aecad6c67 next_version=357 time=775.285µs accesses_build_time=28.55µs finishing_session_time=667.695µs -2026-04-20T11:15:46.893143Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a454963f3388853c435b87f9ad0ff9bec7c37da1ddf246c52ff5945f960eec620" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a46e29179606a309384db472f0e72e06bdd6dda5744af69d2d81a222aecad6c67" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:15:46.893653Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 357, latest_finalized_slot_number: 356, sync_status: Syncing { synced_da_height: 356, target_da_height: 357 }, .. } -2026-04-20T11:15:46.893739Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 357, latest_finalized_slot_number: 356, sync_status: Syncing { synced_da_height: 356, target_da_height: 357 }, .. } -2026-04-20T11:15:46.893796Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:15:46.903438Z DEBUG sov_stf_runner::runner: Block execution complete time=6.002492185s -2026-04-20T11:15:46.903460Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:15:52.891893Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=358 prev_hash=0x11e37f3337836b03350b40e3a500b1519454475881908f37c79671d7760d0700 hash=0x3f2b14fa0c68beca94f4d6f3661b87a164f9514f1c31cb5f43940cad81f23921 producing_time=1.121973ms -2026-04-20T11:15:52.895589Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=358 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a46e29179606a309384db472f0e72e06bdd6dda5744af69d2d81a222aecad6c67" batch_blobs=[] proof_blobs=[] -2026-04-20T11:15:52.895929Z DEBUG StfBlueprint::apply_slot{context=Node da_height=358}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a46e29179606a309384db472f0e72e06bdd6dda5744af69d2d81a222aecad6c67 next_version=358 sesssion_starting_time=45.71µs -2026-04-20T11:15:52.896632Z DEBUG StfBlueprint::apply_slot{context=Node da_height=358}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a1796463ebb1d5c0f858f9b7fe7fdf2bc5813dc8a5f55445077b7894a9d070e79 next_version=358 time=766.115µs accesses_build_time=15.11µs finishing_session_time=676.295µs -2026-04-20T11:15:52.896696Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a6557c1b223fa1f2f695fd56e93cb94ee34ba1d22cb64e6638514d9feb0e06fe6" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a1796463ebb1d5c0f858f9b7fe7fdf2bc5813dc8a5f55445077b7894a9d070e79" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:15:52.897159Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 358, latest_finalized_slot_number: 357, sync_status: Synced { synced_da_height: 357 }, .. } -2026-04-20T11:15:52.897255Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 358, latest_finalized_slot_number: 357, sync_status: Synced { synced_da_height: 357 }, .. } -2026-04-20T11:15:52.897324Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:15:52.903982Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000522128s -2026-04-20T11:15:52.904012Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:15:58.894391Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=359 prev_hash=0x3f2b14fa0c68beca94f4d6f3661b87a164f9514f1c31cb5f43940cad81f23921 hash=0x7adf47bb34f751ddd3cd95a447c51ec1a6f429c2398627bbc2e03c1525613ac5 producing_time=1.262902ms -2026-04-20T11:15:58.895012Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=359 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a1796463ebb1d5c0f858f9b7fe7fdf2bc5813dc8a5f55445077b7894a9d070e79" batch_blobs=[] proof_blobs=[] -2026-04-20T11:15:58.895386Z DEBUG StfBlueprint::apply_slot{context=Node da_height=359}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a1796463ebb1d5c0f858f9b7fe7fdf2bc5813dc8a5f55445077b7894a9d070e79 next_version=359 sesssion_starting_time=46.959µs -2026-04-20T11:15:58.896165Z DEBUG StfBlueprint::apply_slot{context=Node da_height=359}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a49f1517395a855faf585e4bf7eb181ba26d7ee8b16bba4fb3b50ded8a6aef06e next_version=359 time=865.784µs accesses_build_time=37.87µs finishing_session_time=747.326µs -2026-04-20T11:15:58.896227Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a46e29179606a309384db472f0e72e06bdd6dda5744af69d2d81a222aecad6c67" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a49f1517395a855faf585e4bf7eb181ba26d7ee8b16bba4fb3b50ded8a6aef06e" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:15:58.896730Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 359, latest_finalized_slot_number: 358, sync_status: Synced { synced_da_height: 358 }, .. } -2026-04-20T11:15:58.896826Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 359, latest_finalized_slot_number: 358, sync_status: Synced { synced_da_height: 358 }, .. } -2026-04-20T11:15:58.896902Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:15:58.903992Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999982141s -2026-04-20T11:15:58.904028Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:16:04.897105Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=360 prev_hash=0x7adf47bb34f751ddd3cd95a447c51ec1a6f429c2398627bbc2e03c1525613ac5 hash=0x0a0900579988d5c6895a98d57b9fba58879f6e61fde68eb691e7c971364d42ab producing_time=1.180712ms -2026-04-20T11:16:04.905863Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=360 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a49f1517395a855faf585e4bf7eb181ba26d7ee8b16bba4fb3b50ded8a6aef06e" batch_blobs=[] proof_blobs=[] -2026-04-20T11:16:04.906222Z DEBUG StfBlueprint::apply_slot{context=Node da_height=360}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a49f1517395a855faf585e4bf7eb181ba26d7ee8b16bba4fb3b50ded8a6aef06e next_version=360 sesssion_starting_time=52.65µs -2026-04-20T11:16:04.906936Z DEBUG StfBlueprint::apply_slot{context=Node da_height=360}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a31b59379b274a93de8d6eb20fac9cedd0755ebe432dd24e1939c6cdf082228d6 next_version=360 time=786.445µs accesses_build_time=17.39µs finishing_session_time=678.776µs -2026-04-20T11:16:04.907018Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a1796463ebb1d5c0f858f9b7fe7fdf2bc5813dc8a5f55445077b7894a9d070e79" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a31b59379b274a93de8d6eb20fac9cedd0755ebe432dd24e1939c6cdf082228d6" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:16:04.907550Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 360, latest_finalized_slot_number: 359, sync_status: Synced { synced_da_height: 359 }, .. } -2026-04-20T11:16:04.907654Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 360, latest_finalized_slot_number: 359, sync_status: Synced { synced_da_height: 359 }, .. } -2026-04-20T11:16:04.907720Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:16:04.914065Z DEBUG sov_stf_runner::runner: Block execution complete time=6.010039106s -2026-04-20T11:16:04.914100Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:16:10.898973Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=361 prev_hash=0x0a0900579988d5c6895a98d57b9fba58879f6e61fde68eb691e7c971364d42ab hash=0x787fbebb88618a338ca656b6ffe757b458989cd985a9cea2e81c70cdde57cc9c producing_time=1.218763ms -2026-04-20T11:16:10.905652Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=361 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a31b59379b274a93de8d6eb20fac9cedd0755ebe432dd24e1939c6cdf082228d6" batch_blobs=[] proof_blobs=[] -2026-04-20T11:16:10.905996Z DEBUG StfBlueprint::apply_slot{context=Node da_height=361}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a31b59379b274a93de8d6eb20fac9cedd0755ebe432dd24e1939c6cdf082228d6 next_version=361 sesssion_starting_time=45.859µs -2026-04-20T11:16:10.906749Z DEBUG StfBlueprint::apply_slot{context=Node da_height=361}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a561383f825db5a2a690a18caec2d281f5e62e95a9e8c41bca1a4bb2e1aceed2f next_version=361 time=816.194µs accesses_build_time=16.09µs finishing_session_time=724.445µs -2026-04-20T11:16:10.906817Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a49f1517395a855faf585e4bf7eb181ba26d7ee8b16bba4fb3b50ded8a6aef06e" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a561383f825db5a2a690a18caec2d281f5e62e95a9e8c41bca1a4bb2e1aceed2f" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:16:10.907260Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 361, latest_finalized_slot_number: 360, sync_status: Synced { synced_da_height: 360 }, .. } -2026-04-20T11:16:10.907370Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 361, latest_finalized_slot_number: 360, sync_status: Synced { synced_da_height: 360 }, .. } -2026-04-20T11:16:10.907439Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:16:10.913890Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999791772s -2026-04-20T11:16:10.913922Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:16:16.900926Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=362 prev_hash=0x787fbebb88618a338ca656b6ffe757b458989cd985a9cea2e81c70cdde57cc9c hash=0x172efc86d831ea751e5602a75bb77facd855f003bc234a2677481ca2b472d82d producing_time=1.152363ms -2026-04-20T11:16:16.905493Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=362 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a561383f825db5a2a690a18caec2d281f5e62e95a9e8c41bca1a4bb2e1aceed2f" batch_blobs=[] proof_blobs=[] -2026-04-20T11:16:16.905869Z DEBUG StfBlueprint::apply_slot{context=Node da_height=362}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a561383f825db5a2a690a18caec2d281f5e62e95a9e8c41bca1a4bb2e1aceed2f next_version=362 sesssion_starting_time=52.459µs -2026-04-20T11:16:16.906624Z DEBUG StfBlueprint::apply_slot{context=Node da_height=362}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a62f465ab7ffdcd998df8081cfaae1b129de6ca52b9fe2754405c9810d626a656 next_version=362 time=826.604µs accesses_build_time=17.5µs finishing_session_time=718.616µs -2026-04-20T11:16:16.906700Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a31b59379b274a93de8d6eb20fac9cedd0755ebe432dd24e1939c6cdf082228d6" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a62f465ab7ffdcd998df8081cfaae1b129de6ca52b9fe2754405c9810d626a656" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:16:16.907217Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 362, latest_finalized_slot_number: 361, sync_status: Synced { synced_da_height: 361 }, .. } -2026-04-20T11:16:16.907333Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 362, latest_finalized_slot_number: 361, sync_status: Synced { synced_da_height: 361 }, .. } -2026-04-20T11:16:16.907410Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:16:16.917517Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003597538s -2026-04-20T11:16:16.917541Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:16:22.902873Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=363 prev_hash=0x172efc86d831ea751e5602a75bb77facd855f003bc234a2677481ca2b472d82d hash=0x750457a105d6741ca765259d5bc7ae1b24411466b44ee58e1efcd4d4039b81f6 producing_time=1.124913ms -2026-04-20T11:16:22.909698Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=363 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a62f465ab7ffdcd998df8081cfaae1b129de6ca52b9fe2754405c9810d626a656" batch_blobs=[] proof_blobs=[] -2026-04-20T11:16:22.910045Z DEBUG StfBlueprint::apply_slot{context=Node da_height=363}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a62f465ab7ffdcd998df8081cfaae1b129de6ca52b9fe2754405c9810d626a656 next_version=363 sesssion_starting_time=46.3µs -2026-04-20T11:16:22.910690Z DEBUG StfBlueprint::apply_slot{context=Node da_height=363}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a4952066c185b81d2dfc424bf463b40d2e0dc9715b0ed26ecc34a652c7de8bccf next_version=363 time=707.526µs accesses_build_time=15.44µs finishing_session_time=617.366µs -2026-04-20T11:16:22.910753Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a561383f825db5a2a690a18caec2d281f5e62e95a9e8c41bca1a4bb2e1aceed2f" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a4952066c185b81d2dfc424bf463b40d2e0dc9715b0ed26ecc34a652c7de8bccf" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:16:22.911270Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 363, latest_finalized_slot_number: 362, sync_status: Synced { synced_da_height: 362 }, .. } -2026-04-20T11:16:22.911362Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 363, latest_finalized_slot_number: 362, sync_status: Synced { synced_da_height: 362 }, .. } -2026-04-20T11:16:22.911428Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:16:22.921491Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003950866s -2026-04-20T11:16:22.921521Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:16:28.905454Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=364 prev_hash=0x750457a105d6741ca765259d5bc7ae1b24411466b44ee58e1efcd4d4039b81f6 hash=0x764a44a37604032b39b2e3f57e57be4b94eeaeb7469cfdb2f62a84235da1a1cd producing_time=1.190333ms -2026-04-20T11:16:28.913370Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=364 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a4952066c185b81d2dfc424bf463b40d2e0dc9715b0ed26ecc34a652c7de8bccf" batch_blobs=[] proof_blobs=[] -2026-04-20T11:16:28.913727Z DEBUG StfBlueprint::apply_slot{context=Node da_height=364}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a4952066c185b81d2dfc424bf463b40d2e0dc9715b0ed26ecc34a652c7de8bccf next_version=364 sesssion_starting_time=46.69µs -2026-04-20T11:16:28.914466Z DEBUG StfBlueprint::apply_slot{context=Node da_height=364}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a5e1511d3b41a38cba6970c4de35bef9e660f8483d8f531a4ad5641f3c89164f4 next_version=364 time=802.435µs accesses_build_time=15.62µs finishing_session_time=710.656µs -2026-04-20T11:16:28.914535Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a62f465ab7ffdcd998df8081cfaae1b129de6ca52b9fe2754405c9810d626a656" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a5e1511d3b41a38cba6970c4de35bef9e660f8483d8f531a4ad5641f3c89164f4" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:16:28.915023Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 364, latest_finalized_slot_number: 363, sync_status: Synced { synced_da_height: 363 }, .. } -2026-04-20T11:16:28.915107Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 364, latest_finalized_slot_number: 363, sync_status: Synced { synced_da_height: 363 }, .. } -2026-04-20T11:16:28.915165Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:16:28.921713Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00019394s -2026-04-20T11:16:28.921740Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:16:34.907885Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=365 prev_hash=0x764a44a37604032b39b2e3f57e57be4b94eeaeb7469cfdb2f62a84235da1a1cd hash=0x489700aa584b338fc6fb5eb3865085a0c666c909a1804e55036410f3b3e26fd0 producing_time=1.163513ms -2026-04-20T11:16:34.913535Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=365 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a5e1511d3b41a38cba6970c4de35bef9e660f8483d8f531a4ad5641f3c89164f4" batch_blobs=[] proof_blobs=[] -2026-04-20T11:16:34.913871Z DEBUG StfBlueprint::apply_slot{context=Node da_height=365}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a5e1511d3b41a38cba6970c4de35bef9e660f8483d8f531a4ad5641f3c89164f4 next_version=365 sesssion_starting_time=44.68µs -2026-04-20T11:16:34.914518Z DEBUG StfBlueprint::apply_slot{context=Node da_height=365}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a42367db59f9ca54d33786629d75a3a5183e0385f479d31a73c6af6e653501038 next_version=365 time=707.566µs accesses_build_time=15.86µs finishing_session_time=616.526µs -2026-04-20T11:16:34.914609Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a4952066c185b81d2dfc424bf463b40d2e0dc9715b0ed26ecc34a652c7de8bccf" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a42367db59f9ca54d33786629d75a3a5183e0385f479d31a73c6af6e653501038" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:16:34.915164Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 365, latest_finalized_slot_number: 364, sync_status: Synced { synced_da_height: 364 }, .. } -2026-04-20T11:16:34.915264Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 365, latest_finalized_slot_number: 364, sync_status: Synced { synced_da_height: 364 }, .. } -2026-04-20T11:16:34.915347Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:16:34.925524Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003785157s -2026-04-20T11:16:34.925549Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:16:40.909973Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=366 prev_hash=0x489700aa584b338fc6fb5eb3865085a0c666c909a1804e55036410f3b3e26fd0 hash=0xf8b993dc0f2236ebc57fc4e1c14a3b51db4470a506e64b33464a08238372e258 producing_time=1.150263ms -2026-04-20T11:16:40.917613Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=366 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a42367db59f9ca54d33786629d75a3a5183e0385f479d31a73c6af6e653501038" batch_blobs=[] proof_blobs=[] -2026-04-20T11:16:40.917973Z DEBUG StfBlueprint::apply_slot{context=Node da_height=366}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a42367db59f9ca54d33786629d75a3a5183e0385f479d31a73c6af6e653501038 next_version=366 sesssion_starting_time=45.37µs -2026-04-20T11:16:40.918699Z DEBUG StfBlueprint::apply_slot{context=Node da_height=366}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a6d974af3d6d87e1f6c238e7189a7e04f5e7a190ba4569b47bacb56f1731fab03 next_version=366 time=789.975µs accesses_build_time=17.599µs finishing_session_time=697.316µs -2026-04-20T11:16:40.918774Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a5e1511d3b41a38cba6970c4de35bef9e660f8483d8f531a4ad5641f3c89164f4" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a6d974af3d6d87e1f6c238e7189a7e04f5e7a190ba4569b47bacb56f1731fab03" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:16:40.919307Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 366, latest_finalized_slot_number: 365, sync_status: Synced { synced_da_height: 365 }, .. } -2026-04-20T11:16:40.919436Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 366, latest_finalized_slot_number: 365, sync_status: Synced { synced_da_height: 365 }, .. } -2026-04-20T11:16:40.919511Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:16:40.925919Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000370769s -2026-04-20T11:16:40.925942Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:16:46.911888Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=367 prev_hash=0xf8b993dc0f2236ebc57fc4e1c14a3b51db4470a506e64b33464a08238372e258 hash=0x096545bd826747fc8baa4a5d12acce31f623215eb6269b762bf76e87e3ce6045 producing_time=1.161143ms -2026-04-20T11:16:46.917490Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=367 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a6d974af3d6d87e1f6c238e7189a7e04f5e7a190ba4569b47bacb56f1731fab03" batch_blobs=[] proof_blobs=[] -2026-04-20T11:16:46.917841Z DEBUG StfBlueprint::apply_slot{context=Node da_height=367}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a6d974af3d6d87e1f6c238e7189a7e04f5e7a190ba4569b47bacb56f1731fab03 next_version=367 sesssion_starting_time=46.309µs -2026-04-20T11:16:46.918618Z DEBUG StfBlueprint::apply_slot{context=Node da_height=367}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a404b21bd84774bfb4801f83132f52d7b3bdf3be1ec0b6ad56d21a9a74f14c664 next_version=367 time=838.744µs accesses_build_time=15.17µs finishing_session_time=745.496µs -2026-04-20T11:16:46.918702Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a42367db59f9ca54d33786629d75a3a5183e0385f479d31a73c6af6e653501038" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a404b21bd84774bfb4801f83132f52d7b3bdf3be1ec0b6ad56d21a9a74f14c664" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:16:46.919204Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 367, latest_finalized_slot_number: 366, sync_status: Synced { synced_da_height: 366 }, .. } -2026-04-20T11:16:46.919307Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 367, latest_finalized_slot_number: 366, sync_status: Synced { synced_da_height: 366 }, .. } -2026-04-20T11:16:46.919436Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:16:46.929466Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003524549s -2026-04-20T11:16:46.929490Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:16:52.913769Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=368 prev_hash=0x096545bd826747fc8baa4a5d12acce31f623215eb6269b762bf76e87e3ce6045 hash=0xa263906df73029737f627af526eedc45a5152d11ee65698919c0c5e5a6886de5 producing_time=1.213072ms -2026-04-20T11:16:52.921529Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=368 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a404b21bd84774bfb4801f83132f52d7b3bdf3be1ec0b6ad56d21a9a74f14c664" batch_blobs=[] proof_blobs=[] -2026-04-20T11:16:52.921887Z DEBUG StfBlueprint::apply_slot{context=Node da_height=368}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a404b21bd84774bfb4801f83132f52d7b3bdf3be1ec0b6ad56d21a9a74f14c664 next_version=368 sesssion_starting_time=45.27µs -2026-04-20T11:16:52.922661Z DEBUG StfBlueprint::apply_slot{context=Node da_height=368}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a320a272c5a7914720986bb6409ea7939754d87d9864782d1c9b7778b5ca16b69 next_version=368 time=836.585µs accesses_build_time=16.08µs finishing_session_time=744.175µs -2026-04-20T11:16:52.922736Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a6d974af3d6d87e1f6c238e7189a7e04f5e7a190ba4569b47bacb56f1731fab03" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a320a272c5a7914720986bb6409ea7939754d87d9864782d1c9b7778b5ca16b69" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:16:52.923204Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 368, latest_finalized_slot_number: 367, sync_status: Synced { synced_da_height: 367 }, .. } -2026-04-20T11:16:52.923299Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 368, latest_finalized_slot_number: 367, sync_status: Synced { synced_da_height: 367 }, .. } -2026-04-20T11:16:52.923372Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:16:52.929782Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00029344s -2026-04-20T11:16:52.929806Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:16:58.916352Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=369 prev_hash=0xa263906df73029737f627af526eedc45a5152d11ee65698919c0c5e5a6886de5 hash=0x3082634a865ca1e009984c121a0d3843da578b69506c77ba6de1131539952d68 producing_time=1.299902ms -2026-04-20T11:16:58.920959Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=369 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a320a272c5a7914720986bb6409ea7939754d87d9864782d1c9b7778b5ca16b69" batch_blobs=[] proof_blobs=[] -2026-04-20T11:16:58.921339Z DEBUG StfBlueprint::apply_slot{context=Node da_height=369}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a320a272c5a7914720986bb6409ea7939754d87d9864782d1c9b7778b5ca16b69 next_version=369 sesssion_starting_time=61.669µs -2026-04-20T11:16:58.922074Z DEBUG StfBlueprint::apply_slot{context=Node da_height=369}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a00f2026424ec836b48b1dd685657a5a19a0dfea7315ca4e5ca556543b4a78e8d next_version=369 time=813.355µs accesses_build_time=15.87µs finishing_session_time=701.456µs -2026-04-20T11:16:58.922134Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a404b21bd84774bfb4801f83132f52d7b3bdf3be1ec0b6ad56d21a9a74f14c664" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a00f2026424ec836b48b1dd685657a5a19a0dfea7315ca4e5ca556543b4a78e8d" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:16:58.922679Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 369, latest_finalized_slot_number: 368, sync_status: Synced { synced_da_height: 368 }, .. } -2026-04-20T11:16:58.922775Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 369, latest_finalized_slot_number: 368, sync_status: Synced { synced_da_height: 368 }, .. } -2026-04-20T11:16:58.922834Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:16:58.929110Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999304637s -2026-04-20T11:16:58.929149Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:17:04.918691Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=370 prev_hash=0x3082634a865ca1e009984c121a0d3843da578b69506c77ba6de1131539952d68 hash=0x0fba3d9f208a5fb1a68128e9a98a0b6ff010dcb6664e6af5b295313b180043ac producing_time=765.635µs -2026-04-20T11:17:04.920184Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=370 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a00f2026424ec836b48b1dd685657a5a19a0dfea7315ca4e5ca556543b4a78e8d" batch_blobs=[] proof_blobs=[] -2026-04-20T11:17:04.920533Z DEBUG StfBlueprint::apply_slot{context=Node da_height=370}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a00f2026424ec836b48b1dd685657a5a19a0dfea7315ca4e5ca556543b4a78e8d next_version=370 sesssion_starting_time=47.709µs -2026-04-20T11:17:04.921071Z DEBUG StfBlueprint::apply_slot{context=Node da_height=370}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a433fd0a34acca24b55f549b52e7477529d1a2c38aea80840ab15d9eaa177d569 next_version=370 time=600.796µs accesses_build_time=14.02µs finishing_session_time=503.767µs -2026-04-20T11:17:04.921124Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a320a272c5a7914720986bb6409ea7939754d87d9864782d1c9b7778b5ca16b69" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a433fd0a34acca24b55f549b52e7477529d1a2c38aea80840ab15d9eaa177d569" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:17:04.921518Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 370, latest_finalized_slot_number: 369, sync_status: Synced { synced_da_height: 369 }, .. } -2026-04-20T11:17:04.921610Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 370, latest_finalized_slot_number: 369, sync_status: Synced { synced_da_height: 369 }, .. } -2026-04-20T11:17:04.921667Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:17:04.927241Z DEBUG sov_stf_runner::runner: Block execution complete time=5.998094984s -2026-04-20T11:17:04.927269Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:17:10.920732Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=371 prev_hash=0x0fba3d9f208a5fb1a68128e9a98a0b6ff010dcb6664e6af5b295313b180043ac hash=0x7de2f278330f4c38ebc06099e90deceae4c6b2e888bcd021d25ca90069d9cee6 producing_time=1.217442ms -2026-04-20T11:17:10.928537Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=371 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a433fd0a34acca24b55f549b52e7477529d1a2c38aea80840ab15d9eaa177d569" batch_blobs=[] proof_blobs=[] -2026-04-20T11:17:10.928889Z DEBUG StfBlueprint::apply_slot{context=Node da_height=371}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a433fd0a34acca24b55f549b52e7477529d1a2c38aea80840ab15d9eaa177d569 next_version=371 sesssion_starting_time=45.54µs -2026-04-20T11:17:10.929712Z DEBUG StfBlueprint::apply_slot{context=Node da_height=371}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a1b82928d691eab5e865b160165b879cd7c8430fd9e01d908979a0732ba6b25de next_version=371 time=885.064µs accesses_build_time=15.81µs finishing_session_time=790.835µs -2026-04-20T11:17:10.929791Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a00f2026424ec836b48b1dd685657a5a19a0dfea7315ca4e5ca556543b4a78e8d" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a1b82928d691eab5e865b160165b879cd7c8430fd9e01d908979a0732ba6b25de" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:17:10.930370Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 371, latest_finalized_slot_number: 370, sync_status: Synced { synced_da_height: 370 }, .. } -2026-04-20T11:17:10.930478Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 371, latest_finalized_slot_number: 370, sync_status: Synced { synced_da_height: 370 }, .. } -2026-04-20T11:17:10.930555Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:17:10.937097Z DEBUG sov_stf_runner::runner: Block execution complete time=6.009829839s -2026-04-20T11:17:10.937120Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:17:16.922747Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=372 prev_hash=0x7de2f278330f4c38ebc06099e90deceae4c6b2e888bcd021d25ca90069d9cee6 hash=0x57b7adacced0b768aacfbe82e4cbc08d43f712820f5e048d0f954d3375b47017 producing_time=1.200842ms -2026-04-20T11:17:16.928425Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=372 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a1b82928d691eab5e865b160165b879cd7c8430fd9e01d908979a0732ba6b25de" batch_blobs=[] proof_blobs=[] -2026-04-20T11:17:16.928804Z DEBUG StfBlueprint::apply_slot{context=Node da_height=372}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a1b82928d691eab5e865b160165b879cd7c8430fd9e01d908979a0732ba6b25de next_version=372 sesssion_starting_time=46.18µs -2026-04-20T11:17:16.929523Z DEBUG StfBlueprint::apply_slot{context=Node da_height=372}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a7464b1b55dad3c43d46e15d673ca516a0ffcddcc898a3c66412cdafe9d12f4e2 next_version=372 time=782.755µs accesses_build_time=15.899µs finishing_session_time=691.175µs -2026-04-20T11:17:16.929598Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a433fd0a34acca24b55f549b52e7477529d1a2c38aea80840ab15d9eaa177d569" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a7464b1b55dad3c43d46e15d673ca516a0ffcddcc898a3c66412cdafe9d12f4e2" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:17:16.930148Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 372, latest_finalized_slot_number: 371, sync_status: Synced { synced_da_height: 371 }, .. } -2026-04-20T11:17:16.930236Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 372, latest_finalized_slot_number: 371, sync_status: Synced { synced_da_height: 371 }, .. } -2026-04-20T11:17:16.930294Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:17:16.937131Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000011692s -2026-04-20T11:17:16.937155Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:17:22.924891Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=373 prev_hash=0x57b7adacced0b768aacfbe82e4cbc08d43f712820f5e048d0f954d3375b47017 hash=0x4a652d9cf0982de3d44ea5ff2dfc19f4578d0100c0ca03b163c3f1736c99e7bb producing_time=1.128972ms -2026-04-20T11:17:22.928526Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=373 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a7464b1b55dad3c43d46e15d673ca516a0ffcddcc898a3c66412cdafe9d12f4e2" batch_blobs=[] proof_blobs=[] -2026-04-20T11:17:22.928867Z DEBUG StfBlueprint::apply_slot{context=Node da_height=373}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a7464b1b55dad3c43d46e15d673ca516a0ffcddcc898a3c66412cdafe9d12f4e2 next_version=373 sesssion_starting_time=45.66µs -2026-04-20T11:17:22.929601Z DEBUG StfBlueprint::apply_slot{context=Node da_height=373}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a1c06dad211d56d47be87c6da92076a0e4b83c43d4edceb23a9b3f2e713e11b36 next_version=373 time=796.535µs accesses_build_time=15.17µs finishing_session_time=704.896µs -2026-04-20T11:17:22.929668Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a1b82928d691eab5e865b160165b879cd7c8430fd9e01d908979a0732ba6b25de" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a1c06dad211d56d47be87c6da92076a0e4b83c43d4edceb23a9b3f2e713e11b36" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:17:22.930186Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 373, latest_finalized_slot_number: 372, sync_status: Synced { synced_da_height: 372 }, .. } -2026-04-20T11:17:22.930284Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 373, latest_finalized_slot_number: 372, sync_status: Synced { synced_da_height: 372 }, .. } -2026-04-20T11:17:22.930355Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:17:22.937060Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999905143s -2026-04-20T11:17:22.937092Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:17:28.927486Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=374 prev_hash=0x4a652d9cf0982de3d44ea5ff2dfc19f4578d0100c0ca03b163c3f1736c99e7bb hash=0xf8bda7cc14072f4d5946bca324db6b742ff06d66eaf78837e4dc91d73283a4e2 producing_time=1.146203ms -2026-04-20T11:17:28.927957Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=374 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a1c06dad211d56d47be87c6da92076a0e4b83c43d4edceb23a9b3f2e713e11b36" batch_blobs=[] proof_blobs=[] -2026-04-20T11:17:28.928299Z DEBUG StfBlueprint::apply_slot{context=Node da_height=374}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a1c06dad211d56d47be87c6da92076a0e4b83c43d4edceb23a9b3f2e713e11b36 next_version=374 sesssion_starting_time=46.019µs -2026-04-20T11:17:28.929069Z DEBUG StfBlueprint::apply_slot{context=Node da_height=374}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a62b37ed51822d2fc6269ca707c8ba7f1a4ceae316da5f3e1207458f71d6a59d9 next_version=374 time=833.014µs accesses_build_time=15.66µs finishing_session_time=725.665µs -2026-04-20T11:17:28.929140Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a7464b1b55dad3c43d46e15d673ca516a0ffcddcc898a3c66412cdafe9d12f4e2" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a62b37ed51822d2fc6269ca707c8ba7f1a4ceae316da5f3e1207458f71d6a59d9" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:17:28.929641Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 374, latest_finalized_slot_number: 373, sync_status: Synced { synced_da_height: 373 }, .. } -2026-04-20T11:17:28.929754Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 374, latest_finalized_slot_number: 373, sync_status: Synced { synced_da_height: 373 }, .. } -2026-04-20T11:17:28.929825Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:17:28.935821Z DEBUG sov_stf_runner::runner: Block execution complete time=5.99873116s -2026-04-20T11:17:28.935845Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:17:34.930569Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=375 prev_hash=0xf8bda7cc14072f4d5946bca324db6b742ff06d66eaf78837e4dc91d73283a4e2 hash=0x42327779acf65dbd17f73bb193ca704aac40546ea456a7b1113f1740a1372a47 producing_time=1.219342ms -2026-04-20T11:17:34.937432Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=375 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a62b37ed51822d2fc6269ca707c8ba7f1a4ceae316da5f3e1207458f71d6a59d9" batch_blobs=[] proof_blobs=[] -2026-04-20T11:17:34.937772Z DEBUG StfBlueprint::apply_slot{context=Node da_height=375}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a62b37ed51822d2fc6269ca707c8ba7f1a4ceae316da5f3e1207458f71d6a59d9 next_version=375 sesssion_starting_time=46.25µs -2026-04-20T11:17:34.938481Z DEBUG StfBlueprint::apply_slot{context=Node da_height=375}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a65e06ef0c2ec50bbba05b3d238451cf3f4d2e2e25bba08b0476e3b75f258b06f next_version=375 time=771.935µs accesses_build_time=15.559µs finishing_session_time=680.935µs -2026-04-20T11:17:34.938545Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a1c06dad211d56d47be87c6da92076a0e4b83c43d4edceb23a9b3f2e713e11b36" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a65e06ef0c2ec50bbba05b3d238451cf3f4d2e2e25bba08b0476e3b75f258b06f" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:17:34.938999Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 375, latest_finalized_slot_number: 375, sync_status: Synced { synced_da_height: 374 }, .. } -2026-04-20T11:17:34.939092Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 375, latest_finalized_slot_number: 375, sync_status: Synced { synced_da_height: 374 }, .. } -2026-04-20T11:17:34.939155Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:17:34.952392Z DEBUG sov_stf_runner::runner: Block execution complete time=6.016547795s -2026-04-20T11:17:34.952430Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:17:40.933478Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=376 prev_hash=0x42327779acf65dbd17f73bb193ca704aac40546ea456a7b1113f1740a1372a47 hash=0xf30e2ff70ccd8fd63e3ecd8ca2d4ba5de8dcdf346e5e83c379cf24035aca434c producing_time=1.082763ms -2026-04-20T11:17:40.933903Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=376 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a65e06ef0c2ec50bbba05b3d238451cf3f4d2e2e25bba08b0476e3b75f258b06f" batch_blobs=[] proof_blobs=[] -2026-04-20T11:17:40.934234Z DEBUG StfBlueprint::apply_slot{context=Node da_height=376}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a65e06ef0c2ec50bbba05b3d238451cf3f4d2e2e25bba08b0476e3b75f258b06f next_version=376 sesssion_starting_time=47.55µs -2026-04-20T11:17:40.935010Z DEBUG StfBlueprint::apply_slot{context=Node da_height=376}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a640e236372fa219167bb8459d4927b0d53b04bf22114e3bf1380754ec2e5ce34 next_version=376 time=840.545µs accesses_build_time=15.49µs finishing_session_time=750.175µs -2026-04-20T11:17:40.935081Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a65e06ef0c2ec50bbba05b3d238451cf3f4d2e2e25bba08b0476e3b75f258b06f" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a640e236372fa219167bb8459d4927b0d53b04bf22114e3bf1380754ec2e5ce34" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:17:40.935512Z DEBUG sov_stf_runner::runner: Block execution complete time=5.983084511s -2026-04-20T11:17:40.935552Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:17:40.935586Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 376, latest_finalized_slot_number: 375, sync_status: Synced { synced_da_height: 375 }, .. } -2026-04-20T11:17:40.935671Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 376, latest_finalized_slot_number: 375, sync_status: Synced { synced_da_height: 375 }, .. } -2026-04-20T11:17:40.935730Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:17:46.935587Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=377 prev_hash=0xf30e2ff70ccd8fd63e3ecd8ca2d4ba5de8dcdf346e5e83c379cf24035aca434c hash=0xf2d5c9a700f281303050e64d1bb57177639ba75a2b964a0bde06820d5d244584 producing_time=1.111653ms -2026-04-20T11:17:46.937851Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=377 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a640e236372fa219167bb8459d4927b0d53b04bf22114e3bf1380754ec2e5ce34" batch_blobs=[] proof_blobs=[] -2026-04-20T11:17:46.938208Z DEBUG StfBlueprint::apply_slot{context=Node da_height=377}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a640e236372fa219167bb8459d4927b0d53b04bf22114e3bf1380754ec2e5ce34 next_version=377 sesssion_starting_time=48.55µs -2026-04-20T11:17:46.939006Z DEBUG StfBlueprint::apply_slot{context=Node da_height=377}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a5053c87a8ec77d0ad71986f52416f253a67da8f7fcd3fe80c0a4868c7d258894 next_version=377 time=862.835µs accesses_build_time=14.74µs finishing_session_time=769.665µs -2026-04-20T11:17:46.939085Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a65e06ef0c2ec50bbba05b3d238451cf3f4d2e2e25bba08b0476e3b75f258b06f" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a5053c87a8ec77d0ad71986f52416f253a67da8f7fcd3fe80c0a4868c7d258894" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:17:46.939619Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 377, latest_finalized_slot_number: 376, sync_status: Synced { synced_da_height: 376 }, .. } -2026-04-20T11:17:46.939883Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 377, latest_finalized_slot_number: 376, sync_status: Synced { synced_da_height: 376 }, .. } -2026-04-20T11:17:46.939961Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:17:46.946003Z DEBUG sov_stf_runner::runner: Block execution complete time=6.010453205s -2026-04-20T11:17:46.946029Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:17:52.937981Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=378 prev_hash=0xf2d5c9a700f281303050e64d1bb57177639ba75a2b964a0bde06820d5d244584 hash=0x20eb9a856b20774a50536908757bbc49b28232a2bcdc397b99f73d2ee3481826 producing_time=1.113133ms -2026-04-20T11:17:52.947815Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=378 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a5053c87a8ec77d0ad71986f52416f253a67da8f7fcd3fe80c0a4868c7d258894" batch_blobs=[] proof_blobs=[] -2026-04-20T11:17:52.948163Z DEBUG StfBlueprint::apply_slot{context=Node da_height=378}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a5053c87a8ec77d0ad71986f52416f253a67da8f7fcd3fe80c0a4868c7d258894 next_version=378 sesssion_starting_time=45.95µs -2026-04-20T11:17:52.948934Z DEBUG StfBlueprint::apply_slot{context=Node da_height=378}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a6639a9bfd2e6d4710ee337139c22c4658584da7a805fb9250e22a781421bafb7 next_version=378 time=833.004µs accesses_build_time=15.879µs finishing_session_time=741.985µs -2026-04-20T11:17:52.949009Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a640e236372fa219167bb8459d4927b0d53b04bf22114e3bf1380754ec2e5ce34" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a6639a9bfd2e6d4710ee337139c22c4658584da7a805fb9250e22a781421bafb7" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:17:52.949579Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 378, latest_finalized_slot_number: 377, sync_status: Syncing { synced_da_height: 377, target_da_height: 378 }, .. } -2026-04-20T11:17:52.949683Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 378, latest_finalized_slot_number: 377, sync_status: Syncing { synced_da_height: 377, target_da_height: 378 }, .. } -2026-04-20T11:17:52.949742Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:17:52.955981Z DEBUG sov_stf_runner::runner: Block execution complete time=6.009953838s -2026-04-20T11:17:52.956006Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:17:58.940129Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=379 prev_hash=0x20eb9a856b20774a50536908757bbc49b28232a2bcdc397b99f73d2ee3481826 hash=0x6fc971e817aa7202f8eaf991cb6c4090dc903e6220e14aa56d8ee4f003ed712c producing_time=1.51738ms -2026-04-20T11:17:58.947853Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=379 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a6639a9bfd2e6d4710ee337139c22c4658584da7a805fb9250e22a781421bafb7" batch_blobs=[] proof_blobs=[] -2026-04-20T11:17:58.948224Z DEBUG StfBlueprint::apply_slot{context=Node da_height=379}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a6639a9bfd2e6d4710ee337139c22c4658584da7a805fb9250e22a781421bafb7 next_version=379 sesssion_starting_time=51.409µs -2026-04-20T11:17:58.949083Z DEBUG StfBlueprint::apply_slot{context=Node da_height=379}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a415a163ae5e6f483d3dd8bf936c2ee4ac3e22f3bcc054e7f2ceb7e5e663d714c next_version=379 time=929.704µs accesses_build_time=18.14µs finishing_session_time=823.255µs -2026-04-20T11:17:58.949160Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a5053c87a8ec77d0ad71986f52416f253a67da8f7fcd3fe80c0a4868c7d258894" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a415a163ae5e6f483d3dd8bf936c2ee4ac3e22f3bcc054e7f2ceb7e5e663d714c" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:17:58.949695Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 379, latest_finalized_slot_number: 378, sync_status: Syncing { synced_da_height: 378, target_da_height: 379 }, .. } -2026-04-20T11:17:58.949789Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 379, latest_finalized_slot_number: 378, sync_status: Syncing { synced_da_height: 378, target_da_height: 379 }, .. } -2026-04-20T11:17:58.949847Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:17:58.955933Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999928403s -2026-04-20T11:17:58.955957Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:18:04.941774Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=380 prev_hash=0x6fc971e817aa7202f8eaf991cb6c4090dc903e6220e14aa56d8ee4f003ed712c hash=0xec1131fe097bd05fc32e974ec54936827315111f4a4a3a363bb1c53ff72ac200 producing_time=1.126842ms -2026-04-20T11:18:04.947479Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=380 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a415a163ae5e6f483d3dd8bf936c2ee4ac3e22f3bcc054e7f2ceb7e5e663d714c" batch_blobs=[] proof_blobs=[] -2026-04-20T11:18:04.947830Z DEBUG StfBlueprint::apply_slot{context=Node da_height=380}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a415a163ae5e6f483d3dd8bf936c2ee4ac3e22f3bcc054e7f2ceb7e5e663d714c next_version=380 sesssion_starting_time=49.189µs -2026-04-20T11:18:04.948592Z DEBUG StfBlueprint::apply_slot{context=Node da_height=380}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a16745875de29950febb664b315934d7f63d7b875f30aa56b650003251f18925e next_version=380 time=831.174µs accesses_build_time=18.47µs finishing_session_time=726.506µs -2026-04-20T11:18:04.948676Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a6639a9bfd2e6d4710ee337139c22c4658584da7a805fb9250e22a781421bafb7" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a16745875de29950febb664b315934d7f63d7b875f30aa56b650003251f18925e" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:18:04.949211Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 380, latest_finalized_slot_number: 379, sync_status: Synced { synced_da_height: 379 }, .. } -2026-04-20T11:18:04.949326Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 380, latest_finalized_slot_number: 379, sync_status: Synced { synced_da_height: 379 }, .. } -2026-04-20T11:18:04.949400Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:18:04.956276Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00031986s -2026-04-20T11:18:04.956305Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:18:10.944554Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=381 prev_hash=0xec1131fe097bd05fc32e974ec54936827315111f4a4a3a363bb1c53ff72ac200 hash=0x1b86ecf6b378d654d669a4d27acf3a2d4f56a9d7bccd1b02b65f38c9039136f1 producing_time=1.253052ms -2026-04-20T11:18:10.947207Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=381 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a16745875de29950febb664b315934d7f63d7b875f30aa56b650003251f18925e" batch_blobs=[] proof_blobs=[] -2026-04-20T11:18:10.947577Z DEBUG StfBlueprint::apply_slot{context=Node da_height=381}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a16745875de29950febb664b315934d7f63d7b875f30aa56b650003251f18925e next_version=381 sesssion_starting_time=46.639µs -2026-04-20T11:18:10.948334Z DEBUG StfBlueprint::apply_slot{context=Node da_height=381}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a3be9b103854914ae76d821872ea3ad22b01f58ef09940a769956b62dacebcd84 next_version=381 time=820.285µs accesses_build_time=15.23µs finishing_session_time=725.466µs -2026-04-20T11:18:10.948399Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a415a163ae5e6f483d3dd8bf936c2ee4ac3e22f3bcc054e7f2ceb7e5e663d714c" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a3be9b103854914ae76d821872ea3ad22b01f58ef09940a769956b62dacebcd84" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:18:10.948891Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 381, latest_finalized_slot_number: 380, sync_status: Synced { synced_da_height: 380 }, .. } -2026-04-20T11:18:10.948978Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 381, latest_finalized_slot_number: 380, sync_status: Synced { synced_da_height: 380 }, .. } -2026-04-20T11:18:10.949047Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:18:10.955930Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999626525s -2026-04-20T11:18:10.955955Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:18:16.947490Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=382 prev_hash=0x1b86ecf6b378d654d669a4d27acf3a2d4f56a9d7bccd1b02b65f38c9039136f1 hash=0x3037112bd12626bb65f6c630caaeb5f7575875cfe8d7f4141916a3a7b739e51e producing_time=1.202202ms -2026-04-20T11:18:16.957333Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=382 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a3be9b103854914ae76d821872ea3ad22b01f58ef09940a769956b62dacebcd84" batch_blobs=[] proof_blobs=[] -2026-04-20T11:18:16.957703Z DEBUG StfBlueprint::apply_slot{context=Node da_height=382}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a3be9b103854914ae76d821872ea3ad22b01f58ef09940a769956b62dacebcd84 next_version=382 sesssion_starting_time=48.289µs -2026-04-20T11:18:16.958446Z DEBUG StfBlueprint::apply_slot{context=Node da_height=382}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a32ef165315d7e2ab6b92de663c079431c5ae8a64370a9d653db8ebe98cae2938 next_version=382 time=809.375µs accesses_build_time=17.411µs finishing_session_time=708.225µs -2026-04-20T11:18:16.958523Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a16745875de29950febb664b315934d7f63d7b875f30aa56b650003251f18925e" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a32ef165315d7e2ab6b92de663c079431c5ae8a64370a9d653db8ebe98cae2938" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:18:16.959042Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 382, latest_finalized_slot_number: 381, sync_status: Synced { synced_da_height: 381 }, .. } -2026-04-20T11:18:16.959147Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 382, latest_finalized_slot_number: 381, sync_status: Synced { synced_da_height: 381 }, .. } -2026-04-20T11:18:16.959218Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:18:16.965779Z DEBUG sov_stf_runner::runner: Block execution complete time=6.009825119s -2026-04-20T11:18:16.965803Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:18:22.950419Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=383 prev_hash=0x3037112bd12626bb65f6c630caaeb5f7575875cfe8d7f4141916a3a7b739e51e hash=0x79c3c3acd02937070c01f4207c21b6594b1eadb83360e830a879e668b26faaac producing_time=1.173783ms -2026-04-20T11:18:22.956942Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=383 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a32ef165315d7e2ab6b92de663c079431c5ae8a64370a9d653db8ebe98cae2938" batch_blobs=[] proof_blobs=[] -2026-04-20T11:18:22.957294Z DEBUG StfBlueprint::apply_slot{context=Node da_height=383}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a32ef165315d7e2ab6b92de663c079431c5ae8a64370a9d653db8ebe98cae2938 next_version=383 sesssion_starting_time=47.19µs -2026-04-20T11:18:22.958088Z DEBUG StfBlueprint::apply_slot{context=Node da_height=383}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a5652caa2ccc2dd52b57a3bc562a62c2c645920cc80341e11eb82bcba9e0f6d22 next_version=383 time=858.704µs accesses_build_time=17.32µs finishing_session_time=752.115µs -2026-04-20T11:18:22.958164Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a3be9b103854914ae76d821872ea3ad22b01f58ef09940a769956b62dacebcd84" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a5652caa2ccc2dd52b57a3bc562a62c2c645920cc80341e11eb82bcba9e0f6d22" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:18:22.958676Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 383, latest_finalized_slot_number: 382, sync_status: Synced { synced_da_height: 382 }, .. } -2026-04-20T11:18:22.958789Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 383, latest_finalized_slot_number: 382, sync_status: Synced { synced_da_height: 382 }, .. } -2026-04-20T11:18:22.958855Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:18:22.964774Z DEBUG sov_stf_runner::runner: Block execution complete time=5.998972069s -2026-04-20T11:18:22.964801Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:18:28.953652Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=384 prev_hash=0x79c3c3acd02937070c01f4207c21b6594b1eadb83360e830a879e668b26faaac hash=0xe1a1d68fafdfcc751b1c2316a8e4d4f7d224a703f20d24e8b4cd5158e896eda2 producing_time=1.173133ms -2026-04-20T11:18:28.956285Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=384 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a5652caa2ccc2dd52b57a3bc562a62c2c645920cc80341e11eb82bcba9e0f6d22" batch_blobs=[] proof_blobs=[] -2026-04-20T11:18:28.956641Z DEBUG StfBlueprint::apply_slot{context=Node da_height=384}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a5652caa2ccc2dd52b57a3bc562a62c2c645920cc80341e11eb82bcba9e0f6d22 next_version=384 sesssion_starting_time=48.1µs -2026-04-20T11:18:28.957332Z DEBUG StfBlueprint::apply_slot{context=Node da_height=384}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a3ccffeff12f7467e481482ff0134cec6cec4a63b995a97738d4fe325553475c0 next_version=384 time=756.295µs accesses_build_time=15.92µs finishing_session_time=660.606µs -2026-04-20T11:18:28.957395Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a32ef165315d7e2ab6b92de663c079431c5ae8a64370a9d653db8ebe98cae2938" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a3ccffeff12f7467e481482ff0134cec6cec4a63b995a97738d4fe325553475c0" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:18:28.957911Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 384, latest_finalized_slot_number: 383, sync_status: Synced { synced_da_height: 383 }, .. } -2026-04-20T11:18:28.957993Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 384, latest_finalized_slot_number: 383, sync_status: Synced { synced_da_height: 383 }, .. } -2026-04-20T11:18:28.958050Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:18:28.968722Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003922448s -2026-04-20T11:18:28.968761Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:18:34.956546Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=385 prev_hash=0xe1a1d68fafdfcc751b1c2316a8e4d4f7d224a703f20d24e8b4cd5158e896eda2 hash=0xa2760a9bdffa3a2b10531ea5a5c8bb9f4277d89b48171fcb03b7c6f60800f754 producing_time=1.193082ms -2026-04-20T11:18:34.960173Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=385 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a3ccffeff12f7467e481482ff0134cec6cec4a63b995a97738d4fe325553475c0" batch_blobs=[] proof_blobs=[] -2026-04-20T11:18:34.960538Z DEBUG StfBlueprint::apply_slot{context=Node da_height=385}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a3ccffeff12f7467e481482ff0134cec6cec4a63b995a97738d4fe325553475c0 next_version=385 sesssion_starting_time=48.459µs -2026-04-20T11:18:34.961268Z DEBUG StfBlueprint::apply_slot{context=Node da_height=385}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a2cc12c51e8df49df95eb77bdc3cf52e8ab031a4b11c3d4451aaf7f2843290d12 next_version=385 time=794.905µs accesses_build_time=15.34µs finishing_session_time=696.456µs -2026-04-20T11:18:34.961342Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a5652caa2ccc2dd52b57a3bc562a62c2c645920cc80341e11eb82bcba9e0f6d22" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a2cc12c51e8df49df95eb77bdc3cf52e8ab031a4b11c3d4451aaf7f2843290d12" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:18:34.961850Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 385, latest_finalized_slot_number: 384, sync_status: Synced { synced_da_height: 384 }, .. } -2026-04-20T11:18:34.961951Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 385, latest_finalized_slot_number: 384, sync_status: Synced { synced_da_height: 384 }, .. } -2026-04-20T11:18:34.962022Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:18:34.971589Z DEBUG sov_stf_runner::runner: Block execution complete time=6.002829964s -2026-04-20T11:18:34.971621Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:18:40.958728Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=386 prev_hash=0xa2760a9bdffa3a2b10531ea5a5c8bb9f4277d89b48171fcb03b7c6f60800f754 hash=0x43cbdcd9618f9ca82f2dead5b2b963554aa194dd2f052568b3ee3da0d0f39510 producing_time=1.089863ms -2026-04-20T11:18:40.963294Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=386 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a2cc12c51e8df49df95eb77bdc3cf52e8ab031a4b11c3d4451aaf7f2843290d12" batch_blobs=[] proof_blobs=[] -2026-04-20T11:18:40.963644Z DEBUG StfBlueprint::apply_slot{context=Node da_height=386}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a2cc12c51e8df49df95eb77bdc3cf52e8ab031a4b11c3d4451aaf7f2843290d12 next_version=386 sesssion_starting_time=45.929µs -2026-04-20T11:18:40.964377Z DEBUG StfBlueprint::apply_slot{context=Node da_height=386}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a40c7ce92d0a82d5a9f8e3b1154dc7bbb72b78745f4fb09f99b836f566ede61a6 next_version=386 time=794.644µs accesses_build_time=15.32µs finishing_session_time=699.845µs -2026-04-20T11:18:40.964458Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a3ccffeff12f7467e481482ff0134cec6cec4a63b995a97738d4fe325553475c0" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a40c7ce92d0a82d5a9f8e3b1154dc7bbb72b78745f4fb09f99b836f566ede61a6" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:18:40.964921Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 386, latest_finalized_slot_number: 385, sync_status: Synced { synced_da_height: 385 }, .. } -2026-04-20T11:18:40.965021Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 386, latest_finalized_slot_number: 385, sync_status: Synced { synced_da_height: 385 }, .. } -2026-04-20T11:18:40.965080Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:18:40.971889Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000269821s -2026-04-20T11:18:40.971912Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:18:46.961278Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=387 prev_hash=0x43cbdcd9618f9ca82f2dead5b2b963554aa194dd2f052568b3ee3da0d0f39510 hash=0x1c18fbeb3155f532fb259535c54b2f3c5ded97c6694b1e07ba5d05c124e8463e producing_time=1.179993ms -2026-04-20T11:18:46.962947Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=387 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a40c7ce92d0a82d5a9f8e3b1154dc7bbb72b78745f4fb09f99b836f566ede61a6" batch_blobs=[] proof_blobs=[] -2026-04-20T11:18:46.963295Z DEBUG StfBlueprint::apply_slot{context=Node da_height=387}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a40c7ce92d0a82d5a9f8e3b1154dc7bbb72b78745f4fb09f99b836f566ede61a6 next_version=387 sesssion_starting_time=49.28µs -2026-04-20T11:18:46.964052Z DEBUG StfBlueprint::apply_slot{context=Node da_height=387}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a6422fc6dffb50035c738641c8a98b5c6352b00b244ff676f2ca35318bec068f8 next_version=387 time=822.455µs accesses_build_time=15.2µs finishing_session_time=715.836µs -2026-04-20T11:18:46.964116Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a2cc12c51e8df49df95eb77bdc3cf52e8ab031a4b11c3d4451aaf7f2843290d12" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a6422fc6dffb50035c738641c8a98b5c6352b00b244ff676f2ca35318bec068f8" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:18:46.964617Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 387, latest_finalized_slot_number: 386, sync_status: Synced { synced_da_height: 386 }, .. } -2026-04-20T11:18:46.964716Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 387, latest_finalized_slot_number: 386, sync_status: Synced { synced_da_height: 386 }, .. } -2026-04-20T11:18:46.964782Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:18:46.971293Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999381457s -2026-04-20T11:18:46.971340Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:18:52.963387Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=388 prev_hash=0x1c18fbeb3155f532fb259535c54b2f3c5ded97c6694b1e07ba5d05c124e8463e hash=0x475d2bce6711d75127d7518ada78ab30b545d943a292843c1d3de1c1d0208d43 producing_time=1.221132ms -2026-04-20T11:18:52.972058Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=388 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a6422fc6dffb50035c738641c8a98b5c6352b00b244ff676f2ca35318bec068f8" batch_blobs=[] proof_blobs=[] -2026-04-20T11:18:52.972424Z DEBUG StfBlueprint::apply_slot{context=Node da_height=388}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a6422fc6dffb50035c738641c8a98b5c6352b00b244ff676f2ca35318bec068f8 next_version=388 sesssion_starting_time=45.85µs -2026-04-20T11:18:52.973187Z DEBUG StfBlueprint::apply_slot{context=Node da_height=388}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a50d84d9627a076d62f28f62ff25df3cc2fc744809b9e34a90c567b7869ca17ae next_version=388 time=824.365µs accesses_build_time=14.71µs finishing_session_time=726.585µs -2026-04-20T11:18:52.973248Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a40c7ce92d0a82d5a9f8e3b1154dc7bbb72b78745f4fb09f99b836f566ede61a6" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a50d84d9627a076d62f28f62ff25df3cc2fc744809b9e34a90c567b7869ca17ae" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:18:52.973761Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 388, latest_finalized_slot_number: 387, sync_status: Synced { synced_da_height: 387 }, .. } -2026-04-20T11:18:52.973858Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 388, latest_finalized_slot_number: 387, sync_status: Synced { synced_da_height: 387 }, .. } -2026-04-20T11:18:52.973926Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:18:52.980993Z DEBUG sov_stf_runner::runner: Block execution complete time=6.009654531s -2026-04-20T11:18:52.981015Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:18:58.965622Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=389 prev_hash=0x475d2bce6711d75127d7518ada78ab30b545d943a292843c1d3de1c1d0208d43 hash=0x22720a2fe27a21de6d9b0026b48c5a581ecfcf71d97900c0427799bf73f7603a producing_time=1.115903ms -2026-04-20T11:18:58.972172Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=389 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a50d84d9627a076d62f28f62ff25df3cc2fc744809b9e34a90c567b7869ca17ae" batch_blobs=[] proof_blobs=[] -2026-04-20T11:18:58.972521Z DEBUG StfBlueprint::apply_slot{context=Node da_height=389}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a50d84d9627a076d62f28f62ff25df3cc2fc744809b9e34a90c567b7869ca17ae next_version=389 sesssion_starting_time=46.069µs -2026-04-20T11:18:58.973214Z DEBUG StfBlueprint::apply_slot{context=Node da_height=389}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a3854a0d441c82178e342da95352297e4efd70f1a21cef24e2eece72432d7cb28 next_version=389 time=754.545µs accesses_build_time=14.54µs finishing_session_time=662.716µs -2026-04-20T11:18:58.973270Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a6422fc6dffb50035c738641c8a98b5c6352b00b244ff676f2ca35318bec068f8" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a3854a0d441c82178e342da95352297e4efd70f1a21cef24e2eece72432d7cb28" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:18:58.973732Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 389, latest_finalized_slot_number: 388, sync_status: Synced { synced_da_height: 388 }, .. } -2026-04-20T11:18:58.973828Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 389, latest_finalized_slot_number: 388, sync_status: Synced { synced_da_height: 388 }, .. } -2026-04-20T11:18:58.973901Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:18:58.981278Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000263211s -2026-04-20T11:18:58.981302Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:19:04.968236Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=390 prev_hash=0x22720a2fe27a21de6d9b0026b48c5a581ecfcf71d97900c0427799bf73f7603a hash=0xdae80dd22a2fbf6fa8531f6cee3a23a2b169a9b1b772c1af745bcf0ffeeb700b producing_time=1.196572ms -2026-04-20T11:19:04.972757Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=390 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a3854a0d441c82178e342da95352297e4efd70f1a21cef24e2eece72432d7cb28" batch_blobs=[] proof_blobs=[] -2026-04-20T11:19:04.973109Z DEBUG StfBlueprint::apply_slot{context=Node da_height=390}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a3854a0d441c82178e342da95352297e4efd70f1a21cef24e2eece72432d7cb28 next_version=390 sesssion_starting_time=47.88µs -2026-04-20T11:19:04.973951Z DEBUG StfBlueprint::apply_slot{context=Node da_height=390}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a3a2aba85bd17dbed5f1fbb725e46ea1ff35fe2be42d7615b34aaf9a4af415e00 next_version=390 time=906.394µs accesses_build_time=15.56µs finishing_session_time=811.125µs -2026-04-20T11:19:04.974023Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a50d84d9627a076d62f28f62ff25df3cc2fc744809b9e34a90c567b7869ca17ae" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a3a2aba85bd17dbed5f1fbb725e46ea1ff35fe2be42d7615b34aaf9a4af415e00" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:19:04.974536Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 390, latest_finalized_slot_number: 389, sync_status: Synced { synced_da_height: 389 }, .. } -2026-04-20T11:19:04.974639Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 390, latest_finalized_slot_number: 389, sync_status: Synced { synced_da_height: 389 }, .. } -2026-04-20T11:19:04.974701Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:19:04.981094Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999792705s -2026-04-20T11:19:04.981119Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:19:10.969690Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=391 prev_hash=0xdae80dd22a2fbf6fa8531f6cee3a23a2b169a9b1b772c1af745bcf0ffeeb700b hash=0x7c0f1f355a377de2e3e60c43686a68f292e6858e5e5b25b7eceb961b742249f7 producing_time=1.179652ms -2026-04-20T11:19:10.972269Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=391 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a3a2aba85bd17dbed5f1fbb725e46ea1ff35fe2be42d7615b34aaf9a4af415e00" batch_blobs=[] proof_blobs=[] -2026-04-20T11:19:10.972647Z DEBUG StfBlueprint::apply_slot{context=Node da_height=391}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a3a2aba85bd17dbed5f1fbb725e46ea1ff35fe2be42d7615b34aaf9a4af415e00 next_version=391 sesssion_starting_time=46.279µs -2026-04-20T11:19:10.973365Z DEBUG StfBlueprint::apply_slot{context=Node da_height=391}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a1f35b83cb8e8a7d51d6e77a5b18121ba4df0c51dc082449ec28e312f02999811 next_version=391 time=780.825µs accesses_build_time=15.369µs finishing_session_time=681.646µs -2026-04-20T11:19:10.973451Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a3854a0d441c82178e342da95352297e4efd70f1a21cef24e2eece72432d7cb28" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a1f35b83cb8e8a7d51d6e77a5b18121ba4df0c51dc082449ec28e312f02999811" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:19:10.973932Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 391, latest_finalized_slot_number: 390, sync_status: Synced { synced_da_height: 390 }, .. } -2026-04-20T11:19:10.974026Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 391, latest_finalized_slot_number: 390, sync_status: Synced { synced_da_height: 390 }, .. } -2026-04-20T11:19:10.974084Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:19:10.980931Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999812925s -2026-04-20T11:19:10.980954Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:19:16.972124Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=392 prev_hash=0x7c0f1f355a377de2e3e60c43686a68f292e6858e5e5b25b7eceb961b742249f7 hash=0xa5076c876c91b903c01d5e21b8ec17b34bb9015c3cd803ba9151d9122f490e16 producing_time=1.180912ms -2026-04-20T11:19:16.982673Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=392 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a1f35b83cb8e8a7d51d6e77a5b18121ba4df0c51dc082449ec28e312f02999811" batch_blobs=[] proof_blobs=[] -2026-04-20T11:19:16.983034Z DEBUG StfBlueprint::apply_slot{context=Node da_height=392}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a1f35b83cb8e8a7d51d6e77a5b18121ba4df0c51dc082449ec28e312f02999811 next_version=392 sesssion_starting_time=48.34µs -2026-04-20T11:19:16.983733Z DEBUG StfBlueprint::apply_slot{context=Node da_height=392}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a3eab9df9c1443c47342ecad9932442a3082b7160ef4331017a3bdbbf2ef5842c next_version=392 time=761.905µs accesses_build_time=14.62µs finishing_session_time=665.605µs -2026-04-20T11:19:16.983819Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a3a2aba85bd17dbed5f1fbb725e46ea1ff35fe2be42d7615b34aaf9a4af415e00" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a3eab9df9c1443c47342ecad9932442a3082b7160ef4331017a3bdbbf2ef5842c" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:19:16.984378Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 392, latest_finalized_slot_number: 392, sync_status: Synced { synced_da_height: 391 }, .. } -2026-04-20T11:19:16.984479Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 392, latest_finalized_slot_number: 392, sync_status: Synced { synced_da_height: 391 }, .. } -2026-04-20T11:19:16.984546Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:19:16.997260Z DEBUG sov_stf_runner::runner: Block execution complete time=6.016307058s -2026-04-20T11:19:16.997276Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:19:22.974374Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=393 prev_hash=0xa5076c876c91b903c01d5e21b8ec17b34bb9015c3cd803ba9151d9122f490e16 hash=0x36dd745130b6ab0925743febe6c8bfc4853ec04e8f9ac46e4b9082ea463e320f producing_time=1.54268ms -2026-04-20T11:19:22.978201Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=393 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a3eab9df9c1443c47342ecad9932442a3082b7160ef4331017a3bdbbf2ef5842c" batch_blobs=[] proof_blobs=[] -2026-04-20T11:19:22.978587Z DEBUG StfBlueprint::apply_slot{context=Node da_height=393}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a3eab9df9c1443c47342ecad9932442a3082b7160ef4331017a3bdbbf2ef5842c next_version=393 sesssion_starting_time=45.1µs -2026-04-20T11:19:22.979355Z DEBUG StfBlueprint::apply_slot{context=Node da_height=393}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a3636d7de278feba1e41d7b3993e05477311412d60c744239a62c6458263191f1 next_version=393 time=829.335µs accesses_build_time=15.69µs finishing_session_time=730.205µs -2026-04-20T11:19:22.979438Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a3eab9df9c1443c47342ecad9932442a3082b7160ef4331017a3bdbbf2ef5842c" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a3636d7de278feba1e41d7b3993e05477311412d60c744239a62c6458263191f1" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:19:22.979890Z DEBUG sov_stf_runner::runner: Block execution complete time=5.982614346s -2026-04-20T11:19:22.979917Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:19:22.979987Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 393, latest_finalized_slot_number: 392, sync_status: Synced { synced_da_height: 392 }, .. } -2026-04-20T11:19:22.980070Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 393, latest_finalized_slot_number: 392, sync_status: Synced { synced_da_height: 392 }, .. } -2026-04-20T11:19:22.980136Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:19:28.977223Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=394 prev_hash=0x36dd745130b6ab0925743febe6c8bfc4853ec04e8f9ac46e4b9082ea463e320f hash=0x03e73dd7b295149d6d2171452cfd34282f8d42b808bea31b4306f05c858b6b92 producing_time=1.401891ms -2026-04-20T11:19:28.981883Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=394 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a3636d7de278feba1e41d7b3993e05477311412d60c744239a62c6458263191f1" batch_blobs=[] proof_blobs=[] -2026-04-20T11:19:28.982240Z DEBUG StfBlueprint::apply_slot{context=Node da_height=394}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a3636d7de278feba1e41d7b3993e05477311412d60c744239a62c6458263191f1 next_version=394 sesssion_starting_time=45.07µs -2026-04-20T11:19:28.982976Z DEBUG StfBlueprint::apply_slot{context=Node da_height=394}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a07f4bf9913de7166318c4f3f1edf5cc94e01faa06ef38745cef1c004c78b9c43 next_version=394 time=795.755µs accesses_build_time=14.11µs finishing_session_time=702.945µs -2026-04-20T11:19:28.983056Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a3eab9df9c1443c47342ecad9932442a3082b7160ef4331017a3bdbbf2ef5842c" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a07f4bf9913de7166318c4f3f1edf5cc94e01faa06ef38745cef1c004c78b9c43" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:19:28.983505Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 394, latest_finalized_slot_number: 394, sync_status: Synced { synced_da_height: 393 }, .. } -2026-04-20T11:19:28.983604Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 394, latest_finalized_slot_number: 394, sync_status: Synced { synced_da_height: 393 }, .. } -2026-04-20T11:19:28.983669Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:19:28.996664Z DEBUG sov_stf_runner::runner: Block execution complete time=6.016748466s -2026-04-20T11:19:28.996704Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:19:34.981141Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=395 prev_hash=0x03e73dd7b295149d6d2171452cfd34282f8d42b808bea31b4306f05c858b6b92 hash=0x5c99389038ed0b1abc387181e5061b1de688dd37efe851062e427c7adf33d919 producing_time=2.718843ms -2026-04-20T11:19:34.988212Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=395 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a07f4bf9913de7166318c4f3f1edf5cc94e01faa06ef38745cef1c004c78b9c43" batch_blobs=[] proof_blobs=[] -2026-04-20T11:19:34.988586Z DEBUG StfBlueprint::apply_slot{context=Node da_height=395}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a07f4bf9913de7166318c4f3f1edf5cc94e01faa06ef38745cef1c004c78b9c43 next_version=395 sesssion_starting_time=44.92µs -2026-04-20T11:19:34.989337Z DEBUG StfBlueprint::apply_slot{context=Node da_height=395}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a090d575d1a8f18564a3beaa1f4d40201f5c43756567cb5cc56e8a9cfea570652 next_version=395 time=812.925µs accesses_build_time=16.25µs finishing_session_time=720.425µs -2026-04-20T11:19:34.989401Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a07f4bf9913de7166318c4f3f1edf5cc94e01faa06ef38745cef1c004c78b9c43" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a090d575d1a8f18564a3beaa1f4d40201f5c43756567cb5cc56e8a9cfea570652" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:19:34.989860Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 395, latest_finalized_slot_number: 395, sync_status: Synced { synced_da_height: 394 }, .. } -2026-04-20T11:19:34.989942Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 395, latest_finalized_slot_number: 395, sync_status: Synced { synced_da_height: 394 }, .. } -2026-04-20T11:19:34.989998Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:19:34.997186Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00048351s -2026-04-20T11:19:34.997230Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:19:40.983872Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=396 prev_hash=0x5c99389038ed0b1abc387181e5061b1de688dd37efe851062e427c7adf33d919 hash=0xf3b7156317895f916ada7470bd3c2daf6db0044508bdf561c694bad337cc893c producing_time=1.424821ms -2026-04-20T11:19:40.988649Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=396 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a090d575d1a8f18564a3beaa1f4d40201f5c43756567cb5cc56e8a9cfea570652" batch_blobs=[] proof_blobs=[] -2026-04-20T11:19:40.989014Z DEBUG StfBlueprint::apply_slot{context=Node da_height=396}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a090d575d1a8f18564a3beaa1f4d40201f5c43756567cb5cc56e8a9cfea570652 next_version=396 sesssion_starting_time=43.92µs -2026-04-20T11:19:40.989711Z DEBUG StfBlueprint::apply_slot{context=Node da_height=396}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a09142fb6b1f8a0d388c3016f2e06125eb1f30e35f433bac6797f7606e98b216a next_version=396 time=758.355µs accesses_build_time=15.73µs finishing_session_time=669.286µs -2026-04-20T11:19:40.989779Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a090d575d1a8f18564a3beaa1f4d40201f5c43756567cb5cc56e8a9cfea570652" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a09142fb6b1f8a0d388c3016f2e06125eb1f30e35f433bac6797f7606e98b216a" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:19:40.990178Z DEBUG sov_stf_runner::runner: Block execution complete time=5.992951299s -2026-04-20T11:19:40.990201Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:19:40.990268Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 396, latest_finalized_slot_number: 395, sync_status: Synced { synced_da_height: 395 }, .. } -2026-04-20T11:19:40.990369Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 396, latest_finalized_slot_number: 395, sync_status: Synced { synced_da_height: 395 }, .. } -2026-04-20T11:19:40.990436Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:19:46.985935Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=397 prev_hash=0xf3b7156317895f916ada7470bd3c2daf6db0044508bdf561c694bad337cc893c hash=0x06969067d72b52983d2a2bcbc0f7240f3803ead943e66db8253b024166b372bb producing_time=1.129433ms -2026-04-20T11:19:46.991608Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=397 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a09142fb6b1f8a0d388c3016f2e06125eb1f30e35f433bac6797f7606e98b216a" batch_blobs=[] proof_blobs=[] -2026-04-20T11:19:46.991954Z DEBUG StfBlueprint::apply_slot{context=Node da_height=397}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a09142fb6b1f8a0d388c3016f2e06125eb1f30e35f433bac6797f7606e98b216a next_version=397 sesssion_starting_time=45.72µs -2026-04-20T11:19:46.992748Z DEBUG StfBlueprint::apply_slot{context=Node da_height=397}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a7cce095386caa01a4217b362a31414ccfc1be7548688335eb5b1b7cee85410d3 next_version=397 time=853.275µs accesses_build_time=13.98µs finishing_session_time=761.395µs -2026-04-20T11:19:46.992827Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a090d575d1a8f18564a3beaa1f4d40201f5c43756567cb5cc56e8a9cfea570652" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a7cce095386caa01a4217b362a31414ccfc1be7548688335eb5b1b7cee85410d3" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:19:46.993305Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 397, latest_finalized_slot_number: 396, sync_status: Syncing { synced_da_height: 396, target_da_height: 397 }, .. } -2026-04-20T11:19:46.993417Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 397, latest_finalized_slot_number: 396, sync_status: Syncing { synced_da_height: 396, target_da_height: 397 }, .. } -2026-04-20T11:19:46.993489Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:19:47.000035Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00983616s -2026-04-20T11:19:47.000064Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:19:52.988181Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=398 prev_hash=0x06969067d72b52983d2a2bcbc0f7240f3803ead943e66db8253b024166b372bb hash=0x95991d0d4a54b5aaa35e637a51c599b83eb9a7e4f636d59e2c8d22a517afffaf producing_time=1.183892ms -2026-04-20T11:19:52.991766Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=398 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a7cce095386caa01a4217b362a31414ccfc1be7548688335eb5b1b7cee85410d3" batch_blobs=[] proof_blobs=[] -2026-04-20T11:19:52.992101Z DEBUG StfBlueprint::apply_slot{context=Node da_height=398}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a7cce095386caa01a4217b362a31414ccfc1be7548688335eb5b1b7cee85410d3 next_version=398 sesssion_starting_time=46.42µs -2026-04-20T11:19:52.992871Z DEBUG StfBlueprint::apply_slot{context=Node da_height=398}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a220b08936197d4eba64c149a9384cb7ca4bf450d996390703422004d922a9ada next_version=398 time=831.645µs accesses_build_time=13.89µs finishing_session_time=743.655µs -2026-04-20T11:19:52.992941Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a09142fb6b1f8a0d388c3016f2e06125eb1f30e35f433bac6797f7606e98b216a" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a220b08936197d4eba64c149a9384cb7ca4bf450d996390703422004d922a9ada" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:19:52.993420Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 398, latest_finalized_slot_number: 397, sync_status: Syncing { synced_da_height: 397, target_da_height: 398 }, .. } -2026-04-20T11:19:52.993509Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 398, latest_finalized_slot_number: 397, sync_status: Syncing { synced_da_height: 397, target_da_height: 398 }, .. } -2026-04-20T11:19:52.993565Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 -2026-04-20T11:19:53.003704Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00364187s -2026-04-20T11:19:53.003735Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:19:58.989593Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=399 prev_hash=0x95991d0d4a54b5aaa35e637a51c599b83eb9a7e4f636d59e2c8d22a517afffaf hash=0x913a6d827b1f72db95841e482d44bb62b2f2fc3568197cd456447ef25d03ff9a producing_time=1.008244ms -2026-04-20T11:19:58.995306Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=399 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a220b08936197d4eba64c149a9384cb7ca4bf450d996390703422004d922a9ada" batch_blobs=[] proof_blobs=[] -2026-04-20T11:19:58.995670Z DEBUG StfBlueprint::apply_slot{context=Node da_height=399}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a220b08936197d4eba64c149a9384cb7ca4bf450d996390703422004d922a9ada next_version=399 sesssion_starting_time=52.13µs -2026-04-20T11:19:58.996401Z DEBUG StfBlueprint::apply_slot{context=Node da_height=399}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a44306fd565e984d82ad85060e42ef319eb7ac9da4df268f395f98fe89ce4d60c next_version=399 time=800.295µs accesses_build_time=16.47µs finishing_session_time=702.475µs -2026-04-20T11:19:58.996479Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a7cce095386caa01a4217b362a31414ccfc1be7548688335eb5b1b7cee85410d3" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a44306fd565e984d82ad85060e42ef319eb7ac9da4df268f395f98fe89ce4d60c" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:19:58.997007Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 399, latest_finalized_slot_number: 398, sync_status: Syncing { synced_da_height: 398, target_da_height: 399 }, .. } -2026-04-20T11:19:58.997093Z ERROR sov_sequencer::preferred::sync_sequencer_state::conditions_table: Sequencer has detected that it is past, or very close to, having the visible_slot_number lag behind the deferred_slots_count threshold. Normal operation will be suspended until this can be remedied. slot_number_according_to_node=399 current_visible_slot_number=300 deferred_slots=120 -2026-04-20T11:19:58.997144Z DEBUG sov_sequencer::preferred::executor_events: Recovery: No in-progress batch to terminate. -2026-04-20T11:19:58.997193Z DEBUG sov_sequencer::preferred::block_executor: Replacing state for block executor old=019daa99-9bd8-7e71-bff6-908cc5339cfd new=019daa9e-5f15-7300-bead-1b6e15fe76e1 -2026-04-20T11:19:58.997252Z  INFO sov_sequencer::preferred::sync_sequencer_state::inner: Beginning sequencer recovery info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 399, latest_finalized_slot_number: 398, sync_status: Syncing { synced_da_height: 398, target_da_height: 399 }, .. } current_visible_slot_number=300 -2026-04-20T11:19:58.997256Z  WARN sov_sequencer::preferred::side_effects: TryToSave recovery strategy has been configured. The currently pending soft confirmations will be flushed to the node. This may save some of the transactions, but if any are no longer valid, the sequencer will be penalised. num_batches_to_replay=30 -2026-04-20T11:19:58.997284Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=397 blob_id=2147878768530233127251971793481023623 -2026-04-20T11:19:58.997324Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878768530233127251971793481023623 -2026-04-20T11:19:58.997345Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=398 blob_id=2147878769513106366705749876396456867 -2026-04-20T11:19:58.997342Z DEBUG update_state_task_inner: sov_sequencer::preferred: Calculating amount of batches to send deferred_slots_count=109 maximum_delta=54 minimum_delta=43 current_catchup_delta=98 current_visible_slot_number=300 increase_per_batch=10 -2026-04-20T11:19:58.997353Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878769513106366705749876396456867 -2026-04-20T11:19:58.997361Z  INFO update_state_task_inner: sov_sequencer::preferred: Recovery: sending max_batches_to_send empty catchup batches to bump the visible_slot_number min_batches_to_send=5 max_batches_to_send=6 -2026-04-20T11:19:58.997365Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=399 blob_id=2147878770497107327482097238409196854 -2026-04-20T11:19:58.997378Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878770497107327482097238409196854 -2026-04-20T11:19:58.997387Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=400 blob_id=2147878771478765443581930206870181217 -2026-04-20T11:19:58.997395Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878771478765443581930206870181217 -2026-04-20T11:19:58.997403Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=401 blob_id=2147878772460417618579677848507382624 -2026-04-20T11:19:58.997410Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878772460417618579677848507382624 -2026-04-20T11:19:58.997418Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=402 blob_id=2147878773451764848058345531876839863 -2026-04-20T11:19:58.997425Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878773451764848058345531876839863 -2026-04-20T11:19:58.997432Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=403 blob_id=2147878774435819818193979750013687914 -2026-04-20T11:19:58.997440Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878774435819818193979750013687914 -2026-04-20T11:19:58.997447Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=404 blob_id=2147878775419857987592629182163330644 -2026-04-20T11:19:58.997462Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878775419857987592629182163330644 -2026-04-20T11:19:58.997471Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=405 blob_id=2147878776402758674854946451585715233 -2026-04-20T11:19:58.997478Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878776402758674854946451585715233 -2026-04-20T11:19:58.997486Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=406 blob_id=2147878777384414372958020841169962943 -2026-04-20T11:19:58.997493Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878777384414372958020841169962943 -2026-04-20T11:19:58.997501Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=407 blob_id=2147878778366028804671362637093193179 -2026-04-20T11:19:58.997508Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878778366028804671362637093193179 -2026-04-20T11:19:58.997516Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=408 blob_id=2147878779422657440611668422752400905 -2026-04-20T11:19:58.997523Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878779422657440611668422752400905 -2026-04-20T11:19:58.997531Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=409 blob_id=2147878780523945197514769840892103352 -2026-04-20T11:19:58.997538Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878780523945197514769840892103352 -2026-04-20T11:19:58.997546Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=410 blob_id=2147878781627757597010446565480271917 -2026-04-20T11:19:58.997553Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878781627757597010446565480271917 -2026-04-20T11:19:58.997560Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=411 blob_id=2147878782731495671826793503487461497 -2026-04-20T11:19:58.997568Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878782731495671826793503487461497 -2026-04-20T11:19:58.997575Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=412 blob_id=2147878783838850785226676308974525225 -2026-04-20T11:19:58.997583Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878783838850785226676308974525225 -2026-04-20T11:19:58.997597Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=413 blob_id=2147878784944980684409655190544413822 -2026-04-20T11:19:58.997605Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878784944980684409655190544413822 -2026-04-20T11:19:58.997612Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=414 blob_id=2147878785926639110221000611292424217 -2026-04-20T11:19:58.997620Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878785926639110221000611292424217 -2026-04-20T11:19:58.997627Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=415 blob_id=2147878786909551530288022785067984173 -2026-04-20T11:19:58.997635Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878786909551530288022785067984173 -2026-04-20T11:19:58.997642Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=416 blob_id=2147878787898381444700403051177318925 -2026-04-20T11:19:58.997650Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878787898381444700403051177318925 -2026-04-20T11:19:58.997657Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=417 blob_id=2147878788881300687854008893736122421 -2026-04-20T11:19:58.997664Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878788881300687854008893736122421 -2026-04-20T11:19:58.997672Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=418 blob_id=2147878789865366028356305479662992732 -2026-04-20T11:19:58.997679Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878789865366028356305479662992732 -2026-04-20T11:19:58.997687Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=419 blob_id=2147878790830089164735899051911128874 -2026-04-20T11:19:58.997694Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878790830089164735899051911128874 -2026-04-20T11:19:58.997701Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=420 blob_id=2147878791800837375982267798463347992 -2026-04-20T11:19:58.997709Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878791800837375982267798463347992 -2026-04-20T11:19:58.997716Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=421 blob_id=2147878792782449132042376824472889816 -2026-04-20T11:19:58.997731Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878792782449132042376824472889816 -2026-04-20T11:19:58.997738Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=422 blob_id=2147878793764126711190991692927620381 -2026-04-20T11:19:58.997746Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878793764126711190991692927620381 -2026-04-20T11:19:58.997753Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=423 blob_id=2147878794747001975201157451549678875 -2026-04-20T11:19:58.997761Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878794747001975201157451549678875 -2026-04-20T11:19:58.997768Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=424 blob_id=2147878795728634746471458873897164752 -2026-04-20T11:19:58.997776Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878795728634746471458873897164752 -2026-04-20T11:19:58.997783Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=425 blob_id=2147878796711504679854131772156034449 -2026-04-20T11:19:58.997790Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878796711504679854131772156034449 -2026-04-20T11:19:58.997798Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=426 blob_id=2147878797694334220494954898062270084 -2026-04-20T11:19:58.997805Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147878797694334220494954898062270084 -2026-04-20T11:19:59.004048Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000314662s -2026-04-20T11:19:59.004073Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:20:04.992308Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=400 prev_hash=0x913a6d827b1f72db95841e482d44bb62b2f2fc3568197cd456447ef25d03ff9a hash=0x7e93fabd8611a94528a41b758f9b322b5bd31d3da06464ec658c80790c725220 producing_time=1.060043ms -2026-04-20T11:20:04.994881Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=400 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a44306fd565e984d82ad85060e42ef319eb7ac9da4df268f395f98fe89ce4d60c" batch_blobs=[] proof_blobs=[] -2026-04-20T11:20:04.995198Z DEBUG StfBlueprint::apply_slot{context=Node da_height=400}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a44306fd565e984d82ad85060e42ef319eb7ac9da4df268f395f98fe89ce4d60c next_version=400 sesssion_starting_time=49.75µs -2026-04-20T11:20:04.995971Z DEBUG StfBlueprint::apply_slot{context=Node da_height=400}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a1ad27c58deca3289505ed37bf7f70672de9b7efd6dda413ed946cfd54a9a9026 next_version=400 time=838.285µs accesses_build_time=13.38µs finishing_session_time=722.026µs -2026-04-20T11:20:04.996037Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a220b08936197d4eba64c149a9384cb7ca4bf450d996390703422004d922a9ada" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a1ad27c58deca3289505ed37bf7f70672de9b7efd6dda413ed946cfd54a9a9026" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:20:05.003165Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999092919s -2026-04-20T11:20:05.003193Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:20:10.994197Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=401 prev_hash=0x7e93fabd8611a94528a41b758f9b322b5bd31d3da06464ec658c80790c725220 hash=0x3c0c9e4f4ab52b04736ac9866cd671b8181cabc0428b812fb4a6c7e892ce6d80 producing_time=1.062483ms -2026-04-20T11:20:11.003954Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=401 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a1ad27c58deca3289505ed37bf7f70672de9b7efd6dda413ed946cfd54a9a9026" batch_blobs=[] proof_blobs=[] -2026-04-20T11:20:11.004310Z DEBUG StfBlueprint::apply_slot{context=Node da_height=401}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a1ad27c58deca3289505ed37bf7f70672de9b7efd6dda413ed946cfd54a9a9026 next_version=401 sesssion_starting_time=50.58µs -2026-04-20T11:20:11.005064Z DEBUG StfBlueprint::apply_slot{context=Node da_height=401}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a2a00968abbe1cafa81bb817cec4df57f595401905efee336b388e6020efb2b27 next_version=401 time=820.494µs accesses_build_time=14.299µs finishing_session_time=697.895µs -2026-04-20T11:20:11.005149Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a44306fd565e984d82ad85060e42ef319eb7ac9da4df268f395f98fe89ce4d60c" next_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a2a00968abbe1cafa81bb817cec4df57f595401905efee336b388e6020efb2b27" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:20:11.005301Z  WARN sov_stf_runner::processes::stf_info_manager: State Transition Info is not consumed fast enough, cannot prune older entries. Please check that consumer works. next_height_to_receive=300 prune_up_to=301 -2026-04-20T11:20:11.005609Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=1 min=5 max=6 -2026-04-20T11:20:11.005664Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:20:11.005769Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=124 -2026-04-20T11:20:11.005864Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=310 -2026-04-20T11:20:11.006105Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:20:11.007277Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=310 sequence_number=427 -2026-04-20T11:20:11.007311Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=427 blob_id=2147879174203384156372773490455849229 visible_slot_number_after_increase=310 visible_slots_to_advance=10 -2026-04-20T11:20:11.007335Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=30 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:20:11.009165Z DEBUG manage_blob_submission_inside_task{blob_id=2147879174203384156372773490455849229 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xe630f2e4894a2536d84e65f6ae4467e803caa3388cb7212d2db1501ab729cb49 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=402 include_at=402 bytes=13 time=664.446µs -2026-04-20T11:20:11.011641Z DEBUG compute_state_update{scope="sequencer" rollup_height=129 slot_number=310}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:20:11.011671Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00847916s -2026-04-20T11:20:11.011688Z DEBUG compute_state_update{scope="sequencer" rollup_height=129 slot_number=310}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:20:11.011710Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:20:11.011765Z DEBUG compute_state_update{scope="sequencer" rollup_height=129 slot_number=310}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a44306fd565e984d82ad85060e42ef319eb7ac9da4df268f395f98fe89ce4d60c next_version=400 sesssion_starting_time=3.992584ms -2026-04-20T11:20:11.012438Z DEBUG compute_state_update{scope="sequencer" rollup_height=129 slot_number=310}: sov_state::nomt::prover_storage: computed next state root state_root=4ac2798978f653f1c336e2b7a29e93a0e3b99e8938866bc28a6be838e3c8d5ad3c42b59a2190859fb9a1d8b78bf1075c77d25e176ec6d8ceaef295396e99c5ea next_version=400 time=4.68681ms accesses_build_time=20.23µs finishing_session_time=652.486µs -2026-04-20T11:20:16.996575Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=402 prev_hash=0x3c0c9e4f4ab52b04736ac9866cd671b8181cabc0428b812fb4a6c7e892ce6d80 hash=0xbbf4a0c4944bb83b79f85eebf97ac5dc805884875a06cdc93503a844ac9ccc44 producing_time=1.227142ms -2026-04-20T11:20:17.003260Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=402 current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a2a00968abbe1cafa81bb817cec4df57f595401905efee336b388e6020efb2b27" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe630f2e4894a2536d84e65f6ae4467e803caa3388cb7212d2db1501ab729cb49"] proof_blobs=[] -2026-04-20T11:20:17.004211Z DEBUG StfBlueprint::apply_slot{context=Node da_height=402}: sov_chain_state: Setting next visible slot number next_visible_slot_number=310 -2026-04-20T11:20:17.005275Z DEBUG StfBlueprint::apply_slot{context=Node da_height=402}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xe630f2e4894a2536d84e65f6ae4467e803caa3388cb7212d2db1501ab729cb49}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=30 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:20:17.005574Z DEBUG StfBlueprint::apply_slot{context=Node da_height=402}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a2a00968abbe1cafa81bb817cec4df57f595401905efee336b388e6020efb2b27 next_version=402 sesssion_starting_time=56.43µs -2026-04-20T11:20:17.006907Z DEBUG StfBlueprint::apply_slot{context=Node da_height=402}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4ac2798978f653f1c336e2b7a29e93a0e3b99e8938866bc28a6be838e3c8d5ad7324b8db3d8b9a880e227334deb1c5a5b776ebd09248f9009151e070b71342cd next_version=402 time=1.466691ms accesses_build_time=74.549µs finishing_session_time=1.271812ms -2026-04-20T11:20:17.007124Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="2ce8f6e66d78f82d03013b284f108732b7aabd48614189562eb0d8865e49a7c9" -2026-04-20T11:20:17.007143Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="60a14a09cff8060feb7bf71813cbfb111952c013306c4462e81354f9e7f77885" -2026-04-20T11:20:17.007155Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="3e42ed006f8565763950ac8ff12b35b7323d9eea047317a2806467ae70ca9b7e" -2026-04-20T11:20:17.007167Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="d166aa47fd90a2543c980ec512dd13ee8fa8f076c62aec45b26ce7c8c142d401" -2026-04-20T11:20:17.007179Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="0df1a6eb430247ab7fa1b55ce5a478b708559163fdd3858afca21c6f337d9a0c" -2026-04-20T11:20:17.007191Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="3db5f58de0b5489f5747cd6b2645a746f8c975ed3318539e995d552795907962" -2026-04-20T11:20:17.007203Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="39776874964edad1280af32e54858abd7bddcc665979ce83c4ead1b954723702" -2026-04-20T11:20:17.007215Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="5d6962c58248aa86a4ca7d2755eb19ace10c68799e7860fb949ce88355540045" -2026-04-20T11:20:17.007226Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="d14b2974efcdf69686ffa5f7eafde05647f28ef3f52794ff142da1d9a9639a44" -2026-04-20T11:20:17.007238Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="efb2459000e28aee08091c325a46edff4bc43c3203d0991b50a2be48f3bfd0b7" -2026-04-20T11:20:17.007265Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ebb5a91e27b9b567623eeaa69befa56b0dbe867c1b4e388b2a81627a70b81156" -2026-04-20T11:20:17.007276Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="dcf4611839411085a4eed12166cfbffc044456efedb497958415f8a32d50b870" -2026-04-20T11:20:17.007288Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="795178c749779212cfeb93b18f4cd7e6cc3f9922e9626a9958bd6cecccfdfb44" -2026-04-20T11:20:17.007299Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="7c3b960bd1249269f7df2b2ac2cae32661d6c54b684186cd4edc33a6e6852470" -2026-04-20T11:20:17.007311Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="8a9eafaabe07f3b067ec9c61a55dfa6ff9402cdeca6a47e4db34f31fccb118af" -2026-04-20T11:20:17.007338Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="c6d32ad69f3c21c54b40bffc97bb362ee5a1046b7c04bb117936bb65a4379ef7" -2026-04-20T11:20:17.007349Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="a0e2992a8ffcd4e2899e1a0685f365b72ef58a56c4fa9327fad165fc978df1dc" -2026-04-20T11:20:17.007362Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="bacbafc4db6605bacee8546c825ebc8b2385569f3b0b907f8648396a05803be1" -2026-04-20T11:20:17.007373Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="923850eff1d94e219007485565387b7728c6dc94e1859cb8a3568037aec330e8" -2026-04-20T11:20:17.007384Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ab601194f0354023fff0995686e938d193773e91e2f7f67f81c814b3070b846a" -2026-04-20T11:20:17.007396Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="9d8893fe267122786344d12560448e3c752183dc5cdea497e654fc1722703c3b" -2026-04-20T11:20:17.007407Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="8455277b27080b69e635cf79e7a748606f8cf3bb3ccdedec448c999c639b63fe" -2026-04-20T11:20:17.007419Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="2e3f3f3379b1bc3b2b97c2421f768b3d3fada2f9068be2ae176fecf57d7c0e2a" -2026-04-20T11:20:17.007441Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="8068a93d0bead75448243a485af80dc7bbda7e91441dbbe98f7b349ce721a71b" -2026-04-20T11:20:17.007452Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="692310baec517cd5b1ddd716c9e3ea7212561192a31850ef1fc1e817b97488c3" -2026-04-20T11:20:17.007464Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="2e0960cf526f6871b68d2019a2503131f750eb2a1561d82e953217696c8146d0" -2026-04-20T11:20:17.007476Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="6825b5a57afb1683225864a0761b4c392862f891b2cfab01331e86edffcafd8c" -2026-04-20T11:20:17.007487Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="72248bd3ba883563bc26c0ad90e552c23e9d132255b325f919888e2dd2d32108" -2026-04-20T11:20:17.007498Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="a0ff4e5410eda0a9b73f98c40bce59aba7c6592aa855061b956b9db1c7d0890b" -2026-04-20T11:20:17.007510Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="f4ec025a54c84b5187305ec46806f7aa49c4a86e3f979f3f19b294adee31738c" -2026-04-20T11:20:17.007527Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a1ad27c58deca3289505ed37bf7f70672de9b7efd6dda413ed946cfd54a9a9026" next_state_root="4ac2798978f653f1c336e2b7a29e93a0e3b99e8938866bc28a6be838e3c8d5ad7324b8db3d8b9a880e227334deb1c5a5b776ebd09248f9009151e070b71342cd" aggregated_proofs=0 proof_receipts=30 -2026-04-20T11:20:17.007825Z  WARN sov_stf_runner::processes::stf_info_manager: State Transition Info is not consumed fast enough, cannot prune older entries. Please check that consumer works. next_height_to_receive=300 prune_up_to=302 -2026-04-20T11:20:17.008252Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=2 min=5 max=6 -2026-04-20T11:20:17.008299Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:20:17.008367Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=125 -2026-04-20T11:20:17.008478Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=320 -2026-04-20T11:20:17.008770Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:20:17.008961Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=320 sequence_number=428 -2026-04-20T11:20:17.008989Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=428 blob_id=2147879181458168103939597234995117911 visible_slot_number_after_increase=320 visible_slots_to_advance=10 -2026-04-20T11:20:17.009006Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:20:17.010759Z DEBUG manage_blob_submission_inside_task{blob_id=2147879181458168103939597234995117911 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x3a3ca0b9c70f0d4ad16cb5604469404d02e9dd5f8b29335852f3394fb5b5866b sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=403 include_at=403 bytes=13 time=617.946µs -2026-04-20T11:20:17.014643Z DEBUG compute_state_update{scope="sequencer" rollup_height=130 slot_number=320}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:20:17.014667Z DEBUG compute_state_update{scope="sequencer" rollup_height=130 slot_number=320}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:20:17.014679Z DEBUG sov_stf_runner::runner: Block execution complete time=6.002971445s -2026-04-20T11:20:17.014699Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:20:17.014714Z DEBUG compute_state_update{scope="sequencer" rollup_height=130 slot_number=320}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a44306fd565e984d82ad85060e42ef319eb7ac9da4df268f395f98fe89ce4d60c next_version=400 sesssion_starting_time=5.274456ms -2026-04-20T11:20:17.014808Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:17.014892Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:17.015505Z DEBUG compute_state_update{scope="sequencer" rollup_height=130 slot_number=320}: sov_state::nomt::prover_storage: computed next state root state_root=7375be4f1867dcb821dab3c9c39568acfc35734a7678d7795045a6eea30f1eff020837e9c64e8027ef5a374d7343d65fe588bac8a2a421157ef76b0ed194c4e9 next_version=400 time=6.089751ms accesses_build_time=23.98µs finishing_session_time=768.285µs -2026-04-20T11:20:17.572023Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-JV9JqCDREmCY_q-B5usjw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:17.579337Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:17.590130Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1091339 cycles -2026-04-20T11:20:17.592615Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 31, 3, 155, 6, 194, 137, 205, 67, 74, 25, 69, 78, 41, 187, 73, 73, 11, 86, 101, 109, 192, 153, 66, 115, 78, 181, 129, 142, 100, 218, 133, 147, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 53, 81, 63, 132, 23, 248, 152, 218, 12, 251, 129, 104, 109, 204, 189, 197, 9, 71, 96, 75, 227, 9, 74, 5, 163, 124, 5, 130, 228, 71, 30, 207, 218, 113, 108, 136, 3, 83, 117, 162, 96, 160, 70, 224, 103, 133, 204, 250, 12, 54, 225, 184, 238, 208, 83, 107, 118, 53, 166, 37, 93, 202, 148, 254, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:17.652067Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:17.652122Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:17.722144Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:17.755743Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JXGkZxj0Q7aWmfXp0pyyHQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:17.758597Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JXGkZxj0Q7aWmfXp0pyyHQ==: stderr: -2026-04-20T11:20:17.758618Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JXGkZxj0Q7aWmfXp0pyyHQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:17.758628Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JXGkZxj0Q7aWmfXp0pyyHQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:17.758637Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JXGkZxj0Q7aWmfXp0pyyHQ==: stderr: stack backtrace: -2026-04-20T11:20:17.758648Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JXGkZxj0Q7aWmfXp0pyyHQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:17.758657Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JXGkZxj0Q7aWmfXp0pyyHQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:17.758761Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:17.759527Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:17.759815Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:17.826668Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:17.826717Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:17.826889Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:17.827053Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:17.827111Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:17.827516Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=429 blob_id=2147879182447038398298822774577199308 -2026-04-20T11:20:18.394730Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JPwpGvm4Tpyh5Q_qz32vYg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:18.402085Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:18.412953Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1096951 cycles -2026-04-20T11:20:18.415589Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 45, 127, 0, 122, 47, 197, 152, 80, 146, 189, 191, 50, 158, 217, 42, 168, 189, 84, 3, 81, 234, 70, 150, 54, 169, 6, 95, 69, 116, 214, 75, 67, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 21, 71, 250, 55, 108, 80, 104, 52, 92, 13, 249, 92, 42, 219, 148, 178, 128, 82, 164, 231, 163, 45, 30, 168, 152, 67, 13, 142, 116, 227, 14, 20, 136, 159, 8, 18, 240, 3, 171, 65, 96, 3, 227, 27, 208, 159, 67, 135, 240, 104, 248, 66, 145, 96, 152, 146, 67, 246, 56, 12, 136, 219, 95, 97, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:18.477112Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:18.477156Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:18.533917Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:18.569115Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RkPqSnjHQjOuoS0UMmxLRw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:18.571945Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RkPqSnjHQjOuoS0UMmxLRw==: stderr: -2026-04-20T11:20:18.571983Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RkPqSnjHQjOuoS0UMmxLRw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:18.571994Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RkPqSnjHQjOuoS0UMmxLRw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:18.572001Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RkPqSnjHQjOuoS0UMmxLRw==: stderr: stack backtrace: -2026-04-20T11:20:18.572008Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RkPqSnjHQjOuoS0UMmxLRw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:18.572015Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RkPqSnjHQjOuoS0UMmxLRw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:18.572097Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:18.572891Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:18.573183Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:18.640582Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:18.640627Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:18.640805Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:18.640961Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:18.641018Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:18.641448Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=430 blob_id=2147879183431109364046340326884130463 -2026-04-20T11:20:19.204633Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Z1VuEFTnRxqbEQ-kXvP0Ug==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:19.211804Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:19.222116Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1069492 cycles -2026-04-20T11:20:19.224654Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 116, 251, 209, 160, 223, 180, 209, 9, 250, 12, 234, 235, 27, 148, 228, 35, 14, 245, 220, 149, 56, 55, 136, 144, 49, 82, 162, 89, 165, 195, 169, 94, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 85, 86, 51, 122, 107, 2, 207, 57, 242, 69, 191, 37, 112, 176, 0, 27, 241, 88, 179, 131, 240, 152, 107, 22, 215, 155, 148, 103, 173, 77, 182, 145, 201, 65, 34, 227, 184, 235, 137, 194, 116, 157, 233, 97, 113, 176, 108, 67, 160, 41, 113, 52, 23, 194, 184, 233, 11, 44, 24, 182, 109, 25, 234, 90, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:19.283585Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:19.283631Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:19.348191Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:19.383030Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PuHrynZGQjekySArDYj3SQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:19.385882Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PuHrynZGQjekySArDYj3SQ==: stderr: -2026-04-20T11:20:19.385906Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PuHrynZGQjekySArDYj3SQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:19.385916Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PuHrynZGQjekySArDYj3SQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:19.385923Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PuHrynZGQjekySArDYj3SQ==: stderr: stack backtrace: -2026-04-20T11:20:19.385929Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PuHrynZGQjekySArDYj3SQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:19.385935Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PuHrynZGQjekySArDYj3SQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:19.386058Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:19.386827Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:19.387118Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:19.453123Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:19.453166Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:19.453355Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:19.453527Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:19.453589Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:19.454113Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=431 blob_id=2147879184413986991530636771497827877 -2026-04-20T11:20:20.006124Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xPmG3EU9Sae8_TNpyV7UOw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:20.013583Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:20.023251Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1102688 cycles -2026-04-20T11:20:20.025932Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 42, 3, 99, 202, 151, 132, 90, 231, 45, 60, 124, 99, 165, 120, 204, 7, 20, 89, 179, 108, 96, 169, 205, 208, 121, 132, 151, 114, 95, 55, 214, 255, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 79, 33, 122, 55, 26, 153, 232, 107, 122, 17, 70, 51, 249, 137, 193, 150, 111, 34, 68, 6, 114, 176, 28, 73, 27, 3, 243, 58, 4, 111, 40, 86, 202, 107, 224, 92, 2, 118, 153, 244, 105, 167, 241, 250, 147, 65, 212, 164, 37, 223, 148, 5, 209, 105, 55, 136, 186, 250, 254, 30, 235, 188, 46, 80, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:20.087645Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:20.087690Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:20.160984Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:20.195431Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gjrpIDK9RsqrC3nXOjAvWg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:20.198259Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gjrpIDK9RsqrC3nXOjAvWg==: stderr: -2026-04-20T11:20:20.198273Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gjrpIDK9RsqrC3nXOjAvWg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:20.198281Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gjrpIDK9RsqrC3nXOjAvWg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:20.198290Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gjrpIDK9RsqrC3nXOjAvWg==: stderr: stack backtrace: -2026-04-20T11:20:20.198296Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gjrpIDK9RsqrC3nXOjAvWg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:20.198302Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gjrpIDK9RsqrC3nXOjAvWg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:20.198476Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:20.199182Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:20.199499Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:20.269821Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:20.269865Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:20.270011Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:20.270184Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:20.270232Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:20.270663Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=432 blob_id=2147879185401695326196236409375174953 -2026-04-20T11:20:20.824338Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AiA9V1YNTN-pmkzRXsMZSw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:20.831641Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:20.841454Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1089722 cycles -2026-04-20T11:20:20.844169Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 70, 152, 115, 209, 196, 112, 13, 243, 82, 189, 72, 96, 51, 225, 150, 42, 97, 205, 70, 79, 77, 98, 125, 17, 205, 168, 168, 224, 33, 127, 71, 24, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 90, 19, 202, 155, 192, 71, 166, 8, 82, 131, 58, 44, 210, 60, 206, 215, 211, 246, 231, 200, 156, 100, 31, 28, 131, 238, 176, 127, 131, 79, 115, 65, 114, 190, 132, 201, 144, 224, 79, 104, 179, 59, 245, 185, 177, 108, 180, 58, 170, 172, 89, 59, 2, 130, 91, 4, 239, 235, 25, 141, 97, 152, 34, 112, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:20.905174Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:20.905222Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:20.977150Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:21.011480Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-KIU3WoTTn2bCp8xFFtpCQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:21.014295Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-KIU3WoTTn2bCp8xFFtpCQ==: stderr: -2026-04-20T11:20:21.014331Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-KIU3WoTTn2bCp8xFFtpCQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:21.014359Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-KIU3WoTTn2bCp8xFFtpCQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:21.014366Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-KIU3WoTTn2bCp8xFFtpCQ==: stderr: stack backtrace: -2026-04-20T11:20:21.014372Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-KIU3WoTTn2bCp8xFFtpCQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:21.014379Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-KIU3WoTTn2bCp8xFFtpCQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:21.014457Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:21.015376Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:21.015674Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:21.081461Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:21.081505Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:21.081655Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:21.081824Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:21.081887Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:21.082467Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=433 blob_id=2147879186382133908031737639266719621 -2026-04-20T11:20:21.634664Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1zmh-fU4SamELkpeqrTvZQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:21.642020Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:21.651373Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1093690 cycles -2026-04-20T11:20:21.654273Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 97, 130, 29, 222, 137, 116, 26, 35, 103, 255, 139, 219, 216, 125, 20, 92, 62, 46, 229, 51, 18, 120, 4, 112, 80, 177, 186, 116, 37, 66, 245, 246, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 41, 226, 226, 182, 113, 120, 7, 19, 232, 211, 197, 9, 164, 0, 194, 140, 145, 111, 130, 115, 244, 186, 32, 129, 151, 84, 188, 91, 53, 182, 242, 41, 121, 185, 44, 133, 139, 61, 97, 130, 115, 116, 89, 158, 48, 166, 177, 70, 223, 32, 76, 170, 187, 14, 231, 166, 26, 226, 10, 108, 5, 146, 4, 7, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:21.715220Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:21.715267Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:21.789596Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:21.823807Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oV84x6X4QOq42TkCqBlzQw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:21.826643Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oV84x6X4QOq42TkCqBlzQw==: stderr: -2026-04-20T11:20:21.826668Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oV84x6X4QOq42TkCqBlzQw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:21.826678Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oV84x6X4QOq42TkCqBlzQw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:21.826685Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oV84x6X4QOq42TkCqBlzQw==: stderr: stack backtrace: -2026-04-20T11:20:21.826691Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oV84x6X4QOq42TkCqBlzQw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:21.826697Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oV84x6X4QOq42TkCqBlzQw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:21.826826Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:21.827597Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:21.827885Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:21.895987Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:21.896021Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:21.896178Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:21.896344Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:21.896400Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:21.896790Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=434 blob_id=2147879187367410461903118793870786210 -2026-04-20T11:20:22.446126Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RFPdiR85QeuTbx5LMLI6iA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:22.453109Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:22.462644Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1047900 cycles -2026-04-20T11:20:22.465235Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 95, 33, 46, 225, 171, 102, 120, 112, 79, 161, 171, 249, 242, 249, 229, 244, 2, 48, 37, 146, 234, 31, 96, 119, 31, 169, 14, 212, 125, 139, 214, 51, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 2, 238, 215, 79, 31, 16, 2, 55, 53, 166, 36, 81, 111, 130, 141, 40, 152, 198, 119, 65, 212, 236, 152, 185, 162, 163, 155, 221, 233, 252, 224, 48, 240, 67, 19, 236, 8, 242, 212, 121, 241, 123, 75, 85, 52, 208, 183, 213, 89, 141, 170, 208, 96, 213, 215, 217, 230, 108, 227, 129, 182, 175, 77, 109, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:22.524648Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:22.524695Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:22.603715Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:22.637734Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fXcFw6oEQnuRkKS4yn3wdQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:22.640562Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fXcFw6oEQnuRkKS4yn3wdQ==: stderr: -2026-04-20T11:20:22.640576Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fXcFw6oEQnuRkKS4yn3wdQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:22.640584Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fXcFw6oEQnuRkKS4yn3wdQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:22.640592Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fXcFw6oEQnuRkKS4yn3wdQ==: stderr: stack backtrace: -2026-04-20T11:20:22.640598Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fXcFw6oEQnuRkKS4yn3wdQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:22.640604Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fXcFw6oEQnuRkKS4yn3wdQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:22.640739Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:22.641472Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:22.641784Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:22.711647Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:22.711692Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:22.711875Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:22.712032Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:22.712077Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:22.712595Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=435 blob_id=2147879188352641360400697256111857589 -2026-04-20T11:20:22.999272Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=8 height=403 prev_hash=0xbbf4a0c4944bb83b79f85eebf97ac5dc805884875a06cdc93503a844ac9ccc44 hash=0xbf5a33582c29c1280bc7071e18fd989b014224e13fb696d307024ff31ddaa117 producing_time=1.216142ms -2026-04-20T11:20:23.006957Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=403 current_state_root="4ac2798978f653f1c336e2b7a29e93a0e3b99e8938866bc28a6be838e3c8d5ad7324b8db3d8b9a880e227334deb1c5a5b776ebd09248f9009151e070b71342cd" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x3a3ca0b9c70f0d4ad16cb5604469404d02e9dd5f8b29335852f3394fb5b5866b"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe2e1c278868362bf97b18fc5e1bd7dc775aed48e8097772c4d744cdba92832b3, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x8c300ee62a88838c45f291c62c77cc43ec7a0b124cd7a53a9cf578a7bb4e8f99, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xce71584a3f8d543aeefced70dba183f43a4ec3a8695a284ffef90f8ba231e448, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1587e188bd0b0d7672bbec6cd1ca307a70e244c1b65714ecf93914480f7d53b2, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x2a2a51e398def09851a73abb1433b9464514d415f9370b73f45fd78c76436272, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd72dd851ebd778ebb7ec95e5f4491f0747a6d2bfba569cefc6d0bfa4d621452a, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x457e9503b2ca2f3317ec8c74f5c96dc8e211ce412794e3d8f7a779e6ea07b7c1, len=625"] -2026-04-20T11:20:23.007308Z DEBUG StfBlueprint::apply_slot{context=Node da_height=403}: sov_chain_state: Setting next visible slot number next_visible_slot_number=320 -2026-04-20T11:20:23.007495Z DEBUG StfBlueprint::apply_slot{context=Node da_height=403}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x3a3ca0b9c70f0d4ad16cb5604469404d02e9dd5f8b29335852f3394fb5b5866b}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:20:23.007717Z DEBUG StfBlueprint::apply_slot{context=Node da_height=403}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4ac2798978f653f1c336e2b7a29e93a0e3b99e8938866bc28a6be838e3c8d5ad7324b8db3d8b9a880e227334deb1c5a5b776ebd09248f9009151e070b71342cd next_version=403 sesssion_starting_time=53.539µs -2026-04-20T11:20:23.008824Z DEBUG StfBlueprint::apply_slot{context=Node da_height=403}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=7375be4f1867dcb821dab3c9c39568acfc35734a7678d7795045a6eea30f1eff6a1d2c1f637d8f85d6494fcc1c17f53600f4fdac3127e092655fa17d6c98ac4a next_version=403 time=1.211242ms accesses_build_time=48.78µs finishing_session_time=1.085473ms -2026-04-20T11:20:23.009015Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a2a00968abbe1cafa81bb817cec4df57f595401905efee336b388e6020efb2b27" next_state_root="7375be4f1867dcb821dab3c9c39568acfc35734a7678d7795045a6eea30f1eff6a1d2c1f637d8f85d6494fcc1c17f53600f4fdac3127e092655fa17d6c98ac4a" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:20:23.009519Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=3 min=5 max=6 -2026-04-20T11:20:23.009578Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:20:23.009645Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=126 -2026-04-20T11:20:23.009748Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=330 -2026-04-20T11:20:23.010018Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:20:23.010488Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=330 sequence_number=436 -2026-04-20T11:20:23.010521Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=436 blob_id=2147879188714162383072415727577242667 visible_slot_number_after_increase=330 visible_slots_to_advance=10 -2026-04-20T11:20:23.010577Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=7 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:20:23.012206Z DEBUG manage_blob_submission_inside_task{blob_id=2147879188714162383072415727577242667 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xdb72e1d00d45f031f8a2e9a8b3d2de65e2012151d02611d3287bc744f9d1c111 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=404 include_at=404 bytes=13 time=560.247µs -2026-04-20T11:20:23.020569Z DEBUG compute_state_update{scope="sequencer" rollup_height=131 slot_number=330}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:20:23.020597Z DEBUG sov_stf_runner::runner: Block execution complete time=6.005899736s -2026-04-20T11:20:23.020604Z DEBUG compute_state_update{scope="sequencer" rollup_height=131 slot_number=330}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:20:23.020616Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:20:23.020666Z DEBUG compute_state_update{scope="sequencer" rollup_height=131 slot_number=330}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a44306fd565e984d82ad85060e42ef319eb7ac9da4df268f395f98fe89ce4d60c next_version=400 sesssion_starting_time=9.568908ms -2026-04-20T11:20:23.021599Z DEBUG compute_state_update{scope="sequencer" rollup_height=131 slot_number=330}: sov_state::nomt::prover_storage: computed next state root state_root=013d30984b8ec38724e400ef45ab3d52dcead66341ecb5ea82537c17de303add4b366771d924fbd255f2953c3e9347521f807c1c960d907e3bdbcb1bd6546996 next_version=400 time=10.537052ms accesses_build_time=34.5µs finishing_session_time=906.614µs -2026-04-20T11:20:23.237790Z DEBUG sp1_core_executor_runner::native: CHILD sp1_7X6k53-BTEm6a3XXlfjaUw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:23.245184Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:23.254276Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1106568 cycles -2026-04-20T11:20:23.256978Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 104, 151, 145, 138, 64, 49, 194, 132, 195, 11, 21, 122, 28, 20, 25, 44, 128, 114, 69, 35, 39, 249, 145, 196, 219, 199, 98, 167, 67, 10, 121, 44, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 16, 48, 117, 205, 160, 169, 169, 227, 49, 4, 159, 41, 216, 134, 90, 29, 87, 53, 45, 161, 122, 240, 26, 168, 233, 17, 8, 209, 95, 166, 20, 202, 24, 50, 54, 240, 224, 30, 254, 239, 164, 163, 133, 233, 58, 58, 246, 244, 193, 192, 170, 171, 51, 190, 249, 27, 161, 213, 25, 218, 51, 56, 219, 181, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:23.320375Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:23.320425Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:23.418830Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:23.453009Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gdnUR85rQD2mevC1L77_qQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:23.455833Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gdnUR85rQD2mevC1L77_qQ==: stderr: -2026-04-20T11:20:23.455846Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gdnUR85rQD2mevC1L77_qQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:23.455855Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gdnUR85rQD2mevC1L77_qQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:23.455863Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gdnUR85rQD2mevC1L77_qQ==: stderr: stack backtrace: -2026-04-20T11:20:23.455869Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gdnUR85rQD2mevC1L77_qQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:23.455875Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gdnUR85rQD2mevC1L77_qQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:23.456014Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:23.456772Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:23.457067Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:23.522992Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:23.523040Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:23.523232Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:23.523397Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:23.523463Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:23.523719Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=437 blob_id=2147879189334301503374505618316229658 -2026-04-20T11:20:24.052630Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Dd4UM2FJRfemzed_gF5pjg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:24.060114Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:24.069403Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1102194 cycles -2026-04-20T11:20:24.071852Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 123, 232, 158, 142, 237, 87, 24, 83, 127, 122, 3, 230, 213, 163, 99, 226, 10, 225, 130, 178, 114, 61, 174, 173, 141, 234, 205, 208, 196, 220, 71, 85, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 55, 61, 169, 92, 77, 56, 20, 37, 104, 87, 222, 194, 2, 87, 176, 87, 81, 156, 51, 50, 234, 111, 133, 101, 43, 81, 78, 147, 178, 103, 59, 116, 143, 255, 80, 75, 95, 54, 165, 229, 192, 209, 20, 194, 23, 44, 249, 36, 131, 37, 87, 114, 212, 125, 12, 202, 182, 172, 251, 124, 150, 7, 241, 208, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:24.133538Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:24.133585Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:24.230510Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:24.263488Z DEBUG sp1_core_executor_runner::native: CHILD sp1_iGKw7QSwSpOdxbC61EzZpA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:24.266310Z DEBUG sp1_core_executor_runner::native: CHILD sp1_iGKw7QSwSpOdxbC61EzZpA==: stderr: -2026-04-20T11:20:24.266330Z DEBUG sp1_core_executor_runner::native: CHILD sp1_iGKw7QSwSpOdxbC61EzZpA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:24.266339Z DEBUG sp1_core_executor_runner::native: CHILD sp1_iGKw7QSwSpOdxbC61EzZpA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:24.266348Z DEBUG sp1_core_executor_runner::native: CHILD sp1_iGKw7QSwSpOdxbC61EzZpA==: stderr: stack backtrace: -2026-04-20T11:20:24.266354Z DEBUG sp1_core_executor_runner::native: CHILD sp1_iGKw7QSwSpOdxbC61EzZpA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:24.266360Z DEBUG sp1_core_executor_runner::native: CHILD sp1_iGKw7QSwSpOdxbC61EzZpA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:24.266525Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:24.267281Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:24.267586Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:24.338500Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:24.338545Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:24.338722Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:24.338882Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:24.338933Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:24.339380Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=438 blob_id=2147879190319632103591025336951800013 -2026-04-20T11:20:24.866350Z DEBUG sp1_core_executor_runner::native: CHILD sp1_n8XLzC81RPqgmm2HDo05SA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:24.873962Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:24.883359Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1125232 cycles -2026-04-20T11:20:24.885457Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 66, 45, 37, 171, 146, 218, 103, 164, 155, 127, 154, 35, 94, 181, 84, 75, 226, 186, 88, 198, 172, 44, 100, 16, 68, 148, 16, 30, 85, 78, 118, 32, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 86, 141, 115, 177, 34, 163, 199, 64, 250, 5, 248, 110, 65, 103, 120, 113, 195, 64, 108, 37, 216, 163, 192, 127, 92, 158, 237, 160, 222, 227, 161, 230, 0, 106, 250, 27, 151, 219, 146, 8, 111, 36, 92, 148, 246, 223, 128, 29, 132, 221, 69, 78, 86, 228, 54, 242, 211, 248, 143, 41, 240, 107, 94, 155, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:24.949151Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:24.949196Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:25.046545Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:25.080084Z DEBUG sp1_core_executor_runner::native: CHILD sp1_m_RQSk_9R_u90kNerj8jvw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:25.082932Z DEBUG sp1_core_executor_runner::native: CHILD sp1_m_RQSk_9R_u90kNerj8jvw==: stderr: -2026-04-20T11:20:25.082957Z DEBUG sp1_core_executor_runner::native: CHILD sp1_m_RQSk_9R_u90kNerj8jvw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:25.082968Z DEBUG sp1_core_executor_runner::native: CHILD sp1_m_RQSk_9R_u90kNerj8jvw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:25.082974Z DEBUG sp1_core_executor_runner::native: CHILD sp1_m_RQSk_9R_u90kNerj8jvw==: stderr: stack backtrace: -2026-04-20T11:20:25.082981Z DEBUG sp1_core_executor_runner::native: CHILD sp1_m_RQSk_9R_u90kNerj8jvw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:25.082987Z DEBUG sp1_core_executor_runner::native: CHILD sp1_m_RQSk_9R_u90kNerj8jvw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:25.083117Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:25.083834Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:25.084121Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:25.150748Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:25.150794Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:25.150998Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:25.151160Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:25.151220Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:25.151680Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=439 blob_id=2147879191302490583703006200022879172 -2026-04-20T11:20:25.703143Z DEBUG sp1_core_executor_runner::native: CHILD sp1__wl9S6ZkQBiNoWigkU1Jng==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:25.710572Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:25.720497Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1107456 cycles -2026-04-20T11:20:25.723347Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 23, 205, 169, 187, 38, 199, 124, 94, 148, 57, 13, 246, 19, 92, 153, 199, 104, 1, 20, 168, 41, 146, 30, 255, 48, 12, 50, 149, 243, 137, 173, 226, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 97, 227, 23, 30, 165, 162, 80, 240, 157, 17, 54, 165, 55, 192, 147, 251, 91, 237, 166, 98, 75, 5, 171, 235, 197, 254, 54, 215, 112, 34, 184, 164, 203, 80, 222, 143, 121, 235, 56, 8, 241, 99, 54, 208, 161, 95, 217, 131, 102, 139, 41, 27, 255, 141, 90, 8, 5, 60, 124, 164, 110, 152, 39, 158, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:25.786210Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:25.786256Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:25.857681Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:25.892131Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2N_BeDSOTiCFLp08JNmaTw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:25.894991Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2N_BeDSOTiCFLp08JNmaTw==: stderr: -2026-04-20T11:20:25.895017Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2N_BeDSOTiCFLp08JNmaTw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:25.895027Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2N_BeDSOTiCFLp08JNmaTw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:25.895034Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2N_BeDSOTiCFLp08JNmaTw==: stderr: stack backtrace: -2026-04-20T11:20:25.895040Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2N_BeDSOTiCFLp08JNmaTw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:25.895046Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2N_BeDSOTiCFLp08JNmaTw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:25.895142Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:25.895939Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:25.896255Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:25.962689Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:25.962733Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:25.962871Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:25.962980Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:25.963030Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:25.963517Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=440 blob_id=2147879192282882516666763828976162315 -2026-04-20T11:20:26.505605Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8kpffH1BTyCZQTuErFXTcw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:26.513206Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:26.522813Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1124473 cycles -2026-04-20T11:20:26.525416Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 90, 109, 217, 57, 184, 60, 235, 189, 209, 139, 253, 172, 119, 160, 47, 190, 189, 185, 29, 87, 141, 238, 26, 137, 39, 210, 251, 13, 179, 90, 123, 250, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 42, 177, 184, 171, 43, 80, 161, 113, 65, 203, 81, 69, 35, 8, 185, 133, 88, 235, 227, 167, 88, 3, 45, 224, 42, 161, 15, 229, 87, 27, 112, 138, 168, 140, 116, 124, 128, 10, 92, 160, 132, 237, 173, 148, 244, 217, 74, 244, 252, 209, 6, 16, 81, 186, 247, 180, 18, 221, 199, 81, 15, 195, 169, 36, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:26.587745Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:26.587792Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:26.671236Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:26.705150Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ObAyKFJcQlGixub7m7q88g==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:26.707966Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ObAyKFJcQlGixub7m7q88g==: stderr: -2026-04-20T11:20:26.707980Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ObAyKFJcQlGixub7m7q88g==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:26.707989Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ObAyKFJcQlGixub7m7q88g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:26.707997Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ObAyKFJcQlGixub7m7q88g==: stderr: stack backtrace: -2026-04-20T11:20:26.708003Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ObAyKFJcQlGixub7m7q88g==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:26.708010Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ObAyKFJcQlGixub7m7q88g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:26.708192Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:26.708915Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:26.709215Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:26.775303Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:26.775356Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:26.775533Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:26.775726Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:26.775783Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:26.776241Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=441 blob_id=2147879193265744205591364873105663743 -2026-04-20T11:20:27.322968Z DEBUG sp1_core_executor_runner::native: CHILD sp1_v7lzCw1ySYKaH0jq0MJBZg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:27.330202Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:27.339633Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1091117 cycles -2026-04-20T11:20:27.342154Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 122, 101, 135, 142, 174, 32, 87, 89, 112, 212, 177, 80, 28, 218, 1, 100, 3, 255, 217, 6, 167, 113, 1, 219, 93, 246, 202, 110, 30, 196, 83, 104, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 4, 11, 245, 74, 134, 74, 44, 144, 102, 67, 150, 17, 47, 1, 118, 65, 44, 166, 79, 173, 21, 219, 25, 104, 160, 28, 140, 253, 225, 41, 153, 192, 255, 185, 75, 103, 189, 57, 70, 32, 135, 196, 116, 50, 61, 24, 179, 249, 85, 4, 214, 5, 253, 213, 206, 17, 234, 115, 149, 142, 166, 85, 150, 151, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:27.403785Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:27.403826Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:27.482603Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:27.516591Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vIXL-HXsRBq2OgiaqcDIhw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:27.519420Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vIXL-HXsRBq2OgiaqcDIhw==: stderr: -2026-04-20T11:20:27.519460Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vIXL-HXsRBq2OgiaqcDIhw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:27.519471Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vIXL-HXsRBq2OgiaqcDIhw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:27.519479Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vIXL-HXsRBq2OgiaqcDIhw==: stderr: stack backtrace: -2026-04-20T11:20:27.519486Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vIXL-HXsRBq2OgiaqcDIhw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:27.519493Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vIXL-HXsRBq2OgiaqcDIhw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:27.519591Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:27.520380Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:27.520672Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:27.588937Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:27.588982Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:27.589138Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:27.589291Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:27.589363Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:27.589826Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=442 blob_id=2147879194249803367658105186194402026 -2026-04-20T11:20:28.137052Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oo4NOYqkSPKV_uvFbAIfQw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:28.144466Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:28.153898Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1110782 cycles -2026-04-20T11:20:28.156556Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 86, 163, 193, 81, 146, 17, 218, 230, 118, 243, 16, 79, 141, 83, 13, 218, 181, 136, 176, 96, 34, 220, 11, 33, 165, 107, 188, 178, 206, 89, 248, 65, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 104, 169, 100, 150, 159, 1, 31, 245, 102, 123, 27, 65, 188, 201, 71, 25, 233, 7, 24, 135, 52, 195, 232, 214, 162, 64, 219, 69, 196, 247, 151, 37, 166, 14, 28, 104, 206, 137, 71, 81, 193, 132, 16, 150, 183, 68, 214, 163, 22, 22, 30, 51, 39, 91, 2, 178, 112, 73, 155, 255, 165, 202, 98, 141, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:28.219502Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:28.219551Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:28.296362Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:28.330172Z DEBUG sp1_core_executor_runner::native: CHILD sp1_G8jbV4VLQxG-llQESmvd-w==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:28.332998Z DEBUG sp1_core_executor_runner::native: CHILD sp1_G8jbV4VLQxG-llQESmvd-w==: stderr: -2026-04-20T11:20:28.333013Z DEBUG sp1_core_executor_runner::native: CHILD sp1_G8jbV4VLQxG-llQESmvd-w==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:28.333021Z DEBUG sp1_core_executor_runner::native: CHILD sp1_G8jbV4VLQxG-llQESmvd-w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:28.333028Z DEBUG sp1_core_executor_runner::native: CHILD sp1_G8jbV4VLQxG-llQESmvd-w==: stderr: stack backtrace: -2026-04-20T11:20:28.333036Z DEBUG sp1_core_executor_runner::native: CHILD sp1_G8jbV4VLQxG-llQESmvd-w==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:28.333043Z DEBUG sp1_core_executor_runner::native: CHILD sp1_G8jbV4VLQxG-llQESmvd-w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:28.333210Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:28.333934Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:28.334225Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:28.400160Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:28.400202Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:28.400384Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:28.400555Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:28.400612Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:28.401025Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=443 blob_id=2147879195230267238865059511776416796 -2026-04-20T11:20:28.946624Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RZAf_9TnSi2E4tyHsVwzWA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:28.954022Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:28.963271Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1103328 cycles -2026-04-20T11:20:28.966006Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 123, 167, 173, 38, 122, 109, 177, 225, 173, 194, 221, 105, 111, 46, 10, 21, 216, 122, 56, 128, 166, 63, 124, 164, 85, 81, 84, 178, 93, 185, 226, 239, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 32, 191, 168, 102, 19, 33, 54, 90, 93, 14, 165, 164, 195, 3, 237, 123, 49, 2, 245, 20, 174, 158, 186, 78, 187, 157, 86, 124, 201, 153, 192, 5, 179, 26, 18, 113, 17, 52, 189, 228, 247, 187, 205, 185, 168, 186, 130, 199, 97, 97, 12, 203, 139, 77, 6, 145, 81, 213, 9, 18, 150, 105, 190, 102, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:29.000954Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=8 height=404 prev_hash=0xbf5a33582c29c1280bc7071e18fd989b014224e13fb696d307024ff31ddaa117 hash=0xcd454c0c5602ba5210eeb63ad412ec1b0314487681ed12fc1e0a26c7564fdf5c producing_time=1.330281ms -2026-04-20T11:20:29.002709Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=404 current_state_root="7375be4f1867dcb821dab3c9c39568acfc35734a7678d7795045a6eea30f1eff6a1d2c1f637d8f85d6494fcc1c17f53600f4fdac3127e092655fa17d6c98ac4a" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xdb72e1d00d45f031f8a2e9a8b3d2de65e2012151d02611d3287bc744f9d1c111"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x4ca1c7130df9ce241bcabbd963660a55d8bdfe1ab28fd52dd9f5c722b9b788ad, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe19ff650cfccd32715b09326223cf0152796fe2f1ed21386534f35ab15c85e3e, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe3e58c1416c0cf73dabea3fbc5202eb2febf5e6306a8a49544396028c26796bd, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x103c707a4885546eba078445341c63ea7548e35cc6660e9357393c523a0cfcbd, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x4ded6be180fda060bea9dcb7955ee9bb3f33147b6b3e2b82b810a93346840eb1, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x07e26012cebea1f55cd5212dc92fdeb6660052afe58b17f57c7579341e7293e5, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x7b42c08182a11005878448d89794ac0a8fb1e35344931670c90c4f4d5d6d4ce8, len=625"] -2026-04-20T11:20:29.003163Z DEBUG StfBlueprint::apply_slot{context=Node da_height=404}: sov_chain_state: Setting next visible slot number next_visible_slot_number=330 -2026-04-20T11:20:29.003613Z DEBUG StfBlueprint::apply_slot{context=Node da_height=404}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xdb72e1d00d45f031f8a2e9a8b3d2de65e2012151d02611d3287bc744f9d1c111}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=7 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:20:29.003839Z DEBUG StfBlueprint::apply_slot{context=Node da_height=404}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7375be4f1867dcb821dab3c9c39568acfc35734a7678d7795045a6eea30f1eff6a1d2c1f637d8f85d6494fcc1c17f53600f4fdac3127e092655fa17d6c98ac4a next_version=404 sesssion_starting_time=48.4µs -2026-04-20T11:20:29.004929Z DEBUG StfBlueprint::apply_slot{context=Node da_height=404}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=013d30984b8ec38724e400ef45ab3d52dcead66341ecb5ea82537c17de303add69ed3bd65841ae7bb4f0a11ddf3e592b606215c18b87af5e837ba0593e5c65c9 next_version=404 time=1.196512ms accesses_build_time=57.72µs finishing_session_time=1.065093ms -2026-04-20T11:20:29.005120Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="e2e1c278868362bf97b18fc5e1bd7dc775aed48e8097772c4d744cdba92832b3" -2026-04-20T11:20:29.005135Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="8c300ee62a88838c45f291c62c77cc43ec7a0b124cd7a53a9cf578a7bb4e8f99" -2026-04-20T11:20:29.005146Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ce71584a3f8d543aeefced70dba183f43a4ec3a8695a284ffef90f8ba231e448" -2026-04-20T11:20:29.005158Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="1587e188bd0b0d7672bbec6cd1ca307a70e244c1b65714ecf93914480f7d53b2" -2026-04-20T11:20:29.005170Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="2a2a51e398def09851a73abb1433b9464514d415f9370b73f45fd78c76436272" -2026-04-20T11:20:29.005183Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="d72dd851ebd778ebb7ec95e5f4491f0747a6d2bfba569cefc6d0bfa4d621452a" -2026-04-20T11:20:29.005214Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="457e9503b2ca2f3317ec8c74f5c96dc8e211ce412794e3d8f7a779e6ea07b7c1" -2026-04-20T11:20:29.005227Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4ac2798978f653f1c336e2b7a29e93a0e3b99e8938866bc28a6be838e3c8d5ad7324b8db3d8b9a880e227334deb1c5a5b776ebd09248f9009151e070b71342cd" next_state_root="013d30984b8ec38724e400ef45ab3d52dcead66341ecb5ea82537c17de303add69ed3bd65841ae7bb4f0a11ddf3e592b606215c18b87af5e837ba0593e5c65c9" aggregated_proofs=0 proof_receipts=7 -2026-04-20T11:20:29.005793Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=4 min=5 max=6 -2026-04-20T11:20:29.005855Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:20:29.005918Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=127 -2026-04-20T11:20:29.006024Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=340 -2026-04-20T11:20:29.006290Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:20:29.006776Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=340 sequence_number=444 -2026-04-20T11:20:29.006803Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=444 blob_id=2147879195962890746935298154446204374 visible_slot_number_after_increase=340 visible_slots_to_advance=10 -2026-04-20T11:20:29.006865Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=7 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:20:29.008485Z DEBUG manage_blob_submission_inside_task{blob_id=2147879195962890746935298154446204374 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x062d529155d35f09f38ff204ee5fd332cbb941d85b6d4bfeca9fb62ae4a19260 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=405 include_at=405 bytes=13 time=583.426µs -2026-04-20T11:20:29.017280Z DEBUG compute_state_update{scope="sequencer" rollup_height=132 slot_number=340}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:20:29.017296Z DEBUG sov_stf_runner::runner: Block execution complete time=5.996680986s -2026-04-20T11:20:29.017341Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:20:29.017322Z DEBUG compute_state_update{scope="sequencer" rollup_height=132 slot_number=340}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:20:29.017398Z DEBUG compute_state_update{scope="sequencer" rollup_height=132 slot_number=340}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a44306fd565e984d82ad85060e42ef319eb7ac9da4df268f395f98fe89ce4d60c next_version=400 sesssion_starting_time=10.001715ms -2026-04-20T11:20:29.018462Z DEBUG compute_state_update{scope="sequencer" rollup_height=132 slot_number=340}: sov_state::nomt::prover_storage: computed next state root state_root=00db0bfa3c69eb0f5be90d2dd0340daa3f18581ca188e87864089d101565a4a23cf2ba527b8983b64bfc53a0f8a2c7c569b05854c49e4e2a01609c7613771961 next_version=400 time=11.107048ms accesses_build_time=40.47µs finishing_session_time=1.045794ms -2026-04-20T11:20:29.028227Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:29.028276Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:29.107767Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:29.141007Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Kjw8VLj5SxGLm2tMjUdK2g==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:29.143853Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Kjw8VLj5SxGLm2tMjUdK2g==: stderr: -2026-04-20T11:20:29.143869Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Kjw8VLj5SxGLm2tMjUdK2g==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:29.143877Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Kjw8VLj5SxGLm2tMjUdK2g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:29.143886Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Kjw8VLj5SxGLm2tMjUdK2g==: stderr: stack backtrace: -2026-04-20T11:20:29.143892Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Kjw8VLj5SxGLm2tMjUdK2g==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:29.143898Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Kjw8VLj5SxGLm2tMjUdK2g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:29.144036Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:29.144805Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:29.145112Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:29.212215Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:29.212263Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:29.212455Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:29.212637Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:29.212704Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:29.213056Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=445 blob_id=2147879196211899064823882145286970660 -2026-04-20T11:20:29.757616Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BrHcpg7uTrKVkkjd5RCqMA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:29.765302Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:29.775625Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1127996 cycles -2026-04-20T11:20:29.778258Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 119, 167, 206, 45, 196, 94, 182, 50, 123, 63, 109, 35, 126, 203, 32, 82, 214, 59, 1, 246, 177, 150, 137, 188, 185, 180, 24, 92, 147, 153, 52, 27, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 88, 59, 122, 252, 19, 200, 45, 148, 217, 11, 133, 241, 175, 37, 44, 2, 207, 252, 70, 245, 134, 23, 74, 93, 221, 186, 221, 135, 23, 115, 198, 80, 61, 150, 96, 91, 57, 83, 227, 68, 35, 178, 1, 82, 64, 16, 26, 132, 206, 227, 240, 174, 242, 175, 84, 38, 173, 40, 117, 253, 115, 116, 46, 242, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:29.840807Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:29.840853Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:29.921197Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:29.956237Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xk_y_BSrR3GRYwDl5CMiiA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:29.959066Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xk_y_BSrR3GRYwDl5CMiiA==: stderr: -2026-04-20T11:20:29.959080Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xk_y_BSrR3GRYwDl5CMiiA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:29.959102Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xk_y_BSrR3GRYwDl5CMiiA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:29.959111Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xk_y_BSrR3GRYwDl5CMiiA==: stderr: stack backtrace: -2026-04-20T11:20:29.959117Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xk_y_BSrR3GRYwDl5CMiiA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:29.959124Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xk_y_BSrR3GRYwDl5CMiiA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:29.959271Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:29.960042Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:29.960370Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:30.026433Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:30.026475Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:30.026649Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:30.026808Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:30.026853Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:30.027487Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=446 blob_id=2147879197195953209523317000926253156 -2026-04-20T11:20:30.580074Z DEBUG sp1_core_executor_runner::native: CHILD sp1_doHDV9mRSE-q3hrT2OMulg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:30.587438Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:30.597167Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1098140 cycles -2026-04-20T11:20:30.599764Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 112, 238, 121, 246, 26, 166, 67, 167, 9, 66, 184, 112, 121, 106, 74, 240, 191, 67, 179, 36, 208, 255, 97, 148, 58, 69, 160, 175, 91, 218, 165, 132, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 64, 226, 111, 71, 25, 63, 154, 124, 86, 255, 128, 125, 209, 0, 13, 60, 135, 31, 42, 144, 135, 105, 172, 126, 237, 35, 79, 253, 35, 208, 179, 156, 94, 141, 125, 129, 13, 77, 21, 64, 140, 30, 11, 215, 31, 39, 96, 52, 88, 186, 98, 34, 220, 29, 206, 98, 84, 154, 124, 122, 41, 166, 225, 137, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:30.661980Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:30.662022Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:30.734884Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:30.770052Z DEBUG sp1_core_executor_runner::native: CHILD sp1_W9hmX3BnTju6IJ09_awUbg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:30.772887Z DEBUG sp1_core_executor_runner::native: CHILD sp1_W9hmX3BnTju6IJ09_awUbg==: stderr: -2026-04-20T11:20:30.772900Z DEBUG sp1_core_executor_runner::native: CHILD sp1_W9hmX3BnTju6IJ09_awUbg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:30.772909Z DEBUG sp1_core_executor_runner::native: CHILD sp1_W9hmX3BnTju6IJ09_awUbg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:30.772917Z DEBUG sp1_core_executor_runner::native: CHILD sp1_W9hmX3BnTju6IJ09_awUbg==: stderr: stack backtrace: -2026-04-20T11:20:30.772923Z DEBUG sp1_core_executor_runner::native: CHILD sp1_W9hmX3BnTju6IJ09_awUbg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:30.772929Z DEBUG sp1_core_executor_runner::native: CHILD sp1_W9hmX3BnTju6IJ09_awUbg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:30.773093Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:30.773836Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:30.774127Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:30.844821Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:30.844865Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:30.845022Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:30.845160Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:30.845205Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:30.845659Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=447 blob_id=2147879198186055207814655887000714893 -2026-04-20T11:20:31.372063Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IIrnjYM2TMqR86AXxmDZ5A==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:31.379180Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:31.388183Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1068380 cycles -2026-04-20T11:20:31.390791Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 63, 176, 17, 166, 101, 7, 215, 43, 244, 55, 238, 32, 214, 90, 28, 166, 216, 168, 250, 102, 228, 239, 4, 19, 103, 85, 89, 197, 76, 250, 0, 167, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 34, 237, 164, 240, 169, 52, 56, 18, 191, 127, 6, 62, 145, 164, 149, 34, 31, 48, 169, 190, 184, 50, 167, 73, 60, 125, 96, 56, 245, 218, 255, 180, 226, 225, 177, 111, 232, 163, 155, 62, 177, 22, 220, 136, 53, 144, 12, 32, 41, 35, 106, 7, 14, 137, 142, 94, 21, 65, 108, 149, 6, 187, 191, 6, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:31.451928Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:31.451973Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:31.553708Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:31.588514Z DEBUG sp1_core_executor_runner::native: CHILD sp1_lKR70pRMRm2p8kZSl_3XSw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:31.591332Z DEBUG sp1_core_executor_runner::native: CHILD sp1_lKR70pRMRm2p8kZSl_3XSw==: stderr: -2026-04-20T11:20:31.591357Z DEBUG sp1_core_executor_runner::native: CHILD sp1_lKR70pRMRm2p8kZSl_3XSw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:31.591367Z DEBUG sp1_core_executor_runner::native: CHILD sp1_lKR70pRMRm2p8kZSl_3XSw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:31.591374Z DEBUG sp1_core_executor_runner::native: CHILD sp1_lKR70pRMRm2p8kZSl_3XSw==: stderr: stack backtrace: -2026-04-20T11:20:31.591380Z DEBUG sp1_core_executor_runner::native: CHILD sp1_lKR70pRMRm2p8kZSl_3XSw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:31.591387Z DEBUG sp1_core_executor_runner::native: CHILD sp1_lKR70pRMRm2p8kZSl_3XSw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:31.591493Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:31.592217Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:31.592515Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:31.660575Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:31.660634Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:31.660794Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:31.660953Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:31.661007Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:31.661442Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=448 blob_id=2147879199171387271427731429532157631 -2026-04-20T11:20:32.210294Z DEBUG sp1_core_executor_runner::native: CHILD sp1_uCDhDhV7RdGVFhW9EaJYzw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:32.217679Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:32.227369Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1103647 cycles -2026-04-20T11:20:32.230093Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 92, 79, 140, 46, 139, 166, 30, 169, 5, 253, 221, 89, 216, 77, 189, 188, 194, 121, 189, 36, 98, 172, 192, 203, 51, 37, 30, 185, 29, 220, 254, 218, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 34, 206, 49, 202, 94, 216, 130, 35, 131, 60, 34, 45, 79, 175, 171, 228, 234, 8, 136, 253, 126, 100, 248, 87, 145, 87, 179, 171, 169, 254, 196, 204, 127, 52, 61, 75, 34, 145, 151, 25, 48, 255, 71, 177, 206, 214, 217, 156, 241, 100, 242, 154, 252, 24, 77, 32, 112, 149, 226, 127, 220, 65, 150, 63, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:32.291635Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:32.291682Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:32.368740Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:32.402081Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sgSyrwZaTQi4kwFjxXK7xg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:32.404940Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sgSyrwZaTQi4kwFjxXK7xg==: stderr: -2026-04-20T11:20:32.404963Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sgSyrwZaTQi4kwFjxXK7xg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:32.404974Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sgSyrwZaTQi4kwFjxXK7xg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:32.404994Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sgSyrwZaTQi4kwFjxXK7xg==: stderr: stack backtrace: -2026-04-20T11:20:32.405000Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sgSyrwZaTQi4kwFjxXK7xg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:32.405006Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sgSyrwZaTQi4kwFjxXK7xg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:32.405111Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:32.405845Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:32.406151Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:32.476721Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:32.476764Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:32.476958Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:32.477114Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:32.477171Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:32.477569Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=449 blob_id=2147879200157818218726623202251667456 -2026-04-20T11:20:33.033492Z DEBUG sp1_core_executor_runner::native: CHILD sp1_B2YEcbpFSLKnsM25HsvWWQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:33.040894Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:33.051529Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1101990 cycles -2026-04-20T11:20:33.054246Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 98, 74, 151, 81, 223, 141, 193, 62, 17, 187, 224, 111, 3, 9, 38, 111, 11, 216, 64, 71, 225, 240, 162, 118, 73, 13, 97, 188, 159, 222, 229, 43, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 117, 44, 63, 12, 21, 42, 88, 2, 64, 230, 72, 22, 32, 131, 7, 165, 30, 132, 39, 178, 16, 22, 135, 148, 205, 84, 250, 82, 172, 198, 248, 208, 203, 1, 83, 3, 113, 254, 167, 93, 255, 219, 162, 172, 175, 180, 211, 124, 75, 31, 112, 162, 138, 59, 126, 178, 48, 169, 144, 102, 51, 98, 145, 199, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:33.115223Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:33.115267Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:33.185377Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:33.219363Z DEBUG sp1_core_executor_runner::native: CHILD sp1_14KYiiW9QuCL1_YbmJoI9g==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:33.222182Z DEBUG sp1_core_executor_runner::native: CHILD sp1_14KYiiW9QuCL1_YbmJoI9g==: stderr: -2026-04-20T11:20:33.222197Z DEBUG sp1_core_executor_runner::native: CHILD sp1_14KYiiW9QuCL1_YbmJoI9g==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:33.222208Z DEBUG sp1_core_executor_runner::native: CHILD sp1_14KYiiW9QuCL1_YbmJoI9g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:33.222218Z DEBUG sp1_core_executor_runner::native: CHILD sp1_14KYiiW9QuCL1_YbmJoI9g==: stderr: stack backtrace: -2026-04-20T11:20:33.222226Z DEBUG sp1_core_executor_runner::native: CHILD sp1_14KYiiW9QuCL1_YbmJoI9g==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:33.222234Z DEBUG sp1_core_executor_runner::native: CHILD sp1_14KYiiW9QuCL1_YbmJoI9g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:33.222391Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:33.223168Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:33.223470Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:33.288978Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:33.289020Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:33.289179Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:33.289364Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:33.289427Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:33.289891Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=450 blob_id=2147879201140679931136927535341308020 -2026-04-20T11:20:33.838269Z DEBUG sp1_core_executor_runner::native: CHILD sp1_g2-YRepyTaauwX27HaNCKw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:33.845659Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:33.856150Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1102428 cycles -2026-04-20T11:20:33.858889Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 44, 31, 178, 36, 210, 83, 99, 90, 66, 37, 133, 142, 78, 198, 148, 171, 183, 68, 183, 208, 162, 74, 227, 106, 193, 106, 245, 3, 150, 7, 130, 55, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 39, 144, 108, 66, 133, 202, 117, 67, 93, 217, 227, 1, 99, 140, 79, 76, 251, 153, 223, 25, 244, 158, 132, 158, 171, 133, 157, 78, 59, 101, 229, 208, 50, 138, 167, 40, 46, 149, 179, 68, 54, 70, 65, 233, 187, 41, 90, 251, 225, 60, 42, 138, 222, 195, 237, 227, 183, 84, 107, 43, 9, 162, 252, 196, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:33.919832Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:33.919877Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:33.996681Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:34.030092Z DEBUG sp1_core_executor_runner::native: CHILD sp1__y0zYe7CRsWmwOnK8eC9MQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:34.032916Z DEBUG sp1_core_executor_runner::native: CHILD sp1__y0zYe7CRsWmwOnK8eC9MQ==: stderr: -2026-04-20T11:20:34.032942Z DEBUG sp1_core_executor_runner::native: CHILD sp1__y0zYe7CRsWmwOnK8eC9MQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:34.032952Z DEBUG sp1_core_executor_runner::native: CHILD sp1__y0zYe7CRsWmwOnK8eC9MQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:34.032959Z DEBUG sp1_core_executor_runner::native: CHILD sp1__y0zYe7CRsWmwOnK8eC9MQ==: stderr: stack backtrace: -2026-04-20T11:20:34.032965Z DEBUG sp1_core_executor_runner::native: CHILD sp1__y0zYe7CRsWmwOnK8eC9MQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:34.032972Z DEBUG sp1_core_executor_runner::native: CHILD sp1__y0zYe7CRsWmwOnK8eC9MQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:34.033099Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:34.033789Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:34.034092Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:34.100323Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:34.100378Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:34.100538Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:34.100702Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:34.100759Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:34.101162Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=451 blob_id=2147879202121120208928306293909976987 -2026-04-20T11:20:34.642351Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SLXV89GaT8WJN_rN1JZsOQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:34.650045Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:34.661101Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1132738 cycles -2026-04-20T11:20:34.663581Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 77, 222, 177, 178, 234, 116, 23, 91, 14, 96, 230, 120, 245, 27, 188, 71, 62, 135, 154, 219, 75, 120, 243, 51, 180, 137, 150, 212, 96, 22, 151, 163, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 46, 71, 87, 129, 225, 199, 124, 60, 62, 57, 34, 141, 120, 177, 118, 25, 207, 178, 104, 198, 92, 180, 200, 37, 244, 171, 44, 111, 201, 175, 189, 253, 30, 118, 93, 173, 146, 183, 227, 104, 251, 41, 9, 119, 118, 62, 24, 19, 54, 83, 237, 170, 32, 176, 197, 110, 232, 57, 204, 157, 47, 2, 232, 66, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:34.725306Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:34.725359Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:34.808545Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:34.843087Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yZ-4RTxfTkq8wgvpbFoDzQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:34.845915Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yZ-4RTxfTkq8wgvpbFoDzQ==: stderr: -2026-04-20T11:20:34.845939Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yZ-4RTxfTkq8wgvpbFoDzQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:34.845949Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yZ-4RTxfTkq8wgvpbFoDzQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:34.845970Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yZ-4RTxfTkq8wgvpbFoDzQ==: stderr: stack backtrace: -2026-04-20T11:20:34.845977Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yZ-4RTxfTkq8wgvpbFoDzQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:34.845985Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yZ-4RTxfTkq8wgvpbFoDzQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:34.846056Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:34.846856Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:34.847169Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:34.909774Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:34.909823Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:34.910028Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:34.910201Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:34.910261Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:34.910681Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=452 blob_id=2147879203100381755572774499531746113 -2026-04-20T11:20:35.003467Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=9 height=405 prev_hash=0xcd454c0c5602ba5210eeb63ad412ec1b0314487681ed12fc1e0a26c7564fdf5c hash=0xc8282a225f880100da0301e9041d86f6ef5b4be849e36f9f286a6534254e2bda producing_time=1.271752ms -2026-04-20T11:20:35.008192Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=405 current_state_root="013d30984b8ec38724e400ef45ab3d52dcead66341ecb5ea82537c17de303add69ed3bd65841ae7bb4f0a11ddf3e592b606215c18b87af5e837ba0593e5c65c9" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x062d529155d35f09f38ff204ee5fd332cbb941d85b6d4bfeca9fb62ae4a19260"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x6c3e1ef2e913cd7c5858087dc0633200937ffa58e254a2b2a50467613fa99371, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9bc4c356f6f38aa1435beed5f5908165d859d3d95f8931c8cb90a8b48f99a79f, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x736714878ee4fe9918ba8d6056ca5f8ab308bf9c95c4ece9f3dc0c8a1b954adc, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe7ef0b81acd2232f2023ed74932e0b10f45ed5670bb6815e8075726a6b2b5c6b, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa3d5c939eb406b969fb1dee446ec4f6752ebba352e6f5d1eaf00e3f3b1e13001, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0c41b7589eeb5a6babeb21a06bbdc5c2816dd50631a44b433a940e048cef2e8b, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd00474eda2004df159fbad9f242122647704c6e3fd3ab2a9005368848a1aecfc, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xfa07f04e57ee8a320f2e1f7f9ea477aacebf7af9094d84607d2367f633c16eeb, len=625"] -2026-04-20T11:20:35.008680Z DEBUG StfBlueprint::apply_slot{context=Node da_height=405}: sov_chain_state: Setting next visible slot number next_visible_slot_number=340 -2026-04-20T11:20:35.009061Z DEBUG StfBlueprint::apply_slot{context=Node da_height=405}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x062d529155d35f09f38ff204ee5fd332cbb941d85b6d4bfeca9fb62ae4a19260}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=7 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:20:35.009309Z DEBUG StfBlueprint::apply_slot{context=Node da_height=405}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=013d30984b8ec38724e400ef45ab3d52dcead66341ecb5ea82537c17de303add69ed3bd65841ae7bb4f0a11ddf3e592b606215c18b87af5e837ba0593e5c65c9 next_version=405 sesssion_starting_time=51.88µs -2026-04-20T11:20:35.010562Z DEBUG StfBlueprint::apply_slot{context=Node da_height=405}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=00db0bfa3c69eb0f5be90d2dd0340daa3f18581ca188e87864089d101565a4a205b6d6312b46b1acd65238285d744ee02576351e67977f918016ffcbc2ed43ea next_version=405 time=1.378202ms accesses_build_time=71.78µs finishing_session_time=1.203223ms -2026-04-20T11:20:35.010779Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="4ca1c7130df9ce241bcabbd963660a55d8bdfe1ab28fd52dd9f5c722b9b788ad" -2026-04-20T11:20:35.010801Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="e19ff650cfccd32715b09326223cf0152796fe2f1ed21386534f35ab15c85e3e" -2026-04-20T11:20:35.010814Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="e3e58c1416c0cf73dabea3fbc5202eb2febf5e6306a8a49544396028c26796bd" -2026-04-20T11:20:35.010826Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="103c707a4885546eba078445341c63ea7548e35cc6660e9357393c523a0cfcbd" -2026-04-20T11:20:35.010852Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="4ded6be180fda060bea9dcb7955ee9bb3f33147b6b3e2b82b810a93346840eb1" -2026-04-20T11:20:35.010862Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="07e26012cebea1f55cd5212dc92fdeb6660052afe58b17f57c7579341e7293e5" -2026-04-20T11:20:35.010871Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="7b42c08182a11005878448d89794ac0a8fb1e35344931670c90c4f4d5d6d4ce8" -2026-04-20T11:20:35.010882Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="7375be4f1867dcb821dab3c9c39568acfc35734a7678d7795045a6eea30f1eff6a1d2c1f637d8f85d6494fcc1c17f53600f4fdac3127e092655fa17d6c98ac4a" next_state_root="00db0bfa3c69eb0f5be90d2dd0340daa3f18581ca188e87864089d101565a4a205b6d6312b46b1acd65238285d744ee02576351e67977f918016ffcbc2ed43ea" aggregated_proofs=0 proof_receipts=7 -2026-04-20T11:20:35.011422Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=5 min=5 max=6 -2026-04-20T11:20:35.011466Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:20:35.011533Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=128 -2026-04-20T11:20:35.011646Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=350 -2026-04-20T11:20:35.011930Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:20:35.012433Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=350 sequence_number=453 -2026-04-20T11:20:35.012463Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=453 blob_id=2147879203223651719997513119376727519 visible_slot_number_after_increase=350 visible_slots_to_advance=10 -2026-04-20T11:20:35.012491Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=8 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:20:35.014208Z DEBUG manage_blob_submission_inside_task{blob_id=2147879203223651719997513119376727519 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xda7d3cad960ac7023fbd8ee9f9780ba69c795936dbac6485ab236795f6ec76d8 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=406 include_at=406 bytes=13 time=570.816µs -2026-04-20T11:20:35.025307Z DEBUG compute_state_update{scope="sequencer" rollup_height=133 slot_number=350}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:20:35.025344Z DEBUG compute_state_update{scope="sequencer" rollup_height=133 slot_number=350}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:20:35.025352Z DEBUG sov_stf_runner::runner: Block execution complete time=6.008011513s -2026-04-20T11:20:35.025372Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:20:35.025395Z DEBUG compute_state_update{scope="sequencer" rollup_height=133 slot_number=350}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a44306fd565e984d82ad85060e42ef319eb7ac9da4df268f395f98fe89ce4d60c next_version=400 sesssion_starting_time=12.45695ms -2026-04-20T11:20:35.026516Z DEBUG compute_state_update{scope="sequencer" rollup_height=133 slot_number=350}: sov_state::nomt::prover_storage: computed next state root state_root=2195f71ef008ef79d25e7f1233f059e90812a286edf07717bf565523d10d445d10b89a7a7baa9c03636e3dfad84499032c868d212e755383738b31a0a3104969 next_version=400 time=13.625272ms accesses_build_time=46.569µs finishing_session_time=1.101403ms -2026-04-20T11:20:35.468372Z DEBUG sp1_core_executor_runner::native: CHILD sp1_prlj-BpGSCiXNol7Vq7bPQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:35.475491Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:35.485168Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1072492 cycles -2026-04-20T11:20:35.487633Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 106, 146, 39, 125, 63, 98, 62, 195, 158, 205, 58, 134, 95, 81, 194, 154, 43, 65, 12, 107, 30, 230, 188, 175, 137, 142, 61, 210, 106, 64, 41, 97, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 89, 56, 72, 120, 167, 41, 183, 172, 81, 182, 145, 159, 70, 136, 233, 103, 1, 169, 91, 155, 192, 223, 14, 113, 102, 113, 139, 138, 162, 118, 129, 138, 119, 84, 18, 187, 186, 71, 240, 174, 127, 51, 8, 219, 30, 147, 7, 227, 9, 187, 68, 228, 73, 158, 227, 190, 171, 39, 90, 16, 18, 0, 146, 22, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:35.547526Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:35.547571Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:35.617356Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:35.651409Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Cf1cgas6QXq5w36GjXaO9A==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:35.654267Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Cf1cgas6QXq5w36GjXaO9A==: stderr: -2026-04-20T11:20:35.654291Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Cf1cgas6QXq5w36GjXaO9A==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:35.654302Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Cf1cgas6QXq5w36GjXaO9A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:35.654309Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Cf1cgas6QXq5w36GjXaO9A==: stderr: stack backtrace: -2026-04-20T11:20:35.654328Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Cf1cgas6QXq5w36GjXaO9A==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:35.654337Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Cf1cgas6QXq5w36GjXaO9A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:35.654432Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:35.655194Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:35.655503Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:35.720765Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:35.720809Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:35.721025Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:35.721179Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:35.721236Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:35.721672Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=454 blob_id=2147879204080841203936807464043760637 -2026-04-20T11:20:36.276063Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PABrbE20QA6v2U5iXNazfA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:36.283518Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:36.293370Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1111720 cycles -2026-04-20T11:20:36.295819Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 12, 237, 123, 63, 33, 136, 57, 87, 3, 104, 176, 90, 116, 86, 74, 27, 106, 235, 84, 245, 4, 34, 100, 116, 197, 122, 162, 246, 84, 103, 30, 120, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 73, 56, 12, 10, 138, 203, 215, 191, 42, 0, 187, 183, 136, 164, 185, 65, 89, 93, 189, 181, 32, 127, 228, 32, 15, 1, 3, 153, 253, 111, 238, 67, 253, 127, 254, 132, 47, 137, 116, 5, 56, 214, 15, 18, 58, 197, 36, 1, 114, 94, 162, 250, 193, 12, 59, 231, 191, 120, 48, 224, 166, 180, 83, 155, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:36.357817Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:36.357860Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:36.427823Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:36.461131Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PanYGw4iRpuFakTHg6dv6A==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:36.463945Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PanYGw4iRpuFakTHg6dv6A==: stderr: -2026-04-20T11:20:36.463958Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PanYGw4iRpuFakTHg6dv6A==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:36.463967Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PanYGw4iRpuFakTHg6dv6A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:36.463973Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PanYGw4iRpuFakTHg6dv6A==: stderr: stack backtrace: -2026-04-20T11:20:36.463980Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PanYGw4iRpuFakTHg6dv6A==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:36.463986Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PanYGw4iRpuFakTHg6dv6A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:36.464160Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:36.464858Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:36.465152Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:36.531993Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:36.532047Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:36.532171Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:36.532633Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:36.532764Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:36.532820Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=455 blob_id=2147879205061240509658814280606558351 -2026-04-20T11:20:37.088662Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fGxg1eEDRMes3JN0MjEkgg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:37.096010Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:37.106349Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1099598 cycles -2026-04-20T11:20:37.109017Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 92, 242, 156, 9, 237, 126, 50, 117, 49, 207, 44, 34, 49, 140, 232, 197, 48, 60, 30, 19, 60, 191, 17, 126, 21, 124, 242, 72, 185, 140, 85, 139, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 127, 116, 166, 102, 175, 46, 26, 148, 145, 71, 183, 221, 95, 226, 151, 77, 186, 79, 229, 204, 12, 148, 254, 208, 27, 142, 93, 148, 134, 50, 235, 28, 4, 112, 42, 207, 219, 117, 241, 82, 37, 201, 171, 255, 39, 27, 116, 39, 12, 197, 16, 78, 217, 180, 26, 74, 88, 97, 79, 242, 126, 199, 164, 216, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:37.174778Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:37.174826Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:37.239009Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:37.273263Z DEBUG sp1_core_executor_runner::native: CHILD sp1_smfElb7LSeqJCtABI2l79Q==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:37.276084Z DEBUG sp1_core_executor_runner::native: CHILD sp1_smfElb7LSeqJCtABI2l79Q==: stderr: -2026-04-20T11:20:37.276097Z DEBUG sp1_core_executor_runner::native: CHILD sp1_smfElb7LSeqJCtABI2l79Q==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:37.276105Z DEBUG sp1_core_executor_runner::native: CHILD sp1_smfElb7LSeqJCtABI2l79Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:37.276126Z DEBUG sp1_core_executor_runner::native: CHILD sp1_smfElb7LSeqJCtABI2l79Q==: stderr: stack backtrace: -2026-04-20T11:20:37.276132Z DEBUG sp1_core_executor_runner::native: CHILD sp1_smfElb7LSeqJCtABI2l79Q==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:37.276138Z DEBUG sp1_core_executor_runner::native: CHILD sp1_smfElb7LSeqJCtABI2l79Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:37.276249Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:37.277042Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:37.277346Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:37.343754Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:37.343801Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:37.344000Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:37.344166Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:37.344223Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:37.344667Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=456 blob_id=2147879206042908917750244933652195839 -2026-04-20T11:20:37.894966Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pMYB7lpiQduazfl__GgqrQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:37.902340Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:37.912652Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1104652 cycles -2026-04-20T11:20:37.915227Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 88, 240, 33, 47, 153, 55, 37, 0, 38, 182, 255, 38, 176, 115, 219, 39, 116, 144, 147, 212, 183, 116, 114, 45, 253, 55, 114, 127, 208, 182, 255, 214, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 32, 164, 205, 161, 198, 157, 200, 30, 88, 174, 64, 235, 37, 202, 215, 32, 116, 11, 16, 217, 131, 214, 119, 42, 107, 220, 222, 224, 84, 203, 104, 90, 81, 192, 191, 49, 213, 106, 247, 91, 216, 217, 139, 70, 9, 221, 171, 23, 28, 77, 239, 41, 16, 11, 74, 180, 2, 131, 45, 78, 49, 71, 100, 235, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:37.977339Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:37.977396Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:38.051566Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:38.084999Z DEBUG sp1_core_executor_runner::native: CHILD sp1_6iBhFeGXS6u0RG4QNASsfQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:38.087878Z DEBUG sp1_core_executor_runner::native: CHILD sp1_6iBhFeGXS6u0RG4QNASsfQ==: stderr: -2026-04-20T11:20:38.087902Z DEBUG sp1_core_executor_runner::native: CHILD sp1_6iBhFeGXS6u0RG4QNASsfQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:38.087913Z DEBUG sp1_core_executor_runner::native: CHILD sp1_6iBhFeGXS6u0RG4QNASsfQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:38.087919Z DEBUG sp1_core_executor_runner::native: CHILD sp1_6iBhFeGXS6u0RG4QNASsfQ==: stderr: stack backtrace: -2026-04-20T11:20:38.087926Z DEBUG sp1_core_executor_runner::native: CHILD sp1_6iBhFeGXS6u0RG4QNASsfQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:38.087932Z DEBUG sp1_core_executor_runner::native: CHILD sp1_6iBhFeGXS6u0RG4QNASsfQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:38.087993Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:38.088810Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:38.089104Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:38.155631Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:38.155669Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:38.155824Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:38.156005Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:38.156063Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:38.156530Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=457 blob_id=2147879207023295813804678881016303871 -2026-04-20T11:20:38.718401Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Nw99fOEXRyCGud1u0WiXxg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:38.726020Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:38.737070Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1132169 cycles -2026-04-20T11:20:38.739965Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 105, 93, 79, 199, 222, 171, 151, 80, 53, 91, 107, 23, 97, 44, 151, 65, 166, 156, 155, 253, 238, 81, 208, 182, 69, 120, 24, 45, 248, 205, 222, 24, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 115, 64, 223, 197, 4, 145, 156, 124, 159, 80, 204, 108, 213, 210, 89, 36, 110, 218, 66, 242, 5, 202, 226, 220, 161, 147, 231, 149, 45, 82, 156, 255, 133, 194, 233, 65, 21, 241, 194, 34, 170, 112, 185, 127, 114, 133, 222, 193, 105, 149, 148, 233, 34, 189, 249, 98, 191, 208, 151, 26, 60, 33, 23, 120, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:38.803178Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:38.803227Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:38.863520Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:38.899400Z DEBUG sp1_core_executor_runner::native: CHILD sp1_cfkCnVJrTNqlk8W-AORIZg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:38.902265Z DEBUG sp1_core_executor_runner::native: CHILD sp1_cfkCnVJrTNqlk8W-AORIZg==: stderr: -2026-04-20T11:20:38.902291Z DEBUG sp1_core_executor_runner::native: CHILD sp1_cfkCnVJrTNqlk8W-AORIZg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:38.902301Z DEBUG sp1_core_executor_runner::native: CHILD sp1_cfkCnVJrTNqlk8W-AORIZg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:38.902308Z DEBUG sp1_core_executor_runner::native: CHILD sp1_cfkCnVJrTNqlk8W-AORIZg==: stderr: stack backtrace: -2026-04-20T11:20:38.902327Z DEBUG sp1_core_executor_runner::native: CHILD sp1_cfkCnVJrTNqlk8W-AORIZg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:38.902337Z DEBUG sp1_core_executor_runner::native: CHILD sp1_cfkCnVJrTNqlk8W-AORIZg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:38.902436Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:38.903190Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:38.903508Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:38.968179Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:38.968223Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:38.968362Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:38.968544Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:38.968587Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:38.969062Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=458 blob_id=2147879208006193566048743948733422706 -2026-04-20T11:20:39.521036Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4tLumtPPT2uBGac65auohg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:39.528412Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:39.538837Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1087351 cycles -2026-04-20T11:20:39.541562Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 106, 137, 86, 147, 129, 59, 201, 47, 168, 226, 8, 208, 129, 61, 33, 242, 30, 36, 72, 6, 175, 157, 141, 103, 28, 95, 242, 177, 220, 18, 208, 1, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 53, 91, 88, 59, 165, 51, 216, 149, 57, 63, 197, 116, 117, 71, 206, 2, 108, 206, 87, 242, 214, 5, 231, 251, 53, 57, 67, 116, 30, 36, 190, 155, 80, 148, 227, 118, 185, 6, 35, 70, 196, 29, 218, 9, 152, 69, 95, 104, 249, 132, 93, 245, 164, 206, 159, 125, 39, 206, 125, 136, 191, 81, 58, 136, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:39.602101Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:39.602150Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:39.675946Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:39.710178Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0e7BPsifSTqr1MnRWfL-Bw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:39.712998Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0e7BPsifSTqr1MnRWfL-Bw==: stderr: -2026-04-20T11:20:39.713011Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0e7BPsifSTqr1MnRWfL-Bw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:39.713019Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0e7BPsifSTqr1MnRWfL-Bw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:39.713027Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0e7BPsifSTqr1MnRWfL-Bw==: stderr: stack backtrace: -2026-04-20T11:20:39.713045Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0e7BPsifSTqr1MnRWfL-Bw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:39.713052Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0e7BPsifSTqr1MnRWfL-Bw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:39.713191Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:39.713904Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:39.714231Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:39.781270Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:39.781323Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:39.781541Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:39.781706Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:39.781764Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:39.782352Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=459 blob_id=2147879208989012440998042706165793429 -2026-04-20T11:20:40.342603Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ZrBPZ81BQAir84kfioCtZQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:40.349894Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:40.359952Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1092780 cycles -2026-04-20T11:20:40.362428Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 11, 43, 163, 137, 52, 161, 221, 15, 192, 242, 203, 174, 194, 95, 206, 89, 204, 60, 98, 41, 107, 118, 74, 109, 52, 223, 101, 3, 183, 21, 155, 252, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 107, 28, 68, 79, 179, 231, 37, 229, 191, 178, 191, 173, 246, 230, 67, 8, 243, 201, 224, 213, 109, 162, 92, 228, 160, 68, 53, 169, 6, 78, 150, 12, 156, 97, 226, 17, 196, 181, 233, 224, 136, 229, 58, 109, 46, 222, 91, 209, 41, 36, 248, 111, 132, 146, 212, 17, 150, 63, 194, 79, 236, 35, 118, 244, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:40.423591Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:40.423633Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:40.488658Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:40.523078Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FyOCEC9RT4mBzXIrB61GgA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:40.525917Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FyOCEC9RT4mBzXIrB61GgA==: stderr: -2026-04-20T11:20:40.525941Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FyOCEC9RT4mBzXIrB61GgA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:40.525951Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FyOCEC9RT4mBzXIrB61GgA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:40.525958Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FyOCEC9RT4mBzXIrB61GgA==: stderr: stack backtrace: -2026-04-20T11:20:40.525964Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FyOCEC9RT4mBzXIrB61GgA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:40.525970Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FyOCEC9RT4mBzXIrB61GgA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:40.526063Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:40.526872Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:40.527162Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:40.593864Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:40.593908Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:40.594082Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:40.594247Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:40.594576Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:40.594736Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=460 blob_id=2147879209971899551975804494890678232 -2026-04-20T11:20:41.005770Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=8 height=406 prev_hash=0xc8282a225f880100da0301e9041d86f6ef5b4be849e36f9f286a6534254e2bda hash=0xa2ce06e09471e87c923a80921704fe94fe8b7ecb08ed5d87c53dc8c94fe08a3a producing_time=1.159203ms -2026-04-20T11:20:41.006378Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=406 current_state_root="00db0bfa3c69eb0f5be90d2dd0340daa3f18581ca188e87864089d101565a4a205b6d6312b46b1acd65238285d744ee02576351e67977f918016ffcbc2ed43ea" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xda7d3cad960ac7023fbd8ee9f9780ba69c795936dbac6485ab236795f6ec76d8"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x498d692e7fb3ea03f98c93309fdfaf8264ab3a11e2d33be7f1d785d077b2b7f7, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1415002af2d088635fcc9b2d7f026c06cdcebc36a44c8933e7bbe16e52058924, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0870a5af71bffffeb9b9e5228349451d40c3ff9cb152e9ccf11e71c067d7f177, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x7a584b4c9c4f881507eedd7e8628944d298c84e2afe0ead0a2b70e6d06aa578f, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x02e1105ffa934b6133112aa385780e61091e79b63208637b03e331ace0c1754c, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa1f2f53107e93c5ddf5aa222f9bcfb9bc179e008bd67d33a552b6c7cc2adaec7, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x73baf01c9be45d916d90fc1f60728942c46dfe1474997b7206e06e661eac28d8, len=625"] -2026-04-20T11:20:41.006875Z DEBUG StfBlueprint::apply_slot{context=Node da_height=406}: sov_chain_state: Setting next visible slot number next_visible_slot_number=350 -2026-04-20T11:20:41.007279Z DEBUG StfBlueprint::apply_slot{context=Node da_height=406}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xda7d3cad960ac7023fbd8ee9f9780ba69c795936dbac6485ab236795f6ec76d8}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=8 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:20:41.007507Z DEBUG StfBlueprint::apply_slot{context=Node da_height=406}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=00db0bfa3c69eb0f5be90d2dd0340daa3f18581ca188e87864089d101565a4a205b6d6312b46b1acd65238285d744ee02576351e67977f918016ffcbc2ed43ea next_version=406 sesssion_starting_time=49.28µs -2026-04-20T11:20:41.008695Z DEBUG StfBlueprint::apply_slot{context=Node da_height=406}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2195f71ef008ef79d25e7f1233f059e90812a286edf07717bf565523d10d445d7a453e43118d9fb69d44f45396ede7f1435b4f759c5d6ae6e41ab7fa9f6f38db next_version=406 time=1.297372ms accesses_build_time=59.66µs finishing_session_time=1.157592ms -2026-04-20T11:20:41.008904Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="6c3e1ef2e913cd7c5858087dc0633200937ffa58e254a2b2a50467613fa99371" -2026-04-20T11:20:41.008935Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="9bc4c356f6f38aa1435beed5f5908165d859d3d95f8931c8cb90a8b48f99a79f" -2026-04-20T11:20:41.008944Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="736714878ee4fe9918ba8d6056ca5f8ab308bf9c95c4ece9f3dc0c8a1b954adc" -2026-04-20T11:20:41.008953Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="e7ef0b81acd2232f2023ed74932e0b10f45ed5670bb6815e8075726a6b2b5c6b" -2026-04-20T11:20:41.008961Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="a3d5c939eb406b969fb1dee446ec4f6752ebba352e6f5d1eaf00e3f3b1e13001" -2026-04-20T11:20:41.008970Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="0c41b7589eeb5a6babeb21a06bbdc5c2816dd50631a44b433a940e048cef2e8b" -2026-04-20T11:20:41.008978Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="d00474eda2004df159fbad9f242122647704c6e3fd3ab2a9005368848a1aecfc" -2026-04-20T11:20:41.008986Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="fa07f04e57ee8a320f2e1f7f9ea477aacebf7af9094d84607d2367f633c16eeb" -2026-04-20T11:20:41.008997Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="013d30984b8ec38724e400ef45ab3d52dcead66341ecb5ea82537c17de303add69ed3bd65841ae7bb4f0a11ddf3e592b606215c18b87af5e837ba0593e5c65c9" next_state_root="2195f71ef008ef79d25e7f1233f059e90812a286edf07717bf565523d10d445d7a453e43118d9fb69d44f45396ede7f1435b4f759c5d6ae6e41ab7fa9f6f38db" aggregated_proofs=0 proof_receipts=8 -2026-04-20T11:20:41.009494Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=6 min=5 max=6 -2026-04-20T11:20:41.009556Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:20:41.009620Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=129 -2026-04-20T11:20:41.009738Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=360 -2026-04-20T11:20:41.010032Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:20:41.010492Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=360 sequence_number=461 -2026-04-20T11:20:41.010516Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=461 blob_id=2147879210474847555753510695540437496 visible_slot_number_after_increase=360 visible_slots_to_advance=10 -2026-04-20T11:20:41.010556Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=7 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:20:41.010814Z  INFO update_state_task_inner: sov_sequencer::preferred: Recovery: catchup batches sent; sequencer will now wait for the node to process them. We will then re-evaluate if we need to catch up again (if there are so many batches that by the time the node catches up we need to bump the visible_slot_number some more). target_sequence_number=462 -2026-04-20T11:20:41.010878Z DEBUG update_state_task_inner: sov_sequencer::preferred: Recovery: waiting for the node to process sequencer's catchup batches... next_sequence_number_according_to_node=454 target_sequence_number=462 -2026-04-20T11:20:41.012287Z DEBUG manage_blob_submission_inside_task{blob_id=2147879210474847555753510695540437496 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xf5046465643cd03c2bda53876292e6a9b21a0d7900dd13be607cdb803ce10096 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=407 include_at=407 bytes=13 time=565.826µs -2026-04-20T11:20:41.020676Z DEBUG compute_state_update{scope="sequencer" rollup_height=134 slot_number=360}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:20:41.020712Z DEBUG compute_state_update{scope="sequencer" rollup_height=134 slot_number=360}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:20:41.020733Z DEBUG sov_stf_runner::runner: Block execution complete time=5.995361935s -2026-04-20T11:20:41.020765Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:20:41.020778Z DEBUG compute_state_update{scope="sequencer" rollup_height=134 slot_number=360}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62ca8a898c094d2ab98e8a7e69faa12319ee9790762ead26dfd679d551c8090a44306fd565e984d82ad85060e42ef319eb7ac9da4df268f395f98fe89ce4d60c next_version=400 sesssion_starting_time=9.697327ms -2026-04-20T11:20:41.022137Z DEBUG compute_state_update{scope="sequencer" rollup_height=134 slot_number=360}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f17f9a365c3e77572ea999e90719f0d92e0ec6cf0b3bfd0576bbe0c0e8a49614c6 next_version=400 time=11.112048ms accesses_build_time=54.15µs finishing_session_time=1.333312ms -2026-04-20T11:20:41.145616Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HmBMWdN2Qdqcg6btsNmJdg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:41.153176Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:41.163487Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1123625 cycles -2026-04-20T11:20:41.166193Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 87, 211, 134, 11, 89, 228, 52, 110, 6, 177, 225, 172, 183, 155, 69, 53, 61, 207, 90, 149, 0, 135, 103, 54, 216, 24, 45, 65, 222, 77, 25, 118, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 19, 232, 195, 74, 174, 31, 132, 233, 138, 61, 36, 204, 249, 123, 17, 93, 150, 147, 253, 2, 249, 187, 157, 227, 248, 252, 41, 133, 31, 190, 242, 148, 43, 133, 173, 224, 64, 197, 248, 109, 161, 157, 200, 224, 150, 63, 97, 249, 178, 7, 174, 132, 145, 255, 157, 120, 227, 169, 226, 201, 48, 128, 36, 17, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:41.227873Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:41.227921Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:41.301251Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:41.335332Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YBF-RoS4SyGpQTDY1TKjtA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:41.338157Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YBF-RoS4SyGpQTDY1TKjtA==: stderr: -2026-04-20T11:20:41.338183Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YBF-RoS4SyGpQTDY1TKjtA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:41.338193Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YBF-RoS4SyGpQTDY1TKjtA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:41.338200Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YBF-RoS4SyGpQTDY1TKjtA==: stderr: stack backtrace: -2026-04-20T11:20:41.338206Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YBF-RoS4SyGpQTDY1TKjtA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:41.338213Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YBF-RoS4SyGpQTDY1TKjtA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:41.338281Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:41.339060Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:41.339373Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:41.405236Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:41.405281Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:41.405484Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:41.405651Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:41.405706Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:41.406007Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=462 blob_id=2147879210952352282417098001284911325 -2026-04-20T11:20:41.962289Z DEBUG sp1_core_executor_runner::native: CHILD sp1_P7bx08wiRvqd5Ptw2pekQQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:41.969675Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:41.979764Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1107120 cycles -2026-04-20T11:20:41.982214Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 19, 184, 184, 118, 125, 234, 197, 48, 183, 184, 219, 54, 7, 67, 230, 231, 71, 231, 140, 205, 104, 26, 173, 187, 62, 173, 113, 30, 138, 81, 146, 93, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 69, 32, 235, 119, 34, 200, 60, 252, 97, 43, 121, 36, 219, 7, 212, 62, 173, 165, 199, 229, 56, 90, 60, 40, 165, 100, 158, 218, 174, 47, 149, 143, 79, 199, 120, 9, 198, 21, 49, 122, 160, 222, 174, 113, 175, 181, 137, 190, 98, 174, 41, 57, 117, 146, 160, 173, 208, 195, 156, 223, 70, 20, 30, 200, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:42.043412Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:42.043459Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:42.113684Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:42.147422Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3j-MfXB5TS-kLrV_A99i1w==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:42.150233Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3j-MfXB5TS-kLrV_A99i1w==: stderr: -2026-04-20T11:20:42.150246Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3j-MfXB5TS-kLrV_A99i1w==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:42.150254Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3j-MfXB5TS-kLrV_A99i1w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:42.150263Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3j-MfXB5TS-kLrV_A99i1w==: stderr: stack backtrace: -2026-04-20T11:20:42.150269Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3j-MfXB5TS-kLrV_A99i1w==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:42.150275Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3j-MfXB5TS-kLrV_A99i1w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:42.150421Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:42.151182Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:42.151478Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:42.219920Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:42.219964Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:42.220171Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:42.220356Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:42.220437Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:42.220829Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=463 blob_id=2147879211937634186160359257912968186 -2026-04-20T11:20:42.769632Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vcFUD56-QsOZtotm0KLtYA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:42.777221Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:42.788035Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1116724 cycles -2026-04-20T11:20:42.790773Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 66, 147, 20, 242, 229, 208, 236, 38, 160, 41, 76, 233, 30, 97, 68, 78, 136, 216, 154, 154, 131, 251, 241, 187, 141, 135, 168, 122, 65, 213, 7, 161, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 17, 168, 156, 47, 24, 47, 196, 218, 200, 234, 219, 175, 187, 209, 168, 108, 79, 55, 105, 123, 211, 179, 199, 134, 105, 226, 34, 136, 68, 207, 177, 92, 44, 18, 201, 254, 127, 51, 245, 4, 33, 20, 47, 185, 23, 236, 92, 158, 105, 181, 7, 198, 17, 44, 41, 85, 168, 14, 126, 85, 12, 218, 235, 10, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:42.852180Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:42.852224Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:42.928345Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:42.962556Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4LZwFQ1hTDKD6lEHvZMnSA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:42.965386Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4LZwFQ1hTDKD6lEHvZMnSA==: stderr: -2026-04-20T11:20:42.965402Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4LZwFQ1hTDKD6lEHvZMnSA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:42.965411Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4LZwFQ1hTDKD6lEHvZMnSA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:42.965420Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4LZwFQ1hTDKD6lEHvZMnSA==: stderr: stack backtrace: -2026-04-20T11:20:42.965427Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4LZwFQ1hTDKD6lEHvZMnSA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:42.965433Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4LZwFQ1hTDKD6lEHvZMnSA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:42.965547Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:42.966364Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:42.966684Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:43.036997Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:43.037045Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:43.037222Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:43.037396Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:43.037476Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:43.037765Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=464 blob_id=2147879212925274632586092196011659335 -2026-04-20T11:20:43.590188Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qfIWIA2GSbCxPfbfOSpnKg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:43.597402Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:43.608656Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1086339 cycles -2026-04-20T11:20:43.611388Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 9, 193, 113, 35, 213, 104, 59, 44, 97, 167, 57, 65, 73, 165, 116, 192, 246, 156, 122, 159, 20, 63, 119, 14, 32, 116, 254, 116, 169, 185, 241, 137, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 59, 115, 80, 60, 85, 145, 84, 161, 226, 200, 238, 110, 244, 107, 56, 177, 127, 53, 71, 83, 206, 103, 175, 245, 239, 179, 96, 167, 37, 202, 60, 246, 71, 129, 123, 246, 62, 10, 82, 95, 84, 220, 254, 29, 182, 110, 169, 131, 39, 165, 174, 178, 220, 7, 40, 139, 125, 122, 180, 105, 252, 15, 51, 28, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:43.670074Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:43.670122Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:43.744406Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:43.778108Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BcNg5AiJRSCmr_PPkiE28Q==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:43.780944Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BcNg5AiJRSCmr_PPkiE28Q==: stderr: -2026-04-20T11:20:43.780968Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BcNg5AiJRSCmr_PPkiE28Q==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:43.780981Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BcNg5AiJRSCmr_PPkiE28Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:43.780988Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BcNg5AiJRSCmr_PPkiE28Q==: stderr: stack backtrace: -2026-04-20T11:20:43.780995Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BcNg5AiJRSCmr_PPkiE28Q==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:43.781001Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BcNg5AiJRSCmr_PPkiE28Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:43.781055Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:43.781851Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:43.782140Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:43.848854Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:43.848898Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:43.849063Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:43.849224Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:43.849280Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:43.849726Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=465 blob_id=2147879213906982940149437224082389216 -2026-04-20T11:20:44.409857Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Yai_3CgDRBS0RmwHjrqehQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:44.417214Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:44.427332Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1103232 cycles -2026-04-20T11:20:44.430010Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 25, 10, 184, 41, 171, 94, 160, 197, 57, 132, 150, 197, 165, 58, 113, 220, 29, 59, 148, 64, 146, 34, 209, 237, 98, 106, 105, 33, 8, 115, 217, 3, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 31, 223, 48, 46, 91, 93, 139, 166, 152, 46, 168, 104, 237, 225, 55, 94, 29, 124, 161, 15, 73, 245, 23, 168, 100, 242, 29, 40, 151, 248, 74, 86, 228, 225, 47, 201, 216, 10, 8, 160, 234, 232, 209, 178, 67, 179, 64, 226, 20, 48, 56, 205, 182, 176, 182, 140, 249, 240, 11, 169, 158, 73, 80, 117, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:44.490900Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:44.490938Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:44.556720Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:44.591931Z DEBUG sp1_core_executor_runner::native: CHILD sp1_F61FwdDaQW6xbitnj8cSBw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:44.594800Z DEBUG sp1_core_executor_runner::native: CHILD sp1_F61FwdDaQW6xbitnj8cSBw==: stderr: -2026-04-20T11:20:44.594841Z DEBUG sp1_core_executor_runner::native: CHILD sp1_F61FwdDaQW6xbitnj8cSBw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:44.594851Z DEBUG sp1_core_executor_runner::native: CHILD sp1_F61FwdDaQW6xbitnj8cSBw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:44.594858Z DEBUG sp1_core_executor_runner::native: CHILD sp1_F61FwdDaQW6xbitnj8cSBw==: stderr: stack backtrace: -2026-04-20T11:20:44.594864Z DEBUG sp1_core_executor_runner::native: CHILD sp1_F61FwdDaQW6xbitnj8cSBw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:44.594870Z DEBUG sp1_core_executor_runner::native: CHILD sp1_F61FwdDaQW6xbitnj8cSBw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:44.594922Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:44.595786Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:44.596072Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:44.664148Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:44.664195Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:44.664397Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:44.664588Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:44.664642Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:44.665247Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=466 blob_id=2147879214892208726924528656746276146 -2026-04-20T11:20:45.191472Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0ElhhhB5T-WZgdVa6d1mNA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:45.198854Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:45.207869Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1104400 cycles -2026-04-20T11:20:45.210588Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 8, 156, 125, 172, 197, 97, 11, 38, 6, 165, 81, 211, 221, 176, 43, 64, 136, 169, 100, 49, 95, 209, 157, 64, 74, 223, 79, 214, 93, 143, 228, 249, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 21, 237, 228, 202, 105, 219, 73, 43, 104, 143, 91, 204, 152, 207, 202, 146, 143, 175, 111, 235, 235, 222, 123, 16, 137, 11, 26, 183, 166, 173, 158, 145, 220, 64, 63, 164, 31, 57, 108, 200, 248, 51, 215, 129, 59, 46, 115, 221, 113, 166, 200, 129, 156, 25, 250, 59, 64, 227, 6, 234, 211, 177, 142, 62, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:45.276034Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:45.276080Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:45.372463Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:45.407928Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1uulCzYYSdCVkgSdmTvdBg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:45.410759Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1uulCzYYSdCVkgSdmTvdBg==: stderr: -2026-04-20T11:20:45.410773Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1uulCzYYSdCVkgSdmTvdBg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:45.410779Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1uulCzYYSdCVkgSdmTvdBg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:45.410782Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1uulCzYYSdCVkgSdmTvdBg==: stderr: stack backtrace: -2026-04-20T11:20:45.410785Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1uulCzYYSdCVkgSdmTvdBg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:45.410788Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1uulCzYYSdCVkgSdmTvdBg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:45.410899Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:45.411700Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:45.412016Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:45.481704Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:45.481746Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:45.481887Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:45.482055Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:45.482099Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:45.482546Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=467 blob_id=2147879215879921228371594139883765447 -2026-04-20T11:20:46.011549Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8CSy4NEiQBuAWzAc61a8fA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:46.018928Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:46.028986Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1103020 cycles -2026-04-20T11:20:46.031617Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 53, 143, 200, 192, 168, 87, 58, 231, 141, 134, 122, 54, 76, 236, 198, 241, 193, 251, 20, 74, 106, 1, 207, 15, 30, 40, 88, 96, 182, 142, 75, 201, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 110, 125, 211, 251, 174, 51, 58, 210, 16, 102, 165, 56, 178, 131, 90, 3, 200, 56, 237, 47, 32, 158, 35, 19, 7, 200, 53, 0, 164, 237, 189, 129, 175, 244, 122, 236, 234, 166, 83, 165, 134, 171, 254, 227, 179, 236, 246, 253, 51, 255, 200, 59, 109, 98, 178, 163, 236, 72, 45, 100, 199, 174, 109, 181, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:46.093447Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:46.093489Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:46.192164Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:46.226130Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-FlAcfH1Se60OYQ9fpkanQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:46.228967Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-FlAcfH1Se60OYQ9fpkanQ==: stderr: -2026-04-20T11:20:46.228980Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-FlAcfH1Se60OYQ9fpkanQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:46.228991Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-FlAcfH1Se60OYQ9fpkanQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:46.228997Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-FlAcfH1Se60OYQ9fpkanQ==: stderr: stack backtrace: -2026-04-20T11:20:46.229003Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-FlAcfH1Se60OYQ9fpkanQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:46.229009Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-FlAcfH1Se60OYQ9fpkanQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:46.229080Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:46.229908Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:46.230223Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:46.256982Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:46.257009Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:46.257105Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:46.257234Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:46.257266Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:46.257649Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=468 blob_id=2147879216818034109595022550694950674 -2026-04-20T11:20:46.756291Z DEBUG sp1_core_executor_runner::native: CHILD sp1_6QWb2JimQCqgDK1JrTmVlA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:46.763844Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:46.773324Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1098274 cycles -2026-04-20T11:20:46.776053Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 77, 72, 57, 68, 177, 212, 18, 134, 249, 85, 212, 231, 185, 224, 168, 99, 118, 76, 137, 160, 206, 211, 124, 161, 71, 167, 76, 144, 118, 97, 62, 62, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 16, 30, 107, 115, 233, 112, 243, 72, 156, 40, 153, 192, 171, 244, 207, 7, 24, 244, 192, 70, 51, 89, 206, 37, 85, 80, 72, 40, 254, 46, 81, 187, 229, 40, 101, 128, 248, 61, 108, 73, 70, 181, 67, 201, 180, 61, 213, 175, 5, 130, 7, 0, 33, 153, 20, 244, 1, 207, 219, 62, 166, 197, 50, 204, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:46.838085Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:46.838131Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:46.862762Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:46.894825Z DEBUG sp1_core_executor_runner::native: CHILD sp1_79wcIRLLQ1ieHPvG3G3Hzg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:46.897637Z DEBUG sp1_core_executor_runner::native: CHILD sp1_79wcIRLLQ1ieHPvG3G3Hzg==: stderr: -2026-04-20T11:20:46.897650Z DEBUG sp1_core_executor_runner::native: CHILD sp1_79wcIRLLQ1ieHPvG3G3Hzg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:46.897673Z DEBUG sp1_core_executor_runner::native: CHILD sp1_79wcIRLLQ1ieHPvG3G3Hzg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:46.897682Z DEBUG sp1_core_executor_runner::native: CHILD sp1_79wcIRLLQ1ieHPvG3G3Hzg==: stderr: stack backtrace: -2026-04-20T11:20:46.897688Z DEBUG sp1_core_executor_runner::native: CHILD sp1_79wcIRLLQ1ieHPvG3G3Hzg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:46.897695Z DEBUG sp1_core_executor_runner::native: CHILD sp1_79wcIRLLQ1ieHPvG3G3Hzg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:46.897819Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:46.898570Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:46.898877Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:46.965791Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:46.965837Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:46.965979Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:46.966146Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:46.966178Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:46.966675Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=469 blob_id=2147879217675194096422741232821342496 -2026-04-20T11:20:47.007965Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=9 height=407 prev_hash=0xa2ce06e09471e87c923a80921704fe94fe8b7ecb08ed5d87c53dc8c94fe08a3a hash=0x338e0186948a360e672ac72a018ea3c39b7d9720aec112ab686e818371095431 producing_time=1.135193ms -2026-04-20T11:20:47.012649Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=407 current_state_root="2195f71ef008ef79d25e7f1233f059e90812a286edf07717bf565523d10d445d7a453e43118d9fb69d44f45396ede7f1435b4f759c5d6ae6e41ab7fa9f6f38db" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf5046465643cd03c2bda53876292e6a9b21a0d7900dd13be607cdb803ce10096"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xebe39bd5be5082602ecd2712b8e59eaff7f724e14fd472d009b67643296573c5, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc237e1376465634fdb28926af86b0a0fd4cf40c89e546e0714fbb9b0c88de004, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd96996f0f6476ebb7b005d91b69f89999bda7caef92697c37a0ab8e2e197b7dc, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x4f0678f684ec536db73dc3305d15781514def11882eefe3601a065fdf1d1fe45, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa52790290ce86ab7126260eff32d7e50d6196bc3dcad8e754082f56648ca5f65, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x7ce3f7a983b187c37035882629d72ea40b3bddd7d9f0918a49be6cf5a9708381, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xbf1781b32cfa2646e4de8c850c7e300d116bfadf24b977317cdcadb95ebac434, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x527e8e2155195ae59f01f346880575c6843b22f8ad38ced3f09f0b903a45642d, len=625"] -2026-04-20T11:20:47.013117Z DEBUG StfBlueprint::apply_slot{context=Node da_height=407}: sov_chain_state: Setting next visible slot number next_visible_slot_number=360 -2026-04-20T11:20:47.013519Z DEBUG StfBlueprint::apply_slot{context=Node da_height=407}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xf5046465643cd03c2bda53876292e6a9b21a0d7900dd13be607cdb803ce10096}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=7 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:20:47.013748Z DEBUG StfBlueprint::apply_slot{context=Node da_height=407}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2195f71ef008ef79d25e7f1233f059e90812a286edf07717bf565523d10d445d7a453e43118d9fb69d44f45396ede7f1435b4f759c5d6ae6e41ab7fa9f6f38db next_version=407 sesssion_starting_time=49.19µs -2026-04-20T11:20:47.014905Z DEBUG StfBlueprint::apply_slot{context=Node da_height=407}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f116d6149cabbfdf300c8ed4ea9d48eae2f402787d5badab562d20f312d6d3bfa7 next_version=407 time=1.274441ms accesses_build_time=66.989µs finishing_session_time=1.132343ms -2026-04-20T11:20:47.015104Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="498d692e7fb3ea03f98c93309fdfaf8264ab3a11e2d33be7f1d785d077b2b7f7" -2026-04-20T11:20:47.015120Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="1415002af2d088635fcc9b2d7f026c06cdcebc36a44c8933e7bbe16e52058924" -2026-04-20T11:20:47.015144Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="0870a5af71bffffeb9b9e5228349451d40c3ff9cb152e9ccf11e71c067d7f177" -2026-04-20T11:20:47.015156Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="7a584b4c9c4f881507eedd7e8628944d298c84e2afe0ead0a2b70e6d06aa578f" -2026-04-20T11:20:47.015167Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="02e1105ffa934b6133112aa385780e61091e79b63208637b03e331ace0c1754c" -2026-04-20T11:20:47.015178Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="a1f2f53107e93c5ddf5aa222f9bcfb9bc179e008bd67d33a552b6c7cc2adaec7" -2026-04-20T11:20:47.015186Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="73baf01c9be45d916d90fc1f60728942c46dfe1474997b7206e06e661eac28d8" -2026-04-20T11:20:47.015199Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="00db0bfa3c69eb0f5be90d2dd0340daa3f18581ca188e87864089d101565a4a205b6d6312b46b1acd65238285d744ee02576351e67977f918016ffcbc2ed43ea" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f116d6149cabbfdf300c8ed4ea9d48eae2f402787d5badab562d20f312d6d3bfa7" aggregated_proofs=0 proof_receipts=7 -2026-04-20T11:20:47.015768Z DEBUG update_state_task_inner: sov_sequencer::preferred: Recovery: waiting for the node to process sequencer's catchup batches... next_sequence_number_according_to_node=462 target_sequence_number=462 -2026-04-20T11:20:47.015800Z  INFO update_state_task_inner: sov_sequencer::preferred: Node sequence number caught up to our recovery batches. The sequencer may have finished recovery, or we may need to send another round of batches if catching up this far took too long -2026-04-20T11:20:47.015849Z DEBUG update_state_task_inner: sov_sequencer::preferred: Calculating amount of batches to send deferred_slots_count=109 maximum_delta=54 minimum_delta=43 current_catchup_delta=46 current_visible_slot_number=360 increase_per_batch=10 -2026-04-20T11:20:47.015862Z  INFO update_state_task_inner: sov_sequencer::preferred: Recovery: no need to send any more batches! min_batches_to_send=0 max_batches_to_send=1 -2026-04-20T11:20:47.015871Z  INFO update_state_task_inner: sov_sequencer::preferred: Sequencer exiting recovery and resuming normal operation. info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 407, latest_finalized_slot_number: 406, sync_status: Synced { synced_da_height: 406 }, .. } -2026-04-20T11:20:47.015939Z DEBUG sov_sequencer::preferred::block_executor: Replacing state for block executor old=019daa9e-5f15-7300-bead-1b6e15fe76e1 new=019daa9f-1aa7-76a3-b8aa-26a922ea4bf7 -2026-04-20T11:20:47.033244Z DEBUG sov_stf_runner::runner: Block execution complete time=6.012480704s -2026-04-20T11:20:47.033275Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:20:47.470416Z DEBUG sp1_core_executor_runner::native: CHILD sp1_C9M4ewWwQjCWE4NUaeVDlQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:47.478056Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:47.488593Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1122625 cycles -2026-04-20T11:20:47.491532Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 51, 142, 117, 182, 182, 149, 37, 164, 142, 134, 59, 11, 17, 195, 94, 29, 107, 165, 55, 83, 212, 72, 232, 233, 97, 160, 183, 40, 21, 93, 82, 203, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 56, 24, 189, 211, 116, 83, 204, 202, 11, 36, 38, 54, 248, 173, 48, 20, 32, 76, 39, 230, 118, 51, 38, 186, 137, 86, 218, 229, 217, 37, 26, 112, 31, 86, 170, 3, 63, 52, 137, 97, 121, 122, 69, 26, 229, 232, 58, 160, 23, 91, 185, 41, 122, 182, 93, 239, 253, 94, 155, 213, 64, 217, 147, 230, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:47.553684Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:47.553730Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:47.571690Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:47.594791Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wIvd19pjQ2GKAxkB_HjNIw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:47.597637Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wIvd19pjQ2GKAxkB_HjNIw==: stderr: -2026-04-20T11:20:47.597661Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wIvd19pjQ2GKAxkB_HjNIw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:47.597671Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wIvd19pjQ2GKAxkB_HjNIw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:47.597678Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wIvd19pjQ2GKAxkB_HjNIw==: stderr: stack backtrace: -2026-04-20T11:20:47.597684Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wIvd19pjQ2GKAxkB_HjNIw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:47.597691Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wIvd19pjQ2GKAxkB_HjNIw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:47.597753Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:47.598589Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:47.598879Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:47.665971Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:47.666018Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:47.666159Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:47.666470Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:47.666522Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:47.666806Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=470 blob_id=2147879218521430327992230614778929971 -2026-04-20T11:20:48.172165Z DEBUG sp1_core_executor_runner::native: CHILD sp1_V9kF1HLQT7WF_x83XRY7Jw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:48.179888Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:48.190323Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1139950 cycles -2026-04-20T11:20:48.192764Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 9, 82, 116, 138, 50, 151, 117, 176, 209, 5, 225, 66, 214, 26, 26, 254, 13, 168, 27, 103, 172, 54, 38, 94, 224, 44, 99, 38, 120, 24, 210, 65, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 11, 125, 230, 28, 95, 22, 40, 80, 96, 203, 5, 121, 81, 53, 119, 3, 130, 218, 110, 210, 189, 216, 199, 63, 97, 147, 110, 147, 99, 239, 164, 205, 69, 210, 177, 254, 95, 111, 151, 166, 192, 148, 33, 132, 248, 39, 70, 1, 30, 149, 207, 94, 240, 237, 90, 133, 68, 0, 152, 229, 88, 181, 232, 176, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:48.255960Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:48.256005Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:48.272172Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:48.303924Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oJKDdfS3TpKXKsohdXXIug==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:48.306747Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oJKDdfS3TpKXKsohdXXIug==: stderr: -2026-04-20T11:20:48.306759Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oJKDdfS3TpKXKsohdXXIug==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:48.306781Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oJKDdfS3TpKXKsohdXXIug==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:48.306790Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oJKDdfS3TpKXKsohdXXIug==: stderr: stack backtrace: -2026-04-20T11:20:48.306796Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oJKDdfS3TpKXKsohdXXIug==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:48.306803Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oJKDdfS3TpKXKsohdXXIug==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:48.306919Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:48.307723Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:48.308033Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:48.374761Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:48.374803Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:48.374961Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:48.375115Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:48.375158Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:48.375616Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=471 blob_id=2147879219378576422120327981601449078 -2026-04-20T11:20:48.875467Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bnBU_mlNR9Gg2b9CBW_E5g==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:48.883114Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:48.894173Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1126559 cycles -2026-04-20T11:20:48.896865Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 14, 255, 230, 139, 164, 139, 54, 59, 72, 64, 147, 40, 203, 216, 82, 42, 239, 221, 213, 81, 200, 112, 24, 202, 247, 84, 224, 65, 203, 199, 53, 15, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 86, 57, 130, 180, 82, 86, 18, 76, 140, 56, 37, 20, 88, 172, 45, 63, 35, 182, 93, 116, 139, 142, 116, 242, 215, 199, 223, 203, 156, 185, 95, 154, 223, 196, 66, 132, 40, 162, 54, 171, 149, 116, 162, 47, 155, 195, 178, 152, 218, 227, 182, 118, 68, 251, 1, 216, 42, 166, 236, 162, 83, 197, 90, 36, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:48.958466Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:48.958521Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:48.982544Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:49.017784Z DEBUG sp1_core_executor_runner::native: CHILD sp1_UUWdLt0cTRy3WpmxDQWSJw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:49.020624Z DEBUG sp1_core_executor_runner::native: CHILD sp1_UUWdLt0cTRy3WpmxDQWSJw==: stderr: -2026-04-20T11:20:49.020648Z DEBUG sp1_core_executor_runner::native: CHILD sp1_UUWdLt0cTRy3WpmxDQWSJw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:49.020658Z DEBUG sp1_core_executor_runner::native: CHILD sp1_UUWdLt0cTRy3WpmxDQWSJw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:49.020665Z DEBUG sp1_core_executor_runner::native: CHILD sp1_UUWdLt0cTRy3WpmxDQWSJw==: stderr: stack backtrace: -2026-04-20T11:20:49.020672Z DEBUG sp1_core_executor_runner::native: CHILD sp1_UUWdLt0cTRy3WpmxDQWSJw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:49.020679Z DEBUG sp1_core_executor_runner::native: CHILD sp1_UUWdLt0cTRy3WpmxDQWSJw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:49.020740Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:49.021558Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:49.021873Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:49.089294Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:49.089348Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:49.089517Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:49.089683Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:49.089756Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:49.090352Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=472 blob_id=2147879220241735031728742101536939468 -2026-04-20T11:20:49.643345Z DEBUG sp1_core_executor_runner::native: CHILD sp1_llg4v5WaSJm4afq0asB8iw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:49.650873Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:49.661308Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1101822 cycles -2026-04-20T11:20:49.664009Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 1, 221, 69, 166, 233, 68, 76, 205, 55, 191, 225, 127, 177, 227, 236, 1, 91, 160, 19, 218, 227, 248, 70, 1, 79, 220, 209, 117, 234, 64, 111, 93, 72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 61, 95, 73, 109, 61, 10, 213, 51, 37, 63, 85, 82, 191, 120, 241, 187, 177, 218, 25, 67, 176, 51, 16, 156, 27, 66, 167, 118, 96, 99, 118, 70, 163, 21, 10, 80, 253, 34, 200, 161, 243, 27, 123, 249, 121, 236, 11, 26, 227, 96, 223, 55, 203, 214, 77, 152, 66, 159, 141, 222, 232, 147, 80, 173, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:49.724577Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:49.724628Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:49.797561Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:49.832068Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Uph5QroTRumaV6D5Xql4ZA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:49.834892Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Uph5QroTRumaV6D5Xql4ZA==: stderr: -2026-04-20T11:20:49.834918Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Uph5QroTRumaV6D5Xql4ZA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:49.834930Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Uph5QroTRumaV6D5Xql4ZA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:49.834939Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Uph5QroTRumaV6D5Xql4ZA==: stderr: stack backtrace: -2026-04-20T11:20:49.834947Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Uph5QroTRumaV6D5Xql4ZA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:49.834956Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Uph5QroTRumaV6D5Xql4ZA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:49.835041Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:49.835851Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:49.836180Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:49.889342Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:49.889379Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:49.889558Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:49.889808Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:49.889899Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:49.890365Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=473 blob_id=2147879221208868308802616843444519628 -2026-04-20T11:20:50.446608Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Cpmxv_0yTZi-0aMGvfNbsw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:50.499650Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:50.513376Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 9156498 cycles -2026-04-20T11:20:50.516164Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [72, 25, 237, 180, 75, 33, 65, 111, 49, 150, 15, 156, 96, 133, 78, 181, 1, 207, 210, 72, 174, 88, 247, 127, 149, 109, 67, 139, 164, 219, 168, 168, 20, 94, 21, 234, 220, 158, 68, 126, 65, 238, 54, 51, 0, 175, 187, 68, 135, 75, 125, 161, 214, 165, 220, 85, 139, 178, 67, 180, 3, 198, 111, 169, 21, 18, 14, 214, 80, 27, 23, 64, 215, 165, 114, 216, 214, 93, 147, 234, 73, 137, 90, 215, 195, 194, 199, 68, 85, 122, 168, 99, 142, 38, 69, 251, 62, 136, 208, 216, 230, 140, 125, 6, 71, 107, 46, 198, 167, 164, 161, 153, 139, 158, 2, 137, 39, 16, 74, 197, 198, 129, 102, 223, 162, 9, 41, 153, 14, 39, 144, 128, 56, 162, 120, 115, 132, 106, 74, 226, 16, 47, 8, 216, 17, 123, 155, 124, 27, 161, 230, 249, 187, 124, 161, 179, 154, 205, 232, 109, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:50.803297Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:50.803338Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:50.900421Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:50.934652Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3xUAsAWDQ1evPkASRxrFUQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:50.937481Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3xUAsAWDQ1evPkASRxrFUQ==: stderr: -2026-04-20T11:20:50.937505Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3xUAsAWDQ1evPkASRxrFUQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:50.937528Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3xUAsAWDQ1evPkASRxrFUQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:50.937536Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3xUAsAWDQ1evPkASRxrFUQ==: stderr: stack backtrace: -2026-04-20T11:20:50.937543Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3xUAsAWDQ1evPkASRxrFUQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:50.937549Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3xUAsAWDQ1evPkASRxrFUQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:50.937621Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:50.938428Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:50.938744Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:51.004484Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:51.004529Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:51.004678Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:51.004868Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:51.004956Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:51.005380Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=474 blob_id=2147879222556811153235693845449454329 -2026-04-20T11:20:51.567808Z DEBUG sp1_core_executor_runner::native: CHILD sp1_OgjxRWMkRyqUXK5VkQDMTw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:51.586454Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:51.597724Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2596783 cycles -2026-04-20T11:20:51.600486Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [5, 76, 86, 8, 40, 153, 122, 79, 185, 44, 31, 186, 35, 40, 92, 179, 156, 43, 183, 0, 58, 35, 42, 131, 112, 150, 215, 33, 91, 206, 103, 81, 55, 172, 240, 153, 42, 165, 25, 4, 103, 146, 217, 76, 217, 4, 21, 117, 21, 166, 151, 148, 254, 234, 85, 84, 131, 42, 204, 15, 45, 152, 240, 239, 121, 64, 174, 222, 133, 183, 134, 202, 30, 124, 35, 30, 149, 176, 83, 93, 207, 96, 63, 142, 196, 235, 106, 249, 75, 238, 93, 75, 250, 58, 28, 141, 70, 52, 11, 56, 216, 168, 241, 231, 215, 25, 99, 32, 205, 71, 235, 154, 73, 96, 4, 128, 3, 162, 168, 132, 85, 132, 146, 15, 221, 149, 39, 234, 77, 231, 144, 98, 11, 221, 59, 76, 140, 53, 175, 252, 51, 210, 247, 134, 14, 12, 83, 197, 104, 75, 220, 227, 58, 76, 169, 98, 124, 20, 133, 33, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:51.712717Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:51.712751Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:51.813846Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:51.847770Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sQYUo4NOTsW7Zhew9cjTtQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:51.850593Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sQYUo4NOTsW7Zhew9cjTtQ==: stderr: -2026-04-20T11:20:51.850617Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sQYUo4NOTsW7Zhew9cjTtQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:51.850626Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sQYUo4NOTsW7Zhew9cjTtQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:51.850633Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sQYUo4NOTsW7Zhew9cjTtQ==: stderr: stack backtrace: -2026-04-20T11:20:51.850640Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sQYUo4NOTsW7Zhew9cjTtQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:51.850646Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sQYUo4NOTsW7Zhew9cjTtQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:51.850767Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:51.851566Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:51.851889Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:51.917622Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:51.917668Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:51.917825Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:51.918054Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:51.918149Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:51.918599Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=475 blob_id=2147879223660571052695961024748237460 -2026-04-20T11:20:52.476912Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bn1NnlxcRcOlODBRejAxbQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:52.505458Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:52.517945Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4391139 cycles -2026-04-20T11:20:52.520754Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [29, 194, 82, 233, 5, 111, 241, 22, 119, 184, 199, 255, 230, 96, 54, 104, 138, 111, 122, 102, 244, 36, 131, 148, 212, 183, 42, 201, 81, 147, 235, 22, 86, 139, 54, 230, 8, 70, 108, 44, 83, 236, 75, 81, 253, 249, 27, 155, 190, 109, 75, 210, 224, 208, 115, 99, 8, 52, 1, 84, 234, 54, 19, 213, 14, 1, 195, 66, 4, 231, 227, 109, 130, 213, 93, 61, 165, 250, 104, 18, 201, 7, 21, 120, 110, 148, 38, 14, 211, 35, 241, 29, 52, 253, 213, 185, 117, 17, 189, 58, 9, 186, 188, 168, 243, 245, 22, 71, 168, 217, 6, 250, 119, 253, 74, 220, 90, 89, 194, 130, 222, 144, 105, 60, 138, 108, 170, 116, 22, 175, 81, 230, 85, 62, 93, 36, 44, 47, 29, 93, 7, 151, 85, 51, 95, 204, 119, 66, 0, 61, 132, 114, 151, 16, 96, 90, 15, 232, 82, 115, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:52.678413Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:52.678448Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:52.726111Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:52.760652Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fFBM6b_gQFW3_TapZybomw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:52.763470Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fFBM6b_gQFW3_TapZybomw==: stderr: -2026-04-20T11:20:52.763494Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fFBM6b_gQFW3_TapZybomw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:52.763504Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fFBM6b_gQFW3_TapZybomw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:52.763511Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fFBM6b_gQFW3_TapZybomw==: stderr: stack backtrace: -2026-04-20T11:20:52.763517Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fFBM6b_gQFW3_TapZybomw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:52.763526Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fFBM6b_gQFW3_TapZybomw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:52.763598Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:52.764430Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:52.764722Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:52.818442Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:52.818486Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:52.818616Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:52.818845Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:52.818936Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:52.819378Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=476 blob_id=2147879224749832125567161667380653778 -2026-04-20T11:20:53.010222Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=7 height=408 prev_hash=0x338e0186948a360e672ac72a018ea3c39b7d9720aec112ab686e818371095431 hash=0xa17e2f6db135c8bbc5c2be2a91f87d1006211b87638c09b7eb314a93c2427ce6 producing_time=1.257142ms -2026-04-20T11:20:53.014778Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=408 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f116d6149cabbfdf300c8ed4ea9d48eae2f402787d5badab562d20f312d6d3bfa7" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x4da54144b12bbc99a837d349ebf54258bd3694bd94590605a7aac7cafefde27b, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc05c9bbcce4a23e1a65f4d7bba0e67cd5f9ffbcf5180380d7349c5385c4f3c61, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x19e8a24e36f2f07e8d2a2d9a5ccf7a902b79f564ddedec0e652123c86e6b3a2f, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xdb27a315a2adb83e7d2801e4f31e488801ca6e08c72ee7a0e2260c61bd5d06e6, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x23d8b78519ce64cf3446fc1111abd86d78d6018fcad009075c1f8e160ccbe905, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x39d890e2ce8d57514cb994a52b28c8c75f8129bcd95599eeefebd5fe4bf104c4, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1dceae2ae6f7d4afeae6dd6d8da36f3c29341fe0397f492414b532f2756637d5, len=625"] -2026-04-20T11:20:53.015087Z DEBUG StfBlueprint::apply_slot{context=Node da_height=408}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f116d6149cabbfdf300c8ed4ea9d48eae2f402787d5badab562d20f312d6d3bfa7 next_version=408 sesssion_starting_time=35.76µs -2026-04-20T11:20:53.015878Z DEBUG StfBlueprint::apply_slot{context=Node da_height=408}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f11e60c3abd5313238c38445618a9026f835aef2c2243390505e36870a309825ca next_version=408 time=848.355µs accesses_build_time=21.03µs finishing_session_time=769.415µs -2026-04-20T11:20:53.015942Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2195f71ef008ef79d25e7f1233f059e90812a286edf07717bf565523d10d445d7a453e43118d9fb69d44f45396ede7f1435b4f759c5d6ae6e41ab7fa9f6f38db" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f11e60c3abd5313238c38445618a9026f835aef2c2243390505e36870a309825ca" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:20:53.016406Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 408, latest_finalized_slot_number: 407, sync_status: Synced { synced_da_height: 407 }, .. } -2026-04-20T11:20:53.016489Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Proceeding with `replay_soft_confirmations_on_top_of_node_state` initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: true } -2026-04-20T11:20:53.016518Z DEBUG sov_sequencer::preferred::transaction_subscriptions: Cleaning and overwriting transaction cache up to 0 -2026-04-20T11:20:53.016553Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Populating pinned cache for replay. This may take a few moments. inner_status=InitialStatus { is_startup: false, is_resync: false, is_recover: true } -2026-04-20T11:20:53.016577Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Pinned cache populated. Starting transaction replay. -2026-04-20T11:20:53.016733Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Completed proofs found without a completed batch; carrying them into final catchup pending_completed_proofs=15 next_sequence_number=462 -2026-04-20T11:20:53.016837Z DEBUG sov_sequencer::preferred::block_executor: Replacing state for block executor old=019daa9f-1aa7-76a3-b8aa-26a922ea4bf7 new=019daa9f-3218-71d0-be6d-59349ab16b26 -2026-04-20T11:20:53.027286Z DEBUG sov_stf_runner::runner: Block execution complete time=5.994012043s -2026-04-20T11:20:53.027303Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:20:53.365546Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VclU1surTKWpHV7dkmoi6w==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:53.395184Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:53.407304Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4611127 cycles -2026-04-20T11:20:53.409573Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [118, 74, 242, 50, 138, 103, 38, 24, 101, 216, 59, 160, 163, 157, 98, 208, 38, 93, 94, 7, 162, 145, 126, 70, 177, 222, 9, 55, 52, 13, 17, 110, 11, 86, 0, 144, 28, 88, 137, 36, 253, 234, 24, 74, 164, 11, 205, 156, 122, 25, 205, 180, 228, 59, 66, 22, 189, 165, 48, 143, 239, 26, 12, 248, 12, 254, 49, 255, 230, 6, 15, 94, 248, 170, 186, 128, 0, 176, 193, 231, 140, 167, 239, 109, 174, 67, 153, 63, 245, 149, 234, 240, 217, 187, 126, 157, 72, 156, 238, 35, 80, 240, 228, 161, 188, 239, 72, 37, 19, 34, 228, 61, 234, 33, 244, 35, 246, 134, 63, 136, 211, 64, 237, 215, 77, 167, 64, 116, 63, 42, 59, 213, 157, 147, 218, 105, 247, 44, 87, 206, 116, 40, 106, 245, 171, 216, 220, 25, 83, 122, 240, 139, 79, 120, 161, 223, 97, 249, 231, 161, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:53.578656Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:53.578693Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:53.629639Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:53.664178Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XCkg6OLdTfW5mjjnXrRjNg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:53.667019Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XCkg6OLdTfW5mjjnXrRjNg==: stderr: -2026-04-20T11:20:53.667044Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XCkg6OLdTfW5mjjnXrRjNg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:53.667055Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XCkg6OLdTfW5mjjnXrRjNg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:53.667062Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XCkg6OLdTfW5mjjnXrRjNg==: stderr: stack backtrace: -2026-04-20T11:20:53.667070Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XCkg6OLdTfW5mjjnXrRjNg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:53.667079Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XCkg6OLdTfW5mjjnXrRjNg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:53.667126Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:53.667946Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:53.668257Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:53.729761Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:53.729800Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:53.729999Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:53.730233Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:53.730350Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:53.730755Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=477 blob_id=2147879225852382764708491096832241755 -2026-04-20T11:20:54.278109Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oITdmNA0SnWkqCaU9a7J1g==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:54.306723Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:54.318993Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4436860 cycles -2026-04-20T11:20:54.321755Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [93, 42, 144, 211, 178, 21, 253, 79, 90, 172, 225, 56, 195, 66, 227, 98, 88, 154, 33, 171, 70, 186, 217, 177, 146, 165, 245, 182, 142, 79, 80, 159, 28, 228, 223, 16, 68, 62, 42, 54, 246, 125, 219, 24, 36, 35, 247, 169, 4, 122, 104, 173, 123, 77, 207, 77, 221, 8, 157, 70, 141, 116, 12, 233, 25, 78, 244, 74, 168, 42, 117, 246, 183, 63, 170, 135, 117, 60, 99, 237, 183, 115, 126, 218, 226, 64, 210, 52, 197, 185, 255, 68, 75, 152, 110, 140, 57, 67, 173, 15, 186, 252, 217, 187, 98, 102, 178, 209, 132, 129, 122, 80, 112, 111, 189, 170, 19, 69, 143, 228, 203, 167, 61, 102, 76, 151, 57, 106, 105, 110, 246, 235, 120, 29, 224, 137, 172, 125, 208, 251, 92, 114, 124, 91, 66, 89, 78, 191, 96, 231, 101, 199, 251, 27, 9, 181, 194, 6, 110, 212, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:54.479962Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:54.479998Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:54.538844Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:54.572453Z DEBUG sp1_core_executor_runner::native: CHILD sp1_L6DSQerKRuyGVf4TiHQmow==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:54.575307Z DEBUG sp1_core_executor_runner::native: CHILD sp1_L6DSQerKRuyGVf4TiHQmow==: stderr: -2026-04-20T11:20:54.575346Z DEBUG sp1_core_executor_runner::native: CHILD sp1_L6DSQerKRuyGVf4TiHQmow==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:54.575356Z DEBUG sp1_core_executor_runner::native: CHILD sp1_L6DSQerKRuyGVf4TiHQmow==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:54.575363Z DEBUG sp1_core_executor_runner::native: CHILD sp1_L6DSQerKRuyGVf4TiHQmow==: stderr: stack backtrace: -2026-04-20T11:20:54.575369Z DEBUG sp1_core_executor_runner::native: CHILD sp1_L6DSQerKRuyGVf4TiHQmow==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:54.575375Z DEBUG sp1_core_executor_runner::native: CHILD sp1_L6DSQerKRuyGVf4TiHQmow==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:54.575445Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:54.576144Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:54.576434Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:54.643456Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:54.643499Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:54.643698Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:54.643924Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:54.644010Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:54.644548Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=478 blob_id=2147879226956104626298931873206034081 -2026-04-20T11:20:55.193742Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sBCsqWKgQwydcEww9NGiJg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:55.223590Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:55.235513Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4684410 cycles -2026-04-20T11:20:55.237760Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [58, 71, 48, 81, 176, 245, 218, 251, 177, 17, 202, 218, 1, 112, 26, 8, 48, 246, 47, 245, 115, 2, 198, 216, 196, 134, 52, 72, 197, 172, 134, 173, 13, 100, 192, 141, 27, 77, 0, 110, 165, 176, 35, 31, 190, 101, 87, 76, 220, 144, 142, 16, 220, 190, 252, 51, 46, 73, 164, 109, 141, 253, 107, 251, 14, 176, 160, 2, 76, 57, 51, 57, 176, 104, 122, 121, 190, 113, 137, 129, 69, 171, 189, 20, 8, 179, 196, 105, 122, 18, 215, 146, 11, 72, 77, 81, 60, 1, 236, 146, 101, 224, 7, 53, 229, 98, 85, 23, 68, 224, 103, 222, 194, 228, 14, 104, 116, 100, 250, 15, 1, 221, 66, 182, 172, 240, 92, 181, 48, 59, 189, 134, 72, 31, 171, 208, 92, 10, 30, 124, 76, 159, 38, 139, 71, 68, 198, 8, 188, 126, 0, 239, 219, 164, 128, 7, 4, 93, 110, 12, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:55.404126Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:55.404161Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:55.451759Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:55.485627Z DEBUG sp1_core_executor_runner::native: CHILD sp1_la_bk2-vTECqd1RdFjcBtQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:55.488452Z DEBUG sp1_core_executor_runner::native: CHILD sp1_la_bk2-vTECqd1RdFjcBtQ==: stderr: -2026-04-20T11:20:55.488492Z DEBUG sp1_core_executor_runner::native: CHILD sp1_la_bk2-vTECqd1RdFjcBtQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:55.488503Z DEBUG sp1_core_executor_runner::native: CHILD sp1_la_bk2-vTECqd1RdFjcBtQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:55.488510Z DEBUG sp1_core_executor_runner::native: CHILD sp1_la_bk2-vTECqd1RdFjcBtQ==: stderr: stack backtrace: -2026-04-20T11:20:55.488517Z DEBUG sp1_core_executor_runner::native: CHILD sp1_la_bk2-vTECqd1RdFjcBtQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:55.488523Z DEBUG sp1_core_executor_runner::native: CHILD sp1_la_bk2-vTECqd1RdFjcBtQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:55.488624Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:55.489389Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:55.489710Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:55.560020Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:55.560066Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:55.560226Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:55.560480Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:55.560539Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:55.560910Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=479 blob_id=2147879228064701354177780117698186680 -2026-04-20T11:20:56.126757Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AFCobfjjTqqdLSRQSzHIZA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:56.136850Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:56.147646Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1508389 cycles -2026-04-20T11:20:56.150374Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 75, 86, 217, 9, 198, 199, 181, 189, 179, 88, 214, 19, 108, 129, 103, 193, 145, 190, 8, 173, 144, 191, 242, 171, 10, 223, 29, 100, 131, 16, 56, 98, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 34, 196, 83, 10, 224, 43, 18, 40, 215, 25, 190, 99, 192, 61, 151, 47, 141, 230, 107, 70, 180, 251, 37, 109, 203, 249, 193, 131, 155, 115, 14, 111, 48, 238, 70, 22, 60, 253, 210, 80, 228, 235, 59, 159, 27, 111, 9, 126, 80, 19, 236, 175, 123, 166, 9, 5, 30, 30, 223, 238, 128, 39, 217, 149, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:56.229482Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:56.229520Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:56.268458Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:56.294776Z DEBUG sp1_core_executor_runner::native: CHILD sp1_H9Ocr-oyT8q4auv5GZRzFg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:56.297694Z DEBUG sp1_core_executor_runner::native: CHILD sp1_H9Ocr-oyT8q4auv5GZRzFg==: stderr: -2026-04-20T11:20:56.297707Z DEBUG sp1_core_executor_runner::native: CHILD sp1_H9Ocr-oyT8q4auv5GZRzFg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:56.297721Z DEBUG sp1_core_executor_runner::native: CHILD sp1_H9Ocr-oyT8q4auv5GZRzFg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:56.297730Z DEBUG sp1_core_executor_runner::native: CHILD sp1_H9Ocr-oyT8q4auv5GZRzFg==: stderr: stack backtrace: -2026-04-20T11:20:56.297738Z DEBUG sp1_core_executor_runner::native: CHILD sp1_H9Ocr-oyT8q4auv5GZRzFg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:56.297747Z DEBUG sp1_core_executor_runner::native: CHILD sp1_H9Ocr-oyT8q4auv5GZRzFg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:56.297806Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:56.298634Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:56.298962Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:56.325452Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:56.325479Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:56.325577Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:56.325721Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:56.325778Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:56.326087Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=480 blob_id=2147879228989474432652967299778227978 -2026-04-20T11:20:56.879895Z DEBUG sp1_core_executor_runner::native: CHILD sp1_MorptS1OQJGOQfjHA1NK9g==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:56.889819Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:56.900894Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1491730 cycles -2026-04-20T11:20:56.903364Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 104, 194, 208, 193, 181, 209, 45, 42, 107, 43, 71, 32, 11, 23, 42, 128, 186, 57, 2, 43, 20, 234, 147, 63, 236, 235, 36, 4, 121, 206, 178, 159, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 49, 17, 100, 212, 211, 187, 178, 116, 241, 150, 213, 179, 199, 253, 206, 242, 88, 208, 215, 107, 106, 207, 146, 181, 173, 138, 36, 146, 23, 248, 123, 113, 21, 37, 136, 231, 38, 182, 106, 241, 20, 64, 72, 86, 89, 208, 197, 200, 237, 248, 138, 227, 109, 157, 90, 160, 124, 144, 168, 229, 248, 77, 204, 83, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:56.985268Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:56.985301Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:57.032660Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:57.066822Z DEBUG sp1_core_executor_runner::native: CHILD sp1_b-FA6DtsRs6zriDQYqSGEw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:57.069672Z DEBUG sp1_core_executor_runner::native: CHILD sp1_b-FA6DtsRs6zriDQYqSGEw==: stderr: -2026-04-20T11:20:57.069696Z DEBUG sp1_core_executor_runner::native: CHILD sp1_b-FA6DtsRs6zriDQYqSGEw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:57.069707Z DEBUG sp1_core_executor_runner::native: CHILD sp1_b-FA6DtsRs6zriDQYqSGEw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:57.069713Z DEBUG sp1_core_executor_runner::native: CHILD sp1_b-FA6DtsRs6zriDQYqSGEw==: stderr: stack backtrace: -2026-04-20T11:20:57.069720Z DEBUG sp1_core_executor_runner::native: CHILD sp1_b-FA6DtsRs6zriDQYqSGEw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:57.069726Z DEBUG sp1_core_executor_runner::native: CHILD sp1_b-FA6DtsRs6zriDQYqSGEw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:57.069787Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:57.070607Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:57.071138Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:57.136234Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:57.136276Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:57.136460Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:57.136663Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:57.136746Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:57.137118Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=481 blob_id=2147879229969963779652408887695000506 -2026-04-20T11:20:57.687181Z DEBUG sp1_core_executor_runner::native: CHILD sp1_au5cYzj6SyOWNNAtjBDj9g==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:57.697732Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:57.707768Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1576636 cycles -2026-04-20T11:20:57.710346Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 33, 52, 30, 226, 230, 93, 39, 151, 116, 88, 182, 106, 61, 180, 166, 90, 116, 89, 48, 50, 220, 92, 134, 115, 117, 125, 102, 64, 209, 181, 189, 136, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 1, 131, 238, 238, 174, 50, 214, 58, 232, 114, 107, 46, 99, 224, 224, 117, 51, 126, 183, 168, 109, 229, 243, 9, 253, 34, 107, 33, 251, 154, 111, 238, 76, 5, 18, 78, 249, 62, 24, 162, 143, 24, 23, 41, 223, 15, 3, 192, 121, 178, 160, 98, 106, 73, 199, 63, 251, 114, 226, 91, 18, 115, 73, 14, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:57.792767Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:57.792802Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:57.843692Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:57.877757Z DEBUG sp1_core_executor_runner::native: CHILD sp1_apNnW0DJRuuL_y_RESIXwQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:57.880602Z DEBUG sp1_core_executor_runner::native: CHILD sp1_apNnW0DJRuuL_y_RESIXwQ==: stderr: -2026-04-20T11:20:57.880620Z DEBUG sp1_core_executor_runner::native: CHILD sp1_apNnW0DJRuuL_y_RESIXwQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:57.880645Z DEBUG sp1_core_executor_runner::native: CHILD sp1_apNnW0DJRuuL_y_RESIXwQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:57.880654Z DEBUG sp1_core_executor_runner::native: CHILD sp1_apNnW0DJRuuL_y_RESIXwQ==: stderr: stack backtrace: -2026-04-20T11:20:57.880663Z DEBUG sp1_core_executor_runner::native: CHILD sp1_apNnW0DJRuuL_y_RESIXwQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:57.880671Z DEBUG sp1_core_executor_runner::native: CHILD sp1_apNnW0DJRuuL_y_RESIXwQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:57.880772Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:57.881570Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:57.881886Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:57.949191Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:57.949232Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:57.949405Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:57.949574Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:57.949633Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:57.949998Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=482 blob_id=2147879230952832236828844453590667128 -2026-04-20T11:20:58.503402Z DEBUG sp1_core_executor_runner::native: CHILD sp1_q4HQ10-xRpqJS21QCMtraw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:58.510917Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:58.520464Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1132205 cycles -2026-04-20T11:20:58.523002Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 103, 225, 83, 49, 101, 254, 46, 87, 177, 68, 252, 103, 153, 133, 214, 224, 28, 100, 203, 153, 152, 174, 41, 182, 233, 133, 238, 139, 11, 187, 161, 46, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 124, 231, 241, 40, 16, 183, 53, 163, 29, 231, 182, 135, 238, 174, 216, 45, 6, 125, 76, 82, 204, 150, 76, 94, 118, 119, 8, 106, 86, 192, 213, 71, 162, 60, 193, 150, 144, 224, 8, 42, 31, 191, 176, 164, 150, 173, 162, 243, 217, 101, 158, 5, 208, 152, 231, 192, 8, 25, 35, 138, 244, 55, 110, 168, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:58.587392Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:58.587441Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:58.657851Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:58.692435Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wQOwuiVNRjSMozJ2ZIKfug==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:58.695266Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wQOwuiVNRjSMozJ2ZIKfug==: stderr: -2026-04-20T11:20:58.695291Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wQOwuiVNRjSMozJ2ZIKfug==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:58.695302Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wQOwuiVNRjSMozJ2ZIKfug==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:58.695309Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wQOwuiVNRjSMozJ2ZIKfug==: stderr: stack backtrace: -2026-04-20T11:20:58.695325Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wQOwuiVNRjSMozJ2ZIKfug==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:58.695334Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wQOwuiVNRjSMozJ2ZIKfug==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:58.695454Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:58.696184Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:58.696480Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:58.762816Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:58.762860Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:58.763044Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:58.763214Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:58.763279Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:58.763649Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=483 blob_id=2147879231936860111844646410812183652 -2026-04-20T11:20:59.011799Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=7 height=409 prev_hash=0xa17e2f6db135c8bbc5c2be2a91f87d1006211b87638c09b7eb314a93c2427ce6 hash=0xf9d272e2edc2420a4a699e98cafe23bfd429d08446352b39f364dc9ff9643de5 producing_time=1.233702ms -2026-04-20T11:20:59.018613Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=409 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f11e60c3abd5313238c38445618a9026f835aef2c2243390505e36870a309825ca" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe64c66fab5ba39043492d397471589e8657ad8047c5c4c6935f58f4620371047, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xbea7ea91a5b94d9541a8c6289edc5bb42ab85e2dbe30150d2635d59a862c0ce5, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xfd48a26c14297983689ba04746d5392fedf8611c0f0dc8b0f392468f50fdc8dd, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe23570cd5618dc6aeab5208ddfbfbecb3b2f408eb77c9d24347f37886e60e76d, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9bbc26ab883f8353ad6653147f6b7ed310b5c095ffa56e6c3b3a513b8803c26d, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x75ab054b7a1989606e941d4301a18516aebd694cdfae7f1364bf07a09b491d88, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9dc29ae4fa1faa7e56e50d36f2275fad262cfec747dc66466cf0263489762012, len=625"] -2026-04-20T11:20:59.019002Z DEBUG StfBlueprint::apply_slot{context=Node da_height=409}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f11e60c3abd5313238c38445618a9026f835aef2c2243390505e36870a309825ca next_version=409 sesssion_starting_time=46.109µs -2026-04-20T11:20:59.019806Z DEBUG StfBlueprint::apply_slot{context=Node da_height=409}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f178b9cd607e85bdfd5a11b4d0371e1767bfeda28ae8689f9e9bc25ae90048f821 next_version=409 time=878.174µs accesses_build_time=27.759µs finishing_session_time=773.615µs -2026-04-20T11:20:59.019879Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f116d6149cabbfdf300c8ed4ea9d48eae2f402787d5badab562d20f312d6d3bfa7" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f178b9cd607e85bdfd5a11b4d0371e1767bfeda28ae8689f9e9bc25ae90048f821" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:20:59.020442Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 409, latest_finalized_slot_number: 408, sync_status: Synced { synced_da_height: 408 }, .. } -2026-04-20T11:20:59.020555Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 409, latest_finalized_slot_number: 408, sync_status: Synced { synced_da_height: 408 }, .. } -2026-04-20T11:20:59.020616Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:20:59.027279Z  INFO sov_db::storage_manager::nomt_based::groups: Starting pruner task iteration versions_to_keep=20 -2026-04-20T11:20:59.027425Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000123944s -2026-04-20T11:20:59.027438Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:20:59.027620Z  WARN sov_db::storage_manager::nomt_based::groups: Pruning temporarily disabled -2026-04-20T11:20:59.312238Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hIRi8pgiSbaIKsaZN5F8aw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:20:59.319173Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:59.329590Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1040854 cycles -2026-04-20T11:20:59.332252Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 75, 47, 167, 14, 21, 30, 133, 227, 205, 238, 79, 142, 252, 61, 42, 240, 52, 97, 239, 178, 74, 80, 1, 241, 177, 108, 48, 132, 154, 236, 223, 187, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 107, 88, 40, 156, 59, 181, 38, 129, 170, 212, 252, 210, 204, 99, 170, 207, 144, 143, 193, 206, 134, 65, 252, 73, 122, 211, 163, 106, 115, 66, 183, 159, 219, 121, 240, 38, 37, 230, 162, 134, 24, 62, 174, 206, 16, 35, 104, 59, 89, 155, 56, 24, 63, 40, 17, 64, 222, 233, 196, 152, 144, 164, 127, 188, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:20:59.389729Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:59.389777Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:59.471176Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:59.504557Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YDVAfpfuSm2lc9L3Bg18jg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:20:59.507379Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YDVAfpfuSm2lc9L3Bg18jg==: stderr: -2026-04-20T11:20:59.507392Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YDVAfpfuSm2lc9L3Bg18jg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:20:59.507416Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YDVAfpfuSm2lc9L3Bg18jg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:59.507422Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YDVAfpfuSm2lc9L3Bg18jg==: stderr: stack backtrace: -2026-04-20T11:20:59.507428Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YDVAfpfuSm2lc9L3Bg18jg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:20:59.507434Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YDVAfpfuSm2lc9L3Bg18jg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:20:59.507556Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:20:59.508245Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:20:59.508537Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:20:59.574205Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:20:59.574251Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:20:59.574469Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:20:59.574737Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:20:59.574802Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:20:59.575269Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=484 blob_id=2147879232917278548652618553127261668 -2026-04-20T11:21:00.125229Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CfP6OxmUQZSFR9FHrUG7LQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:21:00.132099Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:21:00.142840Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1035215 cycles -2026-04-20T11:21:00.145578Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 112, 90, 55, 81, 116, 82, 120, 42, 167, 198, 211, 195, 87, 243, 178, 107, 99, 220, 156, 50, 81, 232, 134, 98, 43, 150, 94, 21, 149, 131, 193, 215, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 79, 244, 94, 106, 132, 198, 163, 81, 244, 230, 114, 28, 1, 74, 102, 53, 222, 77, 151, 206, 178, 246, 115, 139, 96, 228, 252, 136, 172, 99, 50, 62, 174, 181, 173, 154, 10, 241, 132, 240, 0, 69, 39, 208, 82, 7, 17, 218, 84, 124, 161, 173, 219, 181, 177, 213, 12, 87, 212, 5, 190, 243, 31, 170, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:21:00.186581Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:21:00.186623Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:21:00.282048Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:21:00.315780Z DEBUG sp1_core_executor_runner::native: CHILD sp1_i9lVsfiIQuiNy9P4zqISEw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:21:00.318635Z DEBUG sp1_core_executor_runner::native: CHILD sp1_i9lVsfiIQuiNy9P4zqISEw==: stderr: -2026-04-20T11:21:00.318650Z DEBUG sp1_core_executor_runner::native: CHILD sp1_i9lVsfiIQuiNy9P4zqISEw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:21:00.318661Z DEBUG sp1_core_executor_runner::native: CHILD sp1_i9lVsfiIQuiNy9P4zqISEw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:21:00.318671Z DEBUG sp1_core_executor_runner::native: CHILD sp1_i9lVsfiIQuiNy9P4zqISEw==: stderr: stack backtrace: -2026-04-20T11:21:00.318680Z DEBUG sp1_core_executor_runner::native: CHILD sp1_i9lVsfiIQuiNy9P4zqISEw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:21:00.318689Z DEBUG sp1_core_executor_runner::native: CHILD sp1_i9lVsfiIQuiNy9P4zqISEw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:21:00.318767Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:21:00.319559Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:21:00.319847Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:21:00.385161Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:21:00.385209Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:21:00.385414Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:21:00.385584Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:21:00.385662Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:21:00.386052Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=485 blob_id=2147879233897762253992850489625040972 -2026-04-20T11:21:00.939883Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vrRtwJxQQo-5Yf-ozmmoJw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:21:00.946778Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:21:00.957413Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1041022 cycles -2026-04-20T11:21:00.960513Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 95, 248, 82, 19, 125, 170, 229, 194, 61, 112, 192, 195, 119, 254, 172, 37, 193, 93, 68, 87, 221, 63, 37, 221, 104, 152, 29, 98, 0, 109, 181, 167, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 80, 58, 69, 160, 7, 97, 157, 147, 81, 243, 92, 216, 146, 173, 150, 78, 160, 124, 115, 117, 139, 148, 196, 244, 106, 212, 129, 150, 155, 6, 211, 76, 254, 241, 145, 64, 51, 237, 167, 180, 96, 48, 167, 48, 8, 211, 55, 131, 6, 109, 34, 14, 235, 107, 35, 0, 15, 194, 194, 74, 97, 61, 62, 233, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:21:01.017932Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:21:01.017980Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:21:01.093984Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:21:01.128112Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NWm6D0jBR9GSUiBtUqqlDQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:21:01.130972Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NWm6D0jBR9GSUiBtUqqlDQ==: stderr: -2026-04-20T11:21:01.130988Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NWm6D0jBR9GSUiBtUqqlDQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:21:01.130996Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NWm6D0jBR9GSUiBtUqqlDQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:21:01.131005Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NWm6D0jBR9GSUiBtUqqlDQ==: stderr: stack backtrace: -2026-04-20T11:21:01.131011Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NWm6D0jBR9GSUiBtUqqlDQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:21:01.131018Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NWm6D0jBR9GSUiBtUqqlDQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:21:01.131170Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:21:01.131916Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:21:01.132212Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:21:01.197586Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:21:01.197630Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:21:01.197806Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:21:01.197976Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:21:01.198044Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:21:01.198424Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=486 blob_id=2147879234879368420770208725481324503 -2026-04-20T11:21:01.752377Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ANXy2OmtT3qLPY5MV5fRjw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:21:01.759491Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:21:01.771430Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1066340 cycles -2026-04-20T11:21:01.773879Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 96, 58, 221, 169, 184, 93, 118, 10, 92, 189, 112, 218, 40, 236, 35, 250, 119, 139, 105, 221, 149, 145, 156, 142, 243, 60, 63, 52, 71, 2, 195, 170, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 55, 91, 12, 227, 121, 166, 65, 116, 173, 186, 195, 114, 155, 21, 244, 148, 161, 152, 230, 34, 243, 229, 198, 246, 200, 202, 62, 47, 180, 37, 63, 174, 245, 105, 171, 193, 139, 27, 200, 86, 168, 225, 234, 207, 160, 102, 186, 123, 17, 241, 94, 127, 70, 177, 145, 0, 80, 40, 190, 154, 76, 190, 176, 35, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:21:01.830232Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:21:01.830278Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:21:01.905588Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:21:01.939828Z DEBUG sp1_core_executor_runner::native: CHILD sp1_KpHhSEwETge_ZKTf_YpHuQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:21:01.942652Z DEBUG sp1_core_executor_runner::native: CHILD sp1_KpHhSEwETge_ZKTf_YpHuQ==: stderr: -2026-04-20T11:21:01.942676Z DEBUG sp1_core_executor_runner::native: CHILD sp1_KpHhSEwETge_ZKTf_YpHuQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:21:01.942701Z DEBUG sp1_core_executor_runner::native: CHILD sp1_KpHhSEwETge_ZKTf_YpHuQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:21:01.942709Z DEBUG sp1_core_executor_runner::native: CHILD sp1_KpHhSEwETge_ZKTf_YpHuQ==: stderr: stack backtrace: -2026-04-20T11:21:01.942716Z DEBUG sp1_core_executor_runner::native: CHILD sp1_KpHhSEwETge_ZKTf_YpHuQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:21:01.942723Z DEBUG sp1_core_executor_runner::native: CHILD sp1_KpHhSEwETge_ZKTf_YpHuQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:21:01.942848Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:21:01.943576Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:21:01.943866Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:21:02.010554Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:21:02.010598Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:21:02.010718Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:21:02.010829Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:21:02.010898Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:21:02.011230Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=487 blob_id=2147879235862238966355111676558320911 -2026-04-20T11:21:02.561009Z DEBUG sp1_core_executor_runner::native: CHILD sp1_exXVCh7aRUyNTAUZZJTs7w==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:21:02.568260Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:21:02.578999Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1061994 cycles -2026-04-20T11:21:02.581474Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 54, 44, 66, 91, 184, 228, 249, 8, 227, 122, 8, 153, 255, 161, 143, 0, 36, 222, 253, 72, 69, 18, 91, 221, 186, 193, 138, 59, 85, 210, 136, 123, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 61, 56, 143, 3, 109, 68, 103, 105, 228, 39, 99, 243, 79, 91, 152, 223, 69, 142, 34, 219, 200, 154, 212, 46, 99, 163, 80, 87, 115, 251, 160, 16, 141, 72, 180, 223, 98, 51, 254, 2, 26, 170, 214, 230, 199, 196, 204, 125, 23, 176, 100, 213, 145, 124, 48, 201, 213, 84, 13, 200, 191, 7, 197, 30, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:21:02.639922Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:21:02.639968Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:21:02.719660Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:21:02.754289Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FzhDHFpZQ8S0RxPXWpecSQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:21:02.757157Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FzhDHFpZQ8S0RxPXWpecSQ==: stderr: -2026-04-20T11:21:02.757182Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FzhDHFpZQ8S0RxPXWpecSQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:21:02.757192Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FzhDHFpZQ8S0RxPXWpecSQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:21:02.757199Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FzhDHFpZQ8S0RxPXWpecSQ==: stderr: stack backtrace: -2026-04-20T11:21:02.757205Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FzhDHFpZQ8S0RxPXWpecSQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:21:02.757212Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FzhDHFpZQ8S0RxPXWpecSQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:21:02.757571Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:21:02.758117Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:21:02.758435Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:21:02.824282Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:21:02.824337Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:21:02.824520Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:21:02.824686Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:21:02.824754Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:21:02.825137Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=488 blob_id=2147879236846354166472809762669023679 -2026-04-20T11:21:03.387045Z DEBUG sp1_core_executor_runner::native: CHILD sp1_DvqjURHGSmqdq7HHoGSJzA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:21:03.394206Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:21:03.404961Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1068448 cycles -2026-04-20T11:21:03.407587Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 69, 73, 99, 243, 56, 136, 83, 196, 53, 184, 127, 154, 208, 255, 155, 236, 124, 55, 218, 29, 223, 36, 108, 82, 255, 89, 69, 249, 96, 238, 198, 32, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 101, 215, 200, 12, 164, 105, 27, 38, 58, 4, 43, 154, 56, 115, 68, 86, 77, 79, 233, 17, 31, 17, 216, 40, 45, 70, 50, 69, 239, 187, 210, 162, 173, 76, 211, 63, 18, 130, 71, 140, 212, 186, 28, 44, 243, 29, 244, 11, 87, 106, 183, 191, 187, 139, 45, 209, 47, 45, 246, 125, 222, 135, 4, 7, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:21:03.467369Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:21:03.467414Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:21:03.532040Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:21:03.566381Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9VsdPe48To2rQ2RIX3MlxQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:21:03.569233Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9VsdPe48To2rQ2RIX3MlxQ==: stderr: -2026-04-20T11:21:03.569247Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9VsdPe48To2rQ2RIX3MlxQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:21:03.569255Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9VsdPe48To2rQ2RIX3MlxQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:21:03.569263Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9VsdPe48To2rQ2RIX3MlxQ==: stderr: stack backtrace: -2026-04-20T11:21:03.569269Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9VsdPe48To2rQ2RIX3MlxQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:21:03.569275Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9VsdPe48To2rQ2RIX3MlxQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:21:03.569423Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:21:03.570184Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:21:03.570480Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:21:03.635101Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:21:03.635150Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:21:03.635311Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:21:03.635498Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:21:03.635555Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:21:03.635910Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=489 blob_id=2147879237826748719241221796802820195 -2026-04-20T11:21:04.173413Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M1Gyz9pySlmzChOstt9TkQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:21:04.180497Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:21:04.190449Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1052773 cycles -2026-04-20T11:21:04.193085Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 101, 87, 193, 178, 35, 250, 31, 47, 105, 95, 213, 110, 147, 203, 148, 238, 52, 186, 29, 34, 203, 100, 230, 99, 133, 20, 217, 254, 176, 224, 111, 230, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 120, 105, 130, 32, 158, 226, 73, 181, 61, 221, 131, 115, 194, 147, 61, 199, 156, 212, 137, 95, 15, 223, 220, 195, 154, 182, 87, 230, 22, 104, 42, 92, 17, 227, 127, 51, 55, 131, 107, 3, 53, 11, 64, 227, 165, 0, 177, 81, 148, 84, 71, 88, 129, 144, 143, 55, 199, 150, 113, 215, 118, 13, 7, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:21:04.252625Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:21:04.252670Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:21:04.343194Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:21:04.378056Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mA1RLlKYSzm3GNes5H1l5Q==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:21:04.380899Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mA1RLlKYSzm3GNes5H1l5Q==: stderr: -2026-04-20T11:21:04.380924Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mA1RLlKYSzm3GNes5H1l5Q==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:21:04.380934Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mA1RLlKYSzm3GNes5H1l5Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:21:04.380954Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mA1RLlKYSzm3GNes5H1l5Q==: stderr: stack backtrace: -2026-04-20T11:21:04.380961Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mA1RLlKYSzm3GNes5H1l5Q==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:21:04.380967Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mA1RLlKYSzm3GNes5H1l5Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:21:04.381075Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:21:04.381834Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:21:04.382155Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:21:04.448259Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:21:04.448305Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:21:04.448463Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:21:04.448586Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:21:04.448653Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:21:04.449150Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=490 blob_id=2147879238809586536005930471470297329 -2026-04-20T11:21:05.009220Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zHm53f18RxOYUuxJT51jMA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:21:05.013930Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=7 height=410 prev_hash=0xf9d272e2edc2420a4a699e98cafe23bfd429d08446352b39f364dc9ff9643de5 hash=0x4d731b2f6c0446cc183001c42378e1571efe4c4e20572ab2345af6d5716d5c3b producing_time=1.205822ms -2026-04-20T11:21:05.016215Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:21:05.019877Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=410 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f178b9cd607e85bdfd5a11b4d0371e1767bfeda28ae8689f9e9bc25ae90048f821" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x6b6815bb59b079ae865249b33f9efe3fa04c0a605c13fe2989ca66cf9c72378c, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xb603006fb1053665ff739c47af30d591b965901ad3712a52f2a48a8fc14dead9, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x97fc222e928109febdd3306729edebf06df5b5feee64f169aff211c15a7e4d5c, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x3940d1c1723668625514983af2597d475e579a252ec9fd910f445b84b48c6ac5, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x5664308571a8e8a1ce08465055454ae092abd0025e986617cbcbcc995921d2b7, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x8d668c94bb1af5949f4f18856201618f855572e361f568002ef95aa79390166a, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xfd67b7ee1f40e187b9c6194560fc8071320622afddab75429564c833b060fde1, len=625"] -2026-04-20T11:21:05.020267Z DEBUG StfBlueprint::apply_slot{context=Node da_height=410}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f178b9cd607e85bdfd5a11b4d0371e1767bfeda28ae8689f9e9bc25ae90048f821 next_version=410 sesssion_starting_time=49.11µs -2026-04-20T11:21:05.021190Z DEBUG StfBlueprint::apply_slot{context=Node da_height=410}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f17da30177227741bb9cfdb0cd45a8b6f0663880b89dec82e5d64565bc5b85d45d next_version=410 time=1.001684ms accesses_build_time=27.87µs finishing_session_time=895.674µs -2026-04-20T11:21:05.021264Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f11e60c3abd5313238c38445618a9026f835aef2c2243390505e36870a309825ca" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f17da30177227741bb9cfdb0cd45a8b6f0663880b89dec82e5d64565bc5b85d45d" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:21:05.021791Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 410, latest_finalized_slot_number: 409, sync_status: Synced { synced_da_height: 409 }, .. } -2026-04-20T11:21:05.021884Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 410, latest_finalized_slot_number: 409, sync_status: Synced { synced_da_height: 409 }, .. } -2026-04-20T11:21:05.021944Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:21:05.027012Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1052587 cycles -2026-04-20T11:21:05.028048Z  INFO sov_db::storage_manager::nomt_based::groups: Pruner task has completed historical_state.hit_size_limit=false accessory_state.hit_size_limit=false -2026-04-20T11:21:05.028485Z DEBUG sov_stf_runner::runner: Block execution complete time=6.001048018s -2026-04-20T11:21:05.028500Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:21:05.029813Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 70, 226, 145, 121, 96, 106, 48, 147, 132, 219, 71, 47, 14, 114, 224, 107, 221, 109, 218, 87, 68, 175, 105, 210, 216, 26, 34, 42, 236, 173, 108, 103, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 57, 247, 137, 171, 142, 228, 16, 232, 159, 60, 85, 134, 110, 103, 116, 102, 47, 40, 19, 141, 82, 63, 202, 163, 209, 21, 49, 112, 249, 6, 230, 9, 63, 43, 20, 250, 12, 104, 190, 202, 148, 244, 214, 243, 102, 27, 135, 161, 100, 249, 81, 79, 28, 49, 203, 95, 67, 148, 12, 173, 129, 242, 57, 33, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:21:05.088728Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:21:05.088773Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:21:05.156729Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:21:05.191044Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PtGBf0EUQm-Q_UsDkabqTg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:21:05.193868Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PtGBf0EUQm-Q_UsDkabqTg==: stderr: -2026-04-20T11:21:05.193881Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PtGBf0EUQm-Q_UsDkabqTg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:21:05.193890Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PtGBf0EUQm-Q_UsDkabqTg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:21:05.193898Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PtGBf0EUQm-Q_UsDkabqTg==: stderr: stack backtrace: -2026-04-20T11:21:05.193904Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PtGBf0EUQm-Q_UsDkabqTg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:21:05.193910Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PtGBf0EUQm-Q_UsDkabqTg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:21:05.193989Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:21:05.194788Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:21:05.195081Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:21:05.262180Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:21:05.262223Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:21:05.262447Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:21:05.262605Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:21:05.262676Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:21:05.263006Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=491 blob_id=2147879239793659276077113712898826369 -2026-04-20T11:21:05.813254Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zXn1gFOSRCWnr6SZuX9atQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:21:05.820268Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:21:05.831696Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1052388 cycles -2026-04-20T11:21:05.834771Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 23, 150, 70, 62, 187, 29, 92, 15, 133, 143, 155, 127, 231, 253, 242, 188, 88, 19, 220, 138, 95, 85, 68, 80, 119, 183, 137, 74, 157, 7, 14, 121, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 13, 91, 87, 81, 105, 133, 52, 102, 90, 224, 174, 27, 162, 141, 45, 167, 179, 186, 131, 173, 39, 183, 152, 88, 135, 116, 102, 231, 18, 94, 60, 39, 122, 223, 71, 187, 52, 247, 81, 221, 211, 205, 149, 164, 71, 197, 30, 193, 166, 244, 41, 194, 57, 134, 39, 187, 194, 224, 60, 21, 37, 97, 58, 197, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:21:05.891775Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:21:05.891821Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:21:05.970526Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:21:06.004691Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4P8CIFRyQOmv2MxofQVvaA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:21:06.007513Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4P8CIFRyQOmv2MxofQVvaA==: stderr: -2026-04-20T11:21:06.007528Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4P8CIFRyQOmv2MxofQVvaA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:21:06.007539Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4P8CIFRyQOmv2MxofQVvaA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:21:06.007550Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4P8CIFRyQOmv2MxofQVvaA==: stderr: stack backtrace: -2026-04-20T11:21:06.007570Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4P8CIFRyQOmv2MxofQVvaA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:21:06.007576Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4P8CIFRyQOmv2MxofQVvaA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:21:06.007700Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:21:06.008447Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:21:06.008749Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:21:06.074768Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:21:06.074809Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:21:06.074944Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:21:06.075540Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=492 blob_id=2147879240775330613688219493556757399 -2026-04-20T11:21:11.016499Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=411 prev_hash=0x4d731b2f6c0446cc183001c42378e1571efe4c4e20572ab2345af6d5716d5c3b hash=0x3e443a2cbe1e4d73c99963aef14cce1ee3ab0e5bc57443ee95bac1e68c29c310 producing_time=1.295132ms -2026-04-20T11:21:11.020234Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=411 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f17da30177227741bb9cfdb0cd45a8b6f0663880b89dec82e5d64565bc5b85d45d" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x77394d6d2a4949f8da86aa541e811706f38f18b2458c10f94b5b3962846355f1, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x53a4d271c7a5878aaa4dfcaf30323602b84620c2c970a10079d1547c5c35252d, len=625"] -2026-04-20T11:21:11.020593Z DEBUG StfBlueprint::apply_slot{context=Node da_height=411}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f17da30177227741bb9cfdb0cd45a8b6f0663880b89dec82e5d64565bc5b85d45d next_version=411 sesssion_starting_time=47.859µs -2026-04-20T11:21:11.021377Z DEBUG StfBlueprint::apply_slot{context=Node da_height=411}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1079135fc190e042bdc77d8ecee1f92f34c05009b37f6b29837c8a3320a379875 next_version=411 time=852.274µs accesses_build_time=19.42µs finishing_session_time=749.035µs -2026-04-20T11:21:11.021461Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f178b9cd607e85bdfd5a11b4d0371e1767bfeda28ae8689f9e9bc25ae90048f821" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1079135fc190e042bdc77d8ecee1f92f34c05009b37f6b29837c8a3320a379875" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:21:11.022012Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 411, latest_finalized_slot_number: 410, sync_status: Synced { synced_da_height: 410 }, .. } -2026-04-20T11:21:11.022094Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 411, latest_finalized_slot_number: 410, sync_status: Synced { synced_da_height: 410 }, .. } -2026-04-20T11:21:11.022165Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:21:11.029326Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000826509s -2026-04-20T11:21:11.029355Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:21:17.019154Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=412 prev_hash=0x3e443a2cbe1e4d73c99963aef14cce1ee3ab0e5bc57443ee95bac1e68c29c310 hash=0xdf95dd477b71404aa4de64ef21bd2b60c1e354268f9bd77ccc11155e6a22e961 producing_time=1.184522ms -2026-04-20T11:21:17.020760Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=412 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1079135fc190e042bdc77d8ecee1f92f34c05009b37f6b29837c8a3320a379875" batch_blobs=[] proof_blobs=[] -2026-04-20T11:21:17.021096Z DEBUG StfBlueprint::apply_slot{context=Node da_height=412}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1079135fc190e042bdc77d8ecee1f92f34c05009b37f6b29837c8a3320a379875 next_version=412 sesssion_starting_time=49.13µs -2026-04-20T11:21:17.021809Z DEBUG StfBlueprint::apply_slot{context=Node da_height=412}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f17b228dc73110cd6499566df55f021c74de1b8f1ca1b9673d8d1ae886c1451297 next_version=412 time=779.175µs accesses_build_time=15.78µs finishing_session_time=681.025µs -2026-04-20T11:21:17.021898Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f17da30177227741bb9cfdb0cd45a8b6f0663880b89dec82e5d64565bc5b85d45d" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f17b228dc73110cd6499566df55f021c74de1b8f1ca1b9673d8d1ae886c1451297" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:21:17.022371Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 412, latest_finalized_slot_number: 411, sync_status: Synced { synced_da_height: 411 }, .. } -2026-04-20T11:21:17.022469Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 412, latest_finalized_slot_number: 411, sync_status: Synced { synced_da_height: 411 }, .. } -2026-04-20T11:21:17.022528Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:21:17.028990Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999636017s -2026-04-20T11:21:17.029014Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:21:23.021499Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=413 prev_hash=0xdf95dd477b71404aa4de64ef21bd2b60c1e354268f9bd77ccc11155e6a22e961 hash=0x1d7f527acd3d04ed5b8c1aaca285c02202b571d63e0e581fa988aa838a60d3cc producing_time=1.157632ms -2026-04-20T11:21:23.030328Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=413 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f17b228dc73110cd6499566df55f021c74de1b8f1ca1b9673d8d1ae886c1451297" batch_blobs=[] proof_blobs=[] -2026-04-20T11:21:23.030660Z DEBUG StfBlueprint::apply_slot{context=Node da_height=413}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f17b228dc73110cd6499566df55f021c74de1b8f1ca1b9673d8d1ae886c1451297 next_version=413 sesssion_starting_time=46.59µs -2026-04-20T11:21:23.031484Z DEBUG StfBlueprint::apply_slot{context=Node da_height=413}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f10a18c1ff4227039da15c4792f7ae4c652bb8b7710dc283b5e995f85a25e28be2 next_version=413 time=886.965µs accesses_build_time=15.911µs finishing_session_time=790.755µs -2026-04-20T11:21:23.031574Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1079135fc190e042bdc77d8ecee1f92f34c05009b37f6b29837c8a3320a379875" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f10a18c1ff4227039da15c4792f7ae4c652bb8b7710dc283b5e995f85a25e28be2" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:21:23.032068Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 413, latest_finalized_slot_number: 412, sync_status: Synced { synced_da_height: 412 }, .. } -2026-04-20T11:21:23.032177Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 413, latest_finalized_slot_number: 412, sync_status: Synced { synced_da_height: 412 }, .. } -2026-04-20T11:21:23.032247Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:21:23.038939Z DEBUG sov_stf_runner::runner: Block execution complete time=6.009926411s -2026-04-20T11:21:23.038963Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:21:29.023668Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=414 prev_hash=0x1d7f527acd3d04ed5b8c1aaca285c02202b571d63e0e581fa988aa838a60d3cc hash=0x3534e64c801d41dd1110f60515becf6b06b12fcd994ffc83cf56fc374e9dcca4 producing_time=1.152943ms -2026-04-20T11:21:29.030234Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=414 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f10a18c1ff4227039da15c4792f7ae4c652bb8b7710dc283b5e995f85a25e28be2" batch_blobs=[] proof_blobs=[] -2026-04-20T11:21:29.030598Z DEBUG StfBlueprint::apply_slot{context=Node da_height=414}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f10a18c1ff4227039da15c4792f7ae4c652bb8b7710dc283b5e995f85a25e28be2 next_version=414 sesssion_starting_time=50.84µs -2026-04-20T11:21:29.031366Z DEBUG StfBlueprint::apply_slot{context=Node da_height=414}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f11df0855995432fd3b229b2b8f30e3acf03a773a2ca446bc9234db9378fb30c74 next_version=414 time=835.895µs accesses_build_time=15.53µs finishing_session_time=733.155µs -2026-04-20T11:21:29.031451Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f17b228dc73110cd6499566df55f021c74de1b8f1ca1b9673d8d1ae886c1451297" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f11df0855995432fd3b229b2b8f30e3acf03a773a2ca446bc9234db9378fb30c74" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:21:29.032013Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 414, latest_finalized_slot_number: 413, sync_status: Synced { synced_da_height: 413 }, .. } -2026-04-20T11:21:29.032104Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 414, latest_finalized_slot_number: 413, sync_status: Synced { synced_da_height: 413 }, .. } -2026-04-20T11:21:29.032162Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:21:29.039304Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000341233s -2026-04-20T11:21:29.039358Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:21:35.025851Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=415 prev_hash=0x3534e64c801d41dd1110f60515becf6b06b12fcd994ffc83cf56fc374e9dcca4 hash=0x2bab2b74c74f23b21dd8163ab15b440f33b6a46d0e5d4e8a609f4e9aced55555 producing_time=1.161952ms -2026-04-20T11:21:35.030718Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=415 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f11df0855995432fd3b229b2b8f30e3acf03a773a2ca446bc9234db9378fb30c74" batch_blobs=[] proof_blobs=[] -2026-04-20T11:21:35.031042Z DEBUG StfBlueprint::apply_slot{context=Node da_height=415}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f11df0855995432fd3b229b2b8f30e3acf03a773a2ca446bc9234db9378fb30c74 next_version=415 sesssion_starting_time=48.37µs -2026-04-20T11:21:35.031810Z DEBUG StfBlueprint::apply_slot{context=Node da_height=415}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1325a9f810ec07ed2975e11a6220f4076f4b54fc049065719c4c2a0ec8592c128 next_version=415 time=832.135µs accesses_build_time=15.28µs finishing_session_time=735.316µs -2026-04-20T11:21:35.031914Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f10a18c1ff4227039da15c4792f7ae4c652bb8b7710dc283b5e995f85a25e28be2" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1325a9f810ec07ed2975e11a6220f4076f4b54fc049065719c4c2a0ec8592c128" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:21:35.032412Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 415, latest_finalized_slot_number: 414, sync_status: Synced { synced_da_height: 414 }, .. } -2026-04-20T11:21:35.032505Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 415, latest_finalized_slot_number: 414, sync_status: Synced { synced_da_height: 414 }, .. } -2026-04-20T11:21:35.032563Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:21:35.038951Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999595638s -2026-04-20T11:21:35.038981Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:21:41.028441Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=416 prev_hash=0x2bab2b74c74f23b21dd8163ab15b440f33b6a46d0e5d4e8a609f4e9aced55555 hash=0x18bf78e77ef89305ffb0d18cf3026c82eeb81eca9b8dcb6914825c6593ec4b7f producing_time=1.138372ms -2026-04-20T11:21:41.030123Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=416 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1325a9f810ec07ed2975e11a6220f4076f4b54fc049065719c4c2a0ec8592c128" batch_blobs=[] proof_blobs=[] -2026-04-20T11:21:41.030466Z DEBUG StfBlueprint::apply_slot{context=Node da_height=416}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1325a9f810ec07ed2975e11a6220f4076f4b54fc049065719c4c2a0ec8592c128 next_version=416 sesssion_starting_time=44.959µs -2026-04-20T11:21:41.031166Z DEBUG StfBlueprint::apply_slot{context=Node da_height=416}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f15228433dedaa0d63e67c45a54d7fc2d39415b12fb150e1c85abb8165bb3619b8 next_version=416 time=761.115µs accesses_build_time=15.46µs finishing_session_time=664.626µs -2026-04-20T11:21:41.031252Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f11df0855995432fd3b229b2b8f30e3acf03a773a2ca446bc9234db9378fb30c74" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f15228433dedaa0d63e67c45a54d7fc2d39415b12fb150e1c85abb8165bb3619b8" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:21:41.031767Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 416, latest_finalized_slot_number: 415, sync_status: Synced { synced_da_height: 415 }, .. } -2026-04-20T11:21:41.031883Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 416, latest_finalized_slot_number: 415, sync_status: Synced { synced_da_height: 415 }, .. } -2026-04-20T11:21:41.031952Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:21:41.041512Z DEBUG sov_stf_runner::runner: Block execution complete time=6.002532419s -2026-04-20T11:21:41.041538Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:21:47.031495Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=417 prev_hash=0x18bf78e77ef89305ffb0d18cf3026c82eeb81eca9b8dcb6914825c6593ec4b7f hash=0xb2feb390c371929f66056fd1c5c9daeae43f9b81313efec405e27d5931292ab0 producing_time=1.139993ms -2026-04-20T11:21:47.033087Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=417 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f15228433dedaa0d63e67c45a54d7fc2d39415b12fb150e1c85abb8165bb3619b8" batch_blobs=[] proof_blobs=[] -2026-04-20T11:21:47.033430Z DEBUG StfBlueprint::apply_slot{context=Node da_height=417}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f15228433dedaa0d63e67c45a54d7fc2d39415b12fb150e1c85abb8165bb3619b8 next_version=417 sesssion_starting_time=50.02µs -2026-04-20T11:21:47.034164Z DEBUG StfBlueprint::apply_slot{context=Node da_height=417}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f153d94c5411817b830ba8ccf202c218a6395ad5903b0ef30ea2705e3f47d6b401 next_version=417 time=798.875µs accesses_build_time=14.78µs finishing_session_time=697.416µs -2026-04-20T11:21:47.034282Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1325a9f810ec07ed2975e11a6220f4076f4b54fc049065719c4c2a0ec8592c128" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f153d94c5411817b830ba8ccf202c218a6395ad5903b0ef30ea2705e3f47d6b401" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:21:47.034779Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 417, latest_finalized_slot_number: 417, sync_status: Synced { synced_da_height: 416 }, .. } -2026-04-20T11:21:47.034893Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 417, latest_finalized_slot_number: 417, sync_status: Synced { synced_da_height: 416 }, .. } -2026-04-20T11:21:47.034960Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:21:47.049855Z DEBUG sov_stf_runner::runner: Block execution complete time=6.008318602s -2026-04-20T11:21:47.049871Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:21:53.034126Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=418 prev_hash=0xb2feb390c371929f66056fd1c5c9daeae43f9b81313efec405e27d5931292ab0 hash=0x6be6451685fa5b976b6053d2a4ac853ccf7eba6582d1d9210752f4961ea02872 producing_time=1.064153ms -2026-04-20T11:21:53.041752Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=418 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f153d94c5411817b830ba8ccf202c218a6395ad5903b0ef30ea2705e3f47d6b401" batch_blobs=[] proof_blobs=[] -2026-04-20T11:21:53.042078Z DEBUG StfBlueprint::apply_slot{context=Node da_height=418}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f153d94c5411817b830ba8ccf202c218a6395ad5903b0ef30ea2705e3f47d6b401 next_version=418 sesssion_starting_time=44.98µs -2026-04-20T11:21:53.042871Z DEBUG StfBlueprint::apply_slot{context=Node da_height=418}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f107e961ad4bdac666d56e68a142fc240e4d7f042de1c848db93a286fa111aac8a next_version=418 time=854.274µs accesses_build_time=15.859µs finishing_session_time=760.755µs -2026-04-20T11:21:53.042962Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f153d94c5411817b830ba8ccf202c218a6395ad5903b0ef30ea2705e3f47d6b401" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f107e961ad4bdac666d56e68a142fc240e4d7f042de1c848db93a286fa111aac8a" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:21:53.043378Z DEBUG sov_stf_runner::runner: Block execution complete time=5.993507087s -2026-04-20T11:21:53.043410Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:21:53.043453Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 418, latest_finalized_slot_number: 417, sync_status: Syncing { synced_da_height: 417, target_da_height: 418 }, .. } -2026-04-20T11:21:53.043543Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 418, latest_finalized_slot_number: 417, sync_status: Syncing { synced_da_height: 417, target_da_height: 418 }, .. } -2026-04-20T11:21:53.043611Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:21:59.035775Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=419 prev_hash=0x6be6451685fa5b976b6053d2a4ac853ccf7eba6582d1d9210752f4961ea02872 hash=0x879930f8a15f98a25b9fa5a285bb7230464ab029149759e7b007778d2a28e046 producing_time=1.016773ms -2026-04-20T11:21:59.045464Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=419 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f107e961ad4bdac666d56e68a142fc240e4d7f042de1c848db93a286fa111aac8a" batch_blobs=[] proof_blobs=[] -2026-04-20T11:21:59.045791Z DEBUG StfBlueprint::apply_slot{context=Node da_height=419}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f107e961ad4bdac666d56e68a142fc240e4d7f042de1c848db93a286fa111aac8a next_version=419 sesssion_starting_time=48.65µs -2026-04-20T11:21:59.046584Z DEBUG StfBlueprint::apply_slot{context=Node da_height=419}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f163a2c3acaa3c7f9da2728a401e1518ac78768c9feecf08725674f86220d190ad next_version=419 time=857.895µs accesses_build_time=15.3µs finishing_session_time=762.385µs -2026-04-20T11:21:59.046692Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f153d94c5411817b830ba8ccf202c218a6395ad5903b0ef30ea2705e3f47d6b401" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f163a2c3acaa3c7f9da2728a401e1518ac78768c9feecf08725674f86220d190ad" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:21:59.047171Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 419, latest_finalized_slot_number: 418, sync_status: Syncing { synced_da_height: 418, target_da_height: 419 }, .. } -2026-04-20T11:21:59.047256Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 419, latest_finalized_slot_number: 418, sync_status: Syncing { synced_da_height: 418, target_da_height: 419 }, .. } -2026-04-20T11:21:59.047323Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:21:59.054128Z DEBUG sov_stf_runner::runner: Block execution complete time=6.010719716s -2026-04-20T11:21:59.054166Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:22:05.038415Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=420 prev_hash=0x879930f8a15f98a25b9fa5a285bb7230464ab029149759e7b007778d2a28e046 hash=0x46cdecbcbce23a9249632972636cc5c0b915de296ab4f28e5d0768b3f7f62597 producing_time=1.126833ms -2026-04-20T11:22:05.045199Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=420 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f163a2c3acaa3c7f9da2728a401e1518ac78768c9feecf08725674f86220d190ad" batch_blobs=[] proof_blobs=[] -2026-04-20T11:22:05.045544Z DEBUG StfBlueprint::apply_slot{context=Node da_height=420}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f163a2c3acaa3c7f9da2728a401e1518ac78768c9feecf08725674f86220d190ad next_version=420 sesssion_starting_time=49.1µs -2026-04-20T11:22:05.046302Z DEBUG StfBlueprint::apply_slot{context=Node da_height=420}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f17d15ed7caed3aed92448b9def7746b7b761217d96c21c6396cd9c742bf2c16e7 next_version=420 time=824.875µs accesses_build_time=16.02µs finishing_session_time=725.635µs -2026-04-20T11:22:05.046399Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f107e961ad4bdac666d56e68a142fc240e4d7f042de1c848db93a286fa111aac8a" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f17d15ed7caed3aed92448b9def7746b7b761217d96c21c6396cd9c742bf2c16e7" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:22:05.046879Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 420, latest_finalized_slot_number: 419, sync_status: Syncing { synced_da_height: 419, target_da_height: 420 }, .. } -2026-04-20T11:22:05.046963Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 420, latest_finalized_slot_number: 419, sync_status: Syncing { synced_da_height: 419, target_da_height: 420 }, .. } -2026-04-20T11:22:05.047020Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:22:05.053632Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999468679s -2026-04-20T11:22:05.053655Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:22:11.041400Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=421 prev_hash=0x46cdecbcbce23a9249632972636cc5c0b915de296ab4f28e5d0768b3f7f62597 hash=0xba3504f7f9f9ddc820368303fa0ed3a20e6c8d17c4b19f4050cf097acbdeef05 producing_time=1.150763ms -2026-04-20T11:22:11.045095Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=421 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f17d15ed7caed3aed92448b9def7746b7b761217d96c21c6396cd9c742bf2c16e7" batch_blobs=[] proof_blobs=[] -2026-04-20T11:22:11.045440Z DEBUG StfBlueprint::apply_slot{context=Node da_height=421}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f17d15ed7caed3aed92448b9def7746b7b761217d96c21c6396cd9c742bf2c16e7 next_version=421 sesssion_starting_time=46.01µs -2026-04-20T11:22:11.046151Z DEBUG StfBlueprint::apply_slot{context=Node da_height=421}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f15a2131ae7bfbbd91cc92d77d97c38e2573d3e05c0a5c3764884d364185927375 next_version=421 time=773.025µs accesses_build_time=15.47µs finishing_session_time=675.355µs -2026-04-20T11:22:11.046237Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f163a2c3acaa3c7f9da2728a401e1518ac78768c9feecf08725674f86220d190ad" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f15a2131ae7bfbbd91cc92d77d97c38e2573d3e05c0a5c3764884d364185927375" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:22:11.046704Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 421, latest_finalized_slot_number: 420, sync_status: Synced { synced_da_height: 420 }, .. } -2026-04-20T11:22:11.046796Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 421, latest_finalized_slot_number: 420, sync_status: Synced { synced_da_height: 420 }, .. } -2026-04-20T11:22:11.046855Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:22:11.057465Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00381107s -2026-04-20T11:22:11.057498Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:22:17.043738Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=422 prev_hash=0xba3504f7f9f9ddc820368303fa0ed3a20e6c8d17c4b19f4050cf097acbdeef05 hash=0x7d55dd34276de89cead20acf468296a085857bc0d8cd963179d8c6135ff9575e producing_time=1.193562ms -2026-04-20T11:22:17.049354Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=422 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f15a2131ae7bfbbd91cc92d77d97c38e2573d3e05c0a5c3764884d364185927375" batch_blobs=[] proof_blobs=[] -2026-04-20T11:22:17.049688Z DEBUG StfBlueprint::apply_slot{context=Node da_height=422}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f15a2131ae7bfbbd91cc92d77d97c38e2573d3e05c0a5c3764884d364185927375 next_version=422 sesssion_starting_time=48.86µs -2026-04-20T11:22:17.050445Z DEBUG StfBlueprint::apply_slot{context=Node da_height=422}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f145a5ec99b43ab63d1bd3ac4bbe8432c889de98e764eed4eb4bc74127b6dd88a3 next_version=422 time=824.815µs accesses_build_time=17.93µs finishing_session_time=716.075µs -2026-04-20T11:22:17.050553Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f17d15ed7caed3aed92448b9def7746b7b761217d96c21c6396cd9c742bf2c16e7" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f145a5ec99b43ab63d1bd3ac4bbe8432c889de98e764eed4eb4bc74127b6dd88a3" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:22:17.051026Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 422, latest_finalized_slot_number: 421, sync_status: Synced { synced_da_height: 421 }, .. } -2026-04-20T11:22:17.051130Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 422, latest_finalized_slot_number: 421, sync_status: Synced { synced_da_height: 421 }, .. } -2026-04-20T11:22:17.051191Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:22:17.057933Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000437033s -2026-04-20T11:22:17.057962Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:22:23.046052Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=423 prev_hash=0x7d55dd34276de89cead20acf468296a085857bc0d8cd963179d8c6135ff9575e hash=0x7868bd245fab50286801aa58db6921045e801065f8be3bca08c2ee80782e7217 producing_time=1.061303ms -2026-04-20T11:22:23.049656Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=423 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f145a5ec99b43ab63d1bd3ac4bbe8432c889de98e764eed4eb4bc74127b6dd88a3" batch_blobs=[] proof_blobs=[] -2026-04-20T11:22:23.049989Z DEBUG StfBlueprint::apply_slot{context=Node da_height=423}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f145a5ec99b43ab63d1bd3ac4bbe8432c889de98e764eed4eb4bc74127b6dd88a3 next_version=423 sesssion_starting_time=47.3µs -2026-04-20T11:22:23.050758Z DEBUG StfBlueprint::apply_slot{context=Node da_height=423}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1610d4ad36b764deba296cc52ada38e352dac389e8816229103775246f2eccc05 next_version=423 time=832.995µs accesses_build_time=15.34µs finishing_session_time=737.765µs -2026-04-20T11:22:23.050840Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f15a2131ae7bfbbd91cc92d77d97c38e2573d3e05c0a5c3764884d364185927375" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1610d4ad36b764deba296cc52ada38e352dac389e8816229103775246f2eccc05" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:22:23.051299Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 423, latest_finalized_slot_number: 422, sync_status: Synced { synced_da_height: 422 }, .. } -2026-04-20T11:22:23.051408Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 423, latest_finalized_slot_number: 422, sync_status: Synced { synced_da_height: 422 }, .. } -2026-04-20T11:22:23.051466Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:22:23.058002Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000041435s -2026-04-20T11:22:23.058032Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:22:29.048054Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=424 prev_hash=0x7868bd245fab50286801aa58db6921045e801065f8be3bca08c2ee80782e7217 hash=0x8016eb36ceede8cecfc93051d9ab8c836f2ba3d761a92c0afecf7452ae92ba85 producing_time=1.111533ms -2026-04-20T11:22:29.049787Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=424 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1610d4ad36b764deba296cc52ada38e352dac389e8816229103775246f2eccc05" batch_blobs=[] proof_blobs=[] -2026-04-20T11:22:29.050112Z DEBUG StfBlueprint::apply_slot{context=Node da_height=424}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1610d4ad36b764deba296cc52ada38e352dac389e8816229103775246f2eccc05 next_version=424 sesssion_starting_time=49.159µs -2026-04-20T11:22:29.050885Z DEBUG StfBlueprint::apply_slot{context=Node da_height=424}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f12cd5c011ddda7c365c0dd8a170a574140cb3fe4ccbd163d1798d5fc982e90332 next_version=424 time=839.124µs accesses_build_time=15.86µs finishing_session_time=741.186µs -2026-04-20T11:22:29.050969Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f145a5ec99b43ab63d1bd3ac4bbe8432c889de98e764eed4eb4bc74127b6dd88a3" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f12cd5c011ddda7c365c0dd8a170a574140cb3fe4ccbd163d1798d5fc982e90332" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:22:29.051467Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 424, latest_finalized_slot_number: 423, sync_status: Synced { synced_da_height: 423 }, .. } -2026-04-20T11:22:29.051566Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 424, latest_finalized_slot_number: 423, sync_status: Synced { synced_da_height: 423 }, .. } -2026-04-20T11:22:29.051624Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:22:29.057892Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999861976s -2026-04-20T11:22:29.057921Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:22:35.050380Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=425 prev_hash=0x8016eb36ceede8cecfc93051d9ab8c836f2ba3d761a92c0afecf7452ae92ba85 hash=0x73f4e6e16468f9b21dbe35f667a14b05abe40becda29f808448dd8f31a0c7f7c producing_time=1.086584ms -2026-04-20T11:22:35.059105Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=425 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f12cd5c011ddda7c365c0dd8a170a574140cb3fe4ccbd163d1798d5fc982e90332" batch_blobs=[] proof_blobs=[] -2026-04-20T11:22:35.059450Z DEBUG StfBlueprint::apply_slot{context=Node da_height=425}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f12cd5c011ddda7c365c0dd8a170a574140cb3fe4ccbd163d1798d5fc982e90332 next_version=425 sesssion_starting_time=49.949µs -2026-04-20T11:22:35.060203Z DEBUG StfBlueprint::apply_slot{context=Node da_height=425}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f10808e7c47eb464e497bcd523dd0bcce0c6866ce774feae47ce86600a2802d552 next_version=425 time=819.735µs accesses_build_time=15.191µs finishing_session_time=719.665µs -2026-04-20T11:22:35.060284Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1610d4ad36b764deba296cc52ada38e352dac389e8816229103775246f2eccc05" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f10808e7c47eb464e497bcd523dd0bcce0c6866ce774feae47ce86600a2802d552" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:22:35.060745Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 425, latest_finalized_slot_number: 424, sync_status: Synced { synced_da_height: 424 }, .. } -2026-04-20T11:22:35.060834Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 425, latest_finalized_slot_number: 424, sync_status: Synced { synced_da_height: 424 }, .. } -2026-04-20T11:22:35.060893Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:22:35.066697Z DEBUG sov_stf_runner::runner: Block execution complete time=6.008777119s -2026-04-20T11:22:35.066728Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:22:41.052924Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=426 prev_hash=0x73f4e6e16468f9b21dbe35f667a14b05abe40becda29f808448dd8f31a0c7f7c hash=0x0daf5c0ba0c0d5883072f60be7badfc7db39ba2371837f70ecd12041c585b051 producing_time=1.067003ms -2026-04-20T11:22:41.058525Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=426 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f10808e7c47eb464e497bcd523dd0bcce0c6866ce774feae47ce86600a2802d552" batch_blobs=[] proof_blobs=[] -2026-04-20T11:22:41.058873Z DEBUG StfBlueprint::apply_slot{context=Node da_height=426}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f10808e7c47eb464e497bcd523dd0bcce0c6866ce774feae47ce86600a2802d552 next_version=426 sesssion_starting_time=48.31µs -2026-04-20T11:22:41.059677Z DEBUG StfBlueprint::apply_slot{context=Node da_height=426}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1712dd2dbba2f136f66041fdfd7554bf7ac56dfd7e54115065908e03fa16c3ccb next_version=426 time=867.644µs accesses_build_time=15.04µs finishing_session_time=766.585µs -2026-04-20T11:22:41.059778Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f12cd5c011ddda7c365c0dd8a170a574140cb3fe4ccbd163d1798d5fc982e90332" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1712dd2dbba2f136f66041fdfd7554bf7ac56dfd7e54115065908e03fa16c3ccb" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:22:41.060250Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 426, latest_finalized_slot_number: 425, sync_status: Synced { synced_da_height: 425 }, .. } -2026-04-20T11:22:41.060353Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 426, latest_finalized_slot_number: 425, sync_status: Synced { synced_da_height: 425 }, .. } -2026-04-20T11:22:41.060421Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:22:41.066881Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000155515s -2026-04-20T11:22:41.066908Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:22:47.054785Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=427 prev_hash=0x0daf5c0ba0c0d5883072f60be7badfc7db39ba2371837f70ecd12041c585b051 hash=0xdb84fc799b140b6dab1647d8215e6bd69080d7db8741c71f0db02b208ed45691 producing_time=1.060874ms -2026-04-20T11:22:47.058626Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=427 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1712dd2dbba2f136f66041fdfd7554bf7ac56dfd7e54115065908e03fa16c3ccb" batch_blobs=[] proof_blobs=[] -2026-04-20T11:22:47.058973Z DEBUG StfBlueprint::apply_slot{context=Node da_height=427}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1712dd2dbba2f136f66041fdfd7554bf7ac56dfd7e54115065908e03fa16c3ccb next_version=427 sesssion_starting_time=52.21µs -2026-04-20T11:22:47.059760Z DEBUG StfBlueprint::apply_slot{context=Node da_height=427}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1192731353b456f6b1d8401746743611fc3d86e9d87860e4aac924724a888ae59 next_version=427 time=858.145µs accesses_build_time=17.86µs finishing_session_time=745.165µs -2026-04-20T11:22:47.059856Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f10808e7c47eb464e497bcd523dd0bcce0c6866ce774feae47ce86600a2802d552" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1192731353b456f6b1d8401746743611fc3d86e9d87860e4aac924724a888ae59" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:22:47.060393Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 427, latest_finalized_slot_number: 426, sync_status: Synced { synced_da_height: 426 }, .. } -2026-04-20T11:22:47.060515Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 427, latest_finalized_slot_number: 426, sync_status: Synced { synced_da_height: 426 }, .. } -2026-04-20T11:22:47.060577Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:22:47.066956Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000050315s -2026-04-20T11:22:47.066983Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:22:53.057483Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=428 prev_hash=0xdb84fc799b140b6dab1647d8215e6bd69080d7db8741c71f0db02b208ed45691 hash=0x0bbb7562540af2d9c283760a19869b5197cb1625e5ab7b01ab9a4afbb42e2b3a producing_time=1.170082ms -2026-04-20T11:22:53.057997Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=428 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1192731353b456f6b1d8401746743611fc3d86e9d87860e4aac924724a888ae59" batch_blobs=[] proof_blobs=[] -2026-04-20T11:22:53.058309Z DEBUG StfBlueprint::apply_slot{context=Node da_height=428}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1192731353b456f6b1d8401746743611fc3d86e9d87860e4aac924724a888ae59 next_version=428 sesssion_starting_time=49.05µs -2026-04-20T11:22:53.059064Z DEBUG StfBlueprint::apply_slot{context=Node da_height=428}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f16e456991ea3de118ea376cc7bf27d2d20af66102086c086c9db4e60a6e51539a next_version=428 time=819.985µs accesses_build_time=15.61µs finishing_session_time=705.725µs -2026-04-20T11:22:53.059143Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1712dd2dbba2f136f66041fdfd7554bf7ac56dfd7e54115065908e03fa16c3ccb" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f16e456991ea3de118ea376cc7bf27d2d20af66102086c086c9db4e60a6e51539a" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:22:53.059689Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 428, latest_finalized_slot_number: 427, sync_status: Synced { synced_da_height: 427 }, .. } -2026-04-20T11:22:53.059787Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 428, latest_finalized_slot_number: 427, sync_status: Synced { synced_da_height: 427 }, .. } -2026-04-20T11:22:53.059849Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:22:53.066015Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999032882s -2026-04-20T11:22:53.066048Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:22:59.059824Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=429 prev_hash=0x0bbb7562540af2d9c283760a19869b5197cb1625e5ab7b01ab9a4afbb42e2b3a hash=0xee6822a133e6d3677151a490d1c42bb3283ef611809a7c3cc720b9e792b77c94 producing_time=1.166433ms -2026-04-20T11:22:59.067607Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=429 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f16e456991ea3de118ea376cc7bf27d2d20af66102086c086c9db4e60a6e51539a" batch_blobs=[] proof_blobs=[] -2026-04-20T11:22:59.067962Z DEBUG StfBlueprint::apply_slot{context=Node da_height=429}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f16e456991ea3de118ea376cc7bf27d2d20af66102086c086c9db4e60a6e51539a next_version=429 sesssion_starting_time=51.18µs -2026-04-20T11:22:59.068766Z DEBUG StfBlueprint::apply_slot{context=Node da_height=429}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1026efb40ac491bc9f71e4cfeb9bcd3642b6ac64f021b81d71f7a2264966359e9 next_version=429 time=870.974µs accesses_build_time=15.91µs finishing_session_time=766.346µs -2026-04-20T11:22:59.068872Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1192731353b456f6b1d8401746743611fc3d86e9d87860e4aac924724a888ae59" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1026efb40ac491bc9f71e4cfeb9bcd3642b6ac64f021b81d71f7a2264966359e9" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:22:59.069394Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 429, latest_finalized_slot_number: 428, sync_status: Synced { synced_da_height: 428 }, .. } -2026-04-20T11:22:59.069501Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 429, latest_finalized_slot_number: 428, sync_status: Synced { synced_da_height: 428 }, .. } -2026-04-20T11:22:59.069584Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:22:59.075842Z DEBUG sov_stf_runner::runner: Block execution complete time=6.009796593s -2026-04-20T11:22:59.075864Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:23:05.061990Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=430 prev_hash=0xee6822a133e6d3677151a490d1c42bb3283ef611809a7c3cc720b9e792b77c94 hash=0x9e7c0a32d08d0861c92710b1580710c5e0f0b6c161dc2c2791f35f70af89e227 producing_time=1.139152ms -2026-04-20T11:23:05.067662Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=430 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1026efb40ac491bc9f71e4cfeb9bcd3642b6ac64f021b81d71f7a2264966359e9" batch_blobs=[] proof_blobs=[] -2026-04-20T11:23:05.067988Z DEBUG StfBlueprint::apply_slot{context=Node da_height=430}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1026efb40ac491bc9f71e4cfeb9bcd3642b6ac64f021b81d71f7a2264966359e9 next_version=430 sesssion_starting_time=49.139µs -2026-04-20T11:23:05.068788Z DEBUG StfBlueprint::apply_slot{context=Node da_height=430}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f144eaa7a28b449fd8db83cc80cc030d9e97b5a029fe4b6ad9349adf038fa6772f next_version=430 time=865.654µs accesses_build_time=15.32µs finishing_session_time=767.155µs -2026-04-20T11:23:05.068880Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f16e456991ea3de118ea376cc7bf27d2d20af66102086c086c9db4e60a6e51539a" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f144eaa7a28b449fd8db83cc80cc030d9e97b5a029fe4b6ad9349adf038fa6772f" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:23:05.069441Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 430, latest_finalized_slot_number: 429, sync_status: Synced { synced_da_height: 429 }, .. } -2026-04-20T11:23:05.069671Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 430, latest_finalized_slot_number: 429, sync_status: Synced { synced_da_height: 429 }, .. } -2026-04-20T11:23:05.069736Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:23:05.075572Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999709528s -2026-04-20T11:23:05.075603Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:23:11.064157Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=431 prev_hash=0x9e7c0a32d08d0861c92710b1580710c5e0f0b6c161dc2c2791f35f70af89e227 hash=0x4685b7fabfc27f371ca6f5fb62b5bc449c7104d7afebd8e7231c1cd0146d9de2 producing_time=1.225432ms -2026-04-20T11:23:11.068017Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=431 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f144eaa7a28b449fd8db83cc80cc030d9e97b5a029fe4b6ad9349adf038fa6772f" batch_blobs=[] proof_blobs=[] -2026-04-20T11:23:11.068369Z DEBUG StfBlueprint::apply_slot{context=Node da_height=431}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f144eaa7a28b449fd8db83cc80cc030d9e97b5a029fe4b6ad9349adf038fa6772f next_version=431 sesssion_starting_time=62.659µs -2026-04-20T11:23:11.069126Z DEBUG StfBlueprint::apply_slot{context=Node da_height=431}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f16092486d8538cd94bd35ef6c45db3b3055211049095fc507f223a28e69ff7129 next_version=431 time=838.584µs accesses_build_time=17.709µs finishing_session_time=720.725µs -2026-04-20T11:23:11.069221Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1026efb40ac491bc9f71e4cfeb9bcd3642b6ac64f021b81d71f7a2264966359e9" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f16092486d8538cd94bd35ef6c45db3b3055211049095fc507f223a28e69ff7129" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:23:11.069786Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 431, latest_finalized_slot_number: 430, sync_status: Synced { synced_da_height: 430 }, .. } -2026-04-20T11:23:11.069897Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 431, latest_finalized_slot_number: 430, sync_status: Synced { synced_da_height: 430 }, .. } -2026-04-20T11:23:11.069960Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:23:11.079547Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00394544s -2026-04-20T11:23:11.079590Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:23:17.065647Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=432 prev_hash=0x4685b7fabfc27f371ca6f5fb62b5bc449c7104d7afebd8e7231c1cd0146d9de2 hash=0x013b725082b1628488b780771b051d5e3c2c94fe35ed0fd1a33328e0dfded4c9 producing_time=1.176992ms -2026-04-20T11:23:17.071443Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=432 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f16092486d8538cd94bd35ef6c45db3b3055211049095fc507f223a28e69ff7129" batch_blobs=[] proof_blobs=[] -2026-04-20T11:23:17.071783Z DEBUG StfBlueprint::apply_slot{context=Node da_height=432}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f16092486d8538cd94bd35ef6c45db3b3055211049095fc507f223a28e69ff7129 next_version=432 sesssion_starting_time=48.85µs -2026-04-20T11:23:17.072542Z DEBUG StfBlueprint::apply_slot{context=Node da_height=432}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1323f2838bb0a03824d626e2e73feff052d2f20d5aec703da6ddec12a8bc2a853 next_version=432 time=823.904µs accesses_build_time=15.33µs finishing_session_time=727.125µs -2026-04-20T11:23:17.072626Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f144eaa7a28b449fd8db83cc80cc030d9e97b5a029fe4b6ad9349adf038fa6772f" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1323f2838bb0a03824d626e2e73feff052d2f20d5aec703da6ddec12a8bc2a853" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:23:17.073118Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 432, latest_finalized_slot_number: 431, sync_status: Synced { synced_da_height: 431 }, .. } -2026-04-20T11:23:17.073210Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 432, latest_finalized_slot_number: 431, sync_status: Synced { synced_da_height: 431 }, .. } -2026-04-20T11:23:17.073270Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:23:17.080004Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000417193s -2026-04-20T11:23:17.080037Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:23:23.068123Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=433 prev_hash=0x013b725082b1628488b780771b051d5e3c2c94fe35ed0fd1a33328e0dfded4c9 hash=0x6b61ec2420a5f50c05b97d4e73617eb781e1884dc37a1123858da56756780fcc producing_time=1.269602ms -2026-04-20T11:23:23.071830Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=433 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1323f2838bb0a03824d626e2e73feff052d2f20d5aec703da6ddec12a8bc2a853" batch_blobs=[] proof_blobs=[] -2026-04-20T11:23:23.072156Z DEBUG StfBlueprint::apply_slot{context=Node da_height=433}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1323f2838bb0a03824d626e2e73feff052d2f20d5aec703da6ddec12a8bc2a853 next_version=433 sesssion_starting_time=46.13µs -2026-04-20T11:23:23.072971Z DEBUG StfBlueprint::apply_slot{context=Node da_height=433}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f15a50662f135f09211af4912eb0d4e8901c74ca97afd958a3a70bc8f1ff2f769c next_version=433 time=877.254µs accesses_build_time=15.489µs finishing_session_time=782.745µs -2026-04-20T11:23:23.073054Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f16092486d8538cd94bd35ef6c45db3b3055211049095fc507f223a28e69ff7129" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f15a50662f135f09211af4912eb0d4e8901c74ca97afd958a3a70bc8f1ff2f769c" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:23:23.073545Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 433, latest_finalized_slot_number: 432, sync_status: Synced { synced_da_height: 432 }, .. } -2026-04-20T11:23:23.073644Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 433, latest_finalized_slot_number: 432, sync_status: Synced { synced_da_height: 432 }, .. } -2026-04-20T11:23:23.073713Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:23:23.079904Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999869277s -2026-04-20T11:23:23.079927Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:23:29.070527Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=434 prev_hash=0x6b61ec2420a5f50c05b97d4e73617eb781e1884dc37a1123858da56756780fcc hash=0x0b83acf0a81935acebc46438eda4b000f2756364bec6a1d461ff8968e18d577d producing_time=1.131533ms -2026-04-20T11:23:29.071143Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=434 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f15a50662f135f09211af4912eb0d4e8901c74ca97afd958a3a70bc8f1ff2f769c" batch_blobs=[] proof_blobs=[] -2026-04-20T11:23:29.071487Z DEBUG StfBlueprint::apply_slot{context=Node da_height=434}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f15a50662f135f09211af4912eb0d4e8901c74ca97afd958a3a70bc8f1ff2f769c next_version=434 sesssion_starting_time=49.57µs -2026-04-20T11:23:29.072195Z DEBUG StfBlueprint::apply_slot{context=Node da_height=434}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f177ca82e58047c31f4dfa03881c76acef55fb2062cafd90cb771d86e24e15d68a next_version=434 time=776.005µs accesses_build_time=17.59µs finishing_session_time=663.655µs -2026-04-20T11:23:29.072296Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1323f2838bb0a03824d626e2e73feff052d2f20d5aec703da6ddec12a8bc2a853" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f177ca82e58047c31f4dfa03881c76acef55fb2062cafd90cb771d86e24e15d68a" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:23:29.072905Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 434, latest_finalized_slot_number: 433, sync_status: Synced { synced_da_height: 433 }, .. } -2026-04-20T11:23:29.073017Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 434, latest_finalized_slot_number: 433, sync_status: Synced { synced_da_height: 433 }, .. } -2026-04-20T11:23:29.073081Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:23:29.083507Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003580633s -2026-04-20T11:23:29.083539Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:23:35.072901Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=435 prev_hash=0x0b83acf0a81935acebc46438eda4b000f2756364bec6a1d461ff8968e18d577d hash=0xae65241f0e7c2b069b7e36239e918ec4cb84609828e87195e93ddb3991e8e12b producing_time=1.266352ms -2026-04-20T11:23:35.075617Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=435 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f177ca82e58047c31f4dfa03881c76acef55fb2062cafd90cb771d86e24e15d68a" batch_blobs=[] proof_blobs=[] -2026-04-20T11:23:35.075951Z DEBUG StfBlueprint::apply_slot{context=Node da_height=435}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f177ca82e58047c31f4dfa03881c76acef55fb2062cafd90cb771d86e24e15d68a next_version=435 sesssion_starting_time=49.91µs -2026-04-20T11:23:35.076670Z DEBUG StfBlueprint::apply_slot{context=Node da_height=435}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f12e6083caedf06002052e862105a7651ae7483fe06027368ce32393f7649be64b next_version=435 time=786.125µs accesses_build_time=16.17µs finishing_session_time=687.656µs -2026-04-20T11:23:35.076754Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f15a50662f135f09211af4912eb0d4e8901c74ca97afd958a3a70bc8f1ff2f769c" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f12e6083caedf06002052e862105a7651ae7483fe06027368ce32393f7649be64b" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:23:35.077255Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 435, latest_finalized_slot_number: 434, sync_status: Synced { synced_da_height: 434 }, .. } -2026-04-20T11:23:35.077358Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 435, latest_finalized_slot_number: 434, sync_status: Synced { synced_da_height: 434 }, .. } -2026-04-20T11:23:35.077424Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:23:35.083984Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000446274s -2026-04-20T11:23:35.084009Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:23:41.074801Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=436 prev_hash=0xae65241f0e7c2b069b7e36239e918ec4cb84609828e87195e93ddb3991e8e12b hash=0xb99bf5b87ec6490a81b7453f03705697d1c7c39bd645da305a13cf2236c89c73 producing_time=1.125972ms -2026-04-20T11:23:41.075329Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=436 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f12e6083caedf06002052e862105a7651ae7483fe06027368ce32393f7649be64b" batch_blobs=[] proof_blobs=[] -2026-04-20T11:23:41.075674Z DEBUG StfBlueprint::apply_slot{context=Node da_height=436}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f12e6083caedf06002052e862105a7651ae7483fe06027368ce32393f7649be64b next_version=436 sesssion_starting_time=53.289µs -2026-04-20T11:23:41.076484Z DEBUG StfBlueprint::apply_slot{context=Node da_height=436}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f11b48d8015930c3931caa21d3b102057f7e5720a0f75d3e210a562559ffca2a45 next_version=436 time=881.855µs accesses_build_time=17.21µs finishing_session_time=768.455µs -2026-04-20T11:23:41.076586Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f177ca82e58047c31f4dfa03881c76acef55fb2062cafd90cb771d86e24e15d68a" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f11b48d8015930c3931caa21d3b102057f7e5720a0f75d3e210a562559ffca2a45" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:23:41.077058Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 436, latest_finalized_slot_number: 435, sync_status: Synced { synced_da_height: 435 }, .. } -2026-04-20T11:23:41.077143Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 436, latest_finalized_slot_number: 435, sync_status: Synced { synced_da_height: 435 }, .. } -2026-04-20T11:23:41.077212Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:23:41.084012Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000004136s -2026-04-20T11:23:41.084039Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:23:47.076730Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=437 prev_hash=0xb99bf5b87ec6490a81b7453f03705697d1c7c39bd645da305a13cf2236c89c73 hash=0xb1258d9ab6af991b1f41e63cfa611b75107748603cee57abb20e3357da68b6d3 producing_time=1.139052ms -2026-04-20T11:23:47.085732Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=437 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f11b48d8015930c3931caa21d3b102057f7e5720a0f75d3e210a562559ffca2a45" batch_blobs=[] proof_blobs=[] -2026-04-20T11:23:47.086095Z DEBUG StfBlueprint::apply_slot{context=Node da_height=437}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f11b48d8015930c3931caa21d3b102057f7e5720a0f75d3e210a562559ffca2a45 next_version=437 sesssion_starting_time=50.109µs -2026-04-20T11:23:47.086876Z DEBUG StfBlueprint::apply_slot{context=Node da_height=437}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f114babcff75e2bd7f1e193f65679a8b0489bccea5935163262ec17cfc198adaa7 next_version=437 time=847.174µs accesses_build_time=14.869µs finishing_session_time=745.795µs -2026-04-20T11:23:47.086982Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f12e6083caedf06002052e862105a7651ae7483fe06027368ce32393f7649be64b" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f114babcff75e2bd7f1e193f65679a8b0489bccea5935163262ec17cfc198adaa7" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:23:47.087539Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 437, latest_finalized_slot_number: 437, sync_status: Synced { synced_da_height: 436 }, .. } -2026-04-20T11:23:47.087639Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 437, latest_finalized_slot_number: 437, sync_status: Synced { synced_da_height: 436 }, .. } -2026-04-20T11:23:47.087697Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:23:47.096208Z DEBUG sov_stf_runner::runner: Block execution complete time=6.012169758s -2026-04-20T11:23:47.096227Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:23:53.079209Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=438 prev_hash=0xb1258d9ab6af991b1f41e63cfa611b75107748603cee57abb20e3357da68b6d3 hash=0xd61b5e57575e2fd269255c77f0f861be0c89babfb8263e74ad189e6018b94042 producing_time=1.202292ms -2026-04-20T11:23:53.087124Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=438 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f114babcff75e2bd7f1e193f65679a8b0489bccea5935163262ec17cfc198adaa7" batch_blobs=[] proof_blobs=[] -2026-04-20T11:23:53.087484Z DEBUG StfBlueprint::apply_slot{context=Node da_height=438}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f114babcff75e2bd7f1e193f65679a8b0489bccea5935163262ec17cfc198adaa7 next_version=438 sesssion_starting_time=50.94µs -2026-04-20T11:23:53.088235Z DEBUG StfBlueprint::apply_slot{context=Node da_height=438}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f11874a6d3e32952c6e6c327c8ba80757bf737cead9989f624470dfbde25ed5700 next_version=438 time=821.825µs accesses_build_time=18.57µs finishing_session_time=705.706µs -2026-04-20T11:23:53.088347Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f114babcff75e2bd7f1e193f65679a8b0489bccea5935163262ec17cfc198adaa7" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f11874a6d3e32952c6e6c327c8ba80757bf737cead9989f624470dfbde25ed5700" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:23:53.088853Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 438, latest_finalized_slot_number: 438, sync_status: Synced { synced_da_height: 437 }, .. } -2026-04-20T11:23:53.088949Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 438, latest_finalized_slot_number: 438, sync_status: Synced { synced_da_height: 437 }, .. } -2026-04-20T11:23:53.089015Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:23:53.096031Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999804898s -2026-04-20T11:23:53.096055Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:23:59.080675Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=439 prev_hash=0xd61b5e57575e2fd269255c77f0f861be0c89babfb8263e74ad189e6018b94042 hash=0xbcae1887e0fce271532829c8c224af13feb69f3a2b263116fd346399adcd7c0d producing_time=1.174742ms -2026-04-20T11:23:59.087723Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=439 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f11874a6d3e32952c6e6c327c8ba80757bf737cead9989f624470dfbde25ed5700" batch_blobs=[] proof_blobs=[] -2026-04-20T11:23:59.088072Z DEBUG StfBlueprint::apply_slot{context=Node da_height=439}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f11874a6d3e32952c6e6c327c8ba80757bf737cead9989f624470dfbde25ed5700 next_version=439 sesssion_starting_time=49.57µs -2026-04-20T11:23:59.088806Z DEBUG StfBlueprint::apply_slot{context=Node da_height=439}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1657c0b610dd18e1a347a61069a3c4306db41013246fab80c4f465659d95c3a40 next_version=439 time=801.335µs accesses_build_time=15.99µs finishing_session_time=701.086µs -2026-04-20T11:23:59.088898Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f11874a6d3e32952c6e6c327c8ba80757bf737cead9989f624470dfbde25ed5700" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1657c0b610dd18e1a347a61069a3c4306db41013246fab80c4f465659d95c3a40" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:23:59.089361Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 439, latest_finalized_slot_number: 439, sync_status: Synced { synced_da_height: 438 }, .. } -2026-04-20T11:23:59.089446Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 439, latest_finalized_slot_number: 439, sync_status: Synced { synced_da_height: 438 }, .. } -2026-04-20T11:23:59.089500Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:23:59.095787Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999732729s -2026-04-20T11:23:59.095812Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:24:05.083617Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=440 prev_hash=0xbcae1887e0fce271532829c8c224af13feb69f3a2b263116fd346399adcd7c0d hash=0x9957d7bde854c8db2679fa7c50a7b81c4e31dc9557664ca3e43a9fe6bda1be76 producing_time=1.078383ms -2026-04-20T11:24:05.087292Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=440 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1657c0b610dd18e1a347a61069a3c4306db41013246fab80c4f465659d95c3a40" batch_blobs=[] proof_blobs=[] -2026-04-20T11:24:05.087651Z DEBUG StfBlueprint::apply_slot{context=Node da_height=440}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1657c0b610dd18e1a347a61069a3c4306db41013246fab80c4f465659d95c3a40 next_version=440 sesssion_starting_time=47.84µs -2026-04-20T11:24:05.088478Z DEBUG StfBlueprint::apply_slot{context=Node da_height=440}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1374ab51d2b79c73153f6169a7ee51752d56f04f3e539879ac2fd69ef684ecf5e next_version=440 time=893.145µs accesses_build_time=17.73µs finishing_session_time=782.785µs -2026-04-20T11:24:05.088588Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1657c0b610dd18e1a347a61069a3c4306db41013246fab80c4f465659d95c3a40" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1374ab51d2b79c73153f6169a7ee51752d56f04f3e539879ac2fd69ef684ecf5e" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:24:05.089048Z DEBUG sov_stf_runner::runner: Block execution complete time=5.99323776s -2026-04-20T11:24:05.089076Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:24:05.089126Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 440, latest_finalized_slot_number: 439, sync_status: Synced { synced_da_height: 439 }, .. } -2026-04-20T11:24:05.089210Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 440, latest_finalized_slot_number: 439, sync_status: Synced { synced_da_height: 439 }, .. } -2026-04-20T11:24:05.089266Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:24:11.085873Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=441 prev_hash=0x9957d7bde854c8db2679fa7c50a7b81c4e31dc9557664ca3e43a9fe6bda1be76 hash=0x2905213dc53c8a88c19c14743842c773850531d6bae0d3ee2a21b95af9860aa1 producing_time=1.132782ms -2026-04-20T11:24:11.090496Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=441 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1374ab51d2b79c73153f6169a7ee51752d56f04f3e539879ac2fd69ef684ecf5e" batch_blobs=[] proof_blobs=[] -2026-04-20T11:24:11.090815Z DEBUG StfBlueprint::apply_slot{context=Node da_height=441}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1374ab51d2b79c73153f6169a7ee51752d56f04f3e539879ac2fd69ef684ecf5e next_version=441 sesssion_starting_time=49.36µs -2026-04-20T11:24:11.091659Z DEBUG StfBlueprint::apply_slot{context=Node da_height=441}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f109b6507a99c5c73ae62ed64cbf648845f17008ba064a7cdde7473442ab470c2c next_version=441 time=910.074µs accesses_build_time=15.27µs finishing_session_time=814.705µs -2026-04-20T11:24:11.091743Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1657c0b610dd18e1a347a61069a3c4306db41013246fab80c4f465659d95c3a40" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f109b6507a99c5c73ae62ed64cbf648845f17008ba064a7cdde7473442ab470c2c" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:24:11.092213Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 441, latest_finalized_slot_number: 440, sync_status: Syncing { synced_da_height: 440, target_da_height: 441 }, .. } -2026-04-20T11:24:11.092306Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 441, latest_finalized_slot_number: 440, sync_status: Syncing { synced_da_height: 440, target_da_height: 441 }, .. } -2026-04-20T11:24:11.092385Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:24:11.098605Z DEBUG sov_stf_runner::runner: Block execution complete time=6.009531494s -2026-04-20T11:24:11.098633Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:24:17.088119Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=442 prev_hash=0x2905213dc53c8a88c19c14743842c773850531d6bae0d3ee2a21b95af9860aa1 hash=0x309dad4bf1268cc9036038318ec7995ed4ead15864ad10c576bbcd522442e07d producing_time=1.008804ms -2026-04-20T11:24:17.090731Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=442 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f109b6507a99c5c73ae62ed64cbf648845f17008ba064a7cdde7473442ab470c2c" batch_blobs=[] proof_blobs=[] -2026-04-20T11:24:17.091057Z DEBUG StfBlueprint::apply_slot{context=Node da_height=442}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f109b6507a99c5c73ae62ed64cbf648845f17008ba064a7cdde7473442ab470c2c next_version=442 sesssion_starting_time=47.49µs -2026-04-20T11:24:17.091833Z DEBUG StfBlueprint::apply_slot{context=Node da_height=442}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f106c97f4dd9237b4df9c0ca184bf5a8a16e3add499dfc10c4f407d39a744d021d next_version=442 time=840.305µs accesses_build_time=15.83µs finishing_session_time=743.126µs -2026-04-20T11:24:17.091925Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1374ab51d2b79c73153f6169a7ee51752d56f04f3e539879ac2fd69ef684ecf5e" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f106c97f4dd9237b4df9c0ca184bf5a8a16e3add499dfc10c4f407d39a744d021d" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:24:17.092383Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 442, latest_finalized_slot_number: 441, sync_status: Syncing { synced_da_height: 441, target_da_height: 442 }, .. } -2026-04-20T11:24:17.092483Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 442, latest_finalized_slot_number: 441, sync_status: Syncing { synced_da_height: 441, target_da_height: 442 }, .. } -2026-04-20T11:24:17.092545Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:24:17.102593Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003960881s -2026-04-20T11:24:17.102619Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:24:23.089793Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=443 prev_hash=0x309dad4bf1268cc9036038318ec7995ed4ead15864ad10c576bbcd522442e07d hash=0x326e6308bcc77be2ac60628ad66181abbbbea8d16364c9defa96ea4e34c8704f producing_time=1.120053ms -2026-04-20T11:24:23.094425Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=443 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f106c97f4dd9237b4df9c0ca184bf5a8a16e3add499dfc10c4f407d39a744d021d" batch_blobs=[] proof_blobs=[] -2026-04-20T11:24:23.094683Z DEBUG StfBlueprint::apply_slot{context=Node da_height=443}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f106c97f4dd9237b4df9c0ca184bf5a8a16e3add499dfc10c4f407d39a744d021d next_version=443 sesssion_starting_time=37.659µs -2026-04-20T11:24:23.095388Z DEBUG StfBlueprint::apply_slot{context=Node da_height=443}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f117bb02098b64cda3602bc858f18730829932afa49fdffd154317be18909579f4 next_version=443 time=756.385µs accesses_build_time=12.56µs finishing_session_time=681.766µs -2026-04-20T11:24:23.095453Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f109b6507a99c5c73ae62ed64cbf648845f17008ba064a7cdde7473442ab470c2c" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f117bb02098b64cda3602bc858f18730829932afa49fdffd154317be18909579f4" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:24:23.095888Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 443, latest_finalized_slot_number: 442, sync_status: Syncing { synced_da_height: 442, target_da_height: 443 }, .. } -2026-04-20T11:24:23.095975Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 443, latest_finalized_slot_number: 442, sync_status: Syncing { synced_da_height: 442, target_da_height: 443 }, .. } -2026-04-20T11:24:23.096036Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:24:23.106066Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003447695s -2026-04-20T11:24:23.106091Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:24:29.091528Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=444 prev_hash=0x326e6308bcc77be2ac60628ad66181abbbbea8d16364c9defa96ea4e34c8704f hash=0xe90497de8555dbe7ea15e6c3dcf4c45b3986d801fb97bc8d610fa777ff6f32c0 producing_time=1.042734ms -2026-04-20T11:24:29.097250Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=444 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f117bb02098b64cda3602bc858f18730829932afa49fdffd154317be18909579f4" batch_blobs=[] proof_blobs=[] -2026-04-20T11:24:29.097603Z DEBUG StfBlueprint::apply_slot{context=Node da_height=444}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f117bb02098b64cda3602bc858f18730829932afa49fdffd154317be18909579f4 next_version=444 sesssion_starting_time=49.519µs -2026-04-20T11:24:29.098342Z DEBUG StfBlueprint::apply_slot{context=Node da_height=444}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1284e84b3e0d356315348e803743413238736adbb09f78a296d3e6e3509683c50 next_version=444 time=804.835µs accesses_build_time=15.44µs finishing_session_time=704.046µs -2026-04-20T11:24:29.098425Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f106c97f4dd9237b4df9c0ca184bf5a8a16e3add499dfc10c4f407d39a744d021d" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1284e84b3e0d356315348e803743413238736adbb09f78a296d3e6e3509683c50" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:24:29.098892Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 444, latest_finalized_slot_number: 443, sync_status: Synced { synced_da_height: 443 }, .. } -2026-04-20T11:24:29.098983Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 444, latest_finalized_slot_number: 443, sync_status: Synced { synced_da_height: 443 }, .. } -2026-04-20T11:24:29.099044Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:24:29.106162Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000072506s -2026-04-20T11:24:29.106186Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:24:35.094336Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=445 prev_hash=0xe90497de8555dbe7ea15e6c3dcf4c45b3986d801fb97bc8d610fa777ff6f32c0 hash=0x1325b455a341f649bdd317673960fe8a47af681bf7c08a88ec17451e29e567d6 producing_time=1.172672ms -2026-04-20T11:24:35.096903Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=445 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1284e84b3e0d356315348e803743413238736adbb09f78a296d3e6e3509683c50" batch_blobs=[] proof_blobs=[] -2026-04-20T11:24:35.097239Z DEBUG StfBlueprint::apply_slot{context=Node da_height=445}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1284e84b3e0d356315348e803743413238736adbb09f78a296d3e6e3509683c50 next_version=445 sesssion_starting_time=49µs -2026-04-20T11:24:35.098019Z DEBUG StfBlueprint::apply_slot{context=Node da_height=445}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f132b5f88ee6efef25b6ef04ad36cd08abf0ea7f7df8322dc3d2487a3cd5015cd6 next_version=445 time=846.565µs accesses_build_time=16.23µs finishing_session_time=748.305µs -2026-04-20T11:24:35.098103Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f117bb02098b64cda3602bc858f18730829932afa49fdffd154317be18909579f4" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f132b5f88ee6efef25b6ef04ad36cd08abf0ea7f7df8322dc3d2487a3cd5015cd6" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:24:35.098613Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 445, latest_finalized_slot_number: 444, sync_status: Synced { synced_da_height: 444 }, .. } -2026-04-20T11:24:35.098713Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 445, latest_finalized_slot_number: 444, sync_status: Synced { synced_da_height: 444 }, .. } -2026-04-20T11:24:35.098784Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:24:35.104948Z DEBUG sov_stf_runner::runner: Block execution complete time=5.998762395s -2026-04-20T11:24:35.104989Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:24:41.095819Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=446 prev_hash=0x1325b455a341f649bdd317673960fe8a47af681bf7c08a88ec17451e29e567d6 hash=0xc850784147254a38837bdbdcb65493bf218fb0748bb735dce5f580da7c5513e6 producing_time=1.115593ms -2026-04-20T11:24:41.096397Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=446 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f132b5f88ee6efef25b6ef04ad36cd08abf0ea7f7df8322dc3d2487a3cd5015cd6" batch_blobs=[] proof_blobs=[] -2026-04-20T11:24:41.096716Z DEBUG StfBlueprint::apply_slot{context=Node da_height=446}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f132b5f88ee6efef25b6ef04ad36cd08abf0ea7f7df8322dc3d2487a3cd5015cd6 next_version=446 sesssion_starting_time=46.039µs -2026-04-20T11:24:41.097514Z DEBUG StfBlueprint::apply_slot{context=Node da_height=446}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f139f7f7c060f36933bd7979c51221ea935c3828c5254740e52bd0ed5a7bc1ac90 next_version=446 time=860.974µs accesses_build_time=15.89µs finishing_session_time=767.185µs -2026-04-20T11:24:41.097600Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1284e84b3e0d356315348e803743413238736adbb09f78a296d3e6e3509683c50" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f139f7f7c060f36933bd7979c51221ea935c3828c5254740e52bd0ed5a7bc1ac90" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:24:41.098121Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 446, latest_finalized_slot_number: 445, sync_status: Synced { synced_da_height: 445 }, .. } -2026-04-20T11:24:41.098210Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 446, latest_finalized_slot_number: 445, sync_status: Synced { synced_da_height: 445 }, .. } -2026-04-20T11:24:41.098277Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:24:41.104748Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999761029s -2026-04-20T11:24:41.104787Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:24:47.098366Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=447 prev_hash=0xc850784147254a38837bdbdcb65493bf218fb0748bb735dce5f580da7c5513e6 hash=0x7bee569aedebac508138f6c27ffa0376d8d1da06a77078e2e724e8091831fa6c producing_time=1.028554ms -2026-04-20T11:24:47.106295Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=447 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f139f7f7c060f36933bd7979c51221ea935c3828c5254740e52bd0ed5a7bc1ac90" batch_blobs=[] proof_blobs=[] -2026-04-20T11:24:47.106640Z DEBUG StfBlueprint::apply_slot{context=Node da_height=447}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f139f7f7c060f36933bd7979c51221ea935c3828c5254740e52bd0ed5a7bc1ac90 next_version=447 sesssion_starting_time=49.69µs -2026-04-20T11:24:47.107433Z DEBUG StfBlueprint::apply_slot{context=Node da_height=447}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1402830fc6656b61abe75e62c5f1482e583ca462af17e0c88433741742cf6c641 next_version=447 time=859.894µs accesses_build_time=15.92µs finishing_session_time=760.435µs -2026-04-20T11:24:47.107520Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f132b5f88ee6efef25b6ef04ad36cd08abf0ea7f7df8322dc3d2487a3cd5015cd6" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1402830fc6656b61abe75e62c5f1482e583ca462af17e0c88433741742cf6c641" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:24:47.107989Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 447, latest_finalized_slot_number: 446, sync_status: Synced { synced_da_height: 446 }, .. } -2026-04-20T11:24:47.108083Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 447, latest_finalized_slot_number: 446, sync_status: Synced { synced_da_height: 446 }, .. } -2026-04-20T11:24:47.108142Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:24:47.118527Z DEBUG sov_stf_runner::runner: Block execution complete time=6.013742359s -2026-04-20T11:24:47.118560Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:24:53.101278Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=448 prev_hash=0x7bee569aedebac508138f6c27ffa0376d8d1da06a77078e2e724e8091831fa6c hash=0xd567568b5f3b3fcbfebb9b1f1d51b81aba723f7e9df13abe8ba236082ba618c6 producing_time=1.088923ms -2026-04-20T11:24:53.110096Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=448 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1402830fc6656b61abe75e62c5f1482e583ca462af17e0c88433741742cf6c641" batch_blobs=[] proof_blobs=[] -2026-04-20T11:24:53.110448Z DEBUG StfBlueprint::apply_slot{context=Node da_height=448}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1402830fc6656b61abe75e62c5f1482e583ca462af17e0c88433741742cf6c641 next_version=448 sesssion_starting_time=44.999µs -2026-04-20T11:24:53.111191Z DEBUG StfBlueprint::apply_slot{context=Node da_height=448}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f156b6326fb567446c50117b10b941147c9448af9ac28cd5db6530bc9b314f6a84 next_version=448 time=804.964µs accesses_build_time=15.66µs finishing_session_time=708.445µs -2026-04-20T11:24:53.111270Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f139f7f7c060f36933bd7979c51221ea935c3828c5254740e52bd0ed5a7bc1ac90" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f156b6326fb567446c50117b10b941147c9448af9ac28cd5db6530bc9b314f6a84" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:24:53.111797Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 448, latest_finalized_slot_number: 447, sync_status: Synced { synced_da_height: 447 }, .. } -2026-04-20T11:24:53.111898Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 448, latest_finalized_slot_number: 447, sync_status: Synced { synced_da_height: 447 }, .. } -2026-04-20T11:24:53.111958Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:24:53.122421Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003862792s -2026-04-20T11:24:53.122454Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:24:59.102659Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=449 prev_hash=0xd567568b5f3b3fcbfebb9b1f1d51b81aba723f7e9df13abe8ba236082ba618c6 hash=0x734bee4536aefc416afbfb9a5922516770f60272c883f03ffc99883dd63e444f producing_time=1.077803ms -2026-04-20T11:24:59.104398Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=449 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f156b6326fb567446c50117b10b941147c9448af9ac28cd5db6530bc9b314f6a84" batch_blobs=[] proof_blobs=[] -2026-04-20T11:24:59.104730Z DEBUG StfBlueprint::apply_slot{context=Node da_height=449}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f156b6326fb567446c50117b10b941147c9448af9ac28cd5db6530bc9b314f6a84 next_version=449 sesssion_starting_time=48.869µs -2026-04-20T11:24:59.105533Z DEBUG StfBlueprint::apply_slot{context=Node da_height=449}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f176c23a6cdcb14b9b89697391c375b8257dc156a3ff494a8315fcf7f74b0043c9 next_version=449 time=867.374µs accesses_build_time=16.08µs finishing_session_time=767.225µs -2026-04-20T11:24:59.105632Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1402830fc6656b61abe75e62c5f1482e583ca462af17e0c88433741742cf6c641" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f176c23a6cdcb14b9b89697391c375b8257dc156a3ff494a8315fcf7f74b0043c9" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:24:59.106142Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 449, latest_finalized_slot_number: 448, sync_status: Synced { synced_da_height: 448 }, .. } -2026-04-20T11:24:59.106232Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 449, latest_finalized_slot_number: 448, sync_status: Synced { synced_da_height: 448 }, .. } -2026-04-20T11:24:59.106291Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:24:59.112635Z DEBUG sov_stf_runner::runner: Block execution complete time=5.99018263s -2026-04-20T11:24:59.112665Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:25:05.104839Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=450 prev_hash=0x734bee4536aefc416afbfb9a5922516770f60272c883f03ffc99883dd63e444f hash=0xb406c957b04d8b00eccf4fad37b669f18b8cef9533d7e6c826e28ad6af48822d producing_time=1.030994ms -2026-04-20T11:25:05.114454Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=450 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f176c23a6cdcb14b9b89697391c375b8257dc156a3ff494a8315fcf7f74b0043c9" batch_blobs=[] proof_blobs=[] -2026-04-20T11:25:05.114786Z DEBUG StfBlueprint::apply_slot{context=Node da_height=450}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f176c23a6cdcb14b9b89697391c375b8257dc156a3ff494a8315fcf7f74b0043c9 next_version=450 sesssion_starting_time=48.56µs -2026-04-20T11:25:05.115609Z DEBUG StfBlueprint::apply_slot{context=Node da_height=450}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f171a9b13a293d5dafc371a74f9b2cca8facefdb6f8417a19ff8edb15163861f36 next_version=450 time=886.995µs accesses_build_time=15.37µs finishing_session_time=788.535µs -2026-04-20T11:25:05.115720Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f156b6326fb567446c50117b10b941147c9448af9ac28cd5db6530bc9b314f6a84" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f171a9b13a293d5dafc371a74f9b2cca8facefdb6f8417a19ff8edb15163861f36" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:25:05.116240Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 450, latest_finalized_slot_number: 449, sync_status: Synced { synced_da_height: 449 }, .. } -2026-04-20T11:25:05.116344Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 450, latest_finalized_slot_number: 449, sync_status: Synced { synced_da_height: 449 }, .. } -2026-04-20T11:25:05.116516Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:25:05.122804Z DEBUG sov_stf_runner::runner: Block execution complete time=6.010141092s -2026-04-20T11:25:05.122828Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:25:11.107085Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=451 prev_hash=0xb406c957b04d8b00eccf4fad37b669f18b8cef9533d7e6c826e28ad6af48822d hash=0xac0198c1e4c6896ed139809dc59793798ef7e9b029ce74adf736797eff31ad19 producing_time=1.185083ms -2026-04-20T11:25:11.114683Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=451 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f171a9b13a293d5dafc371a74f9b2cca8facefdb6f8417a19ff8edb15163861f36" batch_blobs=[] proof_blobs=[] -2026-04-20T11:25:11.115011Z DEBUG StfBlueprint::apply_slot{context=Node da_height=451}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f171a9b13a293d5dafc371a74f9b2cca8facefdb6f8417a19ff8edb15163861f36 next_version=451 sesssion_starting_time=46.42µs -2026-04-20T11:25:11.115912Z DEBUG StfBlueprint::apply_slot{context=Node da_height=451}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f10dfff49ebee958765f32f41c84294e01e410951ad341d7c5a2fa9e1b4576d06b next_version=451 time=964.034µs accesses_build_time=16.12µs finishing_session_time=867.754µs -2026-04-20T11:25:11.116028Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f176c23a6cdcb14b9b89697391c375b8257dc156a3ff494a8315fcf7f74b0043c9" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f10dfff49ebee958765f32f41c84294e01e410951ad341d7c5a2fa9e1b4576d06b" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:25:11.116591Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 451, latest_finalized_slot_number: 450, sync_status: Synced { synced_da_height: 450 }, .. } -2026-04-20T11:25:11.116697Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 451, latest_finalized_slot_number: 450, sync_status: Synced { synced_da_height: 450 }, .. } -2026-04-20T11:25:11.116765Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:25:11.122970Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000143347s -2026-04-20T11:25:11.122995Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:25:17.108818Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=452 prev_hash=0xac0198c1e4c6896ed139809dc59793798ef7e9b029ce74adf736797eff31ad19 hash=0x382699ac4cba2bc95e142c91ac27a1cd66ad9bfce7aaf645c50d7aa6d43e95c5 producing_time=1.116293ms -2026-04-20T11:25:17.114483Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=452 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f10dfff49ebee958765f32f41c84294e01e410951ad341d7c5a2fa9e1b4576d06b" batch_blobs=[] proof_blobs=[] -2026-04-20T11:25:17.114812Z DEBUG StfBlueprint::apply_slot{context=Node da_height=452}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f10dfff49ebee958765f32f41c84294e01e410951ad341d7c5a2fa9e1b4576d06b next_version=452 sesssion_starting_time=49.07µs -2026-04-20T11:25:17.115557Z DEBUG StfBlueprint::apply_slot{context=Node da_height=452}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f173e1f0d3089c66923dbfbeaf70d7ea70315d3cc7a177310013cba56e29483bca next_version=452 time=811.105µs accesses_build_time=15.8µs finishing_session_time=714.265µs -2026-04-20T11:25:17.115641Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f171a9b13a293d5dafc371a74f9b2cca8facefdb6f8417a19ff8edb15163861f36" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f173e1f0d3089c66923dbfbeaf70d7ea70315d3cc7a177310013cba56e29483bca" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:25:17.116153Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 452, latest_finalized_slot_number: 451, sync_status: Synced { synced_da_height: 451 }, .. } -2026-04-20T11:25:17.116238Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 452, latest_finalized_slot_number: 451, sync_status: Synced { synced_da_height: 451 }, .. } -2026-04-20T11:25:17.116295Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:25:17.122971Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999976898s -2026-04-20T11:25:17.123004Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:25:23.110833Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=453 prev_hash=0x382699ac4cba2bc95e142c91ac27a1cd66ad9bfce7aaf645c50d7aa6d43e95c5 hash=0x52474f557f5fc7af94c39750baac829c1de8258626787e958a6ac506a7354e36 producing_time=1.127723ms -2026-04-20T11:25:23.114675Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=453 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f173e1f0d3089c66923dbfbeaf70d7ea70315d3cc7a177310013cba56e29483bca" batch_blobs=[] proof_blobs=[] -2026-04-20T11:25:23.115024Z DEBUG StfBlueprint::apply_slot{context=Node da_height=453}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f173e1f0d3089c66923dbfbeaf70d7ea70315d3cc7a177310013cba56e29483bca next_version=453 sesssion_starting_time=46.32µs -2026-04-20T11:25:23.115814Z DEBUG StfBlueprint::apply_slot{context=Node da_height=453}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f17fcdd6805063ba7cb67688a85b48119db79a74f1cc625ca0e7eaeadbe77591fa next_version=453 time=853.345µs accesses_build_time=15.3µs finishing_session_time=757.056µs -2026-04-20T11:25:23.115905Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f10dfff49ebee958765f32f41c84294e01e410951ad341d7c5a2fa9e1b4576d06b" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f17fcdd6805063ba7cb67688a85b48119db79a74f1cc625ca0e7eaeadbe77591fa" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:25:23.116441Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 453, latest_finalized_slot_number: 452, sync_status: Synced { synced_da_height: 452 }, .. } -2026-04-20T11:25:23.116549Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 453, latest_finalized_slot_number: 452, sync_status: Synced { synced_da_height: 452 }, .. } -2026-04-20T11:25:23.116611Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:25:23.122925Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999923398s -2026-04-20T11:25:23.122952Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:25:29.113437Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=454 prev_hash=0x52474f557f5fc7af94c39750baac829c1de8258626787e958a6ac506a7354e36 hash=0x8339a880536341f227a05dc87c25c24d7479c2ecf8b05b783a1b430673683f64 producing_time=1.168073ms -2026-04-20T11:25:29.114001Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=454 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f17fcdd6805063ba7cb67688a85b48119db79a74f1cc625ca0e7eaeadbe77591fa" batch_blobs=[] proof_blobs=[] -2026-04-20T11:25:29.114338Z DEBUG StfBlueprint::apply_slot{context=Node da_height=454}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f17fcdd6805063ba7cb67688a85b48119db79a74f1cc625ca0e7eaeadbe77591fa next_version=454 sesssion_starting_time=62.45µs -2026-04-20T11:25:29.115158Z DEBUG StfBlueprint::apply_slot{context=Node da_height=454}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f11bbe0120c84a644ae1b04ee7ea7a33d23627814292ff0564c9a2da743ace62d4 next_version=454 time=899.294µs accesses_build_time=16.08µs finishing_session_time=783.485µs -2026-04-20T11:25:29.115263Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f173e1f0d3089c66923dbfbeaf70d7ea70315d3cc7a177310013cba56e29483bca" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f11bbe0120c84a644ae1b04ee7ea7a33d23627814292ff0564c9a2da743ace62d4" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:25:29.115765Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 454, latest_finalized_slot_number: 453, sync_status: Synced { synced_da_height: 453 }, .. } -2026-04-20T11:25:29.115864Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 454, latest_finalized_slot_number: 453, sync_status: Synced { synced_da_height: 453 }, .. } -2026-04-20T11:25:29.115923Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:25:29.123204Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000253286s -2026-04-20T11:25:29.123237Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:25:35.116399Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=455 prev_hash=0x8339a880536341f227a05dc87c25c24d7479c2ecf8b05b783a1b430673683f64 hash=0xd7d8730dad50b0ba1015071a82b539e0b3aecbabd4f70abd39d6453a32d7bf1f producing_time=1.136432ms -2026-04-20T11:25:35.124111Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=455 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f11bbe0120c84a644ae1b04ee7ea7a33d23627814292ff0564c9a2da743ace62d4" batch_blobs=[] proof_blobs=[] -2026-04-20T11:25:35.124460Z DEBUG StfBlueprint::apply_slot{context=Node da_height=455}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f11bbe0120c84a644ae1b04ee7ea7a33d23627814292ff0564c9a2da743ace62d4 next_version=455 sesssion_starting_time=50.249µs -2026-04-20T11:25:35.125206Z DEBUG StfBlueprint::apply_slot{context=Node da_height=455}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f13ddec923ef6dace64cdab13626c8edaac6befffcc30f8b361e8b0962b1105aad next_version=455 time=812.605µs accesses_build_time=15.14µs finishing_session_time=710.996µs -2026-04-20T11:25:35.125291Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f17fcdd6805063ba7cb67688a85b48119db79a74f1cc625ca0e7eaeadbe77591fa" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f13ddec923ef6dace64cdab13626c8edaac6befffcc30f8b361e8b0962b1105aad" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:25:35.125739Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 455, latest_finalized_slot_number: 454, sync_status: Synced { synced_da_height: 454 }, .. } -2026-04-20T11:25:35.125851Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 455, latest_finalized_slot_number: 454, sync_status: Synced { synced_da_height: 454 }, .. } -2026-04-20T11:25:35.125913Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:25:35.132032Z DEBUG sov_stf_runner::runner: Block execution complete time=6.008795942s -2026-04-20T11:25:35.132073Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:25:41.119237Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=456 prev_hash=0xd7d8730dad50b0ba1015071a82b539e0b3aecbabd4f70abd39d6453a32d7bf1f hash=0xfccbc66e98db7aaa716a2c345dd49e53539da7e39920a7402f0cdc2caf45fbf3 producing_time=1.088363ms -2026-04-20T11:25:41.123918Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=456 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f13ddec923ef6dace64cdab13626c8edaac6befffcc30f8b361e8b0962b1105aad" batch_blobs=[] proof_blobs=[] -2026-04-20T11:25:41.124255Z DEBUG StfBlueprint::apply_slot{context=Node da_height=456}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f13ddec923ef6dace64cdab13626c8edaac6befffcc30f8b361e8b0962b1105aad next_version=456 sesssion_starting_time=45.719µs -2026-04-20T11:25:41.125125Z DEBUG StfBlueprint::apply_slot{context=Node da_height=456}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f121b4f18f7f5b05c3cff1be6e512893575bce00589e65fe6a6e0913f976a8fc13 next_version=456 time=932.404µs accesses_build_time=15.96µs finishing_session_time=836.885µs -2026-04-20T11:25:41.125219Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f11bbe0120c84a644ae1b04ee7ea7a33d23627814292ff0564c9a2da743ace62d4" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f121b4f18f7f5b05c3cff1be6e512893575bce00589e65fe6a6e0913f976a8fc13" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:25:41.125690Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 456, latest_finalized_slot_number: 455, sync_status: Synced { synced_da_height: 455 }, .. } -2026-04-20T11:25:41.125774Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 456, latest_finalized_slot_number: 455, sync_status: Synced { synced_da_height: 455 }, .. } -2026-04-20T11:25:41.125830Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:25:41.132555Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000484585s -2026-04-20T11:25:41.132574Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:25:47.121153Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=457 prev_hash=0xfccbc66e98db7aaa716a2c345dd49e53539da7e39920a7402f0cdc2caf45fbf3 hash=0x3f073525195de1f94e8d6678dd347d0d9a94c2b147e5bf3f7159107cab8cecec producing_time=1.094783ms -2026-04-20T11:25:47.124929Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=457 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f121b4f18f7f5b05c3cff1be6e512893575bce00589e65fe6a6e0913f976a8fc13" batch_blobs=[] proof_blobs=[] -2026-04-20T11:25:47.125248Z DEBUG StfBlueprint::apply_slot{context=Node da_height=457}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f121b4f18f7f5b05c3cff1be6e512893575bce00589e65fe6a6e0913f976a8fc13 next_version=457 sesssion_starting_time=48.96µs -2026-04-20T11:25:47.126127Z DEBUG StfBlueprint::apply_slot{context=Node da_height=457}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f10c82cec174591db883281dcfe8aac7e4aac49a56d14ef1be7fd46702fed16d34 next_version=457 time=944.964µs accesses_build_time=16.1µs finishing_session_time=846.944µs -2026-04-20T11:25:47.126252Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f13ddec923ef6dace64cdab13626c8edaac6befffcc30f8b361e8b0962b1105aad" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f10c82cec174591db883281dcfe8aac7e4aac49a56d14ef1be7fd46702fed16d34" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:25:47.126795Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 457, latest_finalized_slot_number: 456, sync_status: Synced { synced_da_height: 456 }, .. } -2026-04-20T11:25:47.126912Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 457, latest_finalized_slot_number: 456, sync_status: Synced { synced_da_height: 456 }, .. } -2026-04-20T11:25:47.126972Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:25:47.132799Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000225486s -2026-04-20T11:25:47.132826Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:25:53.122737Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=458 prev_hash=0x3f073525195de1f94e8d6678dd347d0d9a94c2b147e5bf3f7159107cab8cecec hash=0x5ed966da4ac4bb18a849c03fe77f511477a05d51eb9d4d32bb9874d4a58615fa producing_time=1.165743ms -2026-04-20T11:25:53.124497Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=458 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f10c82cec174591db883281dcfe8aac7e4aac49a56d14ef1be7fd46702fed16d34" batch_blobs=[] proof_blobs=[] -2026-04-20T11:25:53.124825Z DEBUG StfBlueprint::apply_slot{context=Node da_height=458}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f10c82cec174591db883281dcfe8aac7e4aac49a56d14ef1be7fd46702fed16d34 next_version=458 sesssion_starting_time=45.249µs -2026-04-20T11:25:53.125701Z DEBUG StfBlueprint::apply_slot{context=Node da_height=458}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1532172f9a54d04592179fef18c7233058dec28ddef67537bcdeea7265bfa3d33 next_version=458 time=937.604µs accesses_build_time=15.7µs finishing_session_time=843.615µs -2026-04-20T11:25:53.125790Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f121b4f18f7f5b05c3cff1be6e512893575bce00589e65fe6a6e0913f976a8fc13" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1532172f9a54d04592179fef18c7233058dec28ddef67537bcdeea7265bfa3d33" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:25:53.126273Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 458, latest_finalized_slot_number: 457, sync_status: Synced { synced_da_height: 457 }, .. } -2026-04-20T11:25:53.126389Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 458, latest_finalized_slot_number: 457, sync_status: Synced { synced_da_height: 457 }, .. } -2026-04-20T11:25:53.126543Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 -2026-04-20T11:25:53.132825Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000000168s -2026-04-20T11:25:53.132849Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:25:59.124854Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=459 prev_hash=0x5ed966da4ac4bb18a849c03fe77f511477a05d51eb9d4d32bb9874d4a58615fa hash=0x1505fd484456dad455e123b2094c085c8bebc0ad5c7b8379d18e176d32f5158a producing_time=1.080933ms -2026-04-20T11:25:59.134874Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=459 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1532172f9a54d04592179fef18c7233058dec28ddef67537bcdeea7265bfa3d33" batch_blobs=[] proof_blobs=[] -2026-04-20T11:25:59.135209Z DEBUG StfBlueprint::apply_slot{context=Node da_height=459}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f1532172f9a54d04592179fef18c7233058dec28ddef67537bcdeea7265bfa3d33 next_version=459 sesssion_starting_time=50.169µs -2026-04-20T11:25:59.136035Z DEBUG StfBlueprint::apply_slot{context=Node da_height=459}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f10ea34c6077d648eaa9d5dc453ea3b9cc9d5ae7abb3b7d7bf161af226c8c1d21f next_version=459 time=892.064µs accesses_build_time=15.35µs finishing_session_time=793.885µs -2026-04-20T11:25:59.136119Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f10c82cec174591db883281dcfe8aac7e4aac49a56d14ef1be7fd46702fed16d34" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f10ea34c6077d648eaa9d5dc453ea3b9cc9d5ae7abb3b7d7bf161af226c8c1d21f" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:25:59.136657Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 459, latest_finalized_slot_number: 459, sync_status: Synced { synced_da_height: 458 }, .. } -2026-04-20T11:25:59.136741Z ERROR sov_sequencer::preferred::sync_sequencer_state::conditions_table: Sequencer has detected that it is past, or very close to, having the visible_slot_number lag behind the deferred_slots_count threshold. Normal operation will be suspended until this can be remedied. slot_number_according_to_node=459 current_visible_slot_number=360 deferred_slots=120 -2026-04-20T11:25:59.136784Z DEBUG sov_sequencer::preferred::executor_events: Recovery: No in-progress batch to terminate. -2026-04-20T11:25:59.136843Z DEBUG sov_sequencer::preferred::block_executor: Replacing state for block executor old=019daa9f-3218-71d0-be6d-59349ab16b26 new=019daaa3-dde0-7ac1-83c9-91af1797ea01 -2026-04-20T11:25:59.136919Z  INFO sov_sequencer::preferred::sync_sequencer_state::inner: Beginning sequencer recovery info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 459, latest_finalized_slot_number: 459, sync_status: Synced { synced_da_height: 458 }, .. } current_visible_slot_number=360 -2026-04-20T11:25:59.136969Z  WARN sov_sequencer::preferred::side_effects: TryToSave recovery strategy has been configured. The currently pending soft confirmations will be flushed to the node. This may save some of the transactions, but if any are no longer valid, the sequencer will be penalised. num_batches_to_replay=31 -2026-04-20T11:25:59.136980Z DEBUG update_state_task_inner: sov_sequencer::preferred: Calculating amount of batches to send deferred_slots_count=109 maximum_delta=54 minimum_delta=43 current_catchup_delta=99 current_visible_slot_number=360 increase_per_batch=10 -2026-04-20T11:25:59.137013Z  INFO update_state_task_inner: sov_sequencer::preferred: Recovery: sending max_batches_to_send empty catchup batches to bump the visible_slot_number min_batches_to_send=5 max_batches_to_send=6 -2026-04-20T11:25:59.137001Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=462 blob_id=2147879210952352282417098001284911325 -2026-04-20T11:25:59.137035Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879210952352282417098001284911325 -2026-04-20T11:25:59.137045Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=463 blob_id=2147879211937634186160359257912968186 -2026-04-20T11:25:59.137054Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879211937634186160359257912968186 -2026-04-20T11:25:59.137075Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=464 blob_id=2147879212925274632586092196011659335 -2026-04-20T11:25:59.137083Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879212925274632586092196011659335 -2026-04-20T11:25:59.137090Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=465 blob_id=2147879213906982940149437224082389216 -2026-04-20T11:25:59.137099Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879213906982940149437224082389216 -2026-04-20T11:25:59.137106Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=466 blob_id=2147879214892208726924528656746276146 -2026-04-20T11:25:59.137114Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879214892208726924528656746276146 -2026-04-20T11:25:59.137122Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=467 blob_id=2147879215879921228371594139883765447 -2026-04-20T11:25:59.137130Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879215879921228371594139883765447 -2026-04-20T11:25:59.137137Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=468 blob_id=2147879216818034109595022550694950674 -2026-04-20T11:25:59.137146Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879216818034109595022550694950674 -2026-04-20T11:25:59.137154Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=469 blob_id=2147879217675194096422741232821342496 -2026-04-20T11:25:59.137162Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879217675194096422741232821342496 -2026-04-20T11:25:59.137170Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=470 blob_id=2147879218521430327992230614778929971 -2026-04-20T11:25:59.137177Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879218521430327992230614778929971 -2026-04-20T11:25:59.137186Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=471 blob_id=2147879219378576422120327981601449078 -2026-04-20T11:25:59.137194Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879219378576422120327981601449078 -2026-04-20T11:25:59.137201Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=472 blob_id=2147879220241735031728742101536939468 -2026-04-20T11:25:59.137217Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879220241735031728742101536939468 -2026-04-20T11:25:59.137224Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=473 blob_id=2147879221208868308802616843444519628 -2026-04-20T11:25:59.137232Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879221208868308802616843444519628 -2026-04-20T11:25:59.137240Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=474 blob_id=2147879222556811153235693845449454329 -2026-04-20T11:25:59.137247Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879222556811153235693845449454329 -2026-04-20T11:25:59.137255Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=475 blob_id=2147879223660571052695961024748237460 -2026-04-20T11:25:59.137263Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879223660571052695961024748237460 -2026-04-20T11:25:59.137271Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=476 blob_id=2147879224749832125567161667380653778 -2026-04-20T11:25:59.137279Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879224749832125567161667380653778 -2026-04-20T11:25:59.137287Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=477 blob_id=2147879225852382764708491096832241755 -2026-04-20T11:25:59.137294Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879225852382764708491096832241755 -2026-04-20T11:25:59.137302Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=478 blob_id=2147879226956104626298931873206034081 -2026-04-20T11:25:59.137309Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879226956104626298931873206034081 -2026-04-20T11:25:59.137342Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=479 blob_id=2147879228064701354177780117698186680 -2026-04-20T11:25:59.137350Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879228064701354177780117698186680 -2026-04-20T11:25:59.137357Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=480 blob_id=2147879228989474432652967299778227978 -2026-04-20T11:25:59.137372Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879228989474432652967299778227978 -2026-04-20T11:25:59.137379Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=481 blob_id=2147879229969963779652408887695000506 -2026-04-20T11:25:59.137387Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879229969963779652408887695000506 -2026-04-20T11:25:59.137395Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=482 blob_id=2147879230952832236828844453590667128 -2026-04-20T11:25:59.137403Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879230952832236828844453590667128 -2026-04-20T11:25:59.137410Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=483 blob_id=2147879231936860111844646410812183652 -2026-04-20T11:25:59.137419Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879231936860111844646410812183652 -2026-04-20T11:25:59.137426Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=484 blob_id=2147879232917278548652618553127261668 -2026-04-20T11:25:59.137434Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879232917278548652618553127261668 -2026-04-20T11:25:59.137441Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=485 blob_id=2147879233897762253992850489625040972 -2026-04-20T11:25:59.137449Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879233897762253992850489625040972 -2026-04-20T11:25:59.137457Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=486 blob_id=2147879234879368420770208725481324503 -2026-04-20T11:25:59.137465Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879234879368420770208725481324503 -2026-04-20T11:25:59.137472Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=487 blob_id=2147879235862238966355111676558320911 -2026-04-20T11:25:59.137480Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879235862238966355111676558320911 -2026-04-20T11:25:59.137488Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=488 blob_id=2147879236846354166472809762669023679 -2026-04-20T11:25:59.137495Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879236846354166472809762669023679 -2026-04-20T11:25:59.137510Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=489 blob_id=2147879237826748719241221796802820195 -2026-04-20T11:25:59.137519Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879237826748719241221796802820195 -2026-04-20T11:25:59.137526Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=490 blob_id=2147879238809586536005930471470297329 -2026-04-20T11:25:59.137534Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879238809586536005930471470297329 -2026-04-20T11:25:59.137541Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=491 blob_id=2147879239793659276077113712898826369 -2026-04-20T11:25:59.137549Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879239793659276077113712898826369 -2026-04-20T11:25:59.137557Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=492 blob_id=2147879240775330613688219493556757399 -2026-04-20T11:25:59.137564Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879240775330613688219493556757399 -2026-04-20T11:25:59.145093Z DEBUG sov_stf_runner::runner: Block execution complete time=6.012245679s -2026-04-20T11:25:59.145108Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:26:05.127176Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=460 prev_hash=0x1505fd484456dad455e123b2094c085c8bebc0ad5c7b8379d18e176d32f5158a hash=0xfb9a21d7400e4fb99723132fcac22db4e0ad6c659eebeba5a0f8933e3cc5a3c3 producing_time=1.241942ms -2026-04-20T11:26:05.136062Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=460 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f10ea34c6077d648eaa9d5dc453ea3b9cc9d5ae7abb3b7d7bf161af226c8c1d21f" batch_blobs=[] proof_blobs=[] -2026-04-20T11:26:05.136424Z DEBUG StfBlueprint::apply_slot{context=Node da_height=460}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f10ea34c6077d648eaa9d5dc453ea3b9cc9d5ae7abb3b7d7bf161af226c8c1d21f next_version=460 sesssion_starting_time=48.93µs -2026-04-20T11:26:05.137260Z DEBUG StfBlueprint::apply_slot{context=Node da_height=460}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f17b7c6bf4b2ed6cde90dd6a532b4635979b2b95b2da2e5ea6b54b5876c684b10d next_version=460 time=903.974µs accesses_build_time=17.38µs finishing_session_time=792.195µs -2026-04-20T11:26:05.137371Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f10ea34c6077d648eaa9d5dc453ea3b9cc9d5ae7abb3b7d7bf161af226c8c1d21f" next_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f17b7c6bf4b2ed6cde90dd6a532b4635979b2b95b2da2e5ea6b54b5876c684b10d" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:26:05.137727Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=1 min=5 max=6 -2026-04-20T11:26:05.137769Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:26:05.137862Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=130 -2026-04-20T11:26:05.137955Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=370 -2026-04-20T11:26:05.138182Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:26:05.139443Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=370 sequence_number=493 -2026-04-20T11:26:05.139472Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=493 blob_id=2147879602322758933015074591535793292 visible_slot_number_after_increase=370 visible_slots_to_advance=10 -2026-04-20T11:26:05.139498Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=31 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:26:05.141078Z DEBUG manage_blob_submission_inside_task{blob_id=2147879602322758933015074591535793292 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xe302003a7e573b8918626ce800488d5a931966eedce7087a7d7ca35774beceed sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=461 include_at=461 bytes=13 time=577.327µs -2026-04-20T11:26:05.144566Z DEBUG compute_state_update{scope="sequencer" rollup_height=135 slot_number=370}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:26:05.144598Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999490431s -2026-04-20T11:26:05.144607Z DEBUG compute_state_update{scope="sequencer" rollup_height=135 slot_number=370}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:26:05.144621Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:26:05.144661Z DEBUG compute_state_update{scope="sequencer" rollup_height=135 slot_number=370}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f10ea34c6077d648eaa9d5dc453ea3b9cc9d5ae7abb3b7d7bf161af226c8c1d21f next_version=460 sesssion_starting_time=4.72816ms -2026-04-20T11:26:05.145355Z DEBUG compute_state_update{scope="sequencer" rollup_height=135 slot_number=370}: sov_state::nomt::prover_storage: computed next state root state_root=3e5c57b434456f950e19c603fe0554fd4f2f471fc6c7529c2538db0eec831f033204a5deb8a3ecf7a330e3b11a7951e46bb4aa110e06ef75b2e484871b361dca next_version=460 time=5.439585ms accesses_build_time=18.19µs finishing_session_time=672.836µs -2026-04-20T11:26:11.129511Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=461 prev_hash=0xfb9a21d7400e4fb99723132fcac22db4e0ad6c659eebeba5a0f8933e3cc5a3c3 hash=0xe752b90bce441898d95cbbba15d9acec1be1d2aa6017975e69aa0e48b000c724 producing_time=1.278491ms -2026-04-20T11:26:11.136452Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=461 current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f17b7c6bf4b2ed6cde90dd6a532b4635979b2b95b2da2e5ea6b54b5876c684b10d" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe302003a7e573b8918626ce800488d5a931966eedce7087a7d7ca35774beceed"] proof_blobs=[] -2026-04-20T11:26:11.137395Z DEBUG StfBlueprint::apply_slot{context=Node da_height=461}: sov_chain_state: Setting next visible slot number next_visible_slot_number=370 -2026-04-20T11:26:11.138430Z DEBUG StfBlueprint::apply_slot{context=Node da_height=461}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xe302003a7e573b8918626ce800488d5a931966eedce7087a7d7ca35774beceed}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=31 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:26:11.138669Z DEBUG StfBlueprint::apply_slot{context=Node da_height=461}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f17b7c6bf4b2ed6cde90dd6a532b4635979b2b95b2da2e5ea6b54b5876c684b10d next_version=461 sesssion_starting_time=48.06µs -2026-04-20T11:26:11.139872Z DEBUG StfBlueprint::apply_slot{context=Node da_height=461}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3e5c57b434456f950e19c603fe0554fd4f2f471fc6c7529c2538db0eec831f035f4c0e2ee7e0558b4fcf40fd5063be560208b630320d11b2165f04f928aa7c6c next_version=461 time=1.325082ms accesses_build_time=72.639µs finishing_session_time=1.159922ms -2026-04-20T11:26:11.140078Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ebe39bd5be5082602ecd2712b8e59eaff7f724e14fd472d009b67643296573c5" -2026-04-20T11:26:11.140095Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="c237e1376465634fdb28926af86b0a0fd4cf40c89e546e0714fbb9b0c88de004" -2026-04-20T11:26:11.140105Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="d96996f0f6476ebb7b005d91b69f89999bda7caef92697c37a0ab8e2e197b7dc" -2026-04-20T11:26:11.140113Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="4f0678f684ec536db73dc3305d15781514def11882eefe3601a065fdf1d1fe45" -2026-04-20T11:26:11.140122Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="a52790290ce86ab7126260eff32d7e50d6196bc3dcad8e754082f56648ca5f65" -2026-04-20T11:26:11.140130Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="7ce3f7a983b187c37035882629d72ea40b3bddd7d9f0918a49be6cf5a9708381" -2026-04-20T11:26:11.140139Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="bf1781b32cfa2646e4de8c850c7e300d116bfadf24b977317cdcadb95ebac434" -2026-04-20T11:26:11.140148Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="527e8e2155195ae59f01f346880575c6843b22f8ad38ced3f09f0b903a45642d" -2026-04-20T11:26:11.140156Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="4da54144b12bbc99a837d349ebf54258bd3694bd94590605a7aac7cafefde27b" -2026-04-20T11:26:11.140166Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="c05c9bbcce4a23e1a65f4d7bba0e67cd5f9ffbcf5180380d7349c5385c4f3c61" -2026-04-20T11:26:11.140186Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="19e8a24e36f2f07e8d2a2d9a5ccf7a902b79f564ddedec0e652123c86e6b3a2f" -2026-04-20T11:26:11.140195Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="db27a315a2adb83e7d2801e4f31e488801ca6e08c72ee7a0e2260c61bd5d06e6" -2026-04-20T11:26:11.140203Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="23d8b78519ce64cf3446fc1111abd86d78d6018fcad009075c1f8e160ccbe905" -2026-04-20T11:26:11.140211Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="39d890e2ce8d57514cb994a52b28c8c75f8129bcd95599eeefebd5fe4bf104c4" -2026-04-20T11:26:11.140219Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="1dceae2ae6f7d4afeae6dd6d8da36f3c29341fe0397f492414b532f2756637d5" -2026-04-20T11:26:11.140227Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="e64c66fab5ba39043492d397471589e8657ad8047c5c4c6935f58f4620371047" -2026-04-20T11:26:11.140235Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="bea7ea91a5b94d9541a8c6289edc5bb42ab85e2dbe30150d2635d59a862c0ce5" -2026-04-20T11:26:11.140245Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="fd48a26c14297983689ba04746d5392fedf8611c0f0dc8b0f392468f50fdc8dd" -2026-04-20T11:26:11.140254Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="e23570cd5618dc6aeab5208ddfbfbecb3b2f408eb77c9d24347f37886e60e76d" -2026-04-20T11:26:11.140262Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="9bbc26ab883f8353ad6653147f6b7ed310b5c095ffa56e6c3b3a513b8803c26d" -2026-04-20T11:26:11.140271Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="75ab054b7a1989606e941d4301a18516aebd694cdfae7f1364bf07a09b491d88" -2026-04-20T11:26:11.140278Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="9dc29ae4fa1faa7e56e50d36f2275fad262cfec747dc66466cf0263489762012" -2026-04-20T11:26:11.140286Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="6b6815bb59b079ae865249b33f9efe3fa04c0a605c13fe2989ca66cf9c72378c" -2026-04-20T11:26:11.140303Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="b603006fb1053665ff739c47af30d591b965901ad3712a52f2a48a8fc14dead9" -2026-04-20T11:26:11.140311Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="97fc222e928109febdd3306729edebf06df5b5feee64f169aff211c15a7e4d5c" -2026-04-20T11:26:11.140339Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="3940d1c1723668625514983af2597d475e579a252ec9fd910f445b84b48c6ac5" -2026-04-20T11:26:11.140347Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="5664308571a8e8a1ce08465055454ae092abd0025e986617cbcbcc995921d2b7" -2026-04-20T11:26:11.140355Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="8d668c94bb1af5949f4f18856201618f855572e361f568002ef95aa79390166a" -2026-04-20T11:26:11.140363Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="fd67b7ee1f40e187b9c6194560fc8071320622afddab75429564c833b060fde1" -2026-04-20T11:26:11.140372Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="77394d6d2a4949f8da86aa541e811706f38f18b2458c10f94b5b3962846355f1" -2026-04-20T11:26:11.140380Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="53a4d271c7a5878aaa4dfcaf30323602b84620c2c970a10079d1547c5c35252d" -2026-04-20T11:26:11.140391Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f17b7c6bf4b2ed6cde90dd6a532b4635979b2b95b2da2e5ea6b54b5876c684b10d" next_state_root="3e5c57b434456f950e19c603fe0554fd4f2f471fc6c7529c2538db0eec831f035f4c0e2ee7e0558b4fcf40fd5063be560208b630320d11b2165f04f928aa7c6c" aggregated_proofs=0 proof_receipts=31 -2026-04-20T11:26:11.140689Z  WARN sov_stf_runner::processes::stf_info_manager: State Transition Info is not consumed fast enough, cannot prune older entries. Please check that consumer works. next_height_to_receive=360 prune_up_to=361 -2026-04-20T11:26:11.141075Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=2 min=5 max=6 -2026-04-20T11:26:11.141127Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:26:11.141191Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=131 -2026-04-20T11:26:11.141293Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=380 -2026-04-20T11:26:11.141595Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:26:11.141780Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=380 sequence_number=494 -2026-04-20T11:26:11.141805Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=494 blob_id=2147879609578685327157751920053253411 visible_slot_number_after_increase=380 visible_slots_to_advance=10 -2026-04-20T11:26:11.141828Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:26:11.144126Z DEBUG manage_blob_submission_inside_task{blob_id=2147879609578685327157751920053253411 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x4d16cdaa5dce509e33296c3967e5aca7c7da71b3c7468498315aacf7475550f8 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=462 include_at=462 bytes=13 time=638.036µs -2026-04-20T11:26:11.155515Z DEBUG compute_state_update{scope="sequencer" rollup_height=136 slot_number=380}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:26:11.155547Z DEBUG sov_stf_runner::runner: Block execution complete time=6.010928008s -2026-04-20T11:26:11.155550Z DEBUG compute_state_update{scope="sequencer" rollup_height=136 slot_number=380}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:26:11.155570Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:26:11.155619Z DEBUG compute_state_update{scope="sequencer" rollup_height=136 slot_number=380}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f10ea34c6077d648eaa9d5dc453ea3b9cc9d5ae7abb3b7d7bf161af226c8c1d21f next_version=460 sesssion_starting_time=13.378804ms -2026-04-20T11:26:11.155740Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:11.155800Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:11.156491Z DEBUG compute_state_update{scope="sequencer" rollup_height=136 slot_number=380}: sov_state::nomt::prover_storage: computed next state root state_root=435e35ad5cdee9564e65beb8fc36a9cb38cc1280b0b1f6f37f9994f8890767ab3eca07f5c76b150e9cb336daa58677f0ace4b80773c6068116323ab69dac9f27 next_version=460 time=14.277988ms accesses_build_time=25.489µs finishing_session_time=851.224µs -2026-04-20T11:26:11.689543Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Jb29hktySCePYv4uVBAUqg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:11.696800Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:11.707970Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1074798 cycles -2026-04-20T11:26:11.710591Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 73, 241, 81, 115, 149, 168, 85, 250, 245, 133, 228, 191, 126, 177, 129, 186, 38, 215, 238, 139, 22, 187, 164, 251, 59, 80, 222, 216, 166, 174, 240, 110, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 19, 159, 181, 214, 242, 39, 223, 237, 133, 183, 64, 98, 103, 124, 43, 154, 252, 183, 7, 48, 181, 190, 3, 196, 35, 206, 138, 49, 26, 42, 122, 60, 10, 9, 0, 87, 153, 136, 213, 198, 137, 90, 152, 213, 123, 159, 186, 88, 135, 159, 110, 97, 253, 230, 142, 182, 145, 231, 201, 113, 54, 77, 66, 171, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:11.769671Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:11.769716Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:11.864062Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:11.898363Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bRrWDR7TSZ65N4EjOTZcoA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:11.901229Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bRrWDR7TSZ65N4EjOTZcoA==: stderr: -2026-04-20T11:26:11.901253Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bRrWDR7TSZ65N4EjOTZcoA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:11.901266Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bRrWDR7TSZ65N4EjOTZcoA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:11.901272Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bRrWDR7TSZ65N4EjOTZcoA==: stderr: stack backtrace: -2026-04-20T11:26:11.901279Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bRrWDR7TSZ65N4EjOTZcoA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:11.901285Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bRrWDR7TSZ65N4EjOTZcoA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:11.901406Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:11.902155Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:11.902459Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:11.974072Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:11.974124Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:11.974341Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:11.974496Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:11.974554Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:11.974787Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=495 blob_id=2147879610585737361436407576427221705 -2026-04-20T11:26:12.539349Z DEBUG sp1_core_executor_runner::native: CHILD sp1_G8fvnLN5RsafX9omqm6-oQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:12.546541Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:12.557565Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1076312 cycles -2026-04-20T11:26:12.560267Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 49, 181, 147, 121, 178, 116, 169, 61, 232, 214, 235, 32, 250, 201, 206, 221, 7, 85, 235, 228, 50, 221, 36, 225, 147, 156, 108, 223, 8, 34, 40, 214, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 98, 187, 166, 203, 76, 195, 101, 233, 154, 31, 187, 64, 183, 23, 41, 223, 15, 155, 50, 98, 250, 71, 95, 145, 229, 7, 120, 198, 42, 100, 55, 241, 120, 127, 190, 187, 136, 97, 138, 51, 140, 166, 86, 182, 255, 231, 87, 180, 88, 152, 156, 217, 133, 169, 206, 162, 232, 28, 112, 205, 222, 87, 204, 156, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:12.618466Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:12.618514Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:12.681775Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:12.717006Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9gYSIFogRVahXj0IL67_Mg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:12.719850Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9gYSIFogRVahXj0IL67_Mg==: stderr: -2026-04-20T11:26:12.719862Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9gYSIFogRVahXj0IL67_Mg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:12.719871Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9gYSIFogRVahXj0IL67_Mg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:12.719879Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9gYSIFogRVahXj0IL67_Mg==: stderr: stack backtrace: -2026-04-20T11:26:12.719885Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9gYSIFogRVahXj0IL67_Mg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:12.719891Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9gYSIFogRVahXj0IL67_Mg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:12.720060Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:12.720827Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:12.721117Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:12.787656Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:12.787701Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:12.787874Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:12.788031Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:12.788099Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:12.788444Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=496 blob_id=2147879611568626221157950498630779468 -2026-04-20T11:26:13.349672Z DEBUG sp1_core_executor_runner::native: CHILD sp1_u5t9ihT1RQOhPVNuIPIFJQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:13.356745Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:13.367254Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1050807 cycles -2026-04-20T11:26:13.369894Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 86, 19, 131, 248, 37, 219, 90, 42, 105, 10, 24, 202, 236, 45, 40, 31, 94, 98, 233, 90, 158, 140, 65, 188, 161, 164, 187, 46, 26, 206, 237, 47, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 105, 95, 142, 9, 210, 73, 72, 245, 59, 80, 188, 202, 121, 132, 149, 255, 68, 47, 73, 253, 61, 255, 57, 43, 144, 230, 17, 254, 25, 168, 65, 176, 23, 46, 252, 134, 216, 49, 234, 117, 30, 86, 2, 167, 91, 183, 127, 172, 216, 85, 240, 3, 188, 35, 74, 38, 119, 72, 28, 162, 180, 114, 216, 45, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:13.428529Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:13.428572Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:13.495265Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:13.530232Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gz9RyFEgSx2pvB0-AngXVQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:13.533119Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gz9RyFEgSx2pvB0-AngXVQ==: stderr: -2026-04-20T11:26:13.533132Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gz9RyFEgSx2pvB0-AngXVQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:13.533140Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gz9RyFEgSx2pvB0-AngXVQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:13.533146Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gz9RyFEgSx2pvB0-AngXVQ==: stderr: stack backtrace: -2026-04-20T11:26:13.533154Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gz9RyFEgSx2pvB0-AngXVQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:13.533159Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gz9RyFEgSx2pvB0-AngXVQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:13.533278Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:13.534056Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:13.534457Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:13.601498Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:13.601538Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:13.601658Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:13.601820Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:13.601889Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:13.602335Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=497 blob_id=2147879612552630430574346961513381174 -2026-04-20T11:26:14.153585Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wW6eDs2GQ6G_d1Tq0GAD9Q==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:14.160810Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:14.170550Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1075162 cycles -2026-04-20T11:26:14.173149Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 98, 244, 101, 171, 127, 253, 205, 153, 141, 248, 8, 28, 250, 174, 27, 18, 157, 230, 202, 82, 185, 254, 39, 84, 64, 92, 152, 16, 214, 38, 166, 86, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 110, 148, 108, 99, 166, 170, 8, 65, 117, 22, 251, 105, 176, 161, 5, 241, 95, 235, 54, 209, 31, 125, 145, 84, 26, 113, 233, 13, 182, 175, 191, 3, 117, 4, 87, 161, 5, 214, 116, 28, 167, 101, 37, 157, 91, 199, 174, 27, 36, 65, 20, 102, 180, 78, 229, 142, 30, 252, 212, 212, 3, 155, 129, 246, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:14.234079Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:14.234118Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:14.309524Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:14.344913Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fUhQBvgbR5ST7uy_Bon0og==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:14.347751Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fUhQBvgbR5ST7uy_Bon0og==: stderr: -2026-04-20T11:26:14.347776Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fUhQBvgbR5ST7uy_Bon0og==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:14.347787Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fUhQBvgbR5ST7uy_Bon0og==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:14.347793Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fUhQBvgbR5ST7uy_Bon0og==: stderr: stack backtrace: -2026-04-20T11:26:14.347800Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fUhQBvgbR5ST7uy_Bon0og==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:14.347806Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fUhQBvgbR5ST7uy_Bon0og==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:14.347932Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:14.348676Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:14.348966Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:14.415451Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:14.415497Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:14.415670Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:14.415827Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:14.415880Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:14.416562Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=498 blob_id=2147879613536749764376883775093650988 -2026-04-20T11:26:14.965741Z DEBUG sp1_core_executor_runner::native: CHILD sp1_7tMmueLPS8ytqGhi1IElag==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:14.972817Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:14.982420Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1056456 cycles -2026-04-20T11:26:14.985103Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 73, 82, 6, 108, 24, 91, 129, 210, 223, 196, 36, 191, 70, 59, 64, 210, 224, 220, 151, 21, 176, 237, 38, 236, 195, 74, 101, 44, 125, 232, 188, 207, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 3, 119, 12, 67, 144, 214, 190, 127, 239, 90, 228, 102, 0, 202, 2, 172, 99, 211, 134, 143, 255, 232, 206, 89, 149, 9, 15, 142, 49, 198, 124, 54, 118, 74, 68, 163, 118, 4, 3, 43, 57, 178, 227, 245, 126, 87, 190, 75, 148, 238, 174, 183, 70, 156, 253, 178, 246, 42, 132, 35, 93, 161, 161, 205, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:15.044531Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:15.044575Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:15.123059Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:15.157171Z DEBUG sp1_core_executor_runner::native: CHILD sp1__E_jpX9SQAW7DLe3xqgCLA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:15.160001Z DEBUG sp1_core_executor_runner::native: CHILD sp1__E_jpX9SQAW7DLe3xqgCLA==: stderr: -2026-04-20T11:26:15.160013Z DEBUG sp1_core_executor_runner::native: CHILD sp1__E_jpX9SQAW7DLe3xqgCLA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:15.160022Z DEBUG sp1_core_executor_runner::native: CHILD sp1__E_jpX9SQAW7DLe3xqgCLA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:15.160030Z DEBUG sp1_core_executor_runner::native: CHILD sp1__E_jpX9SQAW7DLe3xqgCLA==: stderr: stack backtrace: -2026-04-20T11:26:15.160036Z DEBUG sp1_core_executor_runner::native: CHILD sp1__E_jpX9SQAW7DLe3xqgCLA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:15.160041Z DEBUG sp1_core_executor_runner::native: CHILD sp1__E_jpX9SQAW7DLe3xqgCLA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:15.160229Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:15.160989Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:15.161280Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:15.232972Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:15.233017Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:15.233193Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:15.233365Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:15.233447Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:15.233752Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=499 blob_id=2147879614525591189337976763864494034 -2026-04-20T11:26:15.783579Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tCn972BkQYKyV4tjwJ10sQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:15.790456Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:15.800286Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1040655 cycles -2026-04-20T11:26:15.802906Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 94, 21, 17, 211, 180, 26, 56, 203, 166, 151, 12, 77, 227, 91, 239, 158, 102, 15, 132, 131, 216, 245, 49, 164, 173, 86, 65, 243, 200, 145, 100, 244, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 89, 168, 173, 171, 28, 211, 115, 75, 51, 187, 93, 233, 229, 246, 36, 201, 13, 57, 40, 13, 126, 161, 158, 79, 36, 209, 219, 181, 28, 91, 232, 196, 72, 151, 0, 170, 88, 75, 51, 143, 198, 251, 94, 179, 134, 80, 133, 160, 198, 102, 201, 9, 161, 128, 78, 85, 3, 100, 16, 243, 179, 226, 111, 208, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:15.860773Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:15.860816Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:15.940479Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:15.975671Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5pRi9BhSRpSvDIOAzGOGJQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:15.978506Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5pRi9BhSRpSvDIOAzGOGJQ==: stderr: -2026-04-20T11:26:15.978519Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5pRi9BhSRpSvDIOAzGOGJQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:15.978527Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5pRi9BhSRpSvDIOAzGOGJQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:15.978537Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5pRi9BhSRpSvDIOAzGOGJQ==: stderr: stack backtrace: -2026-04-20T11:26:15.978543Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5pRi9BhSRpSvDIOAzGOGJQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:15.978550Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5pRi9BhSRpSvDIOAzGOGJQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:15.978689Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:15.979482Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:15.979778Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:16.046327Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:16.046373Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:16.046513Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:16.046674Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:16.046730Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:16.047165Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=500 blob_id=2147879615508490418120643499711727307 -2026-04-20T11:26:16.577355Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8SjvKjWXSoSmFRSYnxX16g==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:16.584373Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:16.593826Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1066880 cycles -2026-04-20T11:26:16.596697Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 66, 54, 125, 181, 159, 156, 165, 77, 51, 120, 102, 41, 215, 90, 58, 81, 131, 224, 56, 95, 71, 157, 49, 167, 60, 106, 246, 230, 83, 80, 16, 56, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 33, 112, 96, 88, 66, 148, 219, 171, 14, 48, 207, 91, 135, 195, 141, 125, 250, 204, 133, 69, 221, 237, 145, 63, 86, 165, 223, 60, 186, 117, 99, 111, 248, 185, 147, 220, 15, 34, 54, 235, 197, 127, 196, 225, 193, 74, 59, 81, 219, 68, 112, 165, 6, 230, 75, 51, 70, 74, 8, 35, 131, 114, 226, 88, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:16.656487Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:16.656535Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:16.754679Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:16.788660Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ld_Xzm86SDeBXLSRLnZ-Aw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:16.791504Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ld_Xzm86SDeBXLSRLnZ-Aw==: stderr: -2026-04-20T11:26:16.791517Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ld_Xzm86SDeBXLSRLnZ-Aw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:16.791525Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ld_Xzm86SDeBXLSRLnZ-Aw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:16.791531Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ld_Xzm86SDeBXLSRLnZ-Aw==: stderr: stack backtrace: -2026-04-20T11:26:16.791539Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ld_Xzm86SDeBXLSRLnZ-Aw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:16.791545Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ld_Xzm86SDeBXLSRLnZ-Aw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:16.791647Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:16.792458Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:16.792781Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:16.859277Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:16.859331Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:16.859517Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:16.859669Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:16.859738Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:16.860137Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=501 blob_id=2147879616491345337351799484814278109 -2026-04-20T11:26:17.132761Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=8 height=462 prev_hash=0xe752b90bce441898d95cbbba15d9acec1be1d2aa6017975e69aa0e48b000c724 hash=0x3d464305c82cbaa470d003ba6973d46e367091c7aaefb657da6e69d8a57600dc producing_time=1.352621ms -2026-04-20T11:26:17.137697Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=462 current_state_root="3e5c57b434456f950e19c603fe0554fd4f2f471fc6c7529c2538db0eec831f035f4c0e2ee7e0558b4fcf40fd5063be560208b630320d11b2165f04f928aa7c6c" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x4d16cdaa5dce509e33296c3967e5aca7c7da71b3c7468498315aacf7475550f8"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x64c03d4a0a17a96e22a5b745d3215952bc9cb53212b3e662ae0d8c71b776dbbf, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x2f7b845aafec867613e033e73b3eddbc0698d4723245eaf7b1f1b175f46c87ce, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf715fdeffc47c6314870446a715aa0d07778f09ff4e8d276430956f19ffb631d, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xec7535059ca16b07b8bce857216e418459cc1dc77043976888443334134986be, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x6fcad43058c091f32d095e265601bd10a839b7fe5c439460501e9a1553f6d838, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0092921a1bb4a7fbbb0579b1480470da34f16088556532e9339f3ce5de9ae0b2, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf6e58c8f24510b3fbeb667620c1ad34abacbae16923567c4f2794db927f7c6d3, len=625"] -2026-04-20T11:26:17.138065Z DEBUG StfBlueprint::apply_slot{context=Node da_height=462}: sov_chain_state: Setting next visible slot number next_visible_slot_number=380 -2026-04-20T11:26:17.138228Z DEBUG StfBlueprint::apply_slot{context=Node da_height=462}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x4d16cdaa5dce509e33296c3967e5aca7c7da71b3c7468498315aacf7475550f8}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:26:17.138460Z DEBUG StfBlueprint::apply_slot{context=Node da_height=462}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3e5c57b434456f950e19c603fe0554fd4f2f471fc6c7529c2538db0eec831f035f4c0e2ee7e0558b4fcf40fd5063be560208b630320d11b2165f04f928aa7c6c next_version=462 sesssion_starting_time=47.32µs -2026-04-20T11:26:17.139515Z DEBUG StfBlueprint::apply_slot{context=Node da_height=462}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=435e35ad5cdee9564e65beb8fc36a9cb38cc1280b0b1f6f37f9994f8890767ab2121258c9788cf3f02b1351e422564e078b6bf190f6ad1bddea030c60898eda7 next_version=462 time=1.152213ms accesses_build_time=49.61µs finishing_session_time=1.023003ms -2026-04-20T11:26:17.139716Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3e5c57b434456f950e19c603fe0554fd4f2f471fc6c7529c2538db0eec831f035f4c0e2ee7e0558b4fcf40fd5063be560208b630320d11b2165f04f928aa7c6c" next_state_root="435e35ad5cdee9564e65beb8fc36a9cb38cc1280b0b1f6f37f9994f8890767ab2121258c9788cf3f02b1351e422564e078b6bf190f6ad1bddea030c60898eda7" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:26:17.140171Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=3 min=5 max=6 -2026-04-20T11:26:17.140223Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:26:17.140293Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=132 -2026-04-20T11:26:17.140419Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=390 -2026-04-20T11:26:17.140708Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:26:17.141184Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=390 sequence_number=502 -2026-04-20T11:26:17.141210Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=502 blob_id=2147879616832280128948570257746075273 visible_slot_number_after_increase=390 visible_slots_to_advance=10 -2026-04-20T11:26:17.141237Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=7 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:26:17.142792Z DEBUG manage_blob_submission_inside_task{blob_id=2147879616832280128948570257746075273 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x7e2b828936bdae7909435988088a2c511b817bc391be1960c171d5451159b191 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=463 include_at=463 bytes=13 time=551.806µs -2026-04-20T11:26:17.151288Z DEBUG compute_state_update{scope="sequencer" rollup_height=137 slot_number=390}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:26:17.151328Z DEBUG compute_state_update{scope="sequencer" rollup_height=137 slot_number=390}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:26:17.151328Z DEBUG sov_stf_runner::runner: Block execution complete time=5.995760075s -2026-04-20T11:26:17.151363Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:26:17.151387Z DEBUG compute_state_update{scope="sequencer" rollup_height=137 slot_number=390}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f10ea34c6077d648eaa9d5dc453ea3b9cc9d5ae7abb3b7d7bf161af226c8c1d21f next_version=460 sesssion_starting_time=9.706018ms -2026-04-20T11:26:17.152353Z DEBUG compute_state_update{scope="sequencer" rollup_height=137 slot_number=390}: sov_state::nomt::prover_storage: computed next state root state_root=7da36407817f53799740d410ce439c26e4c12a746fb8b551a96f321375b1bbe543edf91d910481145636e9018975697ba2521d3a0a18a620fc4ac7169f6ce3ed next_version=460 time=10.705021ms accesses_build_time=31.69µs finishing_session_time=945.704µs -2026-04-20T11:26:17.406506Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EYdrm95GS8GGoXrst_Ot9Q==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:17.413478Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:17.423112Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1057057 cycles -2026-04-20T11:26:17.425922Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 109, 151, 74, 243, 214, 216, 126, 31, 108, 35, 142, 113, 137, 167, 224, 79, 94, 122, 25, 11, 164, 86, 155, 71, 186, 203, 86, 241, 115, 31, 171, 3, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 14, 92, 99, 43, 248, 197, 218, 14, 41, 4, 156, 104, 165, 141, 179, 38, 17, 244, 145, 205, 47, 107, 69, 189, 34, 95, 108, 49, 216, 147, 17, 63, 9, 101, 69, 189, 130, 103, 71, 252, 139, 170, 74, 93, 18, 172, 206, 49, 246, 35, 33, 94, 182, 38, 155, 118, 43, 247, 110, 135, 227, 206, 96, 69, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:17.485188Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:17.485234Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:17.567381Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:17.602338Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xzm98mnASC-nPmVpI8HzeA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:17.605142Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xzm98mnASC-nPmVpI8HzeA==: stderr: -2026-04-20T11:26:17.605155Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xzm98mnASC-nPmVpI8HzeA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:17.605164Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xzm98mnASC-nPmVpI8HzeA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:17.605172Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xzm98mnASC-nPmVpI8HzeA==: stderr: stack backtrace: -2026-04-20T11:26:17.605178Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xzm98mnASC-nPmVpI8HzeA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:17.605184Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xzm98mnASC-nPmVpI8HzeA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:17.605279Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:17.606076Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:17.606469Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:17.674465Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:17.674504Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:17.674690Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:17.674881Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:17.674944Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:17.675407Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=503 blob_id=2147879617476642554428441472796873866 -2026-04-20T11:26:18.224733Z DEBUG sp1_core_executor_runner::native: CHILD sp1_scwyDxy0RLCx5kZttSQyRA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:18.231604Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:18.241834Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1044886 cycles -2026-04-20T11:26:18.244702Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 64, 75, 33, 189, 132, 119, 75, 251, 72, 1, 248, 49, 50, 245, 45, 123, 59, 223, 59, 225, 236, 11, 106, 213, 109, 33, 169, 167, 79, 20, 198, 100, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 10, 146, 227, 24, 52, 49, 144, 92, 170, 194, 204, 236, 72, 124, 199, 223, 216, 78, 94, 168, 239, 6, 18, 82, 90, 229, 178, 116, 134, 235, 12, 106, 162, 99, 144, 109, 247, 48, 41, 115, 127, 98, 122, 245, 38, 238, 220, 69, 165, 21, 45, 17, 238, 101, 105, 137, 25, 192, 197, 229, 166, 136, 109, 229, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:18.261052Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:18.261088Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:18.282263Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:18.308068Z DEBUG sp1_core_executor_runner::native: CHILD sp1_dBy2t-lERoOr2-gb60iJJA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:18.310897Z DEBUG sp1_core_executor_runner::native: CHILD sp1_dBy2t-lERoOr2-gb60iJJA==: stderr: -2026-04-20T11:26:18.310914Z DEBUG sp1_core_executor_runner::native: CHILD sp1_dBy2t-lERoOr2-gb60iJJA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:18.310926Z DEBUG sp1_core_executor_runner::native: CHILD sp1_dBy2t-lERoOr2-gb60iJJA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:18.310936Z DEBUG sp1_core_executor_runner::native: CHILD sp1_dBy2t-lERoOr2-gb60iJJA==: stderr: stack backtrace: -2026-04-20T11:26:18.310944Z DEBUG sp1_core_executor_runner::native: CHILD sp1_dBy2t-lERoOr2-gb60iJJA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:18.310967Z DEBUG sp1_core_executor_runner::native: CHILD sp1_dBy2t-lERoOr2-gb60iJJA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:18.311019Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:18.311765Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:18.311895Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:18.383382Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:18.383425Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:18.383610Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:18.383769Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:18.383840Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:18.384404Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=504 blob_id=2147879618333730285054322717633908054 -2026-04-20T11:26:18.935096Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YdFlFXJCRWi7FMnjUITbVA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:18.942240Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:18.952051Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1073979 cycles -2026-04-20T11:26:18.954706Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 50, 10, 39, 44, 90, 121, 20, 114, 9, 134, 187, 100, 9, 234, 121, 57, 117, 77, 135, 217, 134, 71, 130, 209, 201, 183, 119, 139, 92, 161, 107, 105, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 102, 151, 101, 209, 62, 165, 94, 85, 173, 227, 213, 40, 49, 225, 148, 216, 52, 60, 71, 175, 22, 78, 129, 203, 149, 140, 161, 44, 209, 189, 174, 185, 48, 130, 99, 74, 134, 92, 161, 224, 9, 152, 76, 18, 26, 13, 56, 67, 218, 87, 139, 105, 80, 108, 119, 186, 109, 225, 19, 21, 57, 149, 45, 104, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:19.015109Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:19.015156Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:19.090711Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:19.127950Z DEBUG sp1_core_executor_runner::native: CHILD sp1_f4LHONaPQu-cFCpZ2uurWw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:19.130766Z DEBUG sp1_core_executor_runner::native: CHILD sp1_f4LHONaPQu-cFCpZ2uurWw==: stderr: -2026-04-20T11:26:19.130779Z DEBUG sp1_core_executor_runner::native: CHILD sp1_f4LHONaPQu-cFCpZ2uurWw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:19.130789Z DEBUG sp1_core_executor_runner::native: CHILD sp1_f4LHONaPQu-cFCpZ2uurWw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:19.130797Z DEBUG sp1_core_executor_runner::native: CHILD sp1_f4LHONaPQu-cFCpZ2uurWw==: stderr: stack backtrace: -2026-04-20T11:26:19.130803Z DEBUG sp1_core_executor_runner::native: CHILD sp1_f4LHONaPQu-cFCpZ2uurWw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:19.130809Z DEBUG sp1_core_executor_runner::native: CHILD sp1_f4LHONaPQu-cFCpZ2uurWw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:19.130954Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:19.131711Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:19.132007Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:19.197714Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:19.197760Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:19.197900Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:19.198060Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:19.198128Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:19.198681Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=505 blob_id=2147879619317801764824606737901722528 -2026-04-20T11:26:19.747456Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HAoXOZ0xQEq4tsNbTD0h8g==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:19.754592Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:19.764482Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1068746 cycles -2026-04-20T11:26:19.767147Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 0, 242, 2, 100, 36, 236, 131, 107, 72, 177, 221, 104, 86, 87, 165, 161, 154, 13, 254, 167, 49, 92, 164, 229, 202, 85, 101, 67, 180, 167, 142, 141, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 73, 153, 118, 145, 130, 180, 32, 178, 86, 179, 152, 179, 43, 197, 123, 205, 53, 175, 236, 54, 40, 38, 245, 142, 16, 234, 244, 203, 195, 136, 161, 241, 15, 186, 61, 159, 32, 138, 95, 177, 166, 129, 40, 233, 169, 138, 11, 111, 240, 16, 220, 182, 102, 78, 106, 245, 178, 149, 49, 59, 24, 0, 67, 172, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:19.826775Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:19.826819Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:19.905768Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:19.940792Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eb2sVAwCRb2EHgcym--XmQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:19.943617Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eb2sVAwCRb2EHgcym--XmQ==: stderr: -2026-04-20T11:26:19.943641Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eb2sVAwCRb2EHgcym--XmQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:19.943651Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eb2sVAwCRb2EHgcym--XmQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:19.943658Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eb2sVAwCRb2EHgcym--XmQ==: stderr: stack backtrace: -2026-04-20T11:26:19.943664Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eb2sVAwCRb2EHgcym--XmQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:19.943670Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eb2sVAwCRb2EHgcym--XmQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:19.943812Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:19.944570Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:19.944859Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:20.012553Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:20.012598Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:20.012772Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:20.012931Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:20.013014Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:20.013641Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=506 blob_id=2147879620303071309228553820460911615 -2026-04-20T11:26:20.561484Z DEBUG sp1_core_executor_runner::native: CHILD sp1_94AXen7ISYS1xWEsj7sZ6A==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:20.568100Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:20.577628Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1017479 cycles -2026-04-20T11:26:20.580150Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 67, 63, 208, 163, 74, 204, 162, 75, 85, 245, 73, 181, 46, 116, 119, 82, 157, 26, 44, 56, 174, 168, 8, 64, 171, 21, 217, 234, 161, 119, 213, 105, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 52, 62, 138, 184, 39, 223, 67, 75, 223, 161, 135, 144, 230, 94, 16, 52, 67, 39, 83, 15, 133, 50, 177, 67, 46, 214, 139, 97, 98, 231, 55, 226, 125, 226, 242, 120, 51, 15, 76, 56, 235, 192, 96, 153, 233, 13, 236, 234, 228, 198, 178, 232, 136, 188, 208, 33, 210, 92, 169, 0, 105, 217, 206, 230, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:20.638903Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:20.638950Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:20.719773Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:20.754334Z DEBUG sp1_core_executor_runner::native: CHILD sp1_u19y7-mZQJyTQrGqLKzhlA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:20.757156Z DEBUG sp1_core_executor_runner::native: CHILD sp1_u19y7-mZQJyTQrGqLKzhlA==: stderr: -2026-04-20T11:26:20.757181Z DEBUG sp1_core_executor_runner::native: CHILD sp1_u19y7-mZQJyTQrGqLKzhlA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:20.757191Z DEBUG sp1_core_executor_runner::native: CHILD sp1_u19y7-mZQJyTQrGqLKzhlA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:20.757198Z DEBUG sp1_core_executor_runner::native: CHILD sp1_u19y7-mZQJyTQrGqLKzhlA==: stderr: stack backtrace: -2026-04-20T11:26:20.757204Z DEBUG sp1_core_executor_runner::native: CHILD sp1_u19y7-mZQJyTQrGqLKzhlA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:20.757211Z DEBUG sp1_core_executor_runner::native: CHILD sp1_u19y7-mZQJyTQrGqLKzhlA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:20.757327Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:20.758078Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:20.758371Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:20.812301Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:20.812341Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:20.812494Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:20.812633Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:20.812691Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:20.813069Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=507 blob_id=2147879621270208700953780809288812398 -2026-04-20T11:26:21.342950Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NJcv8JWNSpSzGKfhTQh4_w==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:21.350050Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:21.359117Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1064856 cycles -2026-04-20T11:26:21.361573Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 27, 130, 146, 141, 105, 30, 171, 94, 134, 91, 22, 1, 101, 184, 121, 205, 124, 132, 48, 253, 158, 1, 217, 8, 151, 154, 7, 50, 186, 107, 37, 222, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 71, 240, 136, 29, 167, 77, 199, 165, 34, 74, 156, 117, 29, 207, 243, 224, 101, 50, 185, 92, 191, 116, 254, 111, 122, 110, 201, 83, 113, 165, 137, 83, 87, 183, 173, 172, 206, 208, 183, 104, 170, 207, 190, 130, 228, 203, 192, 141, 67, 247, 18, 130, 15, 94, 4, 141, 15, 149, 77, 51, 117, 180, 112, 23, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:21.421928Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:21.421975Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:21.520451Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:21.553626Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vwZx_Ji7SLKZm6CZlcCQRQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:21.556451Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vwZx_Ji7SLKZm6CZlcCQRQ==: stderr: -2026-04-20T11:26:21.556464Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vwZx_Ji7SLKZm6CZlcCQRQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:21.556473Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vwZx_Ji7SLKZm6CZlcCQRQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:21.556481Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vwZx_Ji7SLKZm6CZlcCQRQ==: stderr: stack backtrace: -2026-04-20T11:26:21.556487Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vwZx_Ji7SLKZm6CZlcCQRQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:21.556494Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vwZx_Ji7SLKZm6CZlcCQRQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:21.556658Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:21.557388Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:21.557676Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:21.625279Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:21.625333Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:21.625548Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:21.625701Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:21.625772Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:21.626178Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=508 blob_id=2147879622253095533079858476273019127 -2026-04-20T11:26:22.176080Z DEBUG sp1_core_executor_runner::native: CHILD sp1_I3nIToXRQayOfcWaYKdSPQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:22.183154Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:22.193487Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1060381 cycles -2026-04-20T11:26:22.195952Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 116, 100, 177, 181, 93, 173, 60, 67, 212, 110, 21, 214, 115, 202, 81, 106, 15, 252, 221, 204, 137, 138, 60, 102, 65, 44, 218, 254, 157, 18, 244, 226, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 83, 97, 93, 184, 88, 212, 226, 16, 202, 53, 84, 242, 97, 14, 193, 101, 184, 81, 226, 31, 117, 38, 96, 170, 204, 199, 0, 231, 99, 195, 172, 224, 74, 101, 45, 156, 240, 152, 45, 227, 212, 78, 165, 255, 45, 252, 25, 244, 87, 141, 1, 0, 192, 202, 3, 177, 99, 195, 241, 115, 108, 153, 231, 187, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:22.256182Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:22.256232Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:22.333471Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:22.368013Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-9g9qbIySbm4qIhMu53HRA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:22.370833Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-9g9qbIySbm4qIhMu53HRA==: stderr: -2026-04-20T11:26:22.370846Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-9g9qbIySbm4qIhMu53HRA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:22.370854Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-9g9qbIySbm4qIhMu53HRA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:22.370862Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-9g9qbIySbm4qIhMu53HRA==: stderr: stack backtrace: -2026-04-20T11:26:22.370868Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-9g9qbIySbm4qIhMu53HRA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:22.370874Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-9g9qbIySbm4qIhMu53HRA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:22.371021Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:22.371798Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:22.372089Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:22.424486Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:22.424517Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:22.424690Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:22.424825Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:22.424907Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:22.425256Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=509 blob_id=2147879623219040526541411512384108535 -2026-04-20T11:26:22.970675Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4l7ZZLvmR3WZaCc2H4TtHA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:22.977744Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:22.987133Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1065482 cycles -2026-04-20T11:26:22.989839Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 28, 6, 218, 210, 17, 213, 109, 71, 190, 135, 198, 218, 146, 7, 106, 14, 75, 131, 196, 61, 78, 220, 235, 35, 169, 179, 242, 231, 19, 225, 27, 54, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 72, 150, 7, 175, 238, 32, 195, 26, 144, 159, 86, 1, 99, 128, 109, 216, 160, 77, 107, 225, 119, 192, 91, 22, 38, 151, 242, 112, 88, 60, 50, 219, 248, 189, 167, 204, 20, 7, 47, 77, 89, 70, 188, 163, 36, 219, 107, 116, 47, 240, 109, 102, 234, 247, 136, 55, 228, 220, 145, 215, 50, 131, 164, 226, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:23.050500Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:23.050543Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:23.132755Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:23.134798Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=8 height=463 prev_hash=0x3d464305c82cbaa470d003ba6973d46e367091c7aaefb657da6e69d8a57600dc hash=0x22694bc552f09d5152ef45cf0f1a90c72eb52af170692d423b2f5a2a1c359fac producing_time=1.190892ms -2026-04-20T11:26:23.142647Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=463 current_state_root="435e35ad5cdee9564e65beb8fc36a9cb38cc1280b0b1f6f37f9994f8890767ab2121258c9788cf3f02b1351e422564e078b6bf190f6ad1bddea030c60898eda7" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x7e2b828936bdae7909435988088a2c511b817bc391be1960c171d5451159b191"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9e4179db8c9396088193062be3eba960bfc84eb1f325ddd2ff3f9d54ef5cfe88, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe41876036980b0e257c140127326da51a45ebd7120bdb56581d1cf32b58bfe22, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x969578c1bdf222171d01411138ec38f1ca863c916d4c0d497b9ad2773089a7ff, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa0ffe20a37bcd3411fb02b0c801251f4a9aaaaf40301f51cd6c07d75a20c1d6a, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf19025310f42076e29b3c16e23ad88e7a3899bbf63a0c980ebb348c2d7466ff7, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0e108bd8e9f07aa75261b7b0b4a674a4ec7323ca884d20ffaa8f36b11b0115c0, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd3164cb5f934318b6918c52f83f84b8a02e957c9e884f509fdf36fa6c927d045, len=625"] -2026-04-20T11:26:23.143207Z DEBUG StfBlueprint::apply_slot{context=Node da_height=463}: sov_chain_state: Setting next visible slot number next_visible_slot_number=390 -2026-04-20T11:26:23.143608Z DEBUG StfBlueprint::apply_slot{context=Node da_height=463}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x7e2b828936bdae7909435988088a2c511b817bc391be1960c171d5451159b191}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=7 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:26:23.143825Z DEBUG StfBlueprint::apply_slot{context=Node da_height=463}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=435e35ad5cdee9564e65beb8fc36a9cb38cc1280b0b1f6f37f9994f8890767ab2121258c9788cf3f02b1351e422564e078b6bf190f6ad1bddea030c60898eda7 next_version=463 sesssion_starting_time=47.22µs -2026-04-20T11:26:23.144818Z DEBUG StfBlueprint::apply_slot{context=Node da_height=463}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=7da36407817f53799740d410ce439c26e4c12a746fb8b551a96f321375b1bbe557dd03fcdfd616111680c7d8fa1441902f8abd9c18017d49277d03bf389e56e9 next_version=463 time=1.098863ms accesses_build_time=57.709µs finishing_session_time=968.514µs -2026-04-20T11:26:23.145017Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="64c03d4a0a17a96e22a5b745d3215952bc9cb53212b3e662ae0d8c71b776dbbf" -2026-04-20T11:26:23.145033Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="2f7b845aafec867613e033e73b3eddbc0698d4723245eaf7b1f1b175f46c87ce" -2026-04-20T11:26:23.145042Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="f715fdeffc47c6314870446a715aa0d07778f09ff4e8d276430956f19ffb631d" -2026-04-20T11:26:23.145063Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ec7535059ca16b07b8bce857216e418459cc1dc77043976888443334134986be" -2026-04-20T11:26:23.145070Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="6fcad43058c091f32d095e265601bd10a839b7fe5c439460501e9a1553f6d838" -2026-04-20T11:26:23.145079Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="0092921a1bb4a7fbbb0579b1480470da34f16088556532e9339f3ce5de9ae0b2" -2026-04-20T11:26:23.145087Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="f6e58c8f24510b3fbeb667620c1ad34abacbae16923567c4f2794db927f7c6d3" -2026-04-20T11:26:23.145098Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="435e35ad5cdee9564e65beb8fc36a9cb38cc1280b0b1f6f37f9994f8890767ab2121258c9788cf3f02b1351e422564e078b6bf190f6ad1bddea030c60898eda7" next_state_root="7da36407817f53799740d410ce439c26e4c12a746fb8b551a96f321375b1bbe557dd03fcdfd616111680c7d8fa1441902f8abd9c18017d49277d03bf389e56e9" aggregated_proofs=0 proof_receipts=7 -2026-04-20T11:26:23.145591Z DEBUG sov_stf_runner::runner: Block execution complete time=5.994229536s -2026-04-20T11:26:23.145599Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=4 min=5 max=6 -2026-04-20T11:26:23.145621Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:26:23.145653Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:26:23.145722Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=133 -2026-04-20T11:26:23.145831Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=400 -2026-04-20T11:26:23.146126Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:26:23.146614Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=400 sequence_number=510 -2026-04-20T11:26:23.146637Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=510 blob_id=2147879624091833319627839027749343188 visible_slot_number_after_increase=400 visible_slots_to_advance=10 -2026-04-20T11:26:23.146675Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=7 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:26:23.147203Z DEBUG compute_state_update{scope="sequencer" rollup_height=138 slot_number=400}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:26:23.147222Z DEBUG compute_state_update{scope="sequencer" rollup_height=138 slot_number=400}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:26:23.147277Z DEBUG compute_state_update{scope="sequencer" rollup_height=138 slot_number=400}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f10ea34c6077d648eaa9d5dc453ea3b9cc9d5ae7abb3b7d7bf161af226c8c1d21f next_version=460 sesssion_starting_time=75.89µs -2026-04-20T11:26:23.148364Z DEBUG compute_state_update{scope="sequencer" rollup_height=138 slot_number=400}: sov_state::nomt::prover_storage: computed next state root state_root=7e10602fedde92d46b3ac4d75b2f513c609f00b34c3f6dadf256b5e3031f82de0286e72f1135426eae97238f865d9acbbf797a4eb13cefa07e53755d1ad8819d next_version=460 time=1.208362ms accesses_build_time=44.129µs finishing_session_time=1.071033ms -2026-04-20T11:26:23.148563Z DEBUG manage_blob_submission_inside_task{blob_id=2147879624091833319627839027749343188 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x541854331bb4ce66d3c4d5acca35e5708c126281d813e63254d112cc3dadb0e6 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=464 include_at=464 bytes=13 time=604.296µs -2026-04-20T11:26:23.166820Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HOnKqpPmRFGk1Vj_znK4dA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:23.169641Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HOnKqpPmRFGk1Vj_znK4dA==: stderr: -2026-04-20T11:26:23.169666Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HOnKqpPmRFGk1Vj_znK4dA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:23.169676Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HOnKqpPmRFGk1Vj_znK4dA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:23.169683Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HOnKqpPmRFGk1Vj_znK4dA==: stderr: stack backtrace: -2026-04-20T11:26:23.169689Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HOnKqpPmRFGk1Vj_znK4dA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:23.169697Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HOnKqpPmRFGk1Vj_znK4dA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:23.169759Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:23.170573Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:23.170975Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:23.238138Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:23.238179Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:23.238374Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:23.238534Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:23.238603Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:23.238987Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=511 blob_id=2147879624203086073560462496240638117 -2026-04-20T11:26:23.791905Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mVHJ7EuDQdevVSQeZXp-Vg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:23.798957Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:23.810105Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1064363 cycles -2026-04-20T11:26:23.812768Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 98, 179, 126, 213, 24, 34, 210, 252, 98, 105, 202, 112, 124, 139, 167, 241, 164, 206, 174, 49, 109, 165, 243, 225, 32, 116, 88, 247, 29, 106, 89, 217, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 124, 217, 116, 250, 95, 46, 84, 112, 181, 13, 9, 16, 28, 40, 43, 15, 29, 139, 190, 133, 145, 98, 120, 27, 4, 71, 148, 100, 82, 254, 94, 222, 66, 50, 119, 121, 172, 246, 93, 189, 23, 247, 59, 177, 147, 202, 112, 74, 172, 64, 84, 110, 164, 86, 167, 177, 17, 63, 23, 64, 161, 55, 42, 71, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:23.871833Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:23.871885Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:23.947156Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:23.980709Z DEBUG sp1_core_executor_runner::native: CHILD sp1_T3vy6si0R-uq8V0NA_0nOA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:23.983555Z DEBUG sp1_core_executor_runner::native: CHILD sp1_T3vy6si0R-uq8V0NA_0nOA==: stderr: -2026-04-20T11:26:23.983579Z DEBUG sp1_core_executor_runner::native: CHILD sp1_T3vy6si0R-uq8V0NA_0nOA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:23.983589Z DEBUG sp1_core_executor_runner::native: CHILD sp1_T3vy6si0R-uq8V0NA_0nOA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:23.983596Z DEBUG sp1_core_executor_runner::native: CHILD sp1_T3vy6si0R-uq8V0NA_0nOA==: stderr: stack backtrace: -2026-04-20T11:26:23.983602Z DEBUG sp1_core_executor_runner::native: CHILD sp1_T3vy6si0R-uq8V0NA_0nOA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:23.983609Z DEBUG sp1_core_executor_runner::native: CHILD sp1_T3vy6si0R-uq8V0NA_0nOA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:23.983709Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:23.984452Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:23.984770Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:24.050853Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:24.050892Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:24.051036Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:24.051185Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:24.051243Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:24.051722Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=512 blob_id=2147879625185909965947317250053348701 -2026-04-20T11:26:24.613481Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JqPHKmvJTgy6Yzllj_IaHQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:24.620613Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:24.630559Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1066393 cycles -2026-04-20T11:26:24.633156Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 101, 224, 110, 240, 194, 236, 80, 187, 186, 5, 179, 210, 56, 69, 28, 243, 244, 210, 226, 226, 91, 186, 8, 176, 71, 110, 59, 117, 242, 88, 176, 111, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 9, 84, 226, 37, 108, 18, 185, 1, 57, 41, 130, 146, 233, 58, 210, 26, 50, 170, 104, 128, 247, 85, 222, 163, 137, 98, 111, 163, 204, 224, 3, 162, 243, 14, 47, 247, 12, 205, 143, 214, 62, 62, 205, 140, 162, 212, 186, 93, 232, 220, 223, 52, 110, 94, 131, 195, 121, 207, 36, 3, 90, 202, 67, 76, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:24.693909Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:24.693955Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:24.760602Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:24.795685Z DEBUG sp1_core_executor_runner::native: CHILD sp1_W-G28-I0Qfe4qCl9gi6sSg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:24.798495Z DEBUG sp1_core_executor_runner::native: CHILD sp1_W-G28-I0Qfe4qCl9gi6sSg==: stderr: -2026-04-20T11:26:24.798519Z DEBUG sp1_core_executor_runner::native: CHILD sp1_W-G28-I0Qfe4qCl9gi6sSg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:24.798529Z DEBUG sp1_core_executor_runner::native: CHILD sp1_W-G28-I0Qfe4qCl9gi6sSg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:24.798536Z DEBUG sp1_core_executor_runner::native: CHILD sp1_W-G28-I0Qfe4qCl9gi6sSg==: stderr: stack backtrace: -2026-04-20T11:26:24.798542Z DEBUG sp1_core_executor_runner::native: CHILD sp1_W-G28-I0Qfe4qCl9gi6sSg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:24.798548Z DEBUG sp1_core_executor_runner::native: CHILD sp1_W-G28-I0Qfe4qCl9gi6sSg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:24.798688Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:24.799424Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:24.799715Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:24.866652Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:24.866693Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:24.866890Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:24.867057Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:24.867125Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:24.867537Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=513 blob_id=2147879626171229427888258826050448116 -2026-04-20T11:26:25.420869Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zST0YkvHRuyKzAAVQ1lEEw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:25.427949Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:25.437466Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1067582 cycles -2026-04-20T11:26:25.440109Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 100, 14, 35, 99, 114, 250, 33, 145, 103, 187, 132, 89, 212, 146, 123, 13, 83, 176, 75, 242, 33, 20, 227, 191, 19, 128, 117, 78, 194, 229, 206, 52, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 68, 30, 107, 42, 182, 135, 135, 73, 101, 247, 95, 196, 26, 176, 218, 179, 167, 38, 229, 187, 145, 35, 116, 2, 168, 20, 199, 21, 205, 32, 137, 252, 242, 213, 201, 167, 0, 242, 129, 48, 48, 80, 230, 77, 27, 181, 113, 119, 99, 155, 167, 90, 43, 150, 74, 11, 222, 6, 130, 13, 93, 36, 69, 132, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:25.500557Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:25.500600Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:25.573984Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:25.608020Z DEBUG sp1_core_executor_runner::native: CHILD sp1_dFsGcX4RSr-P8ZnrW1WcXQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:25.610863Z DEBUG sp1_core_executor_runner::native: CHILD sp1_dFsGcX4RSr-P8ZnrW1WcXQ==: stderr: -2026-04-20T11:26:25.610888Z DEBUG sp1_core_executor_runner::native: CHILD sp1_dFsGcX4RSr-P8ZnrW1WcXQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:25.610898Z DEBUG sp1_core_executor_runner::native: CHILD sp1_dFsGcX4RSr-P8ZnrW1WcXQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:25.610905Z DEBUG sp1_core_executor_runner::native: CHILD sp1_dFsGcX4RSr-P8ZnrW1WcXQ==: stderr: stack backtrace: -2026-04-20T11:26:25.610912Z DEBUG sp1_core_executor_runner::native: CHILD sp1_dFsGcX4RSr-P8ZnrW1WcXQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:25.610918Z DEBUG sp1_core_executor_runner::native: CHILD sp1_dFsGcX4RSr-P8ZnrW1WcXQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:25.611024Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:25.611775Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:25.612061Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:25.679928Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:25.679972Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:25.680135Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:25.680285Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:25.680352Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:25.680776Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=514 blob_id=2147879627155252544870738118709050136 -2026-04-20T11:26:26.214367Z DEBUG sp1_core_executor_runner::native: CHILD sp1_US41jNrPTnGp6-Yywz2Jbw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:26.221441Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:26.231153Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1050533 cycles -2026-04-20T11:26:26.233842Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 80, 83, 200, 122, 142, 199, 125, 10, 215, 25, 134, 245, 36, 22, 242, 83, 166, 125, 168, 247, 252, 211, 254, 128, 192, 164, 134, 140, 125, 37, 136, 148, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 78, 240, 54, 250, 175, 228, 157, 5, 26, 244, 116, 65, 45, 76, 229, 111, 162, 45, 21, 51, 201, 9, 51, 220, 176, 196, 5, 25, 247, 149, 2, 216, 32, 235, 154, 133, 107, 32, 119, 74, 80, 83, 105, 8, 117, 123, 188, 73, 178, 130, 50, 162, 188, 220, 57, 123, 153, 247, 61, 46, 227, 72, 24, 38, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:26.293742Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:26.293788Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:26.387216Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:26.421584Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AWg10BvnS-aUp0l6X03ZrQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:26.424425Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AWg10BvnS-aUp0l6X03ZrQ==: stderr: -2026-04-20T11:26:26.424452Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AWg10BvnS-aUp0l6X03ZrQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:26.424461Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AWg10BvnS-aUp0l6X03ZrQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:26.424468Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AWg10BvnS-aUp0l6X03ZrQ==: stderr: stack backtrace: -2026-04-20T11:26:26.424476Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AWg10BvnS-aUp0l6X03ZrQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:26.424482Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AWg10BvnS-aUp0l6X03ZrQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:26.424625Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:26.425390Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:26.425683Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:26.490770Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:26.490813Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:26.491004Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:26.491157Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:26.491225Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:26.491631Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=515 blob_id=2147879628135727390192853615666528744 -2026-04-20T11:26:27.047202Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2iBxF-VsTzSfVs6P1kKWGg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:27.053956Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:27.064229Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1026495 cycles -2026-04-20T11:26:27.066778Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 102, 57, 169, 191, 210, 230, 212, 113, 14, 227, 55, 19, 156, 34, 196, 101, 133, 132, 218, 122, 128, 95, 185, 37, 14, 34, 167, 129, 66, 27, 175, 183, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 125, 111, 104, 138, 48, 177, 179, 31, 71, 112, 59, 153, 36, 154, 190, 4, 103, 179, 108, 3, 26, 73, 165, 67, 5, 128, 148, 222, 16, 231, 38, 167, 111, 201, 113, 232, 23, 170, 114, 2, 248, 234, 249, 145, 203, 108, 64, 144, 220, 144, 62, 98, 32, 225, 74, 165, 109, 142, 228, 240, 3, 237, 113, 44, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:27.124949Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:27.124998Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:27.198137Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:27.232105Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jZGw70ymS_u3HG39y9PPIg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:27.234927Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jZGw70ymS_u3HG39y9PPIg==: stderr: -2026-04-20T11:26:27.234951Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jZGw70ymS_u3HG39y9PPIg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:27.234961Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jZGw70ymS_u3HG39y9PPIg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:27.234968Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jZGw70ymS_u3HG39y9PPIg==: stderr: stack backtrace: -2026-04-20T11:26:27.234975Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jZGw70ymS_u3HG39y9PPIg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:27.234981Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jZGw70ymS_u3HG39y9PPIg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:27.235068Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:27.235883Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:27.236172Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:27.301781Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:27.301826Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:27.302027Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:27.302191Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:27.302250Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:27.302695Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=516 blob_id=2147879629116140849371499392133913892 -2026-04-20T11:26:27.854559Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xVGPY9ydS8639R7WThYmJw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:27.861876Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:27.872763Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1081655 cycles -2026-04-20T11:26:27.875513Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 65, 90, 22, 58, 229, 230, 244, 131, 211, 221, 139, 249, 54, 194, 238, 74, 195, 226, 47, 59, 204, 5, 78, 127, 44, 235, 126, 94, 102, 61, 113, 76, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 17, 226, 31, 171, 196, 10, 158, 134, 121, 168, 114, 161, 52, 190, 88, 125, 78, 220, 31, 47, 245, 6, 216, 199, 44, 7, 28, 218, 223, 116, 163, 70, 236, 17, 49, 254, 9, 123, 208, 95, 195, 46, 151, 78, 197, 73, 54, 130, 115, 21, 17, 31, 74, 74, 58, 54, 59, 177, 197, 63, 247, 42, 194, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:27.933694Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:27.933742Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:28.009327Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:28.043866Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fEu0StuPSC2cXXF2Vki3xg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:28.046696Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fEu0StuPSC2cXXF2Vki3xg==: stderr: -2026-04-20T11:26:28.046721Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fEu0StuPSC2cXXF2Vki3xg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:28.046731Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fEu0StuPSC2cXXF2Vki3xg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:28.046738Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fEu0StuPSC2cXXF2Vki3xg==: stderr: stack backtrace: -2026-04-20T11:26:28.046744Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fEu0StuPSC2cXXF2Vki3xg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:28.046750Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fEu0StuPSC2cXXF2Vki3xg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:28.046879Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:28.047640Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:28.047961Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:28.115124Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:28.115165Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:28.115355Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:28.115520Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:28.115586Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:28.116008Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=517 blob_id=2147879630099044725974900033325195059 -2026-04-20T11:26:28.676837Z DEBUG sp1_core_executor_runner::native: CHILD sp1_F0gHP2A5TjSEtK8vzo6TFQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:28.683709Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:28.693788Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1043739 cycles -2026-04-20T11:26:28.696628Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 22, 116, 88, 117, 222, 41, 149, 15, 235, 182, 100, 179, 21, 147, 77, 127, 99, 215, 184, 117, 243, 10, 165, 107, 101, 0, 3, 37, 31, 24, 146, 94, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 126, 17, 250, 160, 4, 96, 21, 180, 21, 168, 181, 171, 51, 0, 208, 189, 52, 146, 99, 105, 195, 6, 69, 172, 237, 12, 46, 134, 242, 1, 72, 5, 27, 134, 236, 246, 179, 120, 214, 84, 214, 105, 164, 210, 122, 207, 58, 45, 79, 86, 169, 215, 188, 205, 27, 2, 182, 95, 56, 201, 3, 145, 54, 241, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:28.755229Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:28.755277Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:28.824482Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:28.860432Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PkyUneHDQb6xEVmqRBWjrQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:28.863250Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PkyUneHDQb6xEVmqRBWjrQ==: stderr: -2026-04-20T11:26:28.863265Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PkyUneHDQb6xEVmqRBWjrQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:28.863281Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PkyUneHDQb6xEVmqRBWjrQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:28.863285Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PkyUneHDQb6xEVmqRBWjrQ==: stderr: stack backtrace: -2026-04-20T11:26:28.863288Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PkyUneHDQb6xEVmqRBWjrQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:28.863291Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PkyUneHDQb6xEVmqRBWjrQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:28.863432Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:28.864185Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:28.864486Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:28.931182Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:28.931225Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:28.931403Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:28.931591Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:28.931652Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:28.932205Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=518 blob_id=2147879631085495712285458927212694693 -2026-04-20T11:26:29.136950Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=9 height=464 prev_hash=0x22694bc552f09d5152ef45cf0f1a90c72eb52af170692d423b2f5a2a1c359fac hash=0x417c4fff2a6287326d7c35ef8f602b8d1bcf20347cf4a6604f0fdaea0b10d0d7 producing_time=1.132453ms -2026-04-20T11:26:29.147768Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=464 current_state_root="7da36407817f53799740d410ce439c26e4c12a746fb8b551a96f321375b1bbe557dd03fcdfd616111680c7d8fa1441902f8abd9c18017d49277d03bf389e56e9" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x541854331bb4ce66d3c4d5acca35e5708c126281d813e63254d112cc3dadb0e6"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa54425182744701fa18c1e2510bd7a3438634ce953b2d4accda7958e4b66ebab, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x97a6a58475568f3543643744adce3bd8af4f46979cb459f3a67cbbe0a4f15205, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x453cbbd99925427104b44ec093d1b9f4efab0bb6696e8eab58b989cebdeb8eb3, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x378f15a0364ba4076ce7d7b96a7fbdae697cb9bbc0440084dcc52119f85479d2, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x819a68dbe50052e16d7c3579502b2093804ac5d4f4279d5df00571d8d5ff0fd5, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xda9e6f367f1a0967d63546c94be31cb86d059e75690c586e4d824dafa6aca59b, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x8fa202e3b3e8d31b8630ae85b768000b039c8f37f31e901e0d01589c1ecb883c, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x38b96e90c52100191fc872448c45e95e5f47bde9368db90b08066cf0f3e9169a, len=625"] -2026-04-20T11:26:29.148264Z DEBUG StfBlueprint::apply_slot{context=Node da_height=464}: sov_chain_state: Setting next visible slot number next_visible_slot_number=400 -2026-04-20T11:26:29.148668Z DEBUG StfBlueprint::apply_slot{context=Node da_height=464}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x541854331bb4ce66d3c4d5acca35e5708c126281d813e63254d112cc3dadb0e6}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=7 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:26:29.148886Z DEBUG StfBlueprint::apply_slot{context=Node da_height=464}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7da36407817f53799740d410ce439c26e4c12a746fb8b551a96f321375b1bbe557dd03fcdfd616111680c7d8fa1441902f8abd9c18017d49277d03bf389e56e9 next_version=464 sesssion_starting_time=47.93µs -2026-04-20T11:26:29.149981Z DEBUG StfBlueprint::apply_slot{context=Node da_height=464}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=7e10602fedde92d46b3ac4d75b2f513c609f00b34c3f6dadf256b5e3031f82de0f670638924ad7adacad464ce6c764a27493936060c4eeca6672fc50cb8d96cc next_version=464 time=1.203513ms accesses_build_time=59.53µs finishing_session_time=1.069193ms -2026-04-20T11:26:29.150182Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="9e4179db8c9396088193062be3eba960bfc84eb1f325ddd2ff3f9d54ef5cfe88" -2026-04-20T11:26:29.150199Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="e41876036980b0e257c140127326da51a45ebd7120bdb56581d1cf32b58bfe22" -2026-04-20T11:26:29.150208Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="969578c1bdf222171d01411138ec38f1ca863c916d4c0d497b9ad2773089a7ff" -2026-04-20T11:26:29.150247Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="a0ffe20a37bcd3411fb02b0c801251f4a9aaaaf40301f51cd6c07d75a20c1d6a" -2026-04-20T11:26:29.150256Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="f19025310f42076e29b3c16e23ad88e7a3899bbf63a0c980ebb348c2d7466ff7" -2026-04-20T11:26:29.150265Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="0e108bd8e9f07aa75261b7b0b4a674a4ec7323ca884d20ffaa8f36b11b0115c0" -2026-04-20T11:26:29.150274Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="d3164cb5f934318b6918c52f83f84b8a02e957c9e884f509fdf36fa6c927d045" -2026-04-20T11:26:29.150285Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="435e35ad5cdee9564e65beb8fc36a9cb38cc1280b0b1f6f37f9994f8890767ab2121258c9788cf3f02b1351e422564e078b6bf190f6ad1bddea030c60898eda7" next_state_root="7e10602fedde92d46b3ac4d75b2f513c609f00b34c3f6dadf256b5e3031f82de0f670638924ad7adacad464ce6c764a27493936060c4eeca6672fc50cb8d96cc" aggregated_proofs=0 proof_receipts=7 -2026-04-20T11:26:29.150773Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=5 min=5 max=6 -2026-04-20T11:26:29.150833Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:26:29.150904Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=134 -2026-04-20T11:26:29.151004Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=410 -2026-04-20T11:26:29.151266Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:26:29.151784Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=410 sequence_number=519 -2026-04-20T11:26:29.151815Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=519 blob_id=2147879631351444930042816603961791846 visible_slot_number_after_increase=410 visible_slots_to_advance=10 -2026-04-20T11:26:29.151848Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=8 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:26:29.153533Z DEBUG manage_blob_submission_inside_task{blob_id=2147879631351444930042816603961791846 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xe36dd299822f2266e9ef3faa7e97364de21406325d68368b83c1585643f4869c sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=465 include_at=465 bytes=13 time=574.706µs -2026-04-20T11:26:29.162557Z DEBUG compute_state_update{scope="sequencer" rollup_height=139 slot_number=410}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:26:29.162599Z DEBUG compute_state_update{scope="sequencer" rollup_height=139 slot_number=410}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:26:29.162612Z DEBUG sov_stf_runner::runner: Block execution complete time=6.016991279s -2026-04-20T11:26:29.162643Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:26:29.162662Z DEBUG compute_state_update{scope="sequencer" rollup_height=139 slot_number=410}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f10ea34c6077d648eaa9d5dc453ea3b9cc9d5ae7abb3b7d7bf161af226c8c1d21f next_version=460 sesssion_starting_time=10.299734ms -2026-04-20T11:26:29.163783Z DEBUG compute_state_update{scope="sequencer" rollup_height=139 slot_number=410}: sov_state::nomt::prover_storage: computed next state root state_root=0ec9dca990fa552b3d6654b941ea8b770cfdcbd7c20d7fb9c2929441576bee8451b34a1eeb93a40fbdcfab6f5f31d052fd23792e9304578dcf933ac79bbeb59b next_version=460 time=11.482956ms accesses_build_time=61.339µs finishing_session_time=1.094763ms -2026-04-20T11:26:29.469985Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Tt2A4lBDR3aG9oxfJbbIjA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:29.477098Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:29.486541Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1068316 cycles -2026-04-20T11:26:29.489068Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 59, 233, 177, 3, 133, 73, 20, 174, 118, 216, 33, 135, 46, 163, 173, 34, 176, 31, 88, 239, 9, 148, 10, 118, 153, 86, 182, 45, 172, 235, 205, 132, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 79, 16, 243, 4, 83, 10, 204, 106, 207, 228, 14, 11, 148, 12, 29, 108, 252, 94, 234, 162, 239, 163, 155, 221, 245, 237, 147, 178, 9, 179, 99, 126, 48, 55, 17, 43, 209, 38, 38, 187, 101, 246, 198, 48, 202, 174, 181, 247, 87, 88, 117, 207, 232, 215, 244, 20, 25, 22, 163, 167, 183, 57, 229, 30, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:29.549479Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:29.549524Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:29.638838Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:29.672894Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HumMIU79TFemqRV54jjgpg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:29.675771Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HumMIU79TFemqRV54jjgpg==: stderr: -2026-04-20T11:26:29.675784Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HumMIU79TFemqRV54jjgpg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:29.675792Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HumMIU79TFemqRV54jjgpg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:29.675801Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HumMIU79TFemqRV54jjgpg==: stderr: stack backtrace: -2026-04-20T11:26:29.675807Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HumMIU79TFemqRV54jjgpg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:29.675813Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HumMIU79TFemqRV54jjgpg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:29.675981Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:29.676693Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:29.676985Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:29.743557Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:29.743606Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:29.743754Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:29.743913Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:29.743981Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:29.744346Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=520 blob_id=2147879632067109293878251240210931399 -2026-04-20T11:26:30.295569Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qYoYuTSETL2mjg7NloEMlA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:30.302746Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:30.312288Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1079108 cycles -2026-04-20T11:26:30.314814Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 50, 239, 22, 83, 21, 215, 226, 171, 107, 146, 222, 102, 60, 7, 148, 49, 197, 174, 138, 100, 55, 10, 157, 101, 61, 184, 235, 233, 140, 174, 41, 56, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 36, 213, 156, 124, 201, 37, 45, 165, 36, 44, 117, 75, 183, 37, 242, 104, 65, 182, 191, 168, 86, 208, 252, 133, 139, 85, 184, 9, 31, 196, 32, 118, 121, 195, 195, 172, 208, 41, 55, 7, 12, 1, 244, 32, 124, 33, 182, 89, 75, 30, 173, 184, 51, 96, 232, 48, 168, 121, 230, 104, 178, 111, 170, 172, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:30.375611Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:30.375654Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:30.451490Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:30.487574Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jVcdAIeFR2Ki8W-nL_Sl-Q==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:30.490400Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jVcdAIeFR2Ki8W-nL_Sl-Q==: stderr: -2026-04-20T11:26:30.490412Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jVcdAIeFR2Ki8W-nL_Sl-Q==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:30.490421Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jVcdAIeFR2Ki8W-nL_Sl-Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:30.490429Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jVcdAIeFR2Ki8W-nL_Sl-Q==: stderr: stack backtrace: -2026-04-20T11:26:30.490435Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jVcdAIeFR2Ki8W-nL_Sl-Q==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:30.490441Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jVcdAIeFR2Ki8W-nL_Sl-Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:30.490585Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:30.491348Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:30.491663Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:30.559684Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:30.559723Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:30.559901Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:30.560065Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:30.560128Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:30.560782Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=521 blob_id=2147879633053612519224342622771230428 -2026-04-20T11:26:31.111609Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JjMBsrKHSeqTjH_Vy1m13w==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:31.118337Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:31.129144Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1018999 cycles -2026-04-20T11:26:31.131817Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 86, 82, 202, 162, 204, 194, 221, 82, 181, 122, 59, 197, 98, 166, 44, 44, 100, 89, 32, 204, 128, 52, 30, 17, 235, 130, 188, 186, 158, 15, 109, 34, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 12, 113, 253, 244, 62, 34, 215, 146, 232, 154, 117, 9, 162, 200, 195, 138, 129, 160, 200, 83, 68, 114, 210, 28, 90, 254, 222, 235, 145, 108, 90, 125, 225, 161, 214, 143, 175, 223, 204, 117, 27, 28, 35, 22, 168, 228, 212, 247, 210, 36, 167, 3, 242, 13, 36, 232, 180, 205, 81, 88, 232, 150, 237, 162, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:31.187864Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:31.187906Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:31.267990Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:31.302863Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nwMfkx5cReCRNANIcAehMA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:31.305720Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nwMfkx5cReCRNANIcAehMA==: stderr: -2026-04-20T11:26:31.305745Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nwMfkx5cReCRNANIcAehMA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:31.305771Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nwMfkx5cReCRNANIcAehMA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:31.305778Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nwMfkx5cReCRNANIcAehMA==: stderr: stack backtrace: -2026-04-20T11:26:31.305785Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nwMfkx5cReCRNANIcAehMA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:31.305791Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nwMfkx5cReCRNANIcAehMA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:31.305901Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:31.306639Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:31.306935Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:31.374171Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:31.374212Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:31.374374Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:31.374545Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:31.374613Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:31.375015Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=522 blob_id=2147879634038872305198538961133712611 -2026-04-20T11:26:31.938795Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9jtujiLtRaqNSGkcgDFf4A==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:31.946041Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:31.955693Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1080796 cycles -2026-04-20T11:26:31.958350Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 60, 207, 254, 255, 18, 247, 70, 126, 72, 20, 130, 255, 1, 52, 206, 198, 206, 196, 166, 59, 153, 90, 151, 115, 141, 79, 227, 37, 85, 52, 117, 192, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 112, 224, 58, 109, 161, 0, 208, 80, 92, 224, 3, 181, 154, 73, 132, 252, 90, 172, 47, 130, 43, 168, 240, 136, 125, 185, 53, 199, 86, 169, 7, 110, 162, 118, 10, 155, 223, 250, 58, 43, 16, 83, 30, 165, 165, 200, 187, 159, 66, 119, 216, 155, 72, 23, 31, 203, 3, 183, 198, 246, 8, 0, 247, 84, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:32.018738Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:32.018782Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:32.083131Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:32.117797Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nDj6tfhbS7-c0MQ6Lp7r3g==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:32.120618Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nDj6tfhbS7-c0MQ6Lp7r3g==: stderr: -2026-04-20T11:26:32.120642Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nDj6tfhbS7-c0MQ6Lp7r3g==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:32.120652Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nDj6tfhbS7-c0MQ6Lp7r3g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:32.120658Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nDj6tfhbS7-c0MQ6Lp7r3g==: stderr: stack backtrace: -2026-04-20T11:26:32.120665Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nDj6tfhbS7-c0MQ6Lp7r3g==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:32.120671Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nDj6tfhbS7-c0MQ6Lp7r3g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:32.120763Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:32.121548Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:32.121836Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:32.187598Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:32.187639Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:32.187824Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:32.187974Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:32.188056Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:32.188451Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=523 blob_id=2147879635021777385297419308108171846 -2026-04-20T11:26:32.739017Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SzFe8eamS_WvO1qccaNFXQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:32.746339Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:32.757267Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1097243 cycles -2026-04-20T11:26:32.759731Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 44, 193, 44, 81, 232, 223, 73, 223, 149, 235, 119, 189, 195, 207, 82, 232, 171, 3, 26, 75, 17, 195, 212, 69, 26, 175, 127, 40, 67, 41, 13, 18, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 102, 64, 168, 197, 132, 70, 156, 138, 66, 216, 2, 110, 64, 126, 36, 114, 204, 151, 147, 72, 254, 165, 112, 219, 188, 52, 106, 140, 107, 159, 1, 228, 67, 203, 220, 217, 97, 143, 156, 168, 47, 45, 234, 213, 178, 185, 99, 85, 74, 161, 148, 221, 47, 5, 37, 104, 179, 238, 61, 160, 208, 243, 149, 16, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:32.820817Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:32.820860Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:32.894799Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:32.931213Z DEBUG sp1_core_executor_runner::native: CHILD sp1_p9GpXTckRpG5xjJxb8ZwTg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:32.934045Z DEBUG sp1_core_executor_runner::native: CHILD sp1_p9GpXTckRpG5xjJxb8ZwTg==: stderr: -2026-04-20T11:26:32.934069Z DEBUG sp1_core_executor_runner::native: CHILD sp1_p9GpXTckRpG5xjJxb8ZwTg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:32.934079Z DEBUG sp1_core_executor_runner::native: CHILD sp1_p9GpXTckRpG5xjJxb8ZwTg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:32.934086Z DEBUG sp1_core_executor_runner::native: CHILD sp1_p9GpXTckRpG5xjJxb8ZwTg==: stderr: stack backtrace: -2026-04-20T11:26:32.934093Z DEBUG sp1_core_executor_runner::native: CHILD sp1_p9GpXTckRpG5xjJxb8ZwTg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:32.934099Z DEBUG sp1_core_executor_runner::native: CHILD sp1_p9GpXTckRpG5xjJxb8ZwTg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:32.934160Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:32.934965Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:32.935289Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:33.001228Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:33.001271Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:33.001437Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:33.001608Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:33.001671Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:33.002096Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=524 blob_id=2147879636005854493063716605345955379 -2026-04-20T11:26:33.553558Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Cx2WlpiXR-KQxHmP6wzSgg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:33.560435Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:33.571047Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1034602 cycles -2026-04-20T11:26:33.573695Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 64, 199, 206, 146, 208, 168, 45, 90, 159, 142, 59, 17, 84, 220, 123, 187, 114, 183, 135, 69, 244, 251, 9, 249, 155, 131, 111, 86, 110, 222, 97, 166, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 98, 56, 28, 108, 34, 33, 78, 60, 179, 43, 181, 62, 187, 252, 49, 221, 49, 75, 191, 190, 135, 203, 212, 187, 245, 17, 142, 72, 180, 190, 91, 151, 28, 24, 251, 235, 49, 85, 245, 50, 251, 37, 149, 53, 197, 75, 47, 60, 93, 237, 151, 198, 105, 75, 30, 7, 186, 93, 5, 193, 36, 232, 70, 62, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:33.630726Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:33.630767Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:33.709899Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:33.744522Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pclE9s3XSKa-wLN4fmVvDw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:33.747359Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pclE9s3XSKa-wLN4fmVvDw==: stderr: -2026-04-20T11:26:33.747383Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pclE9s3XSKa-wLN4fmVvDw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:33.747393Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pclE9s3XSKa-wLN4fmVvDw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:33.747474Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pclE9s3XSKa-wLN4fmVvDw==: stderr: stack backtrace: -2026-04-20T11:26:33.747481Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pclE9s3XSKa-wLN4fmVvDw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:33.747487Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pclE9s3XSKa-wLN4fmVvDw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:33.747573Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:33.748297Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:33.748627Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:33.815107Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:33.815149Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:33.815348Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:33.815511Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:33.815569Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:33.816149Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=525 blob_id=2147879636989869344136512071515360241 -2026-04-20T11:26:34.352370Z DEBUG sp1_core_executor_runner::native: CHILD sp1_duSSQBR1TMKBjDZZk6WEkg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:34.359589Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:34.369055Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1068510 cycles -2026-04-20T11:26:34.371518Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 100, 34, 252, 109, 255, 181, 0, 53, 199, 56, 100, 28, 138, 152, 181, 198, 53, 43, 0, 178, 68, 255, 103, 111, 44, 163, 83, 24, 190, 192, 104, 248, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 62, 185, 242, 14, 46, 15, 86, 7, 81, 212, 82, 218, 54, 156, 240, 2, 123, 144, 147, 163, 100, 99, 222, 89, 250, 39, 231, 241, 194, 84, 72, 74, 71, 93, 43, 206, 103, 17, 215, 81, 39, 215, 81, 138, 218, 120, 171, 48, 181, 69, 217, 67, 162, 146, 132, 60, 29, 61, 225, 193, 208, 32, 141, 67, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:34.432932Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:34.432974Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:34.524285Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:34.559006Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yTI2L3FvSHqDjpYQr2HfHA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:34.561865Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yTI2L3FvSHqDjpYQr2HfHA==: stderr: -2026-04-20T11:26:34.561880Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yTI2L3FvSHqDjpYQr2HfHA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:34.561888Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yTI2L3FvSHqDjpYQr2HfHA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:34.561894Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yTI2L3FvSHqDjpYQr2HfHA==: stderr: stack backtrace: -2026-04-20T11:26:34.561901Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yTI2L3FvSHqDjpYQr2HfHA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:34.561907Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yTI2L3FvSHqDjpYQr2HfHA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:34.562082Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:34.562805Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:34.563099Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:34.629573Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:34.629614Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:34.629786Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:34.629903Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:34.629971Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:34.630309Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=526 blob_id=2147879637973958333973070897071494729 -2026-04-20T11:26:35.139473Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=8 height=465 prev_hash=0x417c4fff2a6287326d7c35ef8f602b8d1bcf20347cf4a6604f0fdaea0b10d0d7 hash=0x631a8a7e2df024b841cc3497502092b191fb25c14e81df99e648b44ec59289ec producing_time=1.165493ms -2026-04-20T11:26:35.144301Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=465 current_state_root="7e10602fedde92d46b3ac4d75b2f513c609f00b34c3f6dadf256b5e3031f82de0f670638924ad7adacad464ce6c764a27493936060c4eeca6672fc50cb8d96cc" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe36dd299822f2266e9ef3faa7e97364de21406325d68368b83c1585643f4869c"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xb248b35ab11ef63cb2e1db499c620654ef6c611e06d43d6f90261a6a27b02e2a, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x6fdcb677244768829fab33aefd0cae75381a292efd87e66e76cdc3face5edcae, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x7bcea4f768e17a74c5e467a680ce9d6cea85e8121d9ab2b1741818e73e036821, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x6d45062d05fd2eb7f9435b56a9198cb61780016ae55d85b69de3f129cdfbf5de, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd14f9fc22ef46ee447fc9444998671f4ccad08e7c067e74da2ac84b79cbebca8, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xfb5d981580772a4b0f5e8c463ad065da6c843f43d206d980212ff41263ec5a00, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x3b4a8b09b5e25ba15d5b85d9d17a57c28f62f6348626fe0871d9f7e8ae391402, len=625"] -2026-04-20T11:26:35.144806Z DEBUG StfBlueprint::apply_slot{context=Node da_height=465}: sov_chain_state: Setting next visible slot number next_visible_slot_number=410 -2026-04-20T11:26:35.145205Z DEBUG StfBlueprint::apply_slot{context=Node da_height=465}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xe36dd299822f2266e9ef3faa7e97364de21406325d68368b83c1585643f4869c}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=8 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:26:35.145433Z DEBUG StfBlueprint::apply_slot{context=Node da_height=465}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7e10602fedde92d46b3ac4d75b2f513c609f00b34c3f6dadf256b5e3031f82de0f670638924ad7adacad464ce6c764a27493936060c4eeca6672fc50cb8d96cc next_version=465 sesssion_starting_time=48.249µs -2026-04-20T11:26:35.146632Z DEBUG StfBlueprint::apply_slot{context=Node da_height=465}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=0ec9dca990fa552b3d6654b941ea8b770cfdcbd7c20d7fb9c2929441576bee846f9898d2ecd93693f6d96393d11660fcadf8104df2430ddb6012340adc790bd8 next_version=465 time=1.321872ms accesses_build_time=73.81µs finishing_session_time=1.166013ms -2026-04-20T11:26:35.146847Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="a54425182744701fa18c1e2510bd7a3438634ce953b2d4accda7958e4b66ebab" -2026-04-20T11:26:35.146863Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="97a6a58475568f3543643744adce3bd8af4f46979cb459f3a67cbbe0a4f15205" -2026-04-20T11:26:35.146872Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="453cbbd99925427104b44ec093d1b9f4efab0bb6696e8eab58b989cebdeb8eb3" -2026-04-20T11:26:35.146881Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="378f15a0364ba4076ce7d7b96a7fbdae697cb9bbc0440084dcc52119f85479d2" -2026-04-20T11:26:35.146889Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="819a68dbe50052e16d7c3579502b2093804ac5d4f4279d5df00571d8d5ff0fd5" -2026-04-20T11:26:35.146898Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="da9e6f367f1a0967d63546c94be31cb86d059e75690c586e4d824dafa6aca59b" -2026-04-20T11:26:35.146906Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="8fa202e3b3e8d31b8630ae85b768000b039c8f37f31e901e0d01589c1ecb883c" -2026-04-20T11:26:35.146914Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="38b96e90c52100191fc872448c45e95e5f47bde9368db90b08066cf0f3e9169a" -2026-04-20T11:26:35.146926Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="7da36407817f53799740d410ce439c26e4c12a746fb8b551a96f321375b1bbe557dd03fcdfd616111680c7d8fa1441902f8abd9c18017d49277d03bf389e56e9" next_state_root="0ec9dca990fa552b3d6654b941ea8b770cfdcbd7c20d7fb9c2929441576bee846f9898d2ecd93693f6d96393d11660fcadf8104df2430ddb6012340adc790bd8" aggregated_proofs=0 proof_receipts=8 -2026-04-20T11:26:35.147468Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=6 min=5 max=6 -2026-04-20T11:26:35.147518Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:26:35.147585Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=135 -2026-04-20T11:26:35.147734Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=420 -2026-04-20T11:26:35.148021Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:26:35.148491Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=420 sequence_number=527 -2026-04-20T11:26:35.148520Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=527 blob_id=2147879638601352758660848249998007880 visible_slot_number_after_increase=420 visible_slots_to_advance=10 -2026-04-20T11:26:35.148546Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=7 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:26:35.148781Z  INFO update_state_task_inner: sov_sequencer::preferred: Recovery: catchup batches sent; sequencer will now wait for the node to process them. We will then re-evaluate if we need to catch up again (if there are so many batches that by the time the node catches up we need to bump the visible_slot_number some more). target_sequence_number=528 -2026-04-20T11:26:35.148828Z DEBUG update_state_task_inner: sov_sequencer::preferred: Recovery: waiting for the node to process sequencer's catchup batches... next_sequence_number_according_to_node=520 target_sequence_number=528 -2026-04-20T11:26:35.150261Z DEBUG manage_blob_submission_inside_task{blob_id=2147879638601352758660848249998007880 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xbbe99531d16dee71949ea07d0505a4adbeb3dbcf14cb2784f1714ea12ee40140 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=466 include_at=466 bytes=13 time=544.226µs -2026-04-20T11:26:35.161548Z DEBUG compute_state_update{scope="sequencer" rollup_height=140 slot_number=420}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:26:35.161578Z DEBUG compute_state_update{scope="sequencer" rollup_height=140 slot_number=420}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:26:35.161583Z DEBUG sov_stf_runner::runner: Block execution complete time=5.998941675s -2026-04-20T11:26:35.161605Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:26:35.161640Z DEBUG compute_state_update{scope="sequencer" rollup_height=140 slot_number=420}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e8619f4a51c2368e79f3ef4bb0b9aafee8dd264cd0be0ebab5a088ecbdb98f10ea34c6077d648eaa9d5dc453ea3b9cc9d5ae7abb3b7d7bf161af226c8c1d21f next_version=460 sesssion_starting_time=12.579699ms -2026-04-20T11:26:35.163141Z DEBUG compute_state_update{scope="sequencer" rollup_height=140 slot_number=420}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430832c1730392fe8c84251b0a6d324a107d9d4dad71e77ca638b9d3b07bca8e2711 next_version=460 time=14.142438ms accesses_build_time=61.729µs finishing_session_time=1.455881ms -2026-04-20T11:26:35.179083Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AoTMCMQNSUCIdSuIw3C79A==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:35.186343Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:35.196287Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1092267 cycles -2026-04-20T11:26:35.198819Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 80, 216, 77, 150, 39, 160, 118, 214, 47, 40, 246, 47, 242, 93, 243, 204, 47, 199, 68, 128, 155, 158, 52, 169, 12, 86, 123, 120, 105, 202, 23, 174, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 6, 180, 92, 173, 230, 135, 144, 208, 129, 79, 61, 103, 46, 159, 17, 9, 242, 236, 121, 236, 73, 113, 134, 164, 231, 216, 128, 121, 42, 109, 236, 62, 34, 114, 10, 47, 226, 122, 33, 222, 109, 155, 0, 38, 180, 140, 90, 88, 30, 207, 207, 113, 217, 121, 0, 192, 66, 119, 153, 191, 115, 247, 96, 58, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:35.261309Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:35.261354Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:35.337380Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:35.372252Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zS8QoZtoTqucOkd5pFJWLQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:35.375071Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zS8QoZtoTqucOkd5pFJWLQ==: stderr: -2026-04-20T11:26:35.375084Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zS8QoZtoTqucOkd5pFJWLQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:35.375093Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zS8QoZtoTqucOkd5pFJWLQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:35.375102Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zS8QoZtoTqucOkd5pFJWLQ==: stderr: stack backtrace: -2026-04-20T11:26:35.375108Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zS8QoZtoTqucOkd5pFJWLQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:35.375128Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zS8QoZtoTqucOkd5pFJWLQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:35.375244Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:35.376034Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:35.376338Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:35.426082Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:35.426111Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:35.426299Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:35.426456Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:35.426535Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:35.426845Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=528 blob_id=2147879638937496414058638175316560079 -2026-04-20T11:26:35.982813Z DEBUG sp1_core_executor_runner::native: CHILD sp1_26J4fPENQSKYlnHJUqE2LQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:35.990128Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:36.000606Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1083327 cycles -2026-04-20T11:26:36.003058Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 56, 84, 160, 212, 65, 200, 33, 120, 227, 66, 218, 149, 53, 34, 151, 228, 239, 215, 15, 26, 33, 206, 242, 78, 46, 236, 231, 36, 50, 215, 203, 40, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 83, 69, 253, 20, 1, 39, 52, 3, 164, 238, 147, 52, 48, 78, 102, 192, 203, 175, 80, 235, 119, 7, 111, 58, 147, 142, 125, 7, 198, 153, 81, 198, 218, 232, 13, 210, 42, 47, 191, 111, 168, 83, 31, 108, 238, 58, 35, 162, 177, 105, 169, 177, 183, 114, 193, 175, 116, 91, 207, 15, 254, 235, 112, 11, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:36.063471Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:36.063506Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:36.135429Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:36.170358Z DEBUG sp1_core_executor_runner::native: CHILD sp1_w11z4v_bQoqCJziJ31IJOQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:36.173182Z DEBUG sp1_core_executor_runner::native: CHILD sp1_w11z4v_bQoqCJziJ31IJOQ==: stderr: -2026-04-20T11:26:36.173207Z DEBUG sp1_core_executor_runner::native: CHILD sp1_w11z4v_bQoqCJziJ31IJOQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:36.173216Z DEBUG sp1_core_executor_runner::native: CHILD sp1_w11z4v_bQoqCJziJ31IJOQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:36.173223Z DEBUG sp1_core_executor_runner::native: CHILD sp1_w11z4v_bQoqCJziJ31IJOQ==: stderr: stack backtrace: -2026-04-20T11:26:36.173230Z DEBUG sp1_core_executor_runner::native: CHILD sp1_w11z4v_bQoqCJziJ31IJOQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:36.173236Z DEBUG sp1_core_executor_runner::native: CHILD sp1_w11z4v_bQoqCJziJ31IJOQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:36.173363Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:36.174035Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:36.174351Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:36.241594Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:36.241635Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:36.241787Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:36.241947Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:36.242013Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:36.242387Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=529 blob_id=2147879639922740499144011940787715935 -2026-04-20T11:26:36.786502Z DEBUG sp1_core_executor_runner::native: CHILD sp1_u8EXCASjRK61PXxb_iXe6w==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:36.793679Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:36.803686Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1074150 cycles -2026-04-20T11:26:36.806311Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 58, 42, 186, 133, 189, 23, 219, 237, 95, 31, 187, 114, 94, 70, 234, 31, 243, 95, 226, 190, 66, 215, 97, 91, 52, 170, 249, 164, 175, 65, 94, 0, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 77, 94, 199, 190, 121, 170, 127, 26, 109, 191, 223, 14, 203, 10, 105, 202, 100, 28, 124, 186, 64, 25, 0, 30, 26, 242, 217, 107, 237, 223, 42, 84, 124, 15, 31, 53, 90, 55, 125, 226, 227, 230, 12, 67, 104, 106, 104, 242, 146, 230, 133, 142, 94, 91, 37, 183, 236, 235, 150, 27, 116, 34, 73, 247, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:36.866424Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:36.866469Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:36.950253Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:36.985190Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PGOzYXvLT6-qOoLdoOwUuw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:36.988026Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PGOzYXvLT6-qOoLdoOwUuw==: stderr: -2026-04-20T11:26:36.988050Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PGOzYXvLT6-qOoLdoOwUuw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:36.988060Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PGOzYXvLT6-qOoLdoOwUuw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:36.988067Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PGOzYXvLT6-qOoLdoOwUuw==: stderr: stack backtrace: -2026-04-20T11:26:36.988074Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PGOzYXvLT6-qOoLdoOwUuw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:36.988080Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PGOzYXvLT6-qOoLdoOwUuw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:36.988212Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:36.988953Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:36.989267Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:37.056134Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:37.056176Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:37.056366Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:37.056555Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:37.056622Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:37.057038Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=530 blob_id=2147879640907998865507384344722882686 -2026-04-20T11:26:37.605504Z DEBUG sp1_core_executor_runner::native: CHILD sp1_brJEkBV1S92qaIyCl3HxTg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:37.612634Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:37.622675Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1072648 cycles -2026-04-20T11:26:37.625362Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 31, 53, 184, 60, 184, 232, 167, 213, 29, 110, 119, 165, 177, 129, 33, 186, 77, 240, 197, 29, 192, 130, 68, 158, 194, 142, 49, 47, 2, 153, 152, 17, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 23, 120, 56, 19, 47, 65, 109, 223, 25, 240, 89, 194, 154, 149, 213, 195, 164, 191, 131, 51, 189, 23, 32, 94, 117, 140, 38, 112, 152, 164, 68, 254, 165, 7, 108, 135, 108, 145, 185, 3, 192, 29, 94, 33, 184, 236, 23, 179, 75, 185, 1, 92, 60, 216, 3, 186, 145, 81, 217, 18, 47, 73, 14, 22, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:37.685588Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:37.685629Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:37.765243Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:37.799566Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SdvyQVcNQ5ysbDdSof9PDg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:37.802391Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SdvyQVcNQ5ysbDdSof9PDg==: stderr: -2026-04-20T11:26:37.802405Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SdvyQVcNQ5ysbDdSof9PDg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:37.802414Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SdvyQVcNQ5ysbDdSof9PDg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:37.802421Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SdvyQVcNQ5ysbDdSof9PDg==: stderr: stack backtrace: -2026-04-20T11:26:37.802427Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SdvyQVcNQ5ysbDdSof9PDg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:37.802446Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SdvyQVcNQ5ysbDdSof9PDg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:37.802609Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:37.803377Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:37.803669Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:37.876783Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:37.876829Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:37.877040Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:37.877196Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:37.877255Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:37.877758Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=531 blob_id=2147879641900510122983469976511472638 -2026-04-20T11:26:38.425538Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Jl_3e2GbRqCilr3SJdEUtQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:38.432698Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:38.442407Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1078585 cycles -2026-04-20T11:26:38.445060Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 62, 171, 157, 249, 193, 68, 60, 71, 52, 46, 202, 217, 147, 36, 66, 163, 8, 43, 113, 96, 239, 67, 49, 1, 122, 59, 219, 191, 46, 245, 132, 44, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 76, 187, 102, 207, 211, 22, 30, 173, 201, 235, 188, 3, 15, 152, 99, 19, 86, 122, 185, 156, 41, 74, 109, 93, 222, 128, 40, 243, 6, 211, 120, 71, 54, 221, 116, 81, 48, 182, 171, 9, 37, 116, 63, 235, 230, 200, 191, 196, 133, 62, 192, 78, 143, 154, 196, 110, 75, 144, 130, 234, 70, 62, 50, 15, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:38.504886Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:38.504930Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:38.585794Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:38.622073Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ZaRXV2hJS_mivzEmHvp11g==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:38.624899Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ZaRXV2hJS_mivzEmHvp11g==: stderr: -2026-04-20T11:26:38.624924Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ZaRXV2hJS_mivzEmHvp11g==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:38.624934Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ZaRXV2hJS_mivzEmHvp11g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:38.624941Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ZaRXV2hJS_mivzEmHvp11g==: stderr: stack backtrace: -2026-04-20T11:26:38.624947Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ZaRXV2hJS_mivzEmHvp11g==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:38.624954Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ZaRXV2hJS_mivzEmHvp11g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:38.625051Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:38.625814Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:38.625968Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:38.694685Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:38.694726Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:38.694871Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:38.695036Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:38.695100Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:38.695491Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=532 blob_id=2147879642888258316846404191239506045 -2026-04-20T11:26:39.252372Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XSQljLDfTkGffJ75yQosQg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:39.259467Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:39.269018Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1067082 cycles -2026-04-20T11:26:39.271682Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 54, 54, 215, 222, 39, 143, 235, 161, 228, 29, 123, 57, 147, 224, 84, 119, 49, 20, 18, 214, 12, 116, 66, 57, 166, 44, 100, 88, 38, 49, 145, 241, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 62, 87, 85, 224, 6, 96, 100, 87, 51, 137, 151, 170, 42, 250, 211, 103, 3, 198, 162, 240, 201, 35, 84, 159, 20, 179, 169, 134, 48, 87, 236, 117, 3, 231, 61, 215, 178, 149, 20, 157, 109, 33, 113, 69, 44, 253, 52, 40, 47, 141, 66, 184, 8, 190, 163, 27, 67, 6, 240, 92, 133, 139, 107, 146, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:39.331838Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:39.331880Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:39.401919Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:39.435814Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BfLl8A2ASSWgq89487350g==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:39.438637Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BfLl8A2ASSWgq89487350g==: stderr: -2026-04-20T11:26:39.438662Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BfLl8A2ASSWgq89487350g==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:39.438673Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BfLl8A2ASSWgq89487350g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:39.438680Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BfLl8A2ASSWgq89487350g==: stderr: stack backtrace: -2026-04-20T11:26:39.438686Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BfLl8A2ASSWgq89487350g==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:39.438693Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BfLl8A2ASSWgq89487350g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:39.438779Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:39.439549Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:39.439838Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:39.505294Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:39.505340Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:39.505477Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:39.505640Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:39.505724Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:39.506075Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=533 blob_id=2147879643868710698834954577073262823 -2026-04-20T11:26:40.054241Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VvH9h8ZDTbCr5YZD8agEgg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:40.060885Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:40.071217Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1011260 cycles -2026-04-20T11:26:40.073921Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 7, 244, 191, 153, 19, 222, 113, 102, 49, 140, 79, 63, 30, 223, 92, 201, 78, 1, 250, 160, 110, 243, 135, 69, 206, 241, 192, 4, 199, 139, 156, 67, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 44, 78, 176, 142, 103, 75, 111, 107, 94, 186, 93, 219, 56, 11, 155, 15, 64, 129, 13, 199, 0, 2, 201, 48, 184, 84, 166, 239, 118, 106, 195, 151, 92, 153, 56, 144, 56, 237, 11, 26, 188, 56, 113, 129, 229, 6, 27, 29, 230, 136, 221, 55, 239, 232, 81, 6, 46, 66, 124, 122, 223, 51, 217, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:40.130212Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:40.130256Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:40.213464Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:40.248001Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QiUJbHSKSseuVTNYhmpIIw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:40.250828Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QiUJbHSKSseuVTNYhmpIIw==: stderr: -2026-04-20T11:26:40.250841Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QiUJbHSKSseuVTNYhmpIIw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:40.250849Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QiUJbHSKSseuVTNYhmpIIw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:40.250858Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QiUJbHSKSseuVTNYhmpIIw==: stderr: stack backtrace: -2026-04-20T11:26:40.250864Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QiUJbHSKSseuVTNYhmpIIw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:40.250870Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QiUJbHSKSseuVTNYhmpIIw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:40.250967Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:40.251802Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:40.252109Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:40.319115Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:40.319157Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:40.319284Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:40.319408Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:40.319489Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:40.319827Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=534 blob_id=2147879644852744143735088748757896978 -2026-04-20T11:26:40.884498Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9H8wYywIQeyE_DCPfQf6Ng==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:40.891634Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:40.902306Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1062510 cycles -2026-04-20T11:26:40.904955Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 9, 13, 87, 93, 26, 143, 24, 86, 74, 59, 234, 161, 244, 212, 2, 1, 245, 196, 55, 86, 86, 124, 181, 204, 86, 232, 169, 207, 234, 87, 6, 82, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 103, 23, 25, 0, 149, 87, 67, 48, 133, 115, 111, 220, 128, 225, 176, 187, 66, 90, 165, 106, 226, 53, 250, 104, 127, 187, 232, 144, 3, 199, 63, 103, 243, 183, 21, 99, 23, 137, 95, 145, 106, 218, 116, 112, 189, 60, 45, 175, 109, 176, 4, 69, 8, 189, 245, 97, 198, 148, 186, 211, 55, 204, 137, 60, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:40.963125Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:40.963166Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:41.027211Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:41.061689Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yQUTD56dQQ-K_VrDtkoeiQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:41.064563Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yQUTD56dQQ-K_VrDtkoeiQ==: stderr: -2026-04-20T11:26:41.064588Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yQUTD56dQQ-K_VrDtkoeiQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:41.064598Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yQUTD56dQQ-K_VrDtkoeiQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:41.064605Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yQUTD56dQQ-K_VrDtkoeiQ==: stderr: stack backtrace: -2026-04-20T11:26:41.064611Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yQUTD56dQQ-K_VrDtkoeiQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:41.064618Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yQUTD56dQQ-K_VrDtkoeiQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:41.064747Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:41.065511Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:41.065800Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:41.132929Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:41.132969Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:41.133112Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:41.133262Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:41.133350Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:41.133744Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=535 blob_id=2147879645836841970188965489373811406 -2026-04-20T11:26:41.142141Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=9 height=466 prev_hash=0x631a8a7e2df024b841cc3497502092b191fb25c14e81df99e648b44ec59289ec hash=0xc95fc746526f7aff0ee9d8564805f9f053a1632b8531ca3148d8589f47beba14 producing_time=970.504µs -2026-04-20T11:26:41.143788Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=466 current_state_root="0ec9dca990fa552b3d6654b941ea8b770cfdcbd7c20d7fb9c2929441576bee846f9898d2ecd93693f6d96393d11660fcadf8104df2430ddb6012340adc790bd8" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xbbe99531d16dee71949ea07d0505a4adbeb3dbcf14cb2784f1714ea12ee40140"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xff507eb59b11f53179690751521ef5d676eba25f87623bdc3d3672833324df8c, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd2cdacda0022f16ac221bb7a060f9be928686a564bb13e292e01255babe2ff70, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xaf48871c82103ba455ed36740f7e5b1bcaec86dc50c2e499409bcfab11bafa92, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x5ac4a2fed8674cce7c22184130aef4640186b1f4cdb13b92de6059eca0d1dd57, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x6242f78f67e2be4961e191a1313821f8d03b457a26abf3cc751f57ba242438c1, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x5f354c93a4ca18fd53a8c8626d416877ad5adfa38c648d281cf8fbf0c422ad5e, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x5dbbd6f9bddc5a065ee07855f0649ebd5159173a9033902b9cda9f445ee41a51, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xdd4ca96327caa62283b9f895a40159b3423ad77b93bba9788e83e4d94600d24c, len=625"] -2026-04-20T11:26:41.144233Z DEBUG StfBlueprint::apply_slot{context=Node da_height=466}: sov_chain_state: Setting next visible slot number next_visible_slot_number=420 -2026-04-20T11:26:41.144606Z DEBUG StfBlueprint::apply_slot{context=Node da_height=466}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xbbe99531d16dee71949ea07d0505a4adbeb3dbcf14cb2784f1714ea12ee40140}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=7 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:26:41.144831Z DEBUG StfBlueprint::apply_slot{context=Node da_height=466}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0ec9dca990fa552b3d6654b941ea8b770cfdcbd7c20d7fb9c2929441576bee846f9898d2ecd93693f6d96393d11660fcadf8104df2430ddb6012340adc790bd8 next_version=466 sesssion_starting_time=45.38µs -2026-04-20T11:26:41.145907Z DEBUG StfBlueprint::apply_slot{context=Node da_height=466}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430808ff317d7a14a61366c1068099ecafcdc36f9c9b01d0c9434f7a3ad9d16fc56f next_version=466 time=1.181253ms accesses_build_time=58.19µs finishing_session_time=1.048643ms -2026-04-20T11:26:41.146103Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="b248b35ab11ef63cb2e1db499c620654ef6c611e06d43d6f90261a6a27b02e2a" -2026-04-20T11:26:41.146137Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="6fdcb677244768829fab33aefd0cae75381a292efd87e66e76cdc3face5edcae" -2026-04-20T11:26:41.146149Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="7bcea4f768e17a74c5e467a680ce9d6cea85e8121d9ab2b1741818e73e036821" -2026-04-20T11:26:41.146161Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="6d45062d05fd2eb7f9435b56a9198cb61780016ae55d85b69de3f129cdfbf5de" -2026-04-20T11:26:41.146172Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="d14f9fc22ef46ee447fc9444998671f4ccad08e7c067e74da2ac84b79cbebca8" -2026-04-20T11:26:41.146181Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="fb5d981580772a4b0f5e8c463ad065da6c843f43d206d980212ff41263ec5a00" -2026-04-20T11:26:41.146190Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="3b4a8b09b5e25ba15d5b85d9d17a57c28f62f6348626fe0871d9f7e8ae391402" -2026-04-20T11:26:41.146201Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="7e10602fedde92d46b3ac4d75b2f513c609f00b34c3f6dadf256b5e3031f82de0f670638924ad7adacad464ce6c764a27493936060c4eeca6672fc50cb8d96cc" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430808ff317d7a14a61366c1068099ecafcdc36f9c9b01d0c9434f7a3ad9d16fc56f" aggregated_proofs=0 proof_receipts=7 -2026-04-20T11:26:41.146729Z DEBUG update_state_task_inner: sov_sequencer::preferred: Recovery: waiting for the node to process sequencer's catchup batches... next_sequence_number_according_to_node=528 target_sequence_number=528 -2026-04-20T11:26:41.146763Z  INFO update_state_task_inner: sov_sequencer::preferred: Node sequence number caught up to our recovery batches. The sequencer may have finished recovery, or we may need to send another round of batches if catching up this far took too long -2026-04-20T11:26:41.146820Z DEBUG update_state_task_inner: sov_sequencer::preferred: Calculating amount of batches to send deferred_slots_count=109 maximum_delta=54 minimum_delta=43 current_catchup_delta=45 current_visible_slot_number=420 increase_per_batch=10 -2026-04-20T11:26:41.146835Z  INFO update_state_task_inner: sov_sequencer::preferred: Recovery: no need to send any more batches! min_batches_to_send=0 max_batches_to_send=1 -2026-04-20T11:26:41.146848Z  INFO update_state_task_inner: sov_sequencer::preferred: Sequencer exiting recovery and resuming normal operation. info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 466, latest_finalized_slot_number: 465, sync_status: Synced { synced_da_height: 465 }, .. } -2026-04-20T11:26:41.146941Z DEBUG sov_sequencer::preferred::block_executor: Replacing state for block executor old=019daaa3-dde0-7ac1-83c9-91af1797ea01 new=019daaa4-81fa-7941-80c2-6855670cdda3 -2026-04-20T11:26:41.160990Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999386613s -2026-04-20T11:26:41.161017Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:26:41.679566Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9GmuKuqLSRaFnqqJTugyKQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:41.686415Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:41.696832Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1043882 cycles -2026-04-20T11:26:41.699574Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 9, 20, 47, 182, 177, 248, 160, 211, 136, 195, 1, 111, 46, 6, 18, 94, 177, 243, 14, 53, 244, 51, 186, 198, 121, 127, 118, 6, 233, 139, 33, 106, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 63, 249, 119, 106, 200, 91, 52, 75, 230, 133, 213, 61, 171, 192, 190, 157, 129, 141, 122, 89, 95, 70, 110, 103, 136, 37, 7, 151, 232, 122, 109, 181, 6, 150, 144, 103, 215, 43, 82, 152, 61, 42, 43, 203, 192, 247, 36, 15, 56, 3, 234, 217, 67, 230, 109, 184, 37, 59, 2, 65, 102, 179, 114, 187, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:41.757660Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:41.757711Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:41.840212Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:41.874646Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1_69xY1USQaC_CL4e15BZw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:41.877486Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1_69xY1USQaC_CL4e15BZw==: stderr: -2026-04-20T11:26:41.877512Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1_69xY1USQaC_CL4e15BZw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:41.877522Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1_69xY1USQaC_CL4e15BZw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:41.877529Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1_69xY1USQaC_CL4e15BZw==: stderr: stack backtrace: -2026-04-20T11:26:41.877535Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1_69xY1USQaC_CL4e15BZw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:41.877543Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1_69xY1USQaC_CL4e15BZw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:41.877638Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:41.878399Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:41.878691Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:41.946458Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:41.946499Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:41.946663Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:41.946805Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:41.946867Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:41.947189Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=536 blob_id=2147879646819659387553245971431934326 -2026-04-20T11:26:42.492041Z DEBUG sp1_core_executor_runner::native: CHILD sp1_dDbXoHwWR0mJDaG_hOZLpA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:42.499110Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:42.508569Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1070950 cycles -2026-04-20T11:26:42.511278Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 124, 206, 9, 83, 134, 202, 160, 26, 66, 23, 179, 98, 163, 20, 20, 204, 252, 27, 231, 84, 134, 136, 51, 94, 181, 177, 183, 206, 232, 84, 16, 211, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 122, 232, 214, 81, 37, 116, 175, 21, 77, 78, 192, 24, 197, 4, 198, 161, 50, 210, 65, 183, 37, 176, 150, 240, 97, 24, 209, 237, 65, 38, 124, 157, 149, 153, 29, 13, 74, 84, 181, 170, 163, 94, 99, 122, 81, 197, 153, 184, 62, 185, 167, 228, 246, 54, 213, 158, 44, 141, 34, 165, 23, 175, 255, 175, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:42.571351Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:42.571394Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:42.654968Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:42.689449Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yz1sEsxgR1mfs1SqWk1Oog==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:42.692284Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yz1sEsxgR1mfs1SqWk1Oog==: stderr: -2026-04-20T11:26:42.692297Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yz1sEsxgR1mfs1SqWk1Oog==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:42.692305Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yz1sEsxgR1mfs1SqWk1Oog==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:42.692323Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yz1sEsxgR1mfs1SqWk1Oog==: stderr: stack backtrace: -2026-04-20T11:26:42.692331Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yz1sEsxgR1mfs1SqWk1Oog==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:42.692337Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yz1sEsxgR1mfs1SqWk1Oog==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:42.692468Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:42.693179Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:42.693494Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:42.759919Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:42.759961Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:42.760137Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:42.760263Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:42.760349Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:42.760624Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=537 blob_id=2147879647803727956709847701707835499 -2026-04-20T11:26:43.310379Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yWuarBJBSEWq3S0PlssViQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:43.317355Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:43.326859Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1053478 cycles -2026-04-20T11:26:43.329468Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 34, 11, 8, 147, 97, 151, 212, 235, 166, 76, 20, 154, 147, 132, 203, 124, 164, 191, 69, 13, 153, 99, 144, 112, 52, 34, 0, 77, 146, 42, 154, 218, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 7, 191, 251, 15, 175, 43, 134, 6, 188, 111, 151, 117, 156, 153, 226, 71, 196, 73, 91, 45, 233, 85, 145, 210, 166, 63, 131, 41, 99, 191, 43, 123, 145, 58, 109, 130, 123, 31, 114, 219, 149, 132, 30, 72, 45, 68, 187, 98, 178, 242, 252, 53, 104, 25, 124, 212, 86, 68, 126, 242, 93, 3, 255, 154, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:43.388641Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:43.388682Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:43.467388Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:43.502236Z DEBUG sp1_core_executor_runner::native: CHILD sp1_b84qGJFvR-WD-QlOxFaRcg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:43.505101Z DEBUG sp1_core_executor_runner::native: CHILD sp1_b84qGJFvR-WD-QlOxFaRcg==: stderr: -2026-04-20T11:26:43.505126Z DEBUG sp1_core_executor_runner::native: CHILD sp1_b84qGJFvR-WD-QlOxFaRcg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:43.505136Z DEBUG sp1_core_executor_runner::native: CHILD sp1_b84qGJFvR-WD-QlOxFaRcg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:43.505143Z DEBUG sp1_core_executor_runner::native: CHILD sp1_b84qGJFvR-WD-QlOxFaRcg==: stderr: stack backtrace: -2026-04-20T11:26:43.505149Z DEBUG sp1_core_executor_runner::native: CHILD sp1_b84qGJFvR-WD-QlOxFaRcg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:43.505155Z DEBUG sp1_core_executor_runner::native: CHILD sp1_b84qGJFvR-WD-QlOxFaRcg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:43.505258Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:43.505991Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:43.506286Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:43.573120Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:43.573167Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:43.573347Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:43.573568Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:43.573644Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:43.573987Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=538 blob_id=2147879648786554542712427466025090017 -2026-04-20T11:26:44.124466Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Dr2SwllKTIe74s1wOX5uyg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:44.131647Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:44.140981Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1079674 cycles -2026-04-20T11:26:44.143612Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 68, 48, 111, 213, 101, 233, 132, 216, 42, 216, 80, 96, 228, 46, 243, 25, 235, 122, 201, 218, 77, 242, 104, 243, 149, 249, 143, 232, 156, 228, 214, 12, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 79, 220, 135, 148, 89, 91, 237, 187, 186, 53, 237, 178, 107, 108, 179, 69, 234, 192, 34, 77, 123, 84, 191, 225, 155, 216, 49, 212, 125, 19, 121, 225, 126, 147, 250, 189, 134, 17, 169, 69, 40, 164, 27, 117, 143, 155, 50, 43, 91, 211, 29, 61, 160, 100, 100, 236, 101, 140, 128, 121, 12, 114, 82, 32, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:44.203872Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:44.203914Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:44.281536Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:44.315356Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-6T2yZR6SRmUtmwjv8Rgeg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:44.318174Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-6T2yZR6SRmUtmwjv8Rgeg==: stderr: -2026-04-20T11:26:44.318201Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-6T2yZR6SRmUtmwjv8Rgeg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:44.318212Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-6T2yZR6SRmUtmwjv8Rgeg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:44.318222Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-6T2yZR6SRmUtmwjv8Rgeg==: stderr: stack backtrace: -2026-04-20T11:26:44.318231Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-6T2yZR6SRmUtmwjv8Rgeg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:44.318240Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-6T2yZR6SRmUtmwjv8Rgeg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:44.318362Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:44.319098Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:44.319396Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:44.387689Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:44.387729Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:44.387885Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:44.388038Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:44.388097Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:44.388539Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=539 blob_id=2147879649770671183049906524934775897 -2026-04-20T11:26:44.939770Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LWloG0VUQ1-K0qNSILthBA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:44.947106Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:44.958144Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1094475 cycles -2026-04-20T11:26:44.960687Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 26, 210, 124, 88, 222, 202, 50, 137, 80, 94, 211, 123, 247, 247, 6, 114, 222, 155, 126, 253, 109, 218, 65, 62, 217, 70, 207, 213, 74, 154, 144, 38, 98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 71, 206, 238, 62, 201, 60, 106, 62, 206, 70, 174, 206, 68, 34, 213, 69, 236, 248, 153, 0, 207, 252, 76, 171, 146, 97, 1, 246, 132, 254, 204, 148, 60, 12, 158, 79, 74, 181, 43, 4, 115, 106, 201, 134, 108, 214, 113, 184, 24, 28, 171, 192, 66, 139, 129, 47, 180, 166, 199, 232, 146, 206, 109, 128, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:45.020421Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:45.020464Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:45.094704Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:45.128891Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vR17tS5ERQWwm8Kda_SXMA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:45.131763Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vR17tS5ERQWwm8Kda_SXMA==: stderr: -2026-04-20T11:26:45.131804Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vR17tS5ERQWwm8Kda_SXMA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:45.131814Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vR17tS5ERQWwm8Kda_SXMA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:45.131821Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vR17tS5ERQWwm8Kda_SXMA==: stderr: stack backtrace: -2026-04-20T11:26:45.131827Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vR17tS5ERQWwm8Kda_SXMA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:45.131833Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vR17tS5ERQWwm8Kda_SXMA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:45.131934Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:45.132664Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:45.132956Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:45.199718Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:45.199762Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:45.199946Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:45.200214Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:45.200347Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:45.200617Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=540 blob_id=2147879650752318708206775357494591625 -2026-04-20T11:26:45.761553Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9e4kRi-NTouWJuZDgNnUJA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:45.814860Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:45.828229Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 9195762 cycles -2026-04-20T11:26:45.831148Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 202, 138, 137, 140, 9, 77, 42, 185, 142, 138, 126, 105, 250, 161, 35, 25, 238, 151, 144, 118, 46, 173, 38, 223, 214, 121, 213, 81, 200, 9, 10, 42, 0, 150, 138, 187, 225, 202, 250, 129, 187, 129, 124, 236, 77, 245, 127, 89, 84, 1, 144, 94, 254, 227, 54, 179, 136, 230, 2, 14, 251, 43, 39, 115, 10, 230, 82, 54, 108, 178, 94, 15, 6, 164, 65, 114, 211, 29, 102, 151, 222, 192, 38, 249, 26, 33, 26, 188, 57, 71, 220, 95, 238, 133, 242, 51, 15, 59, 83, 206, 225, 4, 217, 60, 8, 154, 105, 58, 141, 117, 190, 41, 121, 141, 165, 64, 29, 160, 135, 175, 220, 188, 14, 192, 215, 30, 110, 187, 244, 160, 196, 148, 75, 184, 59, 121, 248, 94, 235, 249, 122, 197, 220, 128, 88, 132, 135, 90, 6, 205, 201, 53, 3, 168, 68, 172, 156, 204, 68, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:46.116291Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:46.116332Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:46.210731Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:46.244674Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ggRAqO1FRYavwmYLRY7g7g==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:46.247530Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ggRAqO1FRYavwmYLRY7g7g==: stderr: -2026-04-20T11:26:46.247554Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ggRAqO1FRYavwmYLRY7g7g==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:46.247565Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ggRAqO1FRYavwmYLRY7g7g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:46.247572Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ggRAqO1FRYavwmYLRY7g7g==: stderr: stack backtrace: -2026-04-20T11:26:46.247578Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ggRAqO1FRYavwmYLRY7g7g==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:46.247584Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ggRAqO1FRYavwmYLRY7g7g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:46.247667Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:46.248458Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:46.248762Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:46.320521Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:46.320565Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:46.320739Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:46.320948Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:46.321039Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:46.321359Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=541 blob_id=2147879652107486145697820291390967263 -2026-04-20T11:26:46.878326Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hLspM8CGTUihGYMFnAAX8g==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:46.897931Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:46.908906Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2746867 cycles -2026-04-20T11:26:46.911650Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [74, 194, 121, 137, 120, 246, 83, 241, 195, 54, 226, 183, 162, 158, 147, 160, 227, 185, 158, 137, 56, 134, 107, 194, 138, 107, 232, 56, 227, 200, 213, 173, 115, 36, 184, 219, 61, 139, 154, 136, 14, 34, 115, 52, 222, 177, 197, 165, 183, 118, 235, 208, 146, 72, 249, 0, 145, 81, 224, 112, 183, 19, 66, 205, 93, 44, 33, 25, 207, 4, 233, 144, 219, 219, 75, 155, 6, 112, 1, 121, 10, 213, 249, 18, 65, 136, 6, 119, 62, 44, 63, 202, 224, 202, 185, 239, 45, 118, 9, 110, 24, 249, 83, 146, 187, 200, 200, 6, 227, 58, 97, 43, 243, 122, 193, 95, 194, 160, 89, 120, 180, 187, 92, 40, 32, 193, 125, 198, 191, 90, 51, 88, 44, 41, 193, 40, 11, 199, 7, 30, 24, 253, 152, 155, 1, 66, 36, 225, 63, 182, 150, 211, 7, 2, 79, 243, 29, 218, 161, 23, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:47.027183Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:47.027219Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:47.129923Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:47.143655Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=6 height=467 prev_hash=0xc95fc746526f7aff0ee9d8564805f9f053a1632b8531ca3148d8589f47beba14 hash=0x1ea54acf52b447dd7238b02b34e60ea134c9f1c7003c398fe911788164d84af6 producing_time=1.194123ms -2026-04-20T11:26:47.152454Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=467 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430808ff317d7a14a61366c1068099ecafcdc36f9c9b01d0c9434f7a3ad9d16fc56f" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x402e5968f267c0df7e2f0c756aa1591312692d3d7f4ef897cf66aa28ad24bdc6, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf5e3e4002be2972d55b329cc4cb4fd8d2b2c01103abd4c05a9f75705a0323d4c, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xbadbf54ee6d803a081ede8e29e3223d1f96eae6daf8f1be971ee38f4caf04785, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xb660aee65cbf31dfd648896006b4f31429d3e2f76891cd0085ba76ca4a21968d, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0fd1a78197eebace519783be48aac014464b2526f93a1f9b329d2d6e0f965139, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x08d2b4b6dfc3313c22bd511abf3c1a14c8bb2c962b6d6bf12724d4a219144c51, len=625"] -2026-04-20T11:26:47.152867Z DEBUG StfBlueprint::apply_slot{context=Node da_height=467}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430808ff317d7a14a61366c1068099ecafcdc36f9c9b01d0c9434f7a3ad9d16fc56f next_version=467 sesssion_starting_time=48.93µs -2026-04-20T11:26:47.153723Z DEBUG StfBlueprint::apply_slot{context=Node da_height=467}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943081d7fe46cad2d843ffea6fbfe1296607220aad32d478e72b210fce79bed7cbcb0 next_version=467 time=932.524µs accesses_build_time=26.23µs finishing_session_time=827.455µs -2026-04-20T11:26:47.153789Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="0ec9dca990fa552b3d6654b941ea8b770cfdcbd7c20d7fb9c2929441576bee846f9898d2ecd93693f6d96393d11660fcadf8104df2430ddb6012340adc790bd8" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943081d7fe46cad2d843ffea6fbfe1296607220aad32d478e72b210fce79bed7cbcb0" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:26:47.154349Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 467, latest_finalized_slot_number: 466, sync_status: Synced { synced_da_height: 466 }, .. } -2026-04-20T11:26:47.154428Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Proceeding with `replay_soft_confirmations_on_top_of_node_state` initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: true } -2026-04-20T11:26:47.154454Z DEBUG sov_sequencer::preferred::transaction_subscriptions: Cleaning and overwriting transaction cache up to 0 -2026-04-20T11:26:47.154467Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Populating pinned cache for replay. This may take a few moments. inner_status=InitialStatus { is_startup: false, is_resync: false, is_recover: true } -2026-04-20T11:26:47.154476Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Pinned cache populated. Starting transaction replay. -2026-04-20T11:26:47.154602Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Completed proofs found without a completed batch; carrying them into final catchup pending_completed_proofs=14 next_sequence_number=528 -2026-04-20T11:26:47.154660Z DEBUG sov_sequencer::preferred::block_executor: Replacing state for block executor old=019daaa4-81fa-7941-80c2-6855670cdda3 new=019daaa4-9972-7b42-bd31-e402366e6145 -2026-04-20T11:26:47.168735Z DEBUG sov_stf_runner::runner: Block execution complete time=6.007718618s -2026-04-20T11:26:47.168772Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:26:47.169022Z DEBUG sp1_core_executor_runner::native: CHILD sp1_b6uV7U4cTf2RvX9LoR9EsQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:47.172523Z DEBUG sp1_core_executor_runner::native: CHILD sp1_b6uV7U4cTf2RvX9LoR9EsQ==: stderr: -2026-04-20T11:26:47.172553Z DEBUG sp1_core_executor_runner::native: CHILD sp1_b6uV7U4cTf2RvX9LoR9EsQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:47.172563Z DEBUG sp1_core_executor_runner::native: CHILD sp1_b6uV7U4cTf2RvX9LoR9EsQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:47.172570Z DEBUG sp1_core_executor_runner::native: CHILD sp1_b6uV7U4cTf2RvX9LoR9EsQ==: stderr: stack backtrace: -2026-04-20T11:26:47.172577Z DEBUG sp1_core_executor_runner::native: CHILD sp1_b6uV7U4cTf2RvX9LoR9EsQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:47.172583Z DEBUG sp1_core_executor_runner::native: CHILD sp1_b6uV7U4cTf2RvX9LoR9EsQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:47.172649Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:47.173729Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:47.174034Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:47.216321Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:47.216345Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:47.216514Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:47.216720Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:47.216828Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:47.216987Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=542 blob_id=2147879653190705557134232700962640745 -2026-04-20T11:26:47.763778Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oZmybaqAT-6IkzwKZR4H_A==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:47.792609Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:47.804454Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4473198 cycles -2026-04-20T11:26:47.807180Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [115, 117, 190, 79, 24, 103, 220, 184, 33, 218, 179, 201, 195, 149, 104, 172, 252, 53, 115, 74, 118, 120, 215, 121, 80, 69, 166, 238, 163, 15, 30, 255, 106, 29, 44, 31, 99, 125, 143, 133, 214, 73, 79, 204, 28, 23, 245, 54, 0, 244, 253, 172, 49, 39, 224, 146, 101, 95, 161, 125, 108, 152, 172, 74, 100, 169, 15, 214, 54, 110, 159, 95, 97, 224, 34, 29, 185, 68, 18, 246, 70, 134, 125, 40, 159, 147, 96, 6, 60, 43, 190, 128, 112, 189, 252, 51, 84, 33, 135, 141, 109, 191, 224, 245, 179, 6, 132, 193, 210, 232, 104, 136, 229, 79, 98, 133, 223, 64, 17, 96, 52, 231, 33, 198, 54, 229, 210, 196, 205, 69, 76, 12, 86, 2, 186, 82, 16, 238, 182, 58, 212, 18, 236, 27, 3, 20, 72, 118, 129, 237, 18, 252, 30, 10, 38, 199, 86, 79, 223, 92, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:47.966627Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:47.966664Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:48.026328Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:48.061384Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3QJUeYzjQ8-QUQwHpXtGww==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:48.064201Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3QJUeYzjQ8-QUQwHpXtGww==: stderr: -2026-04-20T11:26:48.064226Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3QJUeYzjQ8-QUQwHpXtGww==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:48.064236Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3QJUeYzjQ8-QUQwHpXtGww==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:48.064243Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3QJUeYzjQ8-QUQwHpXtGww==: stderr: stack backtrace: -2026-04-20T11:26:48.064249Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3QJUeYzjQ8-QUQwHpXtGww==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:48.064255Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3QJUeYzjQ8-QUQwHpXtGww==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:48.064310Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:48.065093Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:48.065226Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:48.131688Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:48.131737Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:48.131881Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:48.132108Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:48.132229Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:48.132685Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=543 blob_id=2147879654296891848503999804623899502 -2026-04-20T11:26:48.694564Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NLgumP9IRo6lcv7VQDOong==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:48.724175Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:48.735506Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4529804 cycles -2026-04-20T11:26:48.738182Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [1, 61, 48, 152, 75, 142, 195, 135, 36, 228, 0, 239, 69, 171, 61, 82, 220, 234, 214, 99, 65, 236, 181, 234, 130, 83, 124, 23, 222, 48, 58, 221, 105, 237, 59, 214, 88, 65, 174, 123, 180, 240, 161, 29, 223, 62, 89, 43, 96, 98, 21, 193, 139, 135, 175, 94, 131, 123, 160, 89, 62, 92, 101, 201, 16, 188, 50, 104, 214, 83, 213, 74, 6, 241, 9, 207, 145, 105, 167, 56, 53, 110, 15, 63, 121, 206, 172, 107, 58, 55, 74, 11, 182, 243, 3, 49, 61, 4, 186, 190, 106, 210, 13, 59, 230, 102, 89, 159, 220, 106, 73, 111, 242, 46, 147, 252, 197, 241, 53, 53, 20, 156, 100, 195, 141, 22, 252, 107, 200, 40, 42, 34, 95, 136, 1, 0, 218, 3, 1, 233, 4, 29, 134, 246, 239, 91, 75, 232, 73, 227, 111, 159, 40, 106, 101, 52, 37, 78, 43, 218, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:48.901949Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:48.901984Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:48.940513Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:48.976706Z DEBUG sp1_core_executor_runner::native: CHILD sp1_B-gJ2aXXSrmw-i936QDlLQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:48.979550Z DEBUG sp1_core_executor_runner::native: CHILD sp1_B-gJ2aXXSrmw-i936QDlLQ==: stderr: -2026-04-20T11:26:48.979574Z DEBUG sp1_core_executor_runner::native: CHILD sp1_B-gJ2aXXSrmw-i936QDlLQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:48.979584Z DEBUG sp1_core_executor_runner::native: CHILD sp1_B-gJ2aXXSrmw-i936QDlLQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:48.979591Z DEBUG sp1_core_executor_runner::native: CHILD sp1_B-gJ2aXXSrmw-i936QDlLQ==: stderr: stack backtrace: -2026-04-20T11:26:48.979597Z DEBUG sp1_core_executor_runner::native: CHILD sp1_B-gJ2aXXSrmw-i936QDlLQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:48.979603Z DEBUG sp1_core_executor_runner::native: CHILD sp1_B-gJ2aXXSrmw-i936QDlLQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:48.979656Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:48.980502Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:48.980808Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:49.048557Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:49.048601Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:49.048805Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:49.049051Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:49.049142Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:49.049509Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=544 blob_id=2147879655405429898570494557984111881 -2026-04-20T11:26:49.593982Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ah_EopHHQqW4q37lnxHQQw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:49.624416Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:49.636869Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4716347 cycles -2026-04-20T11:26:49.639598Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [0, 219, 11, 250, 60, 105, 235, 15, 91, 233, 13, 45, 208, 52, 13, 170, 63, 24, 88, 28, 161, 136, 232, 120, 100, 8, 157, 16, 21, 101, 164, 162, 5, 182, 214, 49, 43, 70, 177, 172, 214, 82, 56, 40, 93, 116, 78, 224, 37, 118, 53, 30, 103, 151, 127, 145, 128, 22, 255, 203, 194, 237, 67, 234, 86, 240, 211, 166, 94, 106, 133, 196, 149, 94, 149, 149, 225, 171, 162, 139, 142, 12, 177, 213, 60, 178, 85, 151, 120, 66, 246, 194, 159, 229, 170, 103, 9, 199, 244, 250, 37, 56, 58, 146, 14, 166, 66, 137, 47, 25, 34, 114, 177, 122, 245, 248, 200, 212, 87, 14, 65, 123, 24, 25, 99, 130, 129, 65, 162, 206, 6, 224, 148, 113, 232, 124, 146, 58, 128, 146, 23, 4, 254, 148, 254, 139, 126, 203, 8, 237, 93, 135, 197, 61, 200, 201, 79, 224, 138, 58, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:49.808848Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:49.808882Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:49.858086Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:49.890507Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mEUPOv_sQhGn8Y7YJQ314A==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:49.893331Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mEUPOv_sQhGn8Y7YJQ314A==: stderr: -2026-04-20T11:26:49.893343Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mEUPOv_sQhGn8Y7YJQ314A==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:49.893353Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mEUPOv_sQhGn8Y7YJQ314A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:49.893361Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mEUPOv_sQhGn8Y7YJQ314A==: stderr: stack backtrace: -2026-04-20T11:26:49.893367Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mEUPOv_sQhGn8Y7YJQ314A==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:49.893373Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mEUPOv_sQhGn8Y7YJQ314A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:49.893471Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:49.894275Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:49.894616Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:49.961619Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:49.961659Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:49.961778Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:49.961937Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:49.961995Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:49.962377Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=545 blob_id=2147879656509226376578864908204058413 -2026-04-20T11:26:50.470202Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1LEYGj1SRCC4AF1PsxPGog==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:50.499805Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:50.510907Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4561327 cycles -2026-04-20T11:26:50.513686Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [33, 149, 247, 30, 240, 8, 239, 121, 210, 94, 127, 18, 51, 240, 89, 233, 8, 18, 162, 134, 237, 240, 119, 23, 191, 86, 85, 35, 209, 13, 68, 93, 122, 69, 62, 67, 17, 141, 159, 182, 157, 68, 244, 83, 150, 237, 231, 241, 67, 91, 79, 117, 156, 93, 106, 230, 228, 26, 183, 250, 159, 111, 56, 219, 37, 205, 88, 154, 215, 103, 243, 254, 227, 241, 28, 174, 109, 124, 143, 47, 117, 147, 187, 129, 3, 186, 0, 231, 227, 39, 211, 149, 18, 21, 236, 82, 37, 166, 255, 162, 217, 24, 29, 33, 105, 183, 25, 176, 146, 174, 213, 162, 60, 31, 200, 104, 89, 220, 193, 210, 34, 84, 45, 23, 177, 253, 16, 234, 51, 142, 1, 134, 148, 138, 54, 14, 103, 42, 199, 42, 1, 142, 163, 195, 155, 125, 151, 32, 174, 193, 18, 171, 104, 110, 129, 131, 113, 9, 84, 49, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:50.677757Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:50.677791Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:50.771097Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:50.805933Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qRENKjs4SBa98OfYFOpZlw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:50.808771Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qRENKjs4SBa98OfYFOpZlw==: stderr: -2026-04-20T11:26:50.808795Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qRENKjs4SBa98OfYFOpZlw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:50.808805Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qRENKjs4SBa98OfYFOpZlw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:50.808812Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qRENKjs4SBa98OfYFOpZlw==: stderr: stack backtrace: -2026-04-20T11:26:50.808818Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qRENKjs4SBa98OfYFOpZlw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:50.808824Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qRENKjs4SBa98OfYFOpZlw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:50.808910Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:50.809720Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:50.810010Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:50.876758Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:50.876804Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:50.877023Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:50.877217Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:50.877297Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:50.877664Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=546 blob_id=2147879657616572930003632500318541439 -2026-04-20T11:26:51.428372Z DEBUG sp1_core_executor_runner::native: CHILD sp1_O9kTecrESMGyqIWDmf7Qig==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:51.438824Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:51.448409Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1548621 cycles -2026-04-20T11:26:51.450979Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 22, 214, 20, 156, 171, 191, 223, 48, 12, 142, 212, 234, 157, 72, 234, 226, 244, 2, 120, 125, 91, 173, 171, 86, 45, 32, 243, 18, 214, 211, 191, 167, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 106, 126, 117, 136, 110, 238, 36, 41, 147, 165, 156, 21, 65, 14, 32, 205, 143, 61, 223, 41, 79, 53, 238, 147, 200, 37, 203, 220, 41, 244, 205, 119, 161, 126, 47, 109, 177, 53, 200, 187, 197, 194, 190, 42, 145, 248, 125, 16, 6, 33, 27, 135, 99, 140, 9, 183, 235, 49, 74, 147, 194, 66, 124, 230, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:51.533904Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:51.533936Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:51.583759Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:51.618862Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kgVoOTU-RkynKpAyGz9RdQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:51.621684Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kgVoOTU-RkynKpAyGz9RdQ==: stderr: -2026-04-20T11:26:51.621708Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kgVoOTU-RkynKpAyGz9RdQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:51.621718Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kgVoOTU-RkynKpAyGz9RdQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:51.621725Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kgVoOTU-RkynKpAyGz9RdQ==: stderr: stack backtrace: -2026-04-20T11:26:51.621731Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kgVoOTU-RkynKpAyGz9RdQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:51.621737Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kgVoOTU-RkynKpAyGz9RdQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:51.621784Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:51.622632Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:51.622922Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:51.688800Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:51.688842Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:51.689018Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:51.689191Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:51.689284Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:51.689580Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=547 blob_id=2147879658598212987621155879955679665 -2026-04-20T11:26:52.240225Z DEBUG sp1_core_executor_runner::native: CHILD sp1_f-s8uGf3Qs2fjwWss4OAzQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:52.250240Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:52.260912Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1511399 cycles -2026-04-20T11:26:52.261911Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 30, 96, 195, 171, 213, 49, 50, 56, 195, 132, 69, 97, 138, 144, 38, 248, 53, 174, 242, 194, 36, 51, 144, 80, 94, 54, 135, 10, 48, 152, 37, 202, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 109, 217, 89, 19, 47, 204, 227, 47, 127, 7, 10, 33, 85, 61, 212, 173, 93, 66, 174, 162, 81, 157, 177, 202, 128, 110, 164, 12, 10, 197, 195, 31, 249, 210, 114, 226, 237, 194, 66, 10, 74, 105, 158, 152, 202, 254, 35, 191, 212, 41, 208, 132, 70, 53, 43, 57, 243, 100, 220, 159, 249, 100, 61, 229, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:52.344272Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:52.344304Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:52.396406Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:52.430230Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4ojZK10ZTimdrs7ZPq9pjg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:52.433048Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4ojZK10ZTimdrs7ZPq9pjg==: stderr: -2026-04-20T11:26:52.433075Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4ojZK10ZTimdrs7ZPq9pjg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:52.433083Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4ojZK10ZTimdrs7ZPq9pjg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:52.433092Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4ojZK10ZTimdrs7ZPq9pjg==: stderr: stack backtrace: -2026-04-20T11:26:52.433098Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4ojZK10ZTimdrs7ZPq9pjg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:52.433104Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4ojZK10ZTimdrs7ZPq9pjg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:52.433202Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:52.433970Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:52.434284Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:52.501304Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:52.501355Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:52.501531Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:52.501698Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:52.501777Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:52.502040Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=548 blob_id=2147879659579884362981221979960672906 -2026-04-20T11:26:53.057521Z DEBUG sp1_core_executor_runner::native: CHILD sp1_i3A3ZF9oQE2rnnW65MAfpg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:53.067746Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:53.077829Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1534967 cycles -2026-04-20T11:26:53.080303Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 120, 185, 205, 96, 126, 133, 189, 253, 90, 17, 180, 208, 55, 30, 23, 103, 191, 237, 162, 138, 232, 104, 159, 158, 155, 194, 90, 233, 0, 72, 248, 33, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 105, 226, 229, 13, 236, 201, 32, 249, 227, 248, 157, 229, 29, 19, 116, 213, 244, 125, 33, 111, 108, 211, 189, 58, 53, 221, 195, 115, 97, 169, 236, 5, 77, 115, 27, 47, 108, 4, 70, 204, 24, 48, 1, 196, 35, 120, 225, 87, 30, 254, 76, 78, 32, 87, 42, 178, 52, 90, 246, 213, 113, 109, 92, 59, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:53.146501Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=7 height=468 prev_hash=0x1ea54acf52b447dd7238b02b34e60ea134c9f1c7003c398fe911788164d84af6 hash=0x3941aeaba138863bcfc55b5fcd28799dcfc53b84b2cd4ae62a5a7fd32d22ce7b producing_time=1.220722ms -2026-04-20T11:26:53.150308Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=468 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943081d7fe46cad2d843ffea6fbfe1296607220aad32d478e72b210fce79bed7cbcb0" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd877bfc62cc1565471fa3b7347ff3e5303c1fcfbfc8688be7a7f2a12662a55ad, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf02aa121682ca25804c2edfdb8b0c2897fe8e73e03bd483564274b0446a334be, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x2294018983f4c1d3fabba8ec2a3867418d4a707a672718ef7047d815b5d25b81, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x8b6ccaf4c98be1e94fc0bdc2c3f6104a98157a3d5adbd73b443b60fb0e2c3d1e, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x5218cc454aeba15b3f9480e2effdd368bbcb64f195f7c474cccf7ad8ce2b82fe, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xba9eae739e8fb6dfe781f2d37a3b2a84a7b9def1495b634d8836b996a5d408ac, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x65c62fa1585ce6f6157f51b0caf332ee7424945d27b52c47cd1625720f2e02e9, len=625"] -2026-04-20T11:26:53.150704Z DEBUG StfBlueprint::apply_slot{context=Node da_height=468}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943081d7fe46cad2d843ffea6fbfe1296607220aad32d478e72b210fce79bed7cbcb0 next_version=468 sesssion_starting_time=48.75µs -2026-04-20T11:26:53.151613Z DEBUG StfBlueprint::apply_slot{context=Node da_height=468}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308429550d1db742ed5a1e057d8d08f0159100357490945fd92085e7b7d54dcdf07 next_version=468 time=986.884µs accesses_build_time=27.41µs finishing_session_time=861.154µs -2026-04-20T11:26:53.151686Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430808ff317d7a14a61366c1068099ecafcdc36f9c9b01d0c9434f7a3ad9d16fc56f" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308429550d1db742ed5a1e057d8d08f0159100357490945fd92085e7b7d54dcdf07" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:26:53.152274Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 468, latest_finalized_slot_number: 467, sync_status: Synced { synced_da_height: 467 }, .. } -2026-04-20T11:26:53.152361Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 468, latest_finalized_slot_number: 467, sync_status: Synced { synced_da_height: 467 }, .. } -2026-04-20T11:26:53.152424Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:26:53.159017Z DEBUG sov_stf_runner::runner: Block execution complete time=5.990247121s -2026-04-20T11:26:53.159035Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:26:53.162383Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:53.162400Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:53.210141Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:53.244865Z DEBUG sp1_core_executor_runner::native: CHILD sp1_64y7pfkEQ72Od-N8t3zfwA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:53.247672Z DEBUG sp1_core_executor_runner::native: CHILD sp1_64y7pfkEQ72Od-N8t3zfwA==: stderr: -2026-04-20T11:26:53.247685Z DEBUG sp1_core_executor_runner::native: CHILD sp1_64y7pfkEQ72Od-N8t3zfwA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:53.247694Z DEBUG sp1_core_executor_runner::native: CHILD sp1_64y7pfkEQ72Od-N8t3zfwA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:53.247702Z DEBUG sp1_core_executor_runner::native: CHILD sp1_64y7pfkEQ72Od-N8t3zfwA==: stderr: stack backtrace: -2026-04-20T11:26:53.247708Z DEBUG sp1_core_executor_runner::native: CHILD sp1_64y7pfkEQ72Od-N8t3zfwA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:53.247714Z DEBUG sp1_core_executor_runner::native: CHILD sp1_64y7pfkEQ72Od-N8t3zfwA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:53.247856Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:53.248637Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:53.248958Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:53.316491Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:53.316530Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:53.316678Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:53.316800Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:53.316857Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:53.317300Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=549 blob_id=2147879660565120556282178768491623545 -2026-04-20T11:26:53.858986Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tFfenb9DRw-m5cR741MaNQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:53.867436Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:53.878286Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1253103 cycles -2026-04-20T11:26:53.880992Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 125, 163, 1, 119, 34, 119, 65, 187, 156, 253, 176, 205, 69, 168, 182, 240, 102, 56, 128, 184, 157, 236, 130, 229, 214, 69, 101, 188, 91, 133, 212, 93, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 94, 48, 142, 144, 11, 152, 253, 222, 181, 91, 228, 163, 52, 112, 14, 146, 3, 112, 46, 189, 192, 45, 89, 27, 201, 105, 64, 130, 222, 66, 89, 17, 62, 68, 58, 44, 190, 30, 77, 115, 201, 153, 99, 174, 241, 76, 206, 30, 227, 171, 14, 91, 197, 116, 67, 238, 149, 186, 193, 230, 140, 41, 195, 16, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:53.949099Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:53.949145Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:54.023892Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:54.058842Z DEBUG sp1_core_executor_runner::native: CHILD sp1_b24xzXYgQMiguoGMulsEzQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:54.061675Z DEBUG sp1_core_executor_runner::native: CHILD sp1_b24xzXYgQMiguoGMulsEzQ==: stderr: -2026-04-20T11:26:54.061688Z DEBUG sp1_core_executor_runner::native: CHILD sp1_b24xzXYgQMiguoGMulsEzQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:54.061709Z DEBUG sp1_core_executor_runner::native: CHILD sp1_b24xzXYgQMiguoGMulsEzQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:54.061718Z DEBUG sp1_core_executor_runner::native: CHILD sp1_b24xzXYgQMiguoGMulsEzQ==: stderr: stack backtrace: -2026-04-20T11:26:54.061724Z DEBUG sp1_core_executor_runner::native: CHILD sp1_b24xzXYgQMiguoGMulsEzQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:54.061730Z DEBUG sp1_core_executor_runner::native: CHILD sp1_b24xzXYgQMiguoGMulsEzQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:54.061840Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:54.062654Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:54.062968Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:54.130574Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:54.130622Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:54.130801Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:54.130978Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:54.131048Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:54.131446Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=550 blob_id=2147879661549199769559685832821744089 -2026-04-20T11:26:54.687224Z DEBUG sp1_core_executor_runner::native: CHILD sp1_KeAHDxiOT5ia1ckegTqHkw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:54.694659Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:54.705059Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1113393 cycles -2026-04-20T11:26:54.707490Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 7, 145, 53, 252, 25, 14, 4, 43, 220, 119, 216, 236, 238, 31, 146, 243, 76, 5, 0, 155, 55, 246, 178, 152, 55, 200, 163, 50, 10, 55, 152, 117, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 48, 7, 180, 212, 219, 162, 107, 56, 67, 108, 117, 161, 12, 36, 242, 101, 113, 113, 84, 223, 195, 187, 65, 136, 103, 4, 170, 230, 28, 66, 133, 109, 223, 149, 221, 71, 123, 113, 64, 74, 164, 222, 100, 239, 33, 189, 43, 96, 193, 227, 84, 38, 143, 155, 215, 124, 204, 17, 21, 94, 106, 34, 233, 97, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:54.769813Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:54.769862Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:54.840240Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:54.874892Z DEBUG sp1_core_executor_runner::native: CHILD sp1_33tPaUbASESDjjSX_8lQPg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:54.877726Z DEBUG sp1_core_executor_runner::native: CHILD sp1_33tPaUbASESDjjSX_8lQPg==: stderr: -2026-04-20T11:26:54.877740Z DEBUG sp1_core_executor_runner::native: CHILD sp1_33tPaUbASESDjjSX_8lQPg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:54.877749Z DEBUG sp1_core_executor_runner::native: CHILD sp1_33tPaUbASESDjjSX_8lQPg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:54.877757Z DEBUG sp1_core_executor_runner::native: CHILD sp1_33tPaUbASESDjjSX_8lQPg==: stderr: stack backtrace: -2026-04-20T11:26:54.877763Z DEBUG sp1_core_executor_runner::native: CHILD sp1_33tPaUbASESDjjSX_8lQPg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:54.877768Z DEBUG sp1_core_executor_runner::native: CHILD sp1_33tPaUbASESDjjSX_8lQPg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:54.877936Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:54.878713Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:54.879003Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:54.945055Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:54.945097Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:54.945276Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:54.945450Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:54.945525Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:54.945842Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=551 blob_id=2147879662534523876328093869828428251 -2026-04-20T11:26:55.501558Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ziqmhAUERgqzdHpf---99Q==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:55.509102Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:55.519127Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1124542 cycles -2026-04-20T11:26:55.520346Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 123, 34, 141, 199, 49, 16, 205, 100, 153, 86, 109, 245, 95, 2, 28, 116, 222, 27, 143, 28, 161, 185, 103, 61, 141, 26, 232, 134, 193, 69, 18, 151, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 107, 104, 193, 238, 247, 236, 48, 73, 79, 248, 57, 233, 150, 16, 149, 97, 43, 222, 199, 37, 167, 143, 59, 7, 110, 241, 242, 213, 237, 136, 248, 209, 29, 127, 82, 122, 205, 61, 4, 237, 91, 140, 26, 172, 162, 133, 192, 34, 2, 181, 113, 214, 62, 14, 88, 31, 169, 136, 170, 131, 138, 96, 211, 204, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:55.583546Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:55.583592Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:55.654692Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:55.689776Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SCUUXn3hRsSwQalw0b1ipg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:55.692594Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SCUUXn3hRsSwQalw0b1ipg==: stderr: -2026-04-20T11:26:55.692607Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SCUUXn3hRsSwQalw0b1ipg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:55.692615Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SCUUXn3hRsSwQalw0b1ipg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:55.692624Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SCUUXn3hRsSwQalw0b1ipg==: stderr: stack backtrace: -2026-04-20T11:26:55.692629Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SCUUXn3hRsSwQalw0b1ipg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:55.692636Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SCUUXn3hRsSwQalw0b1ipg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:55.692788Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:55.693551Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:55.693867Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:55.760278Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:55.760344Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:55.760526Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:55.760684Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:55.760752Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:55.761092Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=552 blob_id=2147879663519798732320286809795994141 -2026-04-20T11:26:56.302368Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ITl0KNodSSeGqEyg-nMuRQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:56.309946Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:56.320709Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1118527 cycles -2026-04-20T11:26:56.323171Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 10, 24, 193, 255, 66, 39, 3, 157, 161, 92, 71, 146, 247, 174, 76, 101, 43, 184, 183, 113, 13, 194, 131, 181, 233, 149, 248, 90, 37, 226, 139, 226, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 105, 74, 71, 39, 174, 61, 88, 210, 180, 195, 35, 168, 37, 151, 76, 211, 168, 51, 91, 219, 111, 46, 24, 208, 23, 85, 223, 196, 249, 51, 72, 49, 53, 52, 230, 76, 128, 29, 65, 221, 17, 16, 246, 5, 21, 190, 207, 107, 6, 177, 47, 205, 153, 79, 252, 131, 207, 86, 252, 55, 78, 157, 204, 164, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:56.385044Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:56.385090Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:56.468088Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:56.503735Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BHPeg6JvQJy6xoLtnTctfA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:56.506572Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BHPeg6JvQJy6xoLtnTctfA==: stderr: -2026-04-20T11:26:56.506584Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BHPeg6JvQJy6xoLtnTctfA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:56.506592Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BHPeg6JvQJy6xoLtnTctfA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:56.506613Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BHPeg6JvQJy6xoLtnTctfA==: stderr: stack backtrace: -2026-04-20T11:26:56.506620Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BHPeg6JvQJy6xoLtnTctfA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:56.506626Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BHPeg6JvQJy6xoLtnTctfA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:56.506756Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:56.507521Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:56.507849Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:56.573673Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:56.573715Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:56.573893Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:56.574056Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:56.574133Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:56.574458Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=553 blob_id=2147879664502616743665908464174999734 -2026-04-20T11:26:57.131524Z DEBUG sp1_core_executor_runner::native: CHILD sp1_R1GjRmZwSEOcgh31xjwnlw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:57.139015Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:57.149528Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1113116 cycles -2026-04-20T11:26:57.152224Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 29, 240, 133, 89, 149, 67, 47, 211, 178, 41, 178, 184, 243, 14, 58, 207, 3, 167, 115, 162, 202, 68, 107, 201, 35, 77, 185, 55, 143, 179, 12, 116, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 91, 145, 26, 52, 186, 10, 160, 10, 152, 191, 3, 85, 230, 30, 16, 14, 185, 133, 153, 0, 243, 105, 160, 161, 197, 175, 236, 95, 255, 171, 17, 193, 43, 171, 43, 116, 199, 79, 35, 178, 29, 216, 22, 58, 177, 91, 68, 15, 51, 182, 164, 109, 14, 93, 78, 138, 96, 159, 78, 154, 206, 213, 85, 85, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:57.214389Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:57.214454Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:57.280744Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:57.314652Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4-HVn6TiRFG7do9TKGsEHg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:57.317517Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4-HVn6TiRFG7do9TKGsEHg==: stderr: -2026-04-20T11:26:57.317543Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4-HVn6TiRFG7do9TKGsEHg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:57.317553Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4-HVn6TiRFG7do9TKGsEHg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:57.317560Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4-HVn6TiRFG7do9TKGsEHg==: stderr: stack backtrace: -2026-04-20T11:26:57.317566Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4-HVn6TiRFG7do9TKGsEHg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:57.317572Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4-HVn6TiRFG7do9TKGsEHg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:57.317669Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:57.318446Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:57.318762Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:57.384076Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:57.384116Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:57.384351Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:57.384519Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:57.384584Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:57.384913Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=554 blob_id=2147879665483043811953896780135773521 -2026-04-20T11:26:57.928525Z DEBUG sp1_core_executor_runner::native: CHILD sp1_i6YKGABfQqmoM95-F3R8cQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:57.935990Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:57.946843Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1121081 cycles -2026-04-20T11:26:57.949289Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 50, 90, 159, 129, 14, 192, 126, 210, 151, 94, 17, 166, 34, 15, 64, 118, 244, 181, 79, 192, 73, 6, 87, 25, 196, 194, 160, 236, 133, 146, 193, 40, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 74, 24, 40, 214, 44, 201, 118, 230, 196, 252, 142, 26, 169, 90, 253, 168, 48, 47, 133, 204, 99, 115, 182, 168, 190, 23, 31, 160, 142, 138, 152, 33, 24, 191, 120, 231, 126, 248, 147, 5, 255, 176, 209, 140, 243, 2, 108, 130, 238, 184, 30, 202, 155, 141, 203, 105, 20, 130, 92, 101, 147, 236, 75, 127, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:58.011675Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:58.011719Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:58.091879Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:58.125960Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IXAxEykRR56NNThlF8z4lg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:58.128785Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IXAxEykRR56NNThlF8z4lg==: stderr: -2026-04-20T11:26:58.128798Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IXAxEykRR56NNThlF8z4lg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:58.128807Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IXAxEykRR56NNThlF8z4lg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:58.128814Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IXAxEykRR56NNThlF8z4lg==: stderr: stack backtrace: -2026-04-20T11:26:58.128822Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IXAxEykRR56NNThlF8z4lg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:58.128828Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IXAxEykRR56NNThlF8z4lg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:58.128975Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:58.129734Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:58.130052Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:58.196872Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:58.196915Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:58.197143Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:58.197300Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:58.197391Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:58.197703Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=555 blob_id=2147879666465917587789771858363047058 -2026-04-20T11:26:58.757305Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Hjqhj3H7R7-1reC5H0c5Kg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:58.764937Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:58.775707Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1114767 cycles -2026-04-20T11:26:58.778492Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 82, 40, 67, 61, 237, 170, 13, 99, 230, 124, 69, 165, 77, 127, 194, 211, 148, 21, 177, 47, 177, 80, 225, 200, 90, 187, 129, 101, 187, 54, 25, 184, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 99, 38, 6, 60, 24, 94, 112, 163, 67, 11, 210, 124, 96, 110, 133, 151, 233, 62, 74, 96, 46, 36, 121, 129, 179, 63, 135, 237, 158, 173, 180, 168, 178, 254, 179, 144, 195, 113, 146, 159, 102, 5, 111, 209, 197, 201, 218, 234, 228, 63, 155, 129, 49, 62, 254, 196, 5, 226, 125, 89, 49, 41, 42, 176, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:58.841023Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:58.841071Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:58.904094Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:58.938111Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8u9xxgshQUmiXpFtV4GRSQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:58.940962Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8u9xxgshQUmiXpFtV4GRSQ==: stderr: -2026-04-20T11:26:58.940975Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8u9xxgshQUmiXpFtV4GRSQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:58.940983Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8u9xxgshQUmiXpFtV4GRSQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:58.940989Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8u9xxgshQUmiXpFtV4GRSQ==: stderr: stack backtrace: -2026-04-20T11:26:58.941010Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8u9xxgshQUmiXpFtV4GRSQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:58.941016Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8u9xxgshQUmiXpFtV4GRSQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:58.941161Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:58.941891Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:58.942205Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:59.008650Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:59.008690Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:59.008855Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:59.009008Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:59.009069Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:59.009518Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=556 blob_id=2147879667446320419738091952149298976 -2026-04-20T11:26:59.148935Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=8 height=469 prev_hash=0x3941aeaba138863bcfc55b5fcd28799dcfc53b84b2cd4ae62a5a7fd32d22ce7b hash=0x604bdf7c6723db6a9df036aa893efb0f2b7527058d4876faafa2f22ed06b5476 producing_time=1.161843ms -2026-04-20T11:26:59.150672Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=469 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308429550d1db742ed5a1e057d8d08f0159100357490945fd92085e7b7d54dcdf07" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x862c02d9b5b09663be5491e5c9cf2b3bf1fc472d0a504f8ff762c635097d81e1, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1169f953659cb6c5089903e398f225283fc61dc53d3ca0340a237dc475d5d224, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x50d7999bb0dc13cb322067b06670975c7b480c3a2c726acf5e08d8b061487610, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x42332348797696094e7a22f3f5dd2dd1bae1ae9f58238af21bc006577ad30458, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xea0bcc2df3a5aa86ee5e32c4a685500c96daccc0fe04f48cfbc9257135d60894, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc2f69f097543bcdc0f4f5644c399e722d7da561b0545a11e1efc3b81f71b3118, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x980ef97b1cc7dbc02ba46e30a8d164397258b1c51c6e0521a7e1af7b259346e5, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xcbd9f13bf06e53f612297bb44ef0c8673ed56c3956c906e1837825d2252399d2, len=625"] -2026-04-20T11:26:59.151067Z DEBUG StfBlueprint::apply_slot{context=Node da_height=469}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308429550d1db742ed5a1e057d8d08f0159100357490945fd92085e7b7d54dcdf07 next_version=469 sesssion_starting_time=45.23µs -2026-04-20T11:26:59.151976Z DEBUG StfBlueprint::apply_slot{context=Node da_height=469}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943081b4e93f11957b4b40db37667c3eee46c1b287633ea1a970093ea9fb65353ee0b next_version=469 time=984.104µs accesses_build_time=28.57µs finishing_session_time=879.594µs -2026-04-20T11:26:59.152047Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943081d7fe46cad2d843ffea6fbfe1296607220aad32d478e72b210fce79bed7cbcb0" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943081b4e93f11957b4b40db37667c3eee46c1b287633ea1a970093ea9fb65353ee0b" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:26:59.152582Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 469, latest_finalized_slot_number: 468, sync_status: Synced { synced_da_height: 468 }, .. } -2026-04-20T11:26:59.152674Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 469, latest_finalized_slot_number: 468, sync_status: Synced { synced_da_height: 468 }, .. } -2026-04-20T11:26:59.152746Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:26:59.159201Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000167318s -2026-04-20T11:26:59.159227Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:26:59.567233Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9sQkgX-IQMGLkh04jG7h-Q==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:26:59.574926Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:59.585302Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1136113 cycles -2026-04-20T11:26:59.588037Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 83, 217, 76, 84, 17, 129, 123, 131, 11, 168, 204, 242, 2, 194, 24, 166, 57, 90, 213, 144, 59, 14, 243, 14, 162, 112, 94, 63, 71, 214, 180, 1, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 120, 17, 100, 5, 112, 17, 188, 249, 65, 8, 63, 83, 160, 4, 97, 136, 187, 148, 132, 48, 100, 202, 41, 83, 127, 32, 30, 243, 86, 226, 57, 178, 107, 230, 69, 22, 133, 250, 91, 151, 107, 96, 83, 210, 164, 172, 133, 60, 207, 126, 186, 101, 130, 209, 217, 33, 7, 82, 244, 150, 30, 160, 40, 114, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:26:59.650980Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:59.651022Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:59.716522Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:59.751622Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5RRx78cpSMWU3NVYJ7Vbfw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:26:59.754451Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5RRx78cpSMWU3NVYJ7Vbfw==: stderr: -2026-04-20T11:26:59.754478Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5RRx78cpSMWU3NVYJ7Vbfw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:26:59.754488Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5RRx78cpSMWU3NVYJ7Vbfw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:59.754495Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5RRx78cpSMWU3NVYJ7Vbfw==: stderr: stack backtrace: -2026-04-20T11:26:59.754501Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5RRx78cpSMWU3NVYJ7Vbfw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:26:59.754507Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5RRx78cpSMWU3NVYJ7Vbfw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:26:59.754617Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:26:59.755411Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:26:59.755725Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:26:59.821630Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:26:59.821674Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:26:59.821883Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:26:59.822063Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:26:59.822130Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:26:59.822508Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=557 blob_id=2147879668429207804697747232489253144 -2026-04-20T11:27:00.380111Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JrYp6dfJRRuEGZ4rbKc9IA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:27:00.387498Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:27:00.398333Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1103209 cycles -2026-04-20T11:27:00.401010Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 7, 233, 97, 173, 75, 218, 198, 102, 213, 110, 104, 161, 66, 252, 36, 14, 77, 127, 4, 45, 225, 200, 72, 219, 147, 162, 134, 250, 17, 26, 172, 138, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 81, 101, 167, 45, 200, 249, 178, 119, 156, 248, 210, 198, 166, 32, 216, 122, 27, 239, 211, 123, 238, 110, 8, 69, 225, 157, 255, 208, 224, 12, 119, 198, 135, 153, 48, 248, 161, 95, 152, 162, 91, 159, 165, 162, 133, 187, 114, 48, 70, 74, 176, 41, 20, 151, 89, 231, 176, 7, 119, 141, 42, 40, 224, 70, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:27:00.461089Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:27:00.461136Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:27:00.529923Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:27:00.563833Z DEBUG sp1_core_executor_runner::native: CHILD sp1_J9GfqO9bTmmWELYCZxG59Q==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:27:00.566706Z DEBUG sp1_core_executor_runner::native: CHILD sp1_J9GfqO9bTmmWELYCZxG59Q==: stderr: -2026-04-20T11:27:00.566734Z DEBUG sp1_core_executor_runner::native: CHILD sp1_J9GfqO9bTmmWELYCZxG59Q==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:27:00.566746Z DEBUG sp1_core_executor_runner::native: CHILD sp1_J9GfqO9bTmmWELYCZxG59Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:27:00.566755Z DEBUG sp1_core_executor_runner::native: CHILD sp1_J9GfqO9bTmmWELYCZxG59Q==: stderr: stack backtrace: -2026-04-20T11:27:00.566763Z DEBUG sp1_core_executor_runner::native: CHILD sp1_J9GfqO9bTmmWELYCZxG59Q==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:27:00.566785Z DEBUG sp1_core_executor_runner::native: CHILD sp1_J9GfqO9bTmmWELYCZxG59Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:27:00.566875Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:27:00.567600Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:27:00.567913Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:27:00.634224Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:27:00.634266Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:27:00.634442Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:27:00.634990Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=558 blob_id=2147879669412075750462602875431600492 -2026-04-20T11:27:05.151275Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=470 prev_hash=0x604bdf7c6723db6a9df036aa893efb0f2b7527058d4876faafa2f22ed06b5476 hash=0xcacd58d3428c142e5543e5e72b371b40003453c95721c5791e82d244bee54a39 producing_time=1.176462ms -2026-04-20T11:27:05.160158Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=470 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943081b4e93f11957b4b40db37667c3eee46c1b287633ea1a970093ea9fb65353ee0b" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xae76c5776981a9bb25010d0aff111801a4ba2fdead25a4a3c20a436cd8762874, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd71ecaeea1acf9df3ddc926e94c2f6f8ed31384f97bb6f6eca441b83c5d8a554, len=625"] -2026-04-20T11:27:05.160514Z DEBUG StfBlueprint::apply_slot{context=Node da_height=470}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943081b4e93f11957b4b40db37667c3eee46c1b287633ea1a970093ea9fb65353ee0b next_version=470 sesssion_starting_time=44.98µs -2026-04-20T11:27:05.161587Z DEBUG StfBlueprint::apply_slot{context=Node da_height=470}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308320860da75bb3591c1980566f55a386a58f1175de0b3a3f40c9ffd8e1aec899f next_version=470 time=1.139233ms accesses_build_time=20.51µs finishing_session_time=1.042424ms -2026-04-20T11:27:05.161670Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308429550d1db742ed5a1e057d8d08f0159100357490945fd92085e7b7d54dcdf07" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308320860da75bb3591c1980566f55a386a58f1175de0b3a3f40c9ffd8e1aec899f" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:27:05.162167Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 470, latest_finalized_slot_number: 469, sync_status: Synced { synced_da_height: 469 }, .. } -2026-04-20T11:27:05.162254Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 470, latest_finalized_slot_number: 469, sync_status: Synced { synced_da_height: 469 }, .. } -2026-04-20T11:27:05.162336Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:27:05.169301Z DEBUG sov_stf_runner::runner: Block execution complete time=6.010074843s -2026-04-20T11:27:05.169354Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:27:11.153007Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=471 prev_hash=0xcacd58d3428c142e5543e5e72b371b40003453c95721c5791e82d244bee54a39 hash=0x477d9c17a7747c3f6110756ca6abc880c64c20f6166c4ebbaac883c818d2e288 producing_time=1.136363ms -2026-04-20T11:27:11.160768Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=471 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308320860da75bb3591c1980566f55a386a58f1175de0b3a3f40c9ffd8e1aec899f" batch_blobs=[] proof_blobs=[] -2026-04-20T11:27:11.161099Z DEBUG StfBlueprint::apply_slot{context=Node da_height=471}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308320860da75bb3591c1980566f55a386a58f1175de0b3a3f40c9ffd8e1aec899f next_version=471 sesssion_starting_time=44.62µs -2026-04-20T11:27:11.161816Z DEBUG StfBlueprint::apply_slot{context=Node da_height=471}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430843b06f9653cfeaad51cc806a228c367976d5e74c57de58d2e00532b7dac839b1 next_version=471 time=779.165µs accesses_build_time=16.45µs finishing_session_time=686.035µs -2026-04-20T11:27:11.161899Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943081b4e93f11957b4b40db37667c3eee46c1b287633ea1a970093ea9fb65353ee0b" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430843b06f9653cfeaad51cc806a228c367976d5e74c57de58d2e00532b7dac839b1" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:27:11.162419Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 471, latest_finalized_slot_number: 470, sync_status: Synced { synced_da_height: 470 }, .. } -2026-04-20T11:27:11.162514Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 471, latest_finalized_slot_number: 470, sync_status: Synced { synced_da_height: 470 }, .. } -2026-04-20T11:27:11.162573Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:27:11.169016Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999663721s -2026-04-20T11:27:11.169043Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:27:17.155272Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=472 prev_hash=0x477d9c17a7747c3f6110756ca6abc880c64c20f6166c4ebbaac883c818d2e288 hash=0xdc7601c2a64169820093d48176c8218c1939ef84d56722888e30d5edc1ed0ea9 producing_time=1.172622ms -2026-04-20T11:27:17.160984Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=472 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430843b06f9653cfeaad51cc806a228c367976d5e74c57de58d2e00532b7dac839b1" batch_blobs=[] proof_blobs=[] -2026-04-20T11:27:17.161308Z DEBUG StfBlueprint::apply_slot{context=Node da_height=472}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430843b06f9653cfeaad51cc806a228c367976d5e74c57de58d2e00532b7dac839b1 next_version=472 sesssion_starting_time=45.87µs -2026-04-20T11:27:17.162198Z DEBUG StfBlueprint::apply_slot{context=Node da_height=472}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943086e9d1ca9a97b6d5d53a10282686bad29620615451448b6d37eeef2b4788739db next_version=472 time=951.925µs accesses_build_time=16.05µs finishing_session_time=837.324µs -2026-04-20T11:27:17.162328Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308320860da75bb3591c1980566f55a386a58f1175de0b3a3f40c9ffd8e1aec899f" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943086e9d1ca9a97b6d5d53a10282686bad29620615451448b6d37eeef2b4788739db" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:27:17.162862Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 472, latest_finalized_slot_number: 471, sync_status: Synced { synced_da_height: 471 }, .. } -2026-04-20T11:27:17.162956Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 472, latest_finalized_slot_number: 471, sync_status: Synced { synced_da_height: 471 }, .. } -2026-04-20T11:27:17.163025Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:27:17.168703Z DEBUG sov_stf_runner::runner: Block execution complete time=5.99966167s -2026-04-20T11:27:17.168729Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:27:23.156881Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=473 prev_hash=0xdc7601c2a64169820093d48176c8218c1939ef84d56722888e30d5edc1ed0ea9 hash=0x402940bf6d832e31954a7454b2d7c6294c94f2a3e27de9e649727959128c40f8 producing_time=1.186643ms -2026-04-20T11:27:23.160623Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=473 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943086e9d1ca9a97b6d5d53a10282686bad29620615451448b6d37eeef2b4788739db" batch_blobs=[] proof_blobs=[] -2026-04-20T11:27:23.160956Z DEBUG StfBlueprint::apply_slot{context=Node da_height=473}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943086e9d1ca9a97b6d5d53a10282686bad29620615451448b6d37eeef2b4788739db next_version=473 sesssion_starting_time=48.739µs -2026-04-20T11:27:23.161707Z DEBUG StfBlueprint::apply_slot{context=Node da_height=473}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943085c48c2c87a8dbc716436199df4741cf26752365a371d6653c63d1472bca67f19 next_version=473 time=816.985µs accesses_build_time=15.97µs finishing_session_time=718.335µs -2026-04-20T11:27:23.161800Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430843b06f9653cfeaad51cc806a228c367976d5e74c57de58d2e00532b7dac839b1" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943085c48c2c87a8dbc716436199df4741cf26752365a371d6653c63d1472bca67f19" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:27:23.162323Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 473, latest_finalized_slot_number: 472, sync_status: Synced { synced_da_height: 472 }, .. } -2026-04-20T11:27:23.162422Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 473, latest_finalized_slot_number: 472, sync_status: Synced { synced_da_height: 472 }, .. } -2026-04-20T11:27:23.162482Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:27:23.169079Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000351027s -2026-04-20T11:27:23.169103Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:27:29.159162Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=474 prev_hash=0x402940bf6d832e31954a7454b2d7c6294c94f2a3e27de9e649727959128c40f8 hash=0x5062a5e7d8357da70edade269d8ec8128a5a3f79b158f5c2207c3aff96942fdf producing_time=1.076293ms -2026-04-20T11:27:29.160911Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=474 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943085c48c2c87a8dbc716436199df4741cf26752365a371d6653c63d1472bca67f19" batch_blobs=[] proof_blobs=[] -2026-04-20T11:27:29.161239Z DEBUG StfBlueprint::apply_slot{context=Node da_height=474}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943085c48c2c87a8dbc716436199df4741cf26752365a371d6653c63d1472bca67f19 next_version=474 sesssion_starting_time=46.26µs -2026-04-20T11:27:29.162037Z DEBUG StfBlueprint::apply_slot{context=Node da_height=474}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308364d5e5521a26cf08f089fffb690f58be2e99cd8fa8811217d518cb378461ffc next_version=474 time=861.024µs accesses_build_time=15.58µs finishing_session_time=765.965µs -2026-04-20T11:27:29.162143Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943086e9d1ca9a97b6d5d53a10282686bad29620615451448b6d37eeef2b4788739db" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308364d5e5521a26cf08f089fffb690f58be2e99cd8fa8811217d518cb378461ffc" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:27:29.162684Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 474, latest_finalized_slot_number: 473, sync_status: Synced { synced_da_height: 473 }, .. } -2026-04-20T11:27:29.162789Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 474, latest_finalized_slot_number: 473, sync_status: Synced { synced_da_height: 473 }, .. } -2026-04-20T11:27:29.162858Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:27:29.172762Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003660165s -2026-04-20T11:27:29.172787Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:27:35.161142Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=475 prev_hash=0x5062a5e7d8357da70edade269d8ec8128a5a3f79b158f5c2207c3aff96942fdf hash=0x388d1fe403b581a8e106d00dd7c4623f3526defbff0bb4835e417b8e7ff5fa9a producing_time=1.152493ms -2026-04-20T11:27:35.164965Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=475 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308364d5e5521a26cf08f089fffb690f58be2e99cd8fa8811217d518cb378461ffc" batch_blobs=[] proof_blobs=[] -2026-04-20T11:27:35.165294Z DEBUG StfBlueprint::apply_slot{context=Node da_height=475}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308364d5e5521a26cf08f089fffb690f58be2e99cd8fa8811217d518cb378461ffc next_version=475 sesssion_starting_time=46.229µs -2026-04-20T11:27:35.166092Z DEBUG StfBlueprint::apply_slot{context=Node da_height=475}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430837d7641b15adf7d5926a5499518567ca99f44eb3cdc82b16ae9871a1165f89cf next_version=475 time=860.144µs accesses_build_time=15µs finishing_session_time=750.235µs -2026-04-20T11:27:35.166196Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943085c48c2c87a8dbc716436199df4741cf26752365a371d6653c63d1472bca67f19" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430837d7641b15adf7d5926a5499518567ca99f44eb3cdc82b16ae9871a1165f89cf" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:27:35.166708Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 475, latest_finalized_slot_number: 474, sync_status: Synced { synced_da_height: 474 }, .. } -2026-04-20T11:27:35.166801Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 475, latest_finalized_slot_number: 474, sync_status: Synced { synced_da_height: 474 }, .. } -2026-04-20T11:27:35.166868Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:27:35.172855Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000068408s -2026-04-20T11:27:35.172881Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:27:41.162852Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=476 prev_hash=0x388d1fe403b581a8e106d00dd7c4623f3526defbff0bb4835e417b8e7ff5fa9a hash=0x8dfdacc533fe905b87c9cca193aadeb1ed5a590ec4998864d8c790dad745e721 producing_time=1.143903ms -2026-04-20T11:27:41.164542Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=476 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430837d7641b15adf7d5926a5499518567ca99f44eb3cdc82b16ae9871a1165f89cf" batch_blobs=[] proof_blobs=[] -2026-04-20T11:27:41.164869Z DEBUG StfBlueprint::apply_slot{context=Node da_height=476}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430837d7641b15adf7d5926a5499518567ca99f44eb3cdc82b16ae9871a1165f89cf next_version=476 sesssion_starting_time=44.85µs -2026-04-20T11:27:41.165677Z DEBUG StfBlueprint::apply_slot{context=Node da_height=476}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430809c269724769306176041164f2d25c62570b2246f8b70fcf0fdf1b7056b4f69b next_version=476 time=870.185µs accesses_build_time=16.53µs finishing_session_time=775.925µs -2026-04-20T11:27:41.165762Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308364d5e5521a26cf08f089fffb690f58be2e99cd8fa8811217d518cb378461ffc" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430809c269724769306176041164f2d25c62570b2246f8b70fcf0fdf1b7056b4f69b" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:27:41.166256Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 476, latest_finalized_slot_number: 475, sync_status: Synced { synced_da_height: 475 }, .. } -2026-04-20T11:27:41.166360Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 476, latest_finalized_slot_number: 475, sync_status: Synced { synced_da_height: 475 }, .. } -2026-04-20T11:27:41.166444Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:27:41.176872Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003991974s -2026-04-20T11:27:41.176898Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:27:47.164918Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=477 prev_hash=0x8dfdacc533fe905b87c9cca193aadeb1ed5a590ec4998864d8c790dad745e721 hash=0xc81b8167a295bf2cbb721fa142cce7da87ad869d5fcdc498d35f7b390ef83291 producing_time=1.166143ms -2026-04-20T11:27:47.168746Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=477 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430809c269724769306176041164f2d25c62570b2246f8b70fcf0fdf1b7056b4f69b" batch_blobs=[] proof_blobs=[] -2026-04-20T11:27:47.169095Z DEBUG StfBlueprint::apply_slot{context=Node da_height=477}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430809c269724769306176041164f2d25c62570b2246f8b70fcf0fdf1b7056b4f69b next_version=477 sesssion_starting_time=47.69µs -2026-04-20T11:27:47.169926Z DEBUG StfBlueprint::apply_slot{context=Node da_height=477}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943083bee1775b6a38bf273fb1c7445350467330e38f6ff03044b9d838e2b385b3d61 next_version=477 time=896.205µs accesses_build_time=15.78µs finishing_session_time=798.495µs -2026-04-20T11:27:47.170033Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430837d7641b15adf7d5926a5499518567ca99f44eb3cdc82b16ae9871a1165f89cf" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943083bee1775b6a38bf273fb1c7445350467330e38f6ff03044b9d838e2b385b3d61" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:27:47.170620Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 477, latest_finalized_slot_number: 476, sync_status: Synced { synced_da_height: 476 }, .. } -2026-04-20T11:27:47.170721Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 477, latest_finalized_slot_number: 476, sync_status: Synced { synced_da_height: 476 }, .. } -2026-04-20T11:27:47.170795Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:27:47.177157Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000260287s -2026-04-20T11:27:47.177184Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:27:53.166837Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=478 prev_hash=0xc81b8167a295bf2cbb721fa142cce7da87ad869d5fcdc498d35f7b390ef83291 hash=0x74368bb061fc97d93482aa49bbd5ecc1f31d19ae0e60c325a0f84ebfb9221a81 producing_time=1.124472ms -2026-04-20T11:27:53.168570Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=478 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943083bee1775b6a38bf273fb1c7445350467330e38f6ff03044b9d838e2b385b3d61" batch_blobs=[] proof_blobs=[] -2026-04-20T11:27:53.168918Z DEBUG StfBlueprint::apply_slot{context=Node da_height=478}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943083bee1775b6a38bf273fb1c7445350467330e38f6ff03044b9d838e2b385b3d61 next_version=478 sesssion_starting_time=47.23µs -2026-04-20T11:27:53.169807Z DEBUG StfBlueprint::apply_slot{context=Node da_height=478}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430855b46d7e729952c92fde2c5afd934749fab7ff4213477f076a16eed8436f5b77 next_version=478 time=952.414µs accesses_build_time=15.87µs finishing_session_time=855.024µs -2026-04-20T11:27:53.169905Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430809c269724769306176041164f2d25c62570b2246f8b70fcf0fdf1b7056b4f69b" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430855b46d7e729952c92fde2c5afd934749fab7ff4213477f076a16eed8436f5b77" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:27:53.170435Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 478, latest_finalized_slot_number: 477, sync_status: Synced { synced_da_height: 477 }, .. } -2026-04-20T11:27:53.170542Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 478, latest_finalized_slot_number: 477, sync_status: Synced { synced_da_height: 477 }, .. } -2026-04-20T11:27:53.170605Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:27:53.176990Z DEBUG sov_stf_runner::runner: Block execution complete time=5.99980736s -2026-04-20T11:27:53.177014Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:27:59.169633Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=479 prev_hash=0x74368bb061fc97d93482aa49bbd5ecc1f31d19ae0e60c325a0f84ebfb9221a81 hash=0xb7303ef5a1a5223a6acf11c2ade31025983e93c50b88a0993394d194225c9299 producing_time=1.119253ms -2026-04-20T11:27:59.178371Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=479 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430855b46d7e729952c92fde2c5afd934749fab7ff4213477f076a16eed8436f5b77" batch_blobs=[] proof_blobs=[] -2026-04-20T11:27:59.178691Z DEBUG StfBlueprint::apply_slot{context=Node da_height=479}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430855b46d7e729952c92fde2c5afd934749fab7ff4213477f076a16eed8436f5b77 next_version=479 sesssion_starting_time=47.169µs -2026-04-20T11:27:59.179460Z DEBUG StfBlueprint::apply_slot{context=Node da_height=479}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430857de2eb25f30c29caafd9e9a70cca75a8c5c202e67344f05df6909eea3809ae0 next_version=479 time=832.665µs accesses_build_time=15.78µs finishing_session_time=737.315µs -2026-04-20T11:27:59.179546Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943083bee1775b6a38bf273fb1c7445350467330e38f6ff03044b9d838e2b385b3d61" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430857de2eb25f30c29caafd9e9a70cca75a8c5c202e67344f05df6909eea3809ae0" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:27:59.180104Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 479, latest_finalized_slot_number: 478, sync_status: Synced { synced_da_height: 478 }, .. } -2026-04-20T11:27:59.180196Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 479, latest_finalized_slot_number: 478, sync_status: Synced { synced_da_height: 478 }, .. } -2026-04-20T11:27:59.180265Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:27:59.186960Z DEBUG sov_stf_runner::runner: Block execution complete time=6.009947055s -2026-04-20T11:27:59.186984Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:28:05.171742Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=480 prev_hash=0xb7303ef5a1a5223a6acf11c2ade31025983e93c50b88a0993394d194225c9299 hash=0x47fc5eab68f14673c30755ae1dc601eec9994196b8893f59827c70681e941e31 producing_time=1.057973ms -2026-04-20T11:28:05.178603Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=480 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430857de2eb25f30c29caafd9e9a70cca75a8c5c202e67344f05df6909eea3809ae0" batch_blobs=[] proof_blobs=[] -2026-04-20T11:28:05.178971Z DEBUG StfBlueprint::apply_slot{context=Node da_height=480}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430857de2eb25f30c29caafd9e9a70cca75a8c5c202e67344f05df6909eea3809ae0 next_version=480 sesssion_starting_time=45.28µs -2026-04-20T11:28:05.179680Z DEBUG StfBlueprint::apply_slot{context=Node da_height=480}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430803415e339b014170bbdd6201d3eb404d10c4d9484bb502336662dca77d010f43 next_version=480 time=771.125µs accesses_build_time=16.17µs finishing_session_time=674.935µs -2026-04-20T11:28:05.179770Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430855b46d7e729952c92fde2c5afd934749fab7ff4213477f076a16eed8436f5b77" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430803415e339b014170bbdd6201d3eb404d10c4d9484bb502336662dca77d010f43" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:28:05.180304Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 480, latest_finalized_slot_number: 479, sync_status: Synced { synced_da_height: 479 }, .. } -2026-04-20T11:28:05.180421Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 480, latest_finalized_slot_number: 479, sync_status: Synced { synced_da_height: 479 }, .. } -2026-04-20T11:28:05.180492Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:28:05.190583Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003600306s -2026-04-20T11:28:05.190617Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:28:11.174599Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=481 prev_hash=0x47fc5eab68f14673c30755ae1dc601eec9994196b8893f59827c70681e941e31 hash=0x6bb876e5d5514e014b3d2abfa531658d36b9c3c2dcbe27d129f93b877ecdebb2 producing_time=1.251761ms -2026-04-20T11:28:11.182619Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=481 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430803415e339b014170bbdd6201d3eb404d10c4d9484bb502336662dca77d010f43" batch_blobs=[] proof_blobs=[] -2026-04-20T11:28:11.182958Z DEBUG StfBlueprint::apply_slot{context=Node da_height=481}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430803415e339b014170bbdd6201d3eb404d10c4d9484bb502336662dca77d010f43 next_version=481 sesssion_starting_time=48.17µs -2026-04-20T11:28:11.183720Z DEBUG StfBlueprint::apply_slot{context=Node da_height=481}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308264710249aaeb9a33020230c79b31198addd9452b4113191803bcaad528775ab next_version=481 time=827.744µs accesses_build_time=16.12µs finishing_session_time=721.776µs -2026-04-20T11:28:11.183805Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430857de2eb25f30c29caafd9e9a70cca75a8c5c202e67344f05df6909eea3809ae0" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308264710249aaeb9a33020230c79b31198addd9452b4113191803bcaad528775ab" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:28:11.184360Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 481, latest_finalized_slot_number: 481, sync_status: Synced { synced_da_height: 480 }, .. } -2026-04-20T11:28:11.184464Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 481, latest_finalized_slot_number: 481, sync_status: Synced { synced_da_height: 480 }, .. } -2026-04-20T11:28:11.184525Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:28:11.193490Z DEBUG sov_stf_runner::runner: Block execution complete time=6.002873941s -2026-04-20T11:28:11.193519Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:28:17.177073Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=482 prev_hash=0x6bb876e5d5514e014b3d2abfa531658d36b9c3c2dcbe27d129f93b877ecdebb2 hash=0x5c573df9c0c01682f3928c154185ce40d0e15842cfa523de1c67a825f713717c producing_time=1.230102ms -2026-04-20T11:28:17.185335Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=482 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308264710249aaeb9a33020230c79b31198addd9452b4113191803bcaad528775ab" batch_blobs=[] proof_blobs=[] -2026-04-20T11:28:17.185683Z DEBUG StfBlueprint::apply_slot{context=Node da_height=482}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308264710249aaeb9a33020230c79b31198addd9452b4113191803bcaad528775ab next_version=482 sesssion_starting_time=46.099µs -2026-04-20T11:28:17.186449Z DEBUG StfBlueprint::apply_slot{context=Node da_height=482}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430814a88fb8d2ab7bcdbce3f42591addaee6192b77e0d91e8b98e01c75d42c0f424 next_version=482 time=829.355µs accesses_build_time=16.03µs finishing_session_time=733.956µs -2026-04-20T11:28:17.186537Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308264710249aaeb9a33020230c79b31198addd9452b4113191803bcaad528775ab" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430814a88fb8d2ab7bcdbce3f42591addaee6192b77e0d91e8b98e01c75d42c0f424" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:28:17.187121Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 482, latest_finalized_slot_number: 482, sync_status: Synced { synced_da_height: 481 }, .. } -2026-04-20T11:28:17.187210Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 482, latest_finalized_slot_number: 482, sync_status: Synced { synced_da_height: 481 }, .. } -2026-04-20T11:28:17.187280Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:28:17.197730Z DEBUG sov_stf_runner::runner: Block execution complete time=6.004211473s -2026-04-20T11:28:17.197768Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:28:23.179399Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=483 prev_hash=0x5c573df9c0c01682f3928c154185ce40d0e15842cfa523de1c67a825f713717c hash=0xfb74094b21be6a9ba8e677616dd6bd0f53edc8216de266eef60ba7570d6482ed producing_time=1.231852ms -2026-04-20T11:28:23.189546Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=483 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430814a88fb8d2ab7bcdbce3f42591addaee6192b77e0d91e8b98e01c75d42c0f424" batch_blobs=[] proof_blobs=[] -2026-04-20T11:28:23.189879Z DEBUG StfBlueprint::apply_slot{context=Node da_height=483}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430814a88fb8d2ab7bcdbce3f42591addaee6192b77e0d91e8b98e01c75d42c0f424 next_version=483 sesssion_starting_time=46.02µs -2026-04-20T11:28:23.190659Z DEBUG StfBlueprint::apply_slot{context=Node da_height=483}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430817e4f960a66ea46a3a60b7d6e4723d6264ee7037d7c17305687bb6bc7784719a next_version=483 time=843.025µs accesses_build_time=15.55µs finishing_session_time=750.005µs -2026-04-20T11:28:23.190740Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430814a88fb8d2ab7bcdbce3f42591addaee6192b77e0d91e8b98e01c75d42c0f424" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430817e4f960a66ea46a3a60b7d6e4723d6264ee7037d7c17305687bb6bc7784719a" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:28:23.191278Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 483, latest_finalized_slot_number: 483, sync_status: Syncing { synced_da_height: 482, target_da_height: 483 }, .. } -2026-04-20T11:28:23.191393Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 483, latest_finalized_slot_number: 483, sync_status: Syncing { synced_da_height: 482, target_da_height: 483 }, .. } -2026-04-20T11:28:23.191471Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:28:23.198059Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000292618s -2026-04-20T11:28:23.198083Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:28:29.181871Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=484 prev_hash=0xfb74094b21be6a9ba8e677616dd6bd0f53edc8216de266eef60ba7570d6482ed hash=0x2e0425be1dcba7ea8e55c21e7857a67012072f7292dbbfefba9ae6d30c4d8e72 producing_time=1.248782ms -2026-04-20T11:28:29.189737Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=484 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430817e4f960a66ea46a3a60b7d6e4723d6264ee7037d7c17305687bb6bc7784719a" batch_blobs=[] proof_blobs=[] -2026-04-20T11:28:29.190084Z DEBUG StfBlueprint::apply_slot{context=Node da_height=484}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430817e4f960a66ea46a3a60b7d6e4723d6264ee7037d7c17305687bb6bc7784719a next_version=484 sesssion_starting_time=43.87µs -2026-04-20T11:28:29.190816Z DEBUG StfBlueprint::apply_slot{context=Node da_height=484}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308707a24ab7b8927bcac1ba55c47582cf18e020454e3a75425d0ba41cb5b4bf234 next_version=484 time=792.695µs accesses_build_time=15.71µs finishing_session_time=697.455µs -2026-04-20T11:28:29.190915Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430817e4f960a66ea46a3a60b7d6e4723d6264ee7037d7c17305687bb6bc7784719a" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308707a24ab7b8927bcac1ba55c47582cf18e020454e3a75425d0ba41cb5b4bf234" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:28:29.191481Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 484, latest_finalized_slot_number: 484, sync_status: Syncing { synced_da_height: 483, target_da_height: 484 }, .. } -2026-04-20T11:28:29.191578Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 484, latest_finalized_slot_number: 484, sync_status: Syncing { synced_da_height: 483, target_da_height: 484 }, .. } -2026-04-20T11:28:29.191641Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:28:29.198212Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000129279s -2026-04-20T11:28:29.198247Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:28:35.183706Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=485 prev_hash=0x2e0425be1dcba7ea8e55c21e7857a67012072f7292dbbfefba9ae6d30c4d8e72 hash=0xf5b91625f5a5206d744166b4995fa2a375203cfae0ea6e5b46506bb1e25dcc06 producing_time=1.210883ms -2026-04-20T11:28:35.189639Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=485 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308707a24ab7b8927bcac1ba55c47582cf18e020454e3a75425d0ba41cb5b4bf234" batch_blobs=[] proof_blobs=[] -2026-04-20T11:28:35.189985Z DEBUG StfBlueprint::apply_slot{context=Node da_height=485}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308707a24ab7b8927bcac1ba55c47582cf18e020454e3a75425d0ba41cb5b4bf234 next_version=485 sesssion_starting_time=46.51µs -2026-04-20T11:28:35.190752Z DEBUG StfBlueprint::apply_slot{context=Node da_height=485}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430822e3c42fa0105eea59dc422afc3497eebf657e78add2e6a5932737ccd6e0a00f next_version=485 time=831.934µs accesses_build_time=16.669µs finishing_session_time=731.405µs -2026-04-20T11:28:35.190838Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308707a24ab7b8927bcac1ba55c47582cf18e020454e3a75425d0ba41cb5b4bf234" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430822e3c42fa0105eea59dc422afc3497eebf657e78add2e6a5932737ccd6e0a00f" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:28:35.191243Z DEBUG sov_stf_runner::runner: Block execution complete time=5.992999324s -2026-04-20T11:28:35.191268Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:28:35.191364Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 485, latest_finalized_slot_number: 484, sync_status: Syncing { synced_da_height: 484, target_da_height: 485 }, .. } -2026-04-20T11:28:35.191473Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 485, latest_finalized_slot_number: 484, sync_status: Syncing { synced_da_height: 484, target_da_height: 485 }, .. } -2026-04-20T11:28:35.191537Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:28:41.185766Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=486 prev_hash=0xf5b91625f5a5206d744166b4995fa2a375203cfae0ea6e5b46506bb1e25dcc06 hash=0xc46fedab6e6b6c5a9cbeea70bba96459488dd965afe8b27c4697a3eb297c4d61 producing_time=1.128643ms -2026-04-20T11:28:41.192685Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=486 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430822e3c42fa0105eea59dc422afc3497eebf657e78add2e6a5932737ccd6e0a00f" batch_blobs=[] proof_blobs=[] -2026-04-20T11:28:41.193015Z DEBUG StfBlueprint::apply_slot{context=Node da_height=486}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430822e3c42fa0105eea59dc422afc3497eebf657e78add2e6a5932737ccd6e0a00f next_version=486 sesssion_starting_time=48.95µs -2026-04-20T11:28:41.193798Z DEBUG StfBlueprint::apply_slot{context=Node da_height=486}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943087faa9dd7e4044d6b3dd1b73dbb6eca4aa83596949cbf105355d730c23fc4546b next_version=486 time=848.915µs accesses_build_time=15.83µs finishing_session_time=750.455µs -2026-04-20T11:28:41.193883Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308707a24ab7b8927bcac1ba55c47582cf18e020454e3a75425d0ba41cb5b4bf234" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943087faa9dd7e4044d6b3dd1b73dbb6eca4aa83596949cbf105355d730c23fc4546b" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:28:41.194410Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 486, latest_finalized_slot_number: 485, sync_status: Syncing { synced_da_height: 485, target_da_height: 486 }, .. } -2026-04-20T11:28:41.194507Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 486, latest_finalized_slot_number: 485, sync_status: Syncing { synced_da_height: 485, target_da_height: 486 }, .. } -2026-04-20T11:28:41.194577Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:28:41.201174Z DEBUG sov_stf_runner::runner: Block execution complete time=6.009907135s -2026-04-20T11:28:41.201200Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:28:47.187953Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=487 prev_hash=0xc46fedab6e6b6c5a9cbeea70bba96459488dd965afe8b27c4697a3eb297c4d61 hash=0xce1ffc1efdc292a9d51705b94f8f0041419b2232878dd815cbfb7b8e436f0f2f producing_time=1.159252ms -2026-04-20T11:28:47.192783Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=487 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943087faa9dd7e4044d6b3dd1b73dbb6eca4aa83596949cbf105355d730c23fc4546b" batch_blobs=[] proof_blobs=[] -2026-04-20T11:28:47.193118Z DEBUG StfBlueprint::apply_slot{context=Node da_height=487}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943087faa9dd7e4044d6b3dd1b73dbb6eca4aa83596949cbf105355d730c23fc4546b next_version=487 sesssion_starting_time=47.05µs -2026-04-20T11:28:47.194003Z DEBUG StfBlueprint::apply_slot{context=Node da_height=487}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943080c20e9d83ce96e12897a1d987bb109fc990f85a8937263daef78703e137b4f67 next_version=487 time=949.014µs accesses_build_time=16.1µs finishing_session_time=853.444µs -2026-04-20T11:28:47.194092Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430822e3c42fa0105eea59dc422afc3497eebf657e78add2e6a5932737ccd6e0a00f" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943080c20e9d83ce96e12897a1d987bb109fc990f85a8937263daef78703e137b4f67" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:28:47.194607Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 487, latest_finalized_slot_number: 486, sync_status: Syncing { synced_da_height: 486, target_da_height: 487 }, .. } -2026-04-20T11:28:47.194715Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 487, latest_finalized_slot_number: 486, sync_status: Syncing { synced_da_height: 486, target_da_height: 487 }, .. } -2026-04-20T11:28:47.194789Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:28:47.201069Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999870261s -2026-04-20T11:28:47.201100Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:28:53.189734Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=488 prev_hash=0xce1ffc1efdc292a9d51705b94f8f0041419b2232878dd815cbfb7b8e436f0f2f hash=0x93eeae8c8c43f74048f8a91fe15dc4fa9a6b088b5c0530151e6dac697d62ab54 producing_time=1.249301ms -2026-04-20T11:28:53.192545Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=488 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943080c20e9d83ce96e12897a1d987bb109fc990f85a8937263daef78703e137b4f67" batch_blobs=[] proof_blobs=[] -2026-04-20T11:28:53.192874Z DEBUG StfBlueprint::apply_slot{context=Node da_height=488}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943080c20e9d83ce96e12897a1d987bb109fc990f85a8937263daef78703e137b4f67 next_version=488 sesssion_starting_time=45.659µs -2026-04-20T11:28:53.193777Z DEBUG StfBlueprint::apply_slot{context=Node da_height=488}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943085329b7c9075b5666b35695d0c0365e43090abbdff4ae116119149bd070439ba8 next_version=488 time=966.044µs accesses_build_time=15.99µs finishing_session_time=870.814µs -2026-04-20T11:28:53.193866Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943087faa9dd7e4044d6b3dd1b73dbb6eca4aa83596949cbf105355d730c23fc4546b" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943085329b7c9075b5666b35695d0c0365e43090abbdff4ae116119149bd070439ba8" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:28:53.194399Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 488, latest_finalized_slot_number: 487, sync_status: Syncing { synced_da_height: 487, target_da_height: 488 }, .. } -2026-04-20T11:28:53.194485Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 488, latest_finalized_slot_number: 487, sync_status: Syncing { synced_da_height: 487, target_da_height: 488 }, .. } -2026-04-20T11:28:53.194546Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:28:53.200963Z DEBUG sov_stf_runner::runner: Block execution complete time=5.99986414s -2026-04-20T11:28:53.200991Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:28:59.191871Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=489 prev_hash=0x93eeae8c8c43f74048f8a91fe15dc4fa9a6b088b5c0530151e6dac697d62ab54 hash=0xcb7fecc90df8e87219c6956a014a087d2357fac015b1b95a08be11e540cf2c33 producing_time=1.084113ms -2026-04-20T11:28:59.192420Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=489 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943085329b7c9075b5666b35695d0c0365e43090abbdff4ae116119149bd070439ba8" batch_blobs=[] proof_blobs=[] -2026-04-20T11:28:59.192729Z DEBUG StfBlueprint::apply_slot{context=Node da_height=489}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943085329b7c9075b5666b35695d0c0365e43090abbdff4ae116119149bd070439ba8 next_version=489 sesssion_starting_time=43.8µs -2026-04-20T11:28:59.193364Z DEBUG StfBlueprint::apply_slot{context=Node da_height=489}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430810c34df640af275e03961dc1ea9e279349131362807c9bd848c9e8a26c60d37c next_version=489 time=694.526µs accesses_build_time=15.03µs finishing_session_time=604.826µs -2026-04-20T11:28:59.193444Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943080c20e9d83ce96e12897a1d987bb109fc990f85a8937263daef78703e137b4f67" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430810c34df640af275e03961dc1ea9e279349131362807c9bd848c9e8a26c60d37c" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:28:59.193932Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 489, latest_finalized_slot_number: 488, sync_status: Synced { synced_da_height: 488 }, .. } -2026-04-20T11:28:59.194031Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 489, latest_finalized_slot_number: 488, sync_status: Synced { synced_da_height: 488 }, .. } -2026-04-20T11:28:59.194090Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:28:59.201165Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000175339s -2026-04-20T11:28:59.201191Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:29:05.194349Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=490 prev_hash=0xcb7fecc90df8e87219c6956a014a087d2357fac015b1b95a08be11e540cf2c33 hash=0x28bc0cfab1bcc3e22daab79ef51f0e6f6bb7e0216c5aff1d0368984fd477052d producing_time=1.287662ms -2026-04-20T11:29:05.202192Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=490 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430810c34df640af275e03961dc1ea9e279349131362807c9bd848c9e8a26c60d37c" batch_blobs=[] proof_blobs=[] -2026-04-20T11:29:05.202538Z DEBUG StfBlueprint::apply_slot{context=Node da_height=490}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430810c34df640af275e03961dc1ea9e279349131362807c9bd848c9e8a26c60d37c next_version=490 sesssion_starting_time=45.31µs -2026-04-20T11:29:05.203445Z DEBUG StfBlueprint::apply_slot{context=Node da_height=490}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943085c962e740ae3d9042945d553693ce22acb03e320227344d32b4d83d510178b54 next_version=490 time=969.584µs accesses_build_time=15.73µs finishing_session_time=871.834µs -2026-04-20T11:29:05.203532Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943085329b7c9075b5666b35695d0c0365e43090abbdff4ae116119149bd070439ba8" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943085c962e740ae3d9042945d553693ce22acb03e320227344d32b4d83d510178b54" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:29:05.204030Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 490, latest_finalized_slot_number: 489, sync_status: Synced { synced_da_height: 489 }, .. } -2026-04-20T11:29:05.204121Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 490, latest_finalized_slot_number: 489, sync_status: Synced { synced_da_height: 489 }, .. } -2026-04-20T11:29:05.204180Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:29:05.211333Z DEBUG sov_stf_runner::runner: Block execution complete time=6.010142104s -2026-04-20T11:29:05.211374Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:29:11.196823Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=491 prev_hash=0x28bc0cfab1bcc3e22daab79ef51f0e6f6bb7e0216c5aff1d0368984fd477052d hash=0xc0f643795bb0b68da986c1244f5826b9cc9a340e3b67bb707ace079dc9cdbc50 producing_time=1.268061ms -2026-04-20T11:29:11.203700Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=491 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943085c962e740ae3d9042945d553693ce22acb03e320227344d32b4d83d510178b54" batch_blobs=[] proof_blobs=[] -2026-04-20T11:29:11.204034Z DEBUG StfBlueprint::apply_slot{context=Node da_height=491}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943085c962e740ae3d9042945d553693ce22acb03e320227344d32b4d83d510178b54 next_version=491 sesssion_starting_time=46.03µs -2026-04-20T11:29:11.204879Z DEBUG StfBlueprint::apply_slot{context=Node da_height=491}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943082ea3c40eeab8f0031fafce6fd4189c928b227f52340a15cecc76bbecfd52b1dc next_version=491 time=909.084µs accesses_build_time=16.239µs finishing_session_time=813.625µs -2026-04-20T11:29:11.204965Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430810c34df640af275e03961dc1ea9e279349131362807c9bd848c9e8a26c60d37c" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943082ea3c40eeab8f0031fafce6fd4189c928b227f52340a15cecc76bbecfd52b1dc" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:29:11.205481Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 491, latest_finalized_slot_number: 490, sync_status: Synced { synced_da_height: 490 }, .. } -2026-04-20T11:29:11.205583Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 491, latest_finalized_slot_number: 490, sync_status: Synced { synced_da_height: 490 }, .. } -2026-04-20T11:29:11.205643Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:29:11.212171Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000800375s -2026-04-20T11:29:11.212197Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:29:17.199400Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=492 prev_hash=0xc0f643795bb0b68da986c1244f5826b9cc9a340e3b67bb707ace079dc9cdbc50 hash=0x9281d24e6a4b43f0e5cc9293099665590e77f5c4d428baf7ca072d03263d5a5b producing_time=1.097323ms -2026-04-20T11:29:17.203105Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=492 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943082ea3c40eeab8f0031fafce6fd4189c928b227f52340a15cecc76bbecfd52b1dc" batch_blobs=[] proof_blobs=[] -2026-04-20T11:29:17.203444Z DEBUG StfBlueprint::apply_slot{context=Node da_height=492}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943082ea3c40eeab8f0031fafce6fd4189c928b227f52340a15cecc76bbecfd52b1dc next_version=492 sesssion_starting_time=46.27µs -2026-04-20T11:29:17.204321Z DEBUG StfBlueprint::apply_slot{context=Node da_height=492}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943080ddee097707f9006cfdeab1c7dfd3099ac86232354b154143a16be282fd704e8 next_version=492 time=939.634µs accesses_build_time=15.48µs finishing_session_time=835.014µs -2026-04-20T11:29:17.204408Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943085c962e740ae3d9042945d553693ce22acb03e320227344d32b4d83d510178b54" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943080ddee097707f9006cfdeab1c7dfd3099ac86232354b154143a16be282fd704e8" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:29:17.204894Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 492, latest_finalized_slot_number: 491, sync_status: Synced { synced_da_height: 491 }, .. } -2026-04-20T11:29:17.204984Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 492, latest_finalized_slot_number: 491, sync_status: Synced { synced_da_height: 491 }, .. } -2026-04-20T11:29:17.205043Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:29:17.211885Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999689463s -2026-04-20T11:29:17.211916Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:29:23.202091Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=493 prev_hash=0x9281d24e6a4b43f0e5cc9293099665590e77f5c4d428baf7ca072d03263d5a5b hash=0xebcdcdec905dded2a85beec1d3b09417e24ff9e6ae1fb20667e1ac477ea188bb producing_time=1.210723ms -2026-04-20T11:29:23.203742Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=493 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943080ddee097707f9006cfdeab1c7dfd3099ac86232354b154143a16be282fd704e8" batch_blobs=[] proof_blobs=[] -2026-04-20T11:29:23.204070Z DEBUG StfBlueprint::apply_slot{context=Node da_height=493}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943080ddee097707f9006cfdeab1c7dfd3099ac86232354b154143a16be282fd704e8 next_version=493 sesssion_starting_time=46.98µs -2026-04-20T11:29:23.204832Z DEBUG StfBlueprint::apply_slot{context=Node da_height=493}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943080ac49ccc9a7f63e1fe97c9791208bd01a1906191fa9a83621c2b0da5de892b66 next_version=493 time=826.615µs accesses_build_time=16.43µs finishing_session_time=730.065µs -2026-04-20T11:29:23.204922Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943082ea3c40eeab8f0031fafce6fd4189c928b227f52340a15cecc76bbecfd52b1dc" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943080ac49ccc9a7f63e1fe97c9791208bd01a1906191fa9a83621c2b0da5de892b66" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:29:23.205411Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 493, latest_finalized_slot_number: 492, sync_status: Synced { synced_da_height: 492 }, .. } -2026-04-20T11:29:23.205509Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 493, latest_finalized_slot_number: 492, sync_status: Synced { synced_da_height: 492 }, .. } -2026-04-20T11:29:23.205571Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:29:23.216027Z DEBUG sov_stf_runner::runner: Block execution complete time=6.004111194s -2026-04-20T11:29:23.216076Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:29:29.204354Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=494 prev_hash=0xebcdcdec905dded2a85beec1d3b09417e24ff9e6ae1fb20667e1ac477ea188bb hash=0x29752ed763dc723ac3823bd59141ee7e3316e7dec035556b574a5e67a8492f79 producing_time=1.296911ms -2026-04-20T11:29:29.207070Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=494 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943080ac49ccc9a7f63e1fe97c9791208bd01a1906191fa9a83621c2b0da5de892b66" batch_blobs=[] proof_blobs=[] -2026-04-20T11:29:29.207416Z DEBUG StfBlueprint::apply_slot{context=Node da_height=494}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943080ac49ccc9a7f63e1fe97c9791208bd01a1906191fa9a83621c2b0da5de892b66 next_version=494 sesssion_starting_time=45.85µs -2026-04-20T11:29:29.208229Z DEBUG StfBlueprint::apply_slot{context=Node da_height=494}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943085845a322871eddc8d14879ea4234d67bc3dd22ef4a2a06c2a8c146ea21ef9d47 next_version=494 time=876.314µs accesses_build_time=17µs finishing_session_time=777.035µs -2026-04-20T11:29:29.208333Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943080ddee097707f9006cfdeab1c7dfd3099ac86232354b154143a16be282fd704e8" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943085845a322871eddc8d14879ea4234d67bc3dd22ef4a2a06c2a8c146ea21ef9d47" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:29:29.208867Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 494, latest_finalized_slot_number: 493, sync_status: Synced { synced_da_height: 493 }, .. } -2026-04-20T11:29:29.208977Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 494, latest_finalized_slot_number: 493, sync_status: Synced { synced_da_height: 493 }, .. } -2026-04-20T11:29:29.209051Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:29:29.218395Z DEBUG sov_stf_runner::runner: Block execution complete time=6.002322865s -2026-04-20T11:29:29.218421Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:29:35.207278Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=495 prev_hash=0x29752ed763dc723ac3823bd59141ee7e3316e7dec035556b574a5e67a8492f79 hash=0x0dbb2c871914647ce0f6a052b95c33bfa51c1f9d42a373dac26d368d01028490 producing_time=1.135783ms -2026-04-20T11:29:35.210983Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=495 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943085845a322871eddc8d14879ea4234d67bc3dd22ef4a2a06c2a8c146ea21ef9d47" batch_blobs=[] proof_blobs=[] -2026-04-20T11:29:35.211356Z DEBUG StfBlueprint::apply_slot{context=Node da_height=495}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943085845a322871eddc8d14879ea4234d67bc3dd22ef4a2a06c2a8c146ea21ef9d47 next_version=495 sesssion_starting_time=64.409µs -2026-04-20T11:29:35.212087Z DEBUG StfBlueprint::apply_slot{context=Node da_height=495}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943081fb982e32bc7ed500066d556f5edc1256096e7adf3d70f59edb842290a0e7693 next_version=495 time=812.485µs accesses_build_time=16.3µs finishing_session_time=695.916µs -2026-04-20T11:29:35.212172Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943080ac49ccc9a7f63e1fe97c9791208bd01a1906191fa9a83621c2b0da5de892b66" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943081fb982e32bc7ed500066d556f5edc1256096e7adf3d70f59edb842290a0e7693" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:29:35.212677Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 495, latest_finalized_slot_number: 494, sync_status: Synced { synced_da_height: 494 }, .. } -2026-04-20T11:29:35.212779Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 495, latest_finalized_slot_number: 494, sync_status: Synced { synced_da_height: 494 }, .. } -2026-04-20T11:29:35.212838Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:29:35.218956Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000536077s -2026-04-20T11:29:35.218989Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:29:41.208718Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=496 prev_hash=0x0dbb2c871914647ce0f6a052b95c33bfa51c1f9d42a373dac26d368d01028490 hash=0xe8ddcae3012b98805c33bed0c228c9c255820338a5e97aa039354bf4c1fcc8df producing_time=1.101343ms -2026-04-20T11:29:41.210430Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=496 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943081fb982e32bc7ed500066d556f5edc1256096e7adf3d70f59edb842290a0e7693" batch_blobs=[] proof_blobs=[] -2026-04-20T11:29:41.210781Z DEBUG StfBlueprint::apply_slot{context=Node da_height=496}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943081fb982e32bc7ed500066d556f5edc1256096e7adf3d70f59edb842290a0e7693 next_version=496 sesssion_starting_time=45.26µs -2026-04-20T11:29:41.211557Z DEBUG StfBlueprint::apply_slot{context=Node da_height=496}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943085c8f54a1e5a65c7635a6e1ca8fd9562d2622d683f7e880aaa9c27cf7c720720e next_version=496 time=837.224µs accesses_build_time=15.02µs finishing_session_time=743.625µs -2026-04-20T11:29:41.211645Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943085845a322871eddc8d14879ea4234d67bc3dd22ef4a2a06c2a8c146ea21ef9d47" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943085c8f54a1e5a65c7635a6e1ca8fd9562d2622d683f7e880aaa9c27cf7c720720e" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:29:41.212151Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 496, latest_finalized_slot_number: 495, sync_status: Synced { synced_da_height: 495 }, .. } -2026-04-20T11:29:41.212239Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 496, latest_finalized_slot_number: 495, sync_status: Synced { synced_da_height: 495 }, .. } -2026-04-20T11:29:41.212297Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:29:41.218967Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999979361s -2026-04-20T11:29:41.218999Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:29:47.210717Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=497 prev_hash=0xe8ddcae3012b98805c33bed0c228c9c255820338a5e97aa039354bf4c1fcc8df hash=0xb054afd697fd135486c24c0020c8ea88ec3ffe99b108fbb4899abac6ca1f00c6 producing_time=1.140293ms -2026-04-20T11:29:47.220523Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=497 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943085c8f54a1e5a65c7635a6e1ca8fd9562d2622d683f7e880aaa9c27cf7c720720e" batch_blobs=[] proof_blobs=[] -2026-04-20T11:29:47.220895Z DEBUG StfBlueprint::apply_slot{context=Node da_height=497}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943085c8f54a1e5a65c7635a6e1ca8fd9562d2622d683f7e880aaa9c27cf7c720720e next_version=497 sesssion_starting_time=55.009µs -2026-04-20T11:29:47.221754Z DEBUG StfBlueprint::apply_slot{context=Node da_height=497}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430861e055efa28c278978d8387fe63ef002072321c00f7d65640ecf4360287cb0cf next_version=497 time=931.754µs accesses_build_time=16.43µs finishing_session_time=825.405µs -2026-04-20T11:29:47.221838Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943081fb982e32bc7ed500066d556f5edc1256096e7adf3d70f59edb842290a0e7693" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430861e055efa28c278978d8387fe63ef002072321c00f7d65640ecf4360287cb0cf" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:29:47.222364Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 497, latest_finalized_slot_number: 496, sync_status: Synced { synced_da_height: 496 }, .. } -2026-04-20T11:29:47.222463Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 497, latest_finalized_slot_number: 496, sync_status: Synced { synced_da_height: 496 }, .. } -2026-04-20T11:29:47.222532Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:29:47.232441Z DEBUG sov_stf_runner::runner: Block execution complete time=6.013444314s -2026-04-20T11:29:47.232466Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:29:53.213117Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=498 prev_hash=0xb054afd697fd135486c24c0020c8ea88ec3ffe99b108fbb4899abac6ca1f00c6 hash=0x091353f072bedae1b495729f0b715350ad4dfd323fde5bd8a3ce1e45e7e1354e producing_time=1.224592ms -2026-04-20T11:29:53.214888Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=498 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430861e055efa28c278978d8387fe63ef002072321c00f7d65640ecf4360287cb0cf" batch_blobs=[] proof_blobs=[] -2026-04-20T11:29:53.215212Z DEBUG StfBlueprint::apply_slot{context=Node da_height=498}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430861e055efa28c278978d8387fe63ef002072321c00f7d65640ecf4360287cb0cf next_version=498 sesssion_starting_time=47.05µs -2026-04-20T11:29:53.216024Z DEBUG StfBlueprint::apply_slot{context=Node da_height=498}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943081f9b0ca21a42db0cf3ed4a78b3621dec63de1aa7363953394bb7f7e85634d1c5 next_version=498 time=876.234µs accesses_build_time=16.06µs finishing_session_time=780.555µs -2026-04-20T11:29:53.216109Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943085c8f54a1e5a65c7635a6e1ca8fd9562d2622d683f7e880aaa9c27cf7c720720e" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943081f9b0ca21a42db0cf3ed4a78b3621dec63de1aa7363953394bb7f7e85634d1c5" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:29:53.216615Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 498, latest_finalized_slot_number: 497, sync_status: Synced { synced_da_height: 497 }, .. } -2026-04-20T11:29:53.216713Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 498, latest_finalized_slot_number: 497, sync_status: Synced { synced_da_height: 497 }, .. } -2026-04-20T11:29:53.216783Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:29:53.222541Z DEBUG sov_stf_runner::runner: Block execution complete time=5.990075864s -2026-04-20T11:29:53.222566Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:29:59.215045Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=499 prev_hash=0x091353f072bedae1b495729f0b715350ad4dfd323fde5bd8a3ce1e45e7e1354e hash=0x4def6060d432a6f12537929b6dddfdc9c29e2fbadc096181211acedfc7a81681 producing_time=1.151723ms -2026-04-20T11:29:59.224787Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=499 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943081f9b0ca21a42db0cf3ed4a78b3621dec63de1aa7363953394bb7f7e85634d1c5" batch_blobs=[] proof_blobs=[] -2026-04-20T11:29:59.225125Z DEBUG StfBlueprint::apply_slot{context=Node da_height=499}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943081f9b0ca21a42db0cf3ed4a78b3621dec63de1aa7363953394bb7f7e85634d1c5 next_version=499 sesssion_starting_time=51.77µs -2026-04-20T11:29:59.225963Z DEBUG StfBlueprint::apply_slot{context=Node da_height=499}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430809ce71d22eb873efb1aaed92734ebf0d7ad6c2414f0ed185230a2f9ea9d52931 next_version=499 time=907.255µs accesses_build_time=16.071µs finishing_session_time=806.075µs -2026-04-20T11:29:59.226049Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430861e055efa28c278978d8387fe63ef002072321c00f7d65640ecf4360287cb0cf" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430809ce71d22eb873efb1aaed92734ebf0d7ad6c2414f0ed185230a2f9ea9d52931" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:29:59.226593Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 499, latest_finalized_slot_number: 498, sync_status: Synced { synced_da_height: 498 }, .. } -2026-04-20T11:29:59.226686Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 499, latest_finalized_slot_number: 498, sync_status: Synced { synced_da_height: 498 }, .. } -2026-04-20T11:29:59.226756Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:29:59.232819Z DEBUG sov_stf_runner::runner: Block execution complete time=6.010253494s -2026-04-20T11:29:59.232854Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:30:05.217457Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=500 prev_hash=0x4def6060d432a6f12537929b6dddfdc9c29e2fbadc096181211acedfc7a81681 hash=0xd5f377dc4425d18a9560b2e1d9671a3035da396451ee52c5ea78086b24d6c437 producing_time=1.305132ms -2026-04-20T11:30:05.224362Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=500 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430809ce71d22eb873efb1aaed92734ebf0d7ad6c2414f0ed185230a2f9ea9d52931" batch_blobs=[] proof_blobs=[] -2026-04-20T11:30:05.224693Z DEBUG StfBlueprint::apply_slot{context=Node da_height=500}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430809ce71d22eb873efb1aaed92734ebf0d7ad6c2414f0ed185230a2f9ea9d52931 next_version=500 sesssion_starting_time=45.769µs -2026-04-20T11:30:05.225549Z DEBUG StfBlueprint::apply_slot{context=Node da_height=500}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943087672f15f867e84642e84b3215fefe10d719708a61af153f1af99418e9f7f33d8 next_version=500 time=918.834µs accesses_build_time=15.71µs finishing_session_time=824.445µs -2026-04-20T11:30:05.225642Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943081f9b0ca21a42db0cf3ed4a78b3621dec63de1aa7363953394bb7f7e85634d1c5" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943087672f15f867e84642e84b3215fefe10d719708a61af153f1af99418e9f7f33d8" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:30:05.226169Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 500, latest_finalized_slot_number: 499, sync_status: Synced { synced_da_height: 499 }, .. } -2026-04-20T11:30:05.226266Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 500, latest_finalized_slot_number: 499, sync_status: Synced { synced_da_height: 499 }, .. } -2026-04-20T11:30:05.226342Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:30:05.233168Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000315799s -2026-04-20T11:30:05.233201Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:30:11.220098Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=501 prev_hash=0xd5f377dc4425d18a9560b2e1d9671a3035da396451ee52c5ea78086b24d6c437 hash=0x26bf87c0214758e2c5124e5712e605160f658711297aec4cbd347dbcd5175bd0 producing_time=1.221803ms -2026-04-20T11:30:11.224862Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=501 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943087672f15f867e84642e84b3215fefe10d719708a61af153f1af99418e9f7f33d8" batch_blobs=[] proof_blobs=[] -2026-04-20T11:30:11.225187Z DEBUG StfBlueprint::apply_slot{context=Node da_height=501}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943087672f15f867e84642e84b3215fefe10d719708a61af153f1af99418e9f7f33d8 next_version=501 sesssion_starting_time=47.21µs -2026-04-20T11:30:11.225926Z DEBUG StfBlueprint::apply_slot{context=Node da_height=501}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430872bd343e9634d6b48049774620d19ae666fd1e1fa459ac94f02f62de18db6607 next_version=501 time=803.525µs accesses_build_time=16.11µs finishing_session_time=706.365µs -2026-04-20T11:30:11.226012Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430809ce71d22eb873efb1aaed92734ebf0d7ad6c2414f0ed185230a2f9ea9d52931" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430872bd343e9634d6b48049774620d19ae666fd1e1fa459ac94f02f62de18db6607" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:30:11.226549Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 501, latest_finalized_slot_number: 500, sync_status: Synced { synced_da_height: 500 }, .. } -2026-04-20T11:30:11.226657Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 501, latest_finalized_slot_number: 500, sync_status: Synced { synced_da_height: 500 }, .. } -2026-04-20T11:30:11.226731Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:30:11.236642Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003443498s -2026-04-20T11:30:11.236667Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:30:17.221832Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=502 prev_hash=0x26bf87c0214758e2c5124e5712e605160f658711297aec4cbd347dbcd5175bd0 hash=0x6429dde55de45b0d68ab65a934f1ac153fe143c71dac427e9306473fad7ea541 producing_time=1.205062ms -2026-04-20T11:30:17.228664Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=502 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430872bd343e9634d6b48049774620d19ae666fd1e1fa459ac94f02f62de18db6607" batch_blobs=[] proof_blobs=[] -2026-04-20T11:30:17.228995Z DEBUG StfBlueprint::apply_slot{context=Node da_height=502}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430872bd343e9634d6b48049774620d19ae666fd1e1fa459ac94f02f62de18db6607 next_version=502 sesssion_starting_time=45.55µs -2026-04-20T11:30:17.229858Z DEBUG StfBlueprint::apply_slot{context=Node da_height=502}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943081fcd2fd8445c59044d4aafb4b586ef68cf222763e17bfdabd9075095b1a53f6d next_version=502 time=926.094µs accesses_build_time=16.26µs finishing_session_time=831.894µs -2026-04-20T11:30:17.229945Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943087672f15f867e84642e84b3215fefe10d719708a61af153f1af99418e9f7f33d8" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943081fcd2fd8445c59044d4aafb4b586ef68cf222763e17bfdabd9075095b1a53f6d" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:30:17.230449Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 502, latest_finalized_slot_number: 501, sync_status: Synced { synced_da_height: 501 }, .. } -2026-04-20T11:30:17.230555Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 502, latest_finalized_slot_number: 501, sync_status: Synced { synced_da_height: 501 }, .. } -2026-04-20T11:30:17.230624Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:30:17.236870Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000204199s -2026-04-20T11:30:17.236897Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:30:23.223795Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=503 prev_hash=0x6429dde55de45b0d68ab65a934f1ac153fe143c71dac427e9306473fad7ea541 hash=0xccc08b9774de0a7a4aad95e05bec4adb1d8886d6d8ccb692705360e854c7429d producing_time=1.088573ms -2026-04-20T11:30:23.228546Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=503 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943081fcd2fd8445c59044d4aafb4b586ef68cf222763e17bfdabd9075095b1a53f6d" batch_blobs=[] proof_blobs=[] -2026-04-20T11:30:23.228874Z DEBUG StfBlueprint::apply_slot{context=Node da_height=503}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943081fcd2fd8445c59044d4aafb4b586ef68cf222763e17bfdabd9075095b1a53f6d next_version=503 sesssion_starting_time=47.879µs -2026-04-20T11:30:23.229717Z DEBUG StfBlueprint::apply_slot{context=Node da_height=503}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943085190eff73009dd248e089207811d0d74a76bf1f790e65594b903d4da793bc229 next_version=503 time=908.984µs accesses_build_time=16.6µs finishing_session_time=812.555µs -2026-04-20T11:30:23.229802Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430872bd343e9634d6b48049774620d19ae666fd1e1fa459ac94f02f62de18db6607" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943085190eff73009dd248e089207811d0d74a76bf1f790e65594b903d4da793bc229" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:30:23.230267Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 503, latest_finalized_slot_number: 502, sync_status: Synced { synced_da_height: 502 }, .. } -2026-04-20T11:30:23.230368Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 503, latest_finalized_slot_number: 502, sync_status: Synced { synced_da_height: 502 }, .. } -2026-04-20T11:30:23.230435Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:30:23.236848Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999952111s -2026-04-20T11:30:23.236871Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:30:29.225722Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=504 prev_hash=0xccc08b9774de0a7a4aad95e05bec4adb1d8886d6d8ccb692705360e854c7429d hash=0xb6ce9803f1d3150f45c6790da10422b240eb73a211cd953dce258ab5de5e6f39 producing_time=1.154422ms -2026-04-20T11:30:29.228293Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=504 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943085190eff73009dd248e089207811d0d74a76bf1f790e65594b903d4da793bc229" batch_blobs=[] proof_blobs=[] -2026-04-20T11:30:29.228637Z DEBUG StfBlueprint::apply_slot{context=Node da_height=504}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943085190eff73009dd248e089207811d0d74a76bf1f790e65594b903d4da793bc229 next_version=504 sesssion_starting_time=50.13µs -2026-04-20T11:30:29.229511Z DEBUG StfBlueprint::apply_slot{context=Node da_height=504}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943084f5cb00518330e5ba10615370879a4d3472917612d5490175042a0d2e530b731 next_version=504 time=942.574µs accesses_build_time=17.25µs finishing_session_time=831.895µs -2026-04-20T11:30:29.229612Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943081fcd2fd8445c59044d4aafb4b586ef68cf222763e17bfdabd9075095b1a53f6d" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943084f5cb00518330e5ba10615370879a4d3472917612d5490175042a0d2e530b731" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:30:29.230098Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 504, latest_finalized_slot_number: 503, sync_status: Synced { synced_da_height: 503 }, .. } -2026-04-20T11:30:29.230201Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 504, latest_finalized_slot_number: 503, sync_status: Synced { synced_da_height: 503 }, .. } -2026-04-20T11:30:29.230272Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:30:29.240281Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003411238s -2026-04-20T11:30:29.240297Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:30:35.227841Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=505 prev_hash=0xb6ce9803f1d3150f45c6790da10422b240eb73a211cd953dce258ab5de5e6f39 hash=0x1a0f92d1608f5cc9f5bfec41b893899e2aa0ecc955afe7469a7a9447ae18f1e6 producing_time=1.160943ms -2026-04-20T11:30:35.231594Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=505 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943084f5cb00518330e5ba10615370879a4d3472917612d5490175042a0d2e530b731" batch_blobs=[] proof_blobs=[] -2026-04-20T11:30:35.231924Z DEBUG StfBlueprint::apply_slot{context=Node da_height=505}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943084f5cb00518330e5ba10615370879a4d3472917612d5490175042a0d2e530b731 next_version=505 sesssion_starting_time=48.009µs -2026-04-20T11:30:35.232676Z DEBUG StfBlueprint::apply_slot{context=Node da_height=505}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308169e774eb2697dea915e47742d262104e93ef4c4fe8d387c073aa0d38bf3af24 next_version=505 time=817.824µs accesses_build_time=16.42µs finishing_session_time=717.875µs -2026-04-20T11:30:35.232763Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943085190eff73009dd248e089207811d0d74a76bf1f790e65594b903d4da793bc229" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308169e774eb2697dea915e47742d262104e93ef4c4fe8d387c073aa0d38bf3af24" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:30:35.233277Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 505, latest_finalized_slot_number: 505, sync_status: Synced { synced_da_height: 504 }, .. } -2026-04-20T11:30:35.233378Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 505, latest_finalized_slot_number: 505, sync_status: Synced { synced_da_height: 504 }, .. } -2026-04-20T11:30:35.233446Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:30:35.241560Z DEBUG sov_stf_runner::runner: Block execution complete time=6.001263342s -2026-04-20T11:30:35.241576Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:30:41.230015Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=506 prev_hash=0x1a0f92d1608f5cc9f5bfec41b893899e2aa0ecc955afe7469a7a9447ae18f1e6 hash=0x6711e6367931b2f63904c10e377c4221e338d38d170977774f2155a05792fca3 producing_time=1.147032ms -2026-04-20T11:30:41.232832Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=506 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308169e774eb2697dea915e47742d262104e93ef4c4fe8d387c073aa0d38bf3af24" batch_blobs=[] proof_blobs=[] -2026-04-20T11:30:41.233156Z DEBUG StfBlueprint::apply_slot{context=Node da_height=506}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308169e774eb2697dea915e47742d262104e93ef4c4fe8d387c073aa0d38bf3af24 next_version=506 sesssion_starting_time=46.39µs -2026-04-20T11:30:41.233897Z DEBUG StfBlueprint::apply_slot{context=Node da_height=506}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308202c06c9c2a9b6e890daee77254df112c90b6659b6632d2be7cf7eaa97ba03c8 next_version=506 time=804.585µs accesses_build_time=15.72µs finishing_session_time=710.075µs -2026-04-20T11:30:41.233991Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308169e774eb2697dea915e47742d262104e93ef4c4fe8d387c073aa0d38bf3af24" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308202c06c9c2a9b6e890daee77254df112c90b6659b6632d2be7cf7eaa97ba03c8" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:30:41.234471Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 506, latest_finalized_slot_number: 506, sync_status: Synced { synced_da_height: 505 }, .. } -2026-04-20T11:30:41.234561Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 506, latest_finalized_slot_number: 506, sync_status: Synced { synced_da_height: 505 }, .. } -2026-04-20T11:30:41.234619Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:30:41.240773Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999197356s -2026-04-20T11:30:41.240798Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:30:47.232799Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=507 prev_hash=0x6711e6367931b2f63904c10e377c4221e338d38d170977774f2155a05792fca3 hash=0x70a5443edebb9f12c30de2f6f2a2c2b3508894b0d1f3b496204d0e6451aacb50 producing_time=1.057293ms -2026-04-20T11:30:47.242603Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=507 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308202c06c9c2a9b6e890daee77254df112c90b6659b6632d2be7cf7eaa97ba03c8" batch_blobs=[] proof_blobs=[] -2026-04-20T11:30:47.242934Z DEBUG StfBlueprint::apply_slot{context=Node da_height=507}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308202c06c9c2a9b6e890daee77254df112c90b6659b6632d2be7cf7eaa97ba03c8 next_version=507 sesssion_starting_time=46.239µs -2026-04-20T11:30:47.243703Z DEBUG StfBlueprint::apply_slot{context=Node da_height=507}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308016aeb89cc123a3c669bbaa9850532a56e397b804d5ef089793236fd32d4d756 next_version=507 time=832.275µs accesses_build_time=15.971µs finishing_session_time=727.995µs -2026-04-20T11:30:47.243794Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308202c06c9c2a9b6e890daee77254df112c90b6659b6632d2be7cf7eaa97ba03c8" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308016aeb89cc123a3c669bbaa9850532a56e397b804d5ef089793236fd32d4d756" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:30:47.244203Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003406119s -2026-04-20T11:30:47.244236Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:30:47.244279Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 507, latest_finalized_slot_number: 506, sync_status: Syncing { synced_da_height: 506, target_da_height: 507 }, .. } -2026-04-20T11:30:47.244381Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 507, latest_finalized_slot_number: 506, sync_status: Syncing { synced_da_height: 506, target_da_height: 507 }, .. } -2026-04-20T11:30:47.244450Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:30:53.235439Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=508 prev_hash=0x70a5443edebb9f12c30de2f6f2a2c2b3508894b0d1f3b496204d0e6451aacb50 hash=0xa2609266e09a06e8e30f2eab4aa7d07cb79f5d53521ce41e5957261e594e9628 producing_time=1.137443ms -2026-04-20T11:30:53.245447Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=508 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308016aeb89cc123a3c669bbaa9850532a56e397b804d5ef089793236fd32d4d756" batch_blobs=[] proof_blobs=[] -2026-04-20T11:30:53.245780Z DEBUG StfBlueprint::apply_slot{context=Node da_height=508}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308016aeb89cc123a3c669bbaa9850532a56e397b804d5ef089793236fd32d4d756 next_version=508 sesssion_starting_time=53.399µs -2026-04-20T11:30:53.246650Z DEBUG StfBlueprint::apply_slot{context=Node da_height=508}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308584fc791c62f4481e1e619488494146045e25fae88c5d60cae77cecc5617ce06 next_version=508 time=940.314µs accesses_build_time=16.02µs finishing_session_time=830.385µs -2026-04-20T11:30:53.246732Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308202c06c9c2a9b6e890daee77254df112c90b6659b6632d2be7cf7eaa97ba03c8" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308584fc791c62f4481e1e619488494146045e25fae88c5d60cae77cecc5617ce06" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:30:53.247237Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 508, latest_finalized_slot_number: 507, sync_status: Syncing { synced_da_height: 507, target_da_height: 508 }, .. } -2026-04-20T11:30:53.247328Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 508, latest_finalized_slot_number: 507, sync_status: Syncing { synced_da_height: 507, target_da_height: 508 }, .. } -2026-04-20T11:30:53.247392Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:30:53.253961Z DEBUG sov_stf_runner::runner: Block execution complete time=6.009726497s -2026-04-20T11:30:53.253996Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:30:59.237911Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=509 prev_hash=0xa2609266e09a06e8e30f2eab4aa7d07cb79f5d53521ce41e5957261e594e9628 hash=0x9cb16f6d6832713801e4a5a03892e37205156ef059e2ecc8ff1f23e5cde7d755 producing_time=1.032983ms -2026-04-20T11:30:59.245799Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=509 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308584fc791c62f4481e1e619488494146045e25fae88c5d60cae77cecc5617ce06" batch_blobs=[] proof_blobs=[] -2026-04-20T11:30:59.246127Z DEBUG StfBlueprint::apply_slot{context=Node da_height=509}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308584fc791c62f4481e1e619488494146045e25fae88c5d60cae77cecc5617ce06 next_version=509 sesssion_starting_time=46.64µs -2026-04-20T11:30:59.246973Z DEBUG StfBlueprint::apply_slot{context=Node da_height=509}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943082e335c019e7bee37d6426dafc6cc3f694fa4039ccdd516258a2eef3850101fdb next_version=509 time=909.754µs accesses_build_time=16.209µs finishing_session_time=814.554µs -2026-04-20T11:30:59.247057Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308016aeb89cc123a3c669bbaa9850532a56e397b804d5ef089793236fd32d4d756" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943082e335c019e7bee37d6426dafc6cc3f694fa4039ccdd516258a2eef3850101fdb" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:30:59.247571Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 509, latest_finalized_slot_number: 508, sync_status: Syncing { synced_da_height: 508, target_da_height: 509 }, .. } -2026-04-20T11:30:59.247675Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 509, latest_finalized_slot_number: 508, sync_status: Syncing { synced_da_height: 508, target_da_height: 509 }, .. } -2026-04-20T11:30:59.247735Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:30:59.254132Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000137551s -2026-04-20T11:30:59.254164Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:31:05.239634Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=510 prev_hash=0x9cb16f6d6832713801e4a5a03892e37205156ef059e2ecc8ff1f23e5cde7d755 hash=0x021261a71067b907b7785d68926eca9fa457444ae91c34334241227de8b8a573 producing_time=1.054163ms -2026-04-20T11:31:05.245411Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=510 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943082e335c019e7bee37d6426dafc6cc3f694fa4039ccdd516258a2eef3850101fdb" batch_blobs=[] proof_blobs=[] -2026-04-20T11:31:05.245719Z DEBUG StfBlueprint::apply_slot{context=Node da_height=510}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943082e335c019e7bee37d6426dafc6cc3f694fa4039ccdd516258a2eef3850101fdb next_version=510 sesssion_starting_time=46.5µs -2026-04-20T11:31:05.246588Z DEBUG StfBlueprint::apply_slot{context=Node da_height=510}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943083e901a912c815b5d5234bd8c3ee9b9f883fd859a65063871f9478023c3825016 next_version=510 time=931.604µs accesses_build_time=14.92µs finishing_session_time=838.825µs -2026-04-20T11:31:05.246667Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308584fc791c62f4481e1e619488494146045e25fae88c5d60cae77cecc5617ce06" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943083e901a912c815b5d5234bd8c3ee9b9f883fd859a65063871f9478023c3825016" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:31:05.247113Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 510, latest_finalized_slot_number: 509, sync_status: Syncing { synced_da_height: 509, target_da_height: 510 }, .. } -2026-04-20T11:31:05.247198Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 510, latest_finalized_slot_number: 509, sync_status: Syncing { synced_da_height: 509, target_da_height: 510 }, .. } -2026-04-20T11:31:05.247257Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:31:05.257759Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003597548s -2026-04-20T11:31:05.257785Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:31:11.242126Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=511 prev_hash=0x021261a71067b907b7785d68926eca9fa457444ae91c34334241227de8b8a573 hash=0x2156f54a90c470b53ad5f271c531b0263cb33598d8564a9cf824d3224cf92e14 producing_time=1.116493ms -2026-04-20T11:31:11.249898Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=511 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943083e901a912c815b5d5234bd8c3ee9b9f883fd859a65063871f9478023c3825016" batch_blobs=[] proof_blobs=[] -2026-04-20T11:31:11.250244Z DEBUG StfBlueprint::apply_slot{context=Node da_height=511}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943083e901a912c815b5d5234bd8c3ee9b9f883fd859a65063871f9478023c3825016 next_version=511 sesssion_starting_time=54.47µs -2026-04-20T11:31:11.251099Z DEBUG StfBlueprint::apply_slot{context=Node da_height=511}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308163ec1e515e35fd73f1e279cc8ca4579bedbc66625ef6d61428d0d485dcb1e7d next_version=511 time=929.794µs accesses_build_time=18.37µs finishing_session_time=812.154µs -2026-04-20T11:31:11.251212Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943082e335c019e7bee37d6426dafc6cc3f694fa4039ccdd516258a2eef3850101fdb" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308163ec1e515e35fd73f1e279cc8ca4579bedbc66625ef6d61428d0d485dcb1e7d" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:31:11.251785Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 511, latest_finalized_slot_number: 510, sync_status: Synced { synced_da_height: 510 }, .. } -2026-04-20T11:31:11.251884Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 511, latest_finalized_slot_number: 510, sync_status: Synced { synced_da_height: 510 }, .. } -2026-04-20T11:31:11.251944Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:31:11.259209Z  INFO sov_db::storage_manager::nomt_based::groups: Starting pruner task iteration versions_to_keep=20 -2026-04-20T11:31:11.259437Z DEBUG sov_stf_runner::runner: Block execution complete time=6.001653711s -2026-04-20T11:31:11.259447Z  WARN sov_db::storage_manager::nomt_based::groups: Pruning temporarily disabled -2026-04-20T11:31:11.259465Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:31:17.244490Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=512 prev_hash=0x2156f54a90c470b53ad5f271c531b0263cb33598d8564a9cf824d3224cf92e14 hash=0xd41374a821c7fd90d0f1cddc36c317dcd8b605f3917309df72d01a031e3a5254 producing_time=1.181243ms -2026-04-20T11:31:17.251220Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=512 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308163ec1e515e35fd73f1e279cc8ca4579bedbc66625ef6d61428d0d485dcb1e7d" batch_blobs=[] proof_blobs=[] -2026-04-20T11:31:17.251561Z DEBUG StfBlueprint::apply_slot{context=Node da_height=512}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308163ec1e515e35fd73f1e279cc8ca4579bedbc66625ef6d61428d0d485dcb1e7d next_version=512 sesssion_starting_time=48.549µs -2026-04-20T11:31:17.252424Z DEBUG StfBlueprint::apply_slot{context=Node da_height=512}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430857d0fb925d440e9eb2600316a2d0d15c4d24ccbaa0c70f346f9daa5de4450c4b next_version=512 time=927.934µs accesses_build_time=15.29µs finishing_session_time=828.035µs -2026-04-20T11:31:17.252516Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943083e901a912c815b5d5234bd8c3ee9b9f883fd859a65063871f9478023c3825016" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430857d0fb925d440e9eb2600316a2d0d15c4d24ccbaa0c70f346f9daa5de4450c4b" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:31:17.253058Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 512, latest_finalized_slot_number: 511, sync_status: Synced { synced_da_height: 511 }, .. } -2026-04-20T11:31:17.253144Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 512, latest_finalized_slot_number: 511, sync_status: Synced { synced_da_height: 511 }, .. } -2026-04-20T11:31:17.253204Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:31:17.260163Z  INFO sov_db::storage_manager::nomt_based::groups: Pruner task has completed historical_state.hit_size_limit=false accessory_state.hit_size_limit=false -2026-04-20T11:31:17.260527Z DEBUG sov_stf_runner::runner: Block execution complete time=6.001064024s -2026-04-20T11:31:17.260541Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:31:23.246641Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=513 prev_hash=0xd41374a821c7fd90d0f1cddc36c317dcd8b605f3917309df72d01a031e3a5254 hash=0x1874ccd68470b53317cdf437f76f4b6cd35bb58b1b9280f6cad80504f145f245 producing_time=1.157122ms -2026-04-20T11:31:23.252555Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=513 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430857d0fb925d440e9eb2600316a2d0d15c4d24ccbaa0c70f346f9daa5de4450c4b" batch_blobs=[] proof_blobs=[] -2026-04-20T11:31:23.252877Z DEBUG StfBlueprint::apply_slot{context=Node da_height=513}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430857d0fb925d440e9eb2600316a2d0d15c4d24ccbaa0c70f346f9daa5de4450c4b next_version=513 sesssion_starting_time=46.609µs -2026-04-20T11:31:23.253791Z DEBUG StfBlueprint::apply_slot{context=Node da_height=513}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430863eabb311f6da4202d0c92bf0ed2217a654403d87b6434ba0bfd8192b092d6d3 next_version=513 time=978.283µs accesses_build_time=16.15µs finishing_session_time=861.245µs -2026-04-20T11:31:23.253863Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308163ec1e515e35fd73f1e279cc8ca4579bedbc66625ef6d61428d0d485dcb1e7d" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430863eabb311f6da4202d0c92bf0ed2217a654403d87b6434ba0bfd8192b092d6d3" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:31:23.254404Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 513, latest_finalized_slot_number: 512, sync_status: Synced { synced_da_height: 512 }, .. } -2026-04-20T11:31:23.254511Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 513, latest_finalized_slot_number: 512, sync_status: Synced { synced_da_height: 512 }, .. } -2026-04-20T11:31:23.254578Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:31:23.260711Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00017003s -2026-04-20T11:31:23.260736Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:31:29.249539Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=514 prev_hash=0x1874ccd68470b53317cdf437f76f4b6cd35bb58b1b9280f6cad80504f145f245 hash=0xf731759493a3ca83bf8897ae82927791dc8c07ab8db6be32d2f2b3ca353e8cdf producing_time=1.131823ms -2026-04-20T11:31:29.252175Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=514 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430863eabb311f6da4202d0c92bf0ed2217a654403d87b6434ba0bfd8192b092d6d3" batch_blobs=[] proof_blobs=[] -2026-04-20T11:31:29.252521Z DEBUG StfBlueprint::apply_slot{context=Node da_height=514}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430863eabb311f6da4202d0c92bf0ed2217a654403d87b6434ba0bfd8192b092d6d3 next_version=514 sesssion_starting_time=46.67µs -2026-04-20T11:31:29.253354Z DEBUG StfBlueprint::apply_slot{context=Node da_height=514}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943081def792d608a3d4c5e06fe19211960c4a330fc4a8e125e926cab12934e2da636 next_version=514 time=897.564µs accesses_build_time=16.43µs finishing_session_time=778.446µs -2026-04-20T11:31:29.253417Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430857d0fb925d440e9eb2600316a2d0d15c4d24ccbaa0c70f346f9daa5de4450c4b" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943081def792d608a3d4c5e06fe19211960c4a330fc4a8e125e926cab12934e2da636" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:31:29.253948Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 514, latest_finalized_slot_number: 513, sync_status: Synced { synced_da_height: 513 }, .. } -2026-04-20T11:31:29.254031Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 514, latest_finalized_slot_number: 513, sync_status: Synced { synced_da_height: 513 }, .. } -2026-04-20T11:31:29.254090Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:31:29.264602Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003867966s -2026-04-20T11:31:29.264631Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:31:35.252301Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=515 prev_hash=0xf731759493a3ca83bf8897ae82927791dc8c07ab8db6be32d2f2b3ca353e8cdf hash=0x311d6db2cf01e62743884aff7782391b848a7df054a4a64144824e280d4f419e producing_time=1.246732ms -2026-04-20T11:31:35.257138Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=515 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943081def792d608a3d4c5e06fe19211960c4a330fc4a8e125e926cab12934e2da636" batch_blobs=[] proof_blobs=[] -2026-04-20T11:31:35.257516Z DEBUG StfBlueprint::apply_slot{context=Node da_height=515}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943081def792d608a3d4c5e06fe19211960c4a330fc4a8e125e926cab12934e2da636 next_version=515 sesssion_starting_time=50.949µs -2026-04-20T11:31:35.258383Z DEBUG StfBlueprint::apply_slot{context=Node da_height=515}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943086b2c9e8b13df85acd1627b2497b4bdf8b2fe17b02a267228c5223fdc5bc79906 next_version=515 time=936.154µs accesses_build_time=17.08µs finishing_session_time=809.685µs -2026-04-20T11:31:35.258450Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430863eabb311f6da4202d0c92bf0ed2217a654403d87b6434ba0bfd8192b092d6d3" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943086b2c9e8b13df85acd1627b2497b4bdf8b2fe17b02a267228c5223fdc5bc79906" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:31:35.259019Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 515, latest_finalized_slot_number: 514, sync_status: Synced { synced_da_height: 514 }, .. } -2026-04-20T11:31:35.259113Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 515, latest_finalized_slot_number: 514, sync_status: Synced { synced_da_height: 514 }, .. } -2026-04-20T11:31:35.259176Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:31:35.266033Z DEBUG sov_stf_runner::runner: Block execution complete time=6.001403372s -2026-04-20T11:31:35.266060Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:31:41.254531Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=516 prev_hash=0x311d6db2cf01e62743884aff7782391b848a7df054a4a64144824e280d4f419e hash=0xa453a683f0abe0752dd854110adc9b33a34d93c86d4efec8b77c9ce47d665a82 producing_time=1.186943ms -2026-04-20T11:31:41.257213Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=516 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943086b2c9e8b13df85acd1627b2497b4bdf8b2fe17b02a267228c5223fdc5bc79906" batch_blobs=[] proof_blobs=[] -2026-04-20T11:31:41.257551Z DEBUG StfBlueprint::apply_slot{context=Node da_height=516}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943086b2c9e8b13df85acd1627b2497b4bdf8b2fe17b02a267228c5223fdc5bc79906 next_version=516 sesssion_starting_time=45.349µs -2026-04-20T11:31:41.258424Z DEBUG StfBlueprint::apply_slot{context=Node da_height=516}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430869adef41fcabfce8996758f3701ca747d9ffa776523e224a729579883352da48 next_version=516 time=935.204µs accesses_build_time=15.92µs finishing_session_time=818.075µs -2026-04-20T11:31:41.258490Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943081def792d608a3d4c5e06fe19211960c4a330fc4a8e125e926cab12934e2da636" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430869adef41fcabfce8996758f3701ca747d9ffa776523e224a729579883352da48" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:31:41.259067Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 516, latest_finalized_slot_number: 515, sync_status: Synced { synced_da_height: 515 }, .. } -2026-04-20T11:31:41.259174Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 516, latest_finalized_slot_number: 515, sync_status: Synced { synced_da_height: 515 }, .. } -2026-04-20T11:31:41.259238Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:31:41.266183Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000124121s -2026-04-20T11:31:41.266215Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:31:47.256973Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=517 prev_hash=0xa453a683f0abe0752dd854110adc9b33a34d93c86d4efec8b77c9ce47d665a82 hash=0x162113cf55f61b4ff0143c5274ced7fe34925f934b217ec4b30fb48ccc0d6dce producing_time=1.138033ms -2026-04-20T11:31:47.267933Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=517 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430869adef41fcabfce8996758f3701ca747d9ffa776523e224a729579883352da48" batch_blobs=[] proof_blobs=[] -2026-04-20T11:31:47.268258Z DEBUG StfBlueprint::apply_slot{context=Node da_height=517}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430869adef41fcabfce8996758f3701ca747d9ffa776523e224a729579883352da48 next_version=517 sesssion_starting_time=49.05µs -2026-04-20T11:31:47.269157Z DEBUG StfBlueprint::apply_slot{context=Node da_height=517}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430848fbb09ca5addb2429c8e053dde48abd4d14ac6f05582cfbd4aa350edbefa203 next_version=517 time=964.784µs accesses_build_time=15.84µs finishing_session_time=844.074µs -2026-04-20T11:31:47.269239Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e955943086b2c9e8b13df85acd1627b2497b4bdf8b2fe17b02a267228c5223fdc5bc79906" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430848fbb09ca5addb2429c8e053dde48abd4d14ac6f05582cfbd4aa350edbefa203" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:31:47.269783Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 517, latest_finalized_slot_number: 516, sync_status: Synced { synced_da_height: 516 }, .. } -2026-04-20T11:31:47.269896Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 517, latest_finalized_slot_number: 516, sync_status: Synced { synced_da_height: 516 }, .. } -2026-04-20T11:31:47.269957Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:31:47.275847Z DEBUG sov_stf_runner::runner: Block execution complete time=6.0096339s -2026-04-20T11:31:47.275873Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:31:53.259657Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=518 prev_hash=0x162113cf55f61b4ff0143c5274ced7fe34925f934b217ec4b30fb48ccc0d6dce hash=0x64d6b9e6cdcaa66f4b701d8d7b8443573c5b7eefb2e6a20c224bd8a006b16259 producing_time=1.232372ms -2026-04-20T11:31:53.267651Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=518 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430848fbb09ca5addb2429c8e053dde48abd4d14ac6f05582cfbd4aa350edbefa203" batch_blobs=[] proof_blobs=[] -2026-04-20T11:31:53.268007Z DEBUG StfBlueprint::apply_slot{context=Node da_height=518}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430848fbb09ca5addb2429c8e053dde48abd4d14ac6f05582cfbd4aa350edbefa203 next_version=518 sesssion_starting_time=46.29µs -2026-04-20T11:31:53.268960Z DEBUG StfBlueprint::apply_slot{context=Node da_height=518}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430865470353b9a537557bb38232e78f2f480b4f1c5a6f8609874329c27aa9813329 next_version=518 time=1.018104ms accesses_build_time=16.88µs finishing_session_time=899.804µs -2026-04-20T11:31:53.269024Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430869adef41fcabfce8996758f3701ca747d9ffa776523e224a729579883352da48" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430865470353b9a537557bb38232e78f2f480b4f1c5a6f8609874329c27aa9813329" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:31:53.269589Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 518, latest_finalized_slot_number: 517, sync_status: Synced { synced_da_height: 517 }, .. } -2026-04-20T11:31:53.269696Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 518, latest_finalized_slot_number: 517, sync_status: Synced { synced_da_height: 517 }, .. } -2026-04-20T11:31:53.269756Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 -2026-04-20T11:31:53.276151Z DEBUG sov_stf_runner::runner: Block execution complete time=6.0002794s -2026-04-20T11:31:53.276177Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:31:59.262366Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=519 prev_hash=0x64d6b9e6cdcaa66f4b701d8d7b8443573c5b7eefb2e6a20c224bd8a006b16259 hash=0xcb8440637ae15ce4a15f181865f04bc2dee402fb7077bce8f5dd87274ff2a438 producing_time=1.200262ms -2026-04-20T11:31:59.267356Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=519 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430865470353b9a537557bb38232e78f2f480b4f1c5a6f8609874329c27aa9813329" batch_blobs=[] proof_blobs=[] -2026-04-20T11:31:59.267705Z DEBUG StfBlueprint::apply_slot{context=Node da_height=519}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430865470353b9a537557bb38232e78f2f480b4f1c5a6f8609874329c27aa9813329 next_version=519 sesssion_starting_time=49.27µs -2026-04-20T11:31:59.268574Z DEBUG StfBlueprint::apply_slot{context=Node da_height=519}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430842d37d180b81279114a35c77ed5aac3fa71d3ec3b9174f5c8180f51b97035d77 next_version=519 time=935.084µs accesses_build_time=16.49µs finishing_session_time=814.314µs -2026-04-20T11:31:59.268650Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430848fbb09ca5addb2429c8e053dde48abd4d14ac6f05582cfbd4aa350edbefa203" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430842d37d180b81279114a35c77ed5aac3fa71d3ec3b9174f5c8180f51b97035d77" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:31:59.269228Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 519, latest_finalized_slot_number: 518, sync_status: Synced { synced_da_height: 518 }, .. } -2026-04-20T11:31:59.269291Z ERROR sov_sequencer::preferred::sync_sequencer_state::conditions_table: Sequencer has detected that it is past, or very close to, having the visible_slot_number lag behind the deferred_slots_count threshold. Normal operation will be suspended until this can be remedied. slot_number_according_to_node=519 current_visible_slot_number=420 deferred_slots=120 -2026-04-20T11:31:59.269341Z DEBUG sov_sequencer::preferred::executor_events: Recovery: No in-progress batch to terminate. -2026-04-20T11:31:59.269392Z DEBUG sov_sequencer::preferred::block_executor: Replacing state for block executor old=019daaa4-9972-7b42-bd31-e402366e6145 new=019daaa9-5ca5-7cc2-9ea5-e899cff88cc0 -2026-04-20T11:31:59.269450Z  INFO sov_sequencer::preferred::sync_sequencer_state::inner: Beginning sequencer recovery info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 519, latest_finalized_slot_number: 518, sync_status: Synced { synced_da_height: 518 }, .. } current_visible_slot_number=420 -2026-04-20T11:31:59.269453Z  WARN sov_sequencer::preferred::side_effects: TryToSave recovery strategy has been configured. The currently pending soft confirmations will be flushed to the node. This may save some of the transactions, but if any are no longer valid, the sequencer will be penalised. num_batches_to_replay=31 -2026-04-20T11:31:59.269482Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=528 blob_id=2147879638937496414058638175316560079 -2026-04-20T11:31:59.269496Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879638937496414058638175316560079 -2026-04-20T11:31:59.269500Z DEBUG update_state_task_inner: sov_sequencer::preferred: Calculating amount of batches to send deferred_slots_count=109 maximum_delta=54 minimum_delta=43 current_catchup_delta=98 current_visible_slot_number=420 increase_per_batch=10 -2026-04-20T11:31:59.269534Z  INFO update_state_task_inner: sov_sequencer::preferred: Recovery: sending max_batches_to_send empty catchup batches to bump the visible_slot_number min_batches_to_send=5 max_batches_to_send=6 -2026-04-20T11:31:59.269505Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=529 blob_id=2147879639922740499144011940787715935 -2026-04-20T11:31:59.269551Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879639922740499144011940787715935 -2026-04-20T11:31:59.269559Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=530 blob_id=2147879640907998865507384344722882686 -2026-04-20T11:31:59.269567Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879640907998865507384344722882686 -2026-04-20T11:31:59.269574Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=531 blob_id=2147879641900510122983469976511472638 -2026-04-20T11:31:59.269581Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879641900510122983469976511472638 -2026-04-20T11:31:59.269589Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=532 blob_id=2147879642888258316846404191239506045 -2026-04-20T11:31:59.269596Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879642888258316846404191239506045 -2026-04-20T11:31:59.269603Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=533 blob_id=2147879643868710698834954577073262823 -2026-04-20T11:31:59.269610Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879643868710698834954577073262823 -2026-04-20T11:31:59.269618Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=534 blob_id=2147879644852744143735088748757896978 -2026-04-20T11:31:59.269625Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879644852744143735088748757896978 -2026-04-20T11:31:59.269632Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=535 blob_id=2147879645836841970188965489373811406 -2026-04-20T11:31:59.269640Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879645836841970188965489373811406 -2026-04-20T11:31:59.269647Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=536 blob_id=2147879646819659387553245971431934326 -2026-04-20T11:31:59.269655Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879646819659387553245971431934326 -2026-04-20T11:31:59.269678Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=537 blob_id=2147879647803727956709847701707835499 -2026-04-20T11:31:59.269685Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879647803727956709847701707835499 -2026-04-20T11:31:59.269693Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=538 blob_id=2147879648786554542712427466025090017 -2026-04-20T11:31:59.269700Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879648786554542712427466025090017 -2026-04-20T11:31:59.269707Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=539 blob_id=2147879649770671183049906524934775897 -2026-04-20T11:31:59.269714Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879649770671183049906524934775897 -2026-04-20T11:31:59.269722Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=540 blob_id=2147879650752318708206775357494591625 -2026-04-20T11:31:59.269730Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879650752318708206775357494591625 -2026-04-20T11:31:59.269737Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=541 blob_id=2147879652107486145697820291390967263 -2026-04-20T11:31:59.269745Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879652107486145697820291390967263 -2026-04-20T11:31:59.269752Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=542 blob_id=2147879653190705557134232700962640745 -2026-04-20T11:31:59.269760Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879653190705557134232700962640745 -2026-04-20T11:31:59.269767Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=543 blob_id=2147879654296891848503999804623899502 -2026-04-20T11:31:59.269775Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879654296891848503999804623899502 -2026-04-20T11:31:59.269782Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=544 blob_id=2147879655405429898570494557984111881 -2026-04-20T11:31:59.269790Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879655405429898570494557984111881 -2026-04-20T11:31:59.269797Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=545 blob_id=2147879656509226376578864908204058413 -2026-04-20T11:31:59.269813Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879656509226376578864908204058413 -2026-04-20T11:31:59.269821Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=546 blob_id=2147879657616572930003632500318541439 -2026-04-20T11:31:59.269828Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879657616572930003632500318541439 -2026-04-20T11:31:59.269835Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=547 blob_id=2147879658598212987621155879955679665 -2026-04-20T11:31:59.269843Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879658598212987621155879955679665 -2026-04-20T11:31:59.269850Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=548 blob_id=2147879659579884362981221979960672906 -2026-04-20T11:31:59.269857Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879659579884362981221979960672906 -2026-04-20T11:31:59.269865Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=549 blob_id=2147879660565120556282178768491623545 -2026-04-20T11:31:59.269872Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879660565120556282178768491623545 -2026-04-20T11:31:59.269880Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=550 blob_id=2147879661549199769559685832821744089 -2026-04-20T11:31:59.269887Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879661549199769559685832821744089 -2026-04-20T11:31:59.269895Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=551 blob_id=2147879662534523876328093869828428251 -2026-04-20T11:31:59.269902Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879662534523876328093869828428251 -2026-04-20T11:31:59.269909Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=552 blob_id=2147879663519798732320286809795994141 -2026-04-20T11:31:59.269917Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879663519798732320286809795994141 -2026-04-20T11:31:59.269924Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=553 blob_id=2147879664502616743665908464174999734 -2026-04-20T11:31:59.269932Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879664502616743665908464174999734 -2026-04-20T11:31:59.269956Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=554 blob_id=2147879665483043811953896780135773521 -2026-04-20T11:31:59.269963Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879665483043811953896780135773521 -2026-04-20T11:31:59.269971Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=555 blob_id=2147879666465917587789771858363047058 -2026-04-20T11:31:59.269978Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879666465917587789771858363047058 -2026-04-20T11:31:59.269986Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=556 blob_id=2147879667446320419738091952149298976 -2026-04-20T11:31:59.269993Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879667446320419738091952149298976 -2026-04-20T11:31:59.270001Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=557 blob_id=2147879668429207804697747232489253144 -2026-04-20T11:31:59.270008Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879668429207804697747232489253144 -2026-04-20T11:31:59.270015Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=558 blob_id=2147879669412075750462602875431600492 -2026-04-20T11:31:59.270023Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147879669412075750462602875431600492 -2026-04-20T11:31:59.279704Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003527938s -2026-04-20T11:31:59.279730Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:32:05.265174Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=520 prev_hash=0xcb8440637ae15ce4a15f181865f04bc2dee402fb7077bce8f5dd87274ff2a438 hash=0x750f6aa6ca3b5fc0bbfe900bb9c6e870ac53fe3455d322f5d6128a06045b0967 producing_time=1.244852ms -2026-04-20T11:32:05.272061Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=520 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430842d37d180b81279114a35c77ed5aac3fa71d3ec3b9174f5c8180f51b97035d77" batch_blobs=[] proof_blobs=[] -2026-04-20T11:32:05.272417Z DEBUG StfBlueprint::apply_slot{context=Node da_height=520}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430842d37d180b81279114a35c77ed5aac3fa71d3ec3b9174f5c8180f51b97035d77 next_version=520 sesssion_starting_time=45.16µs -2026-04-20T11:32:05.273273Z DEBUG StfBlueprint::apply_slot{context=Node da_height=520}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308371bc104339842c7d72ba6b64f842e21888aad591bee1f434ebf3572f8ad5fcb next_version=520 time=917.283µs accesses_build_time=15.549µs finishing_session_time=799.984µs -2026-04-20T11:32:05.273353Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430865470353b9a537557bb38232e78f2f480b4f1c5a6f8609874329c27aa9813329" next_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308371bc104339842c7d72ba6b64f842e21888aad591bee1f434ebf3572f8ad5fcb" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:32:05.273855Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=1 min=5 max=6 -2026-04-20T11:32:05.273926Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:32:05.274069Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=136 -2026-04-20T11:32:05.274171Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=430 -2026-04-20T11:32:05.274425Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:32:05.275644Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=430 sequence_number=559 -2026-04-20T11:32:05.275679Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=559 blob_id=2147880037700455807665152257095332507 visible_slot_number_after_increase=430 visible_slots_to_advance=10 -2026-04-20T11:32:05.275712Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=31 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:32:05.277443Z DEBUG manage_blob_submission_inside_task{blob_id=2147880037700455807665152257095332507 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x1fd52d09bde0c14b8a8748ea54e0dd0564528166ff8d9c60231804db323c95f9 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=521 include_at=521 bytes=13 time=620.416µs -2026-04-20T11:32:05.284178Z DEBUG compute_state_update{scope="sequencer" rollup_height=141 slot_number=430}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:32:05.284212Z DEBUG compute_state_update{scope="sequencer" rollup_height=141 slot_number=430}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:32:05.284220Z DEBUG sov_stf_runner::runner: Block execution complete time=6.004490463s -2026-04-20T11:32:05.284246Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:32:05.284269Z DEBUG compute_state_update{scope="sequencer" rollup_height=141 slot_number=430}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430842d37d180b81279114a35c77ed5aac3fa71d3ec3b9174f5c8180f51b97035d77 next_version=520 sesssion_starting_time=8.102798ms -2026-04-20T11:32:05.284948Z DEBUG compute_state_update{scope="sequencer" rollup_height=141 slot_number=430}: sov_state::nomt::prover_storage: computed next state root state_root=6b26a7f2550d9672806fda48edf816a260cabbe6153e6e30c09fc2777f9e835c6384ea2880e34dca99017c16360dc56e440b29f96ce261015590eeb34c234a06 next_version=520 time=8.805153ms accesses_build_time=22.9µs finishing_session_time=655.536µs -2026-04-20T11:32:11.267694Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=521 prev_hash=0x750f6aa6ca3b5fc0bbfe900bb9c6e870ac53fe3455d322f5d6128a06045b0967 hash=0x50936b536e682f64016f8fe2ec82343134396b29ce9fee7939eb6c84ca40abaf producing_time=1.284642ms -2026-04-20T11:32:11.275491Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=521 current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308371bc104339842c7d72ba6b64f842e21888aad591bee1f434ebf3572f8ad5fcb" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1fd52d09bde0c14b8a8748ea54e0dd0564528166ff8d9c60231804db323c95f9"] proof_blobs=[] -2026-04-20T11:32:11.276450Z DEBUG StfBlueprint::apply_slot{context=Node da_height=521}: sov_chain_state: Setting next visible slot number next_visible_slot_number=430 -2026-04-20T11:32:11.277482Z DEBUG StfBlueprint::apply_slot{context=Node da_height=521}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x1fd52d09bde0c14b8a8748ea54e0dd0564528166ff8d9c60231804db323c95f9}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=31 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:32:11.277745Z DEBUG StfBlueprint::apply_slot{context=Node da_height=521}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308371bc104339842c7d72ba6b64f842e21888aad591bee1f434ebf3572f8ad5fcb next_version=521 sesssion_starting_time=48.959µs -2026-04-20T11:32:11.279197Z DEBUG StfBlueprint::apply_slot{context=Node da_height=521}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6b26a7f2550d9672806fda48edf816a260cabbe6153e6e30c09fc2777f9e835c4a795f9a5b5a8a6fb1e33b0fd568bd3f4fb9c5aa23e8a43db75ce4e6585ab1b5 next_version=521 time=1.582089ms accesses_build_time=79.459µs finishing_session_time=1.42716ms -2026-04-20T11:32:11.279413Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ff507eb59b11f53179690751521ef5d676eba25f87623bdc3d3672833324df8c" -2026-04-20T11:32:11.279435Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="d2cdacda0022f16ac221bb7a060f9be928686a564bb13e292e01255babe2ff70" -2026-04-20T11:32:11.279447Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="af48871c82103ba455ed36740f7e5b1bcaec86dc50c2e499409bcfab11bafa92" -2026-04-20T11:32:11.279459Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="5ac4a2fed8674cce7c22184130aef4640186b1f4cdb13b92de6059eca0d1dd57" -2026-04-20T11:32:11.279472Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="6242f78f67e2be4961e191a1313821f8d03b457a26abf3cc751f57ba242438c1" -2026-04-20T11:32:11.279482Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="5f354c93a4ca18fd53a8c8626d416877ad5adfa38c648d281cf8fbf0c422ad5e" -2026-04-20T11:32:11.279490Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="5dbbd6f9bddc5a065ee07855f0649ebd5159173a9033902b9cda9f445ee41a51" -2026-04-20T11:32:11.279498Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="dd4ca96327caa62283b9f895a40159b3423ad77b93bba9788e83e4d94600d24c" -2026-04-20T11:32:11.279519Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="402e5968f267c0df7e2f0c756aa1591312692d3d7f4ef897cf66aa28ad24bdc6" -2026-04-20T11:32:11.279528Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="f5e3e4002be2972d55b329cc4cb4fd8d2b2c01103abd4c05a9f75705a0323d4c" -2026-04-20T11:32:11.279536Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="badbf54ee6d803a081ede8e29e3223d1f96eae6daf8f1be971ee38f4caf04785" -2026-04-20T11:32:11.279545Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="b660aee65cbf31dfd648896006b4f31429d3e2f76891cd0085ba76ca4a21968d" -2026-04-20T11:32:11.279553Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="0fd1a78197eebace519783be48aac014464b2526f93a1f9b329d2d6e0f965139" -2026-04-20T11:32:11.279561Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="08d2b4b6dfc3313c22bd511abf3c1a14c8bb2c962b6d6bf12724d4a219144c51" -2026-04-20T11:32:11.279569Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="d877bfc62cc1565471fa3b7347ff3e5303c1fcfbfc8688be7a7f2a12662a55ad" -2026-04-20T11:32:11.279577Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="f02aa121682ca25804c2edfdb8b0c2897fe8e73e03bd483564274b0446a334be" -2026-04-20T11:32:11.279585Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="2294018983f4c1d3fabba8ec2a3867418d4a707a672718ef7047d815b5d25b81" -2026-04-20T11:32:11.279594Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="8b6ccaf4c98be1e94fc0bdc2c3f6104a98157a3d5adbd73b443b60fb0e2c3d1e" -2026-04-20T11:32:11.279603Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="5218cc454aeba15b3f9480e2effdd368bbcb64f195f7c474cccf7ad8ce2b82fe" -2026-04-20T11:32:11.279611Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ba9eae739e8fb6dfe781f2d37a3b2a84a7b9def1495b634d8836b996a5d408ac" -2026-04-20T11:32:11.279619Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="65c62fa1585ce6f6157f51b0caf332ee7424945d27b52c47cd1625720f2e02e9" -2026-04-20T11:32:11.279635Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="862c02d9b5b09663be5491e5c9cf2b3bf1fc472d0a504f8ff762c635097d81e1" -2026-04-20T11:32:11.279643Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="1169f953659cb6c5089903e398f225283fc61dc53d3ca0340a237dc475d5d224" -2026-04-20T11:32:11.279650Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="50d7999bb0dc13cb322067b06670975c7b480c3a2c726acf5e08d8b061487610" -2026-04-20T11:32:11.279658Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="42332348797696094e7a22f3f5dd2dd1bae1ae9f58238af21bc006577ad30458" -2026-04-20T11:32:11.279666Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ea0bcc2df3a5aa86ee5e32c4a685500c96daccc0fe04f48cfbc9257135d60894" -2026-04-20T11:32:11.279674Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="c2f69f097543bcdc0f4f5644c399e722d7da561b0545a11e1efc3b81f71b3118" -2026-04-20T11:32:11.279682Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="980ef97b1cc7dbc02ba46e30a8d164397258b1c51c6e0521a7e1af7b259346e5" -2026-04-20T11:32:11.279690Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="cbd9f13bf06e53f612297bb44ef0c8673ed56c3956c906e1837825d2252399d2" -2026-04-20T11:32:11.279699Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ae76c5776981a9bb25010d0aff111801a4ba2fdead25a4a3c20a436cd8762874" -2026-04-20T11:32:11.279706Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="d71ecaeea1acf9df3ddc926e94c2f6f8ed31384f97bb6f6eca441b83c5d8a554" -2026-04-20T11:32:11.279718Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430842d37d180b81279114a35c77ed5aac3fa71d3ec3b9174f5c8180f51b97035d77" next_state_root="6b26a7f2550d9672806fda48edf816a260cabbe6153e6e30c09fc2777f9e835c4a795f9a5b5a8a6fb1e33b0fd568bd3f4fb9c5aa23e8a43db75ce4e6585ab1b5" aggregated_proofs=0 proof_receipts=31 -2026-04-20T11:32:11.280014Z  WARN sov_stf_runner::processes::stf_info_manager: State Transition Info is not consumed fast enough, cannot prune older entries. Please check that consumer works. next_height_to_receive=420 prune_up_to=421 -2026-04-20T11:32:11.280456Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=2 min=5 max=6 -2026-04-20T11:32:11.280545Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:32:11.280612Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=137 -2026-04-20T11:32:11.280749Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=440 -2026-04-20T11:32:11.281019Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:32:11.281247Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=440 sequence_number=560 -2026-04-20T11:32:11.281281Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=560 blob_id=2147880044961253322815280651163244473 visible_slot_number_after_increase=440 visible_slots_to_advance=10 -2026-04-20T11:32:11.281302Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:32:11.283298Z DEBUG manage_blob_submission_inside_task{blob_id=2147880044961253322815280651163244473 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x7dd3d0e9a45865e3633d115043aa76d69c7510986eae622ab2b0c9d9467da69a sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=522 include_at=522 bytes=13 time=741.875µs -2026-04-20T11:32:11.286605Z DEBUG compute_state_update{scope="sequencer" rollup_height=142 slot_number=440}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:32:11.286638Z DEBUG sov_stf_runner::runner: Block execution complete time=6.002394726s -2026-04-20T11:32:11.286643Z DEBUG compute_state_update{scope="sequencer" rollup_height=142 slot_number=440}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:32:11.286657Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:32:11.286705Z DEBUG compute_state_update{scope="sequencer" rollup_height=142 slot_number=440}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430842d37d180b81279114a35c77ed5aac3fa71d3ec3b9174f5c8180f51b97035d77 next_version=520 sesssion_starting_time=4.837449ms -2026-04-20T11:32:11.286883Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:11.286935Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:11.287521Z DEBUG compute_state_update{scope="sequencer" rollup_height=142 slot_number=440}: sov_state::nomt::prover_storage: computed next state root state_root=42c2905ebdeb759ffb3dd80dc174ffd4b883723f47c4f267ca337cb6d791c5ab6e2308def63a68758231a86ab5b6771d158b97eda720cbd6d6f3ad05a5c09a8a next_version=520 time=5.691624ms accesses_build_time=36.8µs finishing_session_time=780.845µs -2026-04-20T11:32:11.844590Z DEBUG sp1_core_executor_runner::native: CHILD sp1_DjHWqRpiTNSd5CV3xbf7hA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:11.852221Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:11.863756Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1132835 cycles -2026-04-20T11:32:11.866229Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 99, 162, 195, 172, 170, 60, 127, 157, 162, 114, 138, 64, 30, 21, 24, 172, 120, 118, 140, 159, 238, 207, 8, 114, 86, 116, 248, 98, 32, 209, 144, 173, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 106, 237, 75, 223, 227, 119, 161, 92, 4, 144, 251, 244, 200, 140, 240, 206, 249, 45, 189, 12, 91, 228, 191, 89, 131, 56, 216, 21, 173, 88, 5, 203, 70, 205, 236, 188, 188, 226, 58, 146, 73, 99, 41, 114, 99, 108, 197, 192, 185, 21, 222, 41, 106, 180, 242, 142, 93, 7, 104, 179, 247, 246, 37, 151, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:11.928346Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:11.928397Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:11.995044Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:12.028435Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EE0_KzBKSk2rSHUXBOmRFw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:12.031268Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EE0_KzBKSk2rSHUXBOmRFw==: stderr: -2026-04-20T11:32:12.031294Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EE0_KzBKSk2rSHUXBOmRFw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:12.031306Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EE0_KzBKSk2rSHUXBOmRFw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:12.031343Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EE0_KzBKSk2rSHUXBOmRFw==: stderr: stack backtrace: -2026-04-20T11:32:12.031352Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EE0_KzBKSk2rSHUXBOmRFw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:12.031358Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EE0_KzBKSk2rSHUXBOmRFw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:12.031430Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:12.032205Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:12.032507Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:12.098381Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:12.098429Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:12.098579Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:12.098724Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:12.098780Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:12.099041Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=561 blob_id=2147880045948951045150748526250600739 -2026-04-20T11:32:12.659123Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jmJg6f7SSduCFZBdCMQ3kg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:12.666450Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:12.676857Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1095177 cycles -2026-04-20T11:32:12.679413Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 125, 21, 237, 124, 174, 211, 174, 217, 36, 72, 185, 222, 247, 116, 107, 123, 118, 18, 23, 217, 108, 33, 198, 57, 108, 217, 199, 66, 191, 44, 22, 231, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 9, 88, 200, 249, 90, 8, 71, 49, 88, 116, 194, 55, 46, 45, 119, 236, 52, 181, 229, 162, 172, 52, 123, 197, 122, 193, 16, 219, 105, 107, 145, 133, 186, 53, 4, 247, 249, 249, 221, 200, 32, 54, 131, 3, 250, 14, 211, 162, 14, 108, 141, 23, 196, 177, 159, 64, 80, 207, 9, 122, 203, 222, 239, 5, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:12.739855Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:12.739897Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:12.806431Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:12.840218Z DEBUG sp1_core_executor_runner::native: CHILD sp1_J22OsDBFQKO4q8sVO-pbMw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:12.843051Z DEBUG sp1_core_executor_runner::native: CHILD sp1_J22OsDBFQKO4q8sVO-pbMw==: stderr: -2026-04-20T11:32:12.843064Z DEBUG sp1_core_executor_runner::native: CHILD sp1_J22OsDBFQKO4q8sVO-pbMw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:12.843073Z DEBUG sp1_core_executor_runner::native: CHILD sp1_J22OsDBFQKO4q8sVO-pbMw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:12.843081Z DEBUG sp1_core_executor_runner::native: CHILD sp1_J22OsDBFQKO4q8sVO-pbMw==: stderr: stack backtrace: -2026-04-20T11:32:12.843088Z DEBUG sp1_core_executor_runner::native: CHILD sp1_J22OsDBFQKO4q8sVO-pbMw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:12.843093Z DEBUG sp1_core_executor_runner::native: CHILD sp1_J22OsDBFQKO4q8sVO-pbMw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:12.843229Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:12.844010Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:12.844306Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:12.908273Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:12.908327Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:12.908497Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:12.908663Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:12.908727Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:12.909164Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=562 blob_id=2147880046928149049819389432464326547 -2026-04-20T11:32:13.459097Z DEBUG sp1_core_executor_runner::native: CHILD sp1_cnAIFQX_Qh2uOQOwwv185g==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:13.466654Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:13.476130Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1126620 cycles -2026-04-20T11:32:13.478711Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 90, 33, 49, 174, 123, 251, 189, 145, 204, 146, 215, 125, 151, 195, 142, 37, 115, 211, 224, 92, 10, 92, 55, 100, 136, 77, 54, 65, 133, 146, 115, 117, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 67, 223, 194, 32, 177, 122, 62, 176, 228, 65, 44, 57, 5, 15, 145, 112, 117, 12, 176, 61, 67, 241, 190, 74, 198, 189, 14, 161, 225, 135, 13, 218, 125, 85, 221, 52, 39, 109, 232, 156, 234, 210, 10, 207, 70, 130, 150, 160, 133, 133, 123, 192, 216, 205, 150, 49, 121, 216, 198, 19, 95, 249, 87, 94, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:13.541855Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:13.541896Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:13.618303Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:13.653001Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NOPxP2dXTI-_8GDeWetWNg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:13.655863Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NOPxP2dXTI-_8GDeWetWNg==: stderr: -2026-04-20T11:32:13.655876Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NOPxP2dXTI-_8GDeWetWNg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:13.655884Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NOPxP2dXTI-_8GDeWetWNg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:13.655892Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NOPxP2dXTI-_8GDeWetWNg==: stderr: stack backtrace: -2026-04-20T11:32:13.655898Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NOPxP2dXTI-_8GDeWetWNg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:13.655904Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NOPxP2dXTI-_8GDeWetWNg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:13.656042Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:13.656827Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:13.657141Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:13.683279Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:13.683323Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:13.683482Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:13.683625Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:13.683689Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:13.684184Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=563 blob_id=2147880047865119685490964858705001204 -2026-04-20T11:32:14.233374Z DEBUG sp1_core_executor_runner::native: CHILD sp1_z57QJLmxT0u1JMlGHEF3Sg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:14.240454Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:14.250194Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1066899 cycles -2026-04-20T11:32:14.252913Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 69, 165, 236, 153, 180, 58, 182, 61, 27, 211, 172, 75, 190, 132, 50, 200, 137, 222, 152, 231, 100, 238, 212, 235, 75, 199, 65, 39, 182, 221, 136, 163, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 28, 233, 3, 239, 57, 158, 8, 64, 40, 45, 27, 34, 173, 7, 100, 137, 228, 7, 57, 124, 231, 139, 120, 33, 43, 20, 187, 51, 139, 59, 41, 247, 120, 104, 189, 36, 95, 171, 80, 40, 104, 1, 170, 88, 219, 105, 33, 4, 94, 128, 16, 101, 248, 190, 59, 202, 8, 194, 238, 128, 120, 46, 114, 23, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:14.313436Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:14.313481Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:14.392230Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:14.426697Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xZKbocW9So-3SCpn--xmQA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:14.429538Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xZKbocW9So-3SCpn--xmQA==: stderr: -2026-04-20T11:32:14.429551Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xZKbocW9So-3SCpn--xmQA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:14.429560Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xZKbocW9So-3SCpn--xmQA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:14.429581Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xZKbocW9So-3SCpn--xmQA==: stderr: stack backtrace: -2026-04-20T11:32:14.429587Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xZKbocW9So-3SCpn--xmQA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:14.429594Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xZKbocW9So-3SCpn--xmQA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:14.429734Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:14.430516Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:14.430810Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:14.497724Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:14.497768Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:14.497941Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:14.498112Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:14.498164Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:14.498688Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=564 blob_id=2147880048849187702340046822728639719 -2026-04-20T11:32:15.044840Z DEBUG sp1_core_executor_runner::native: CHILD sp1_KrM6xInVRSa6aPuSUeG9Vg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:15.052244Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:15.061706Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1103477 cycles -2026-04-20T11:32:15.064420Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 97, 13, 74, 211, 107, 118, 77, 235, 162, 150, 204, 82, 173, 163, 142, 53, 45, 172, 56, 158, 136, 22, 34, 145, 3, 119, 82, 70, 242, 236, 204, 5, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 22, 110, 44, 105, 27, 61, 69, 157, 182, 82, 9, 65, 64, 127, 23, 149, 139, 6, 59, 157, 139, 147, 148, 186, 243, 200, 48, 87, 135, 121, 219, 250, 128, 22, 235, 54, 206, 237, 232, 206, 207, 201, 48, 81, 217, 171, 140, 131, 111, 43, 163, 215, 97, 169, 44, 10, 254, 207, 116, 82, 174, 146, 186, 133, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:15.126065Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:15.126123Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:15.206650Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:15.240431Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sXBB3xPrTUm1lGgRi8ft1g==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:15.243258Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sXBB3xPrTUm1lGgRi8ft1g==: stderr: -2026-04-20T11:32:15.243271Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sXBB3xPrTUm1lGgRi8ft1g==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:15.243280Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sXBB3xPrTUm1lGgRi8ft1g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:15.243288Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sXBB3xPrTUm1lGgRi8ft1g==: stderr: stack backtrace: -2026-04-20T11:32:15.243295Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sXBB3xPrTUm1lGgRi8ft1g==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:15.243301Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sXBB3xPrTUm1lGgRi8ft1g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:15.243477Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:15.244207Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:15.244507Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:15.316876Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:15.316917Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:15.317054Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:15.317215Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:15.317279Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:15.317708Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=565 blob_id=2147880049840471179468011332851970586 -2026-04-20T11:32:15.869407Z DEBUG sp1_core_executor_runner::native: CHILD sp1_p8kGfEGFSF2xUFi52hvW7A==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:15.876842Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:15.886306Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1105734 cycles -2026-04-20T11:32:15.889105Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 44, 213, 192, 17, 221, 218, 124, 54, 92, 13, 216, 161, 112, 165, 116, 20, 12, 179, 254, 76, 203, 209, 99, 209, 121, 141, 95, 201, 130, 233, 3, 50, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 63, 5, 133, 104, 28, 104, 189, 170, 244, 214, 2, 98, 149, 10, 46, 99, 127, 114, 88, 244, 92, 64, 236, 168, 201, 7, 243, 148, 167, 47, 22, 112, 115, 244, 230, 225, 100, 104, 249, 178, 29, 190, 53, 246, 103, 161, 75, 5, 171, 228, 11, 236, 218, 41, 248, 8, 68, 141, 216, 243, 26, 12, 127, 124, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:15.950998Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:15.951045Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:16.024345Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:16.058696Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aRsQFWxoTcCXLIMZ4yH70w==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:16.061530Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aRsQFWxoTcCXLIMZ4yH70w==: stderr: -2026-04-20T11:32:16.061545Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aRsQFWxoTcCXLIMZ4yH70w==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:16.061553Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aRsQFWxoTcCXLIMZ4yH70w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:16.061561Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aRsQFWxoTcCXLIMZ4yH70w==: stderr: stack backtrace: -2026-04-20T11:32:16.061569Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aRsQFWxoTcCXLIMZ4yH70w==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:16.061576Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aRsQFWxoTcCXLIMZ4yH70w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:16.061716Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:16.062424Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:16.062714Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:16.130032Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:16.130076Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:16.130284Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:16.130457Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:16.130514Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:16.130965Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=566 blob_id=2147880050823349120986291661008280295 -2026-04-20T11:32:16.679274Z DEBUG sp1_core_executor_runner::native: CHILD sp1_w7cUFPL-Q9KRNbUqPU_QOQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:16.686803Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:16.696273Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1109701 cycles -2026-04-20T11:32:16.698886Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 8, 8, 231, 196, 126, 180, 100, 228, 151, 188, 213, 35, 221, 11, 204, 224, 198, 134, 108, 231, 116, 254, 174, 71, 206, 134, 96, 10, 40, 2, 213, 82, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 91, 122, 198, 105, 145, 94, 202, 249, 198, 129, 233, 122, 168, 109, 80, 103, 40, 86, 202, 227, 4, 30, 63, 42, 173, 86, 67, 199, 255, 155, 223, 185, 13, 175, 92, 11, 160, 192, 213, 136, 48, 114, 246, 11, 231, 186, 223, 199, 219, 57, 186, 35, 113, 131, 127, 112, 236, 209, 32, 65, 197, 133, 176, 81, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:16.760577Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:16.760624Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:16.837815Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:16.872428Z DEBUG sp1_core_executor_runner::native: CHILD sp1_S9oCxNglQLOvddN8vBDwWw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:16.875248Z DEBUG sp1_core_executor_runner::native: CHILD sp1_S9oCxNglQLOvddN8vBDwWw==: stderr: -2026-04-20T11:32:16.875261Z DEBUG sp1_core_executor_runner::native: CHILD sp1_S9oCxNglQLOvddN8vBDwWw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:16.875271Z DEBUG sp1_core_executor_runner::native: CHILD sp1_S9oCxNglQLOvddN8vBDwWw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:16.875282Z DEBUG sp1_core_executor_runner::native: CHILD sp1_S9oCxNglQLOvddN8vBDwWw==: stderr: stack backtrace: -2026-04-20T11:32:16.875307Z DEBUG sp1_core_executor_runner::native: CHILD sp1_S9oCxNglQLOvddN8vBDwWw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:16.875322Z DEBUG sp1_core_executor_runner::native: CHILD sp1_S9oCxNglQLOvddN8vBDwWw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:16.875430Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:16.876174Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:16.876489Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:16.943463Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:16.943507Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:16.943660Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:16.943837Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:16.943903Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:16.944396Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=567 blob_id=2147880051806160043161273353436369912 -2026-04-20T11:32:17.270112Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=8 height=522 prev_hash=0x50936b536e682f64016f8fe2ec82343134396b29ce9fee7939eb6c84ca40abaf hash=0x01d15b91dba0344824806632739e7b295b8351fd3b84693088cc9d484e840375 producing_time=1.012463ms -2026-04-20T11:32:17.278876Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=522 current_state_root="6b26a7f2550d9672806fda48edf816a260cabbe6153e6e30c09fc2777f9e835c4a795f9a5b5a8a6fb1e33b0fd568bd3f4fb9c5aa23e8a43db75ce4e6585ab1b5" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x7dd3d0e9a45865e3633d115043aa76d69c7510986eae622ab2b0c9d9467da69a"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1cdb78a5c267c579725a0ec929700cea76c7c6d4020b2671e2997fa3c3b7355a, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x19429b14fb9078787c62321f0d49a693e62c3f6ead261224b2bd0aae0504c2c7, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x5a8c1cbee49c619cb102c7d26945937feb36caebeaaeb3e90e8d3e23ebec4738, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc6df132fd7b0156f41782e145820ecaaa71ca4e888d92d4965e84d160153c78e, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xeef8e09f92a52c342c0c58a9d50e0c6f9ddad422ba40433ace3b932ca1504d63, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x5ff665775f0008e296d9cbdd0e52992af4cfef026044ce298f0f703c974ff63e, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe4477463b2b439ded80a3480aac1250600dbbd4aea0311feae8a1bfe23e8bd98, len=625"] -2026-04-20T11:32:17.279228Z DEBUG StfBlueprint::apply_slot{context=Node da_height=522}: sov_chain_state: Setting next visible slot number next_visible_slot_number=440 -2026-04-20T11:32:17.279397Z DEBUG StfBlueprint::apply_slot{context=Node da_height=522}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x7dd3d0e9a45865e3633d115043aa76d69c7510986eae622ab2b0c9d9467da69a}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:32:17.279595Z DEBUG StfBlueprint::apply_slot{context=Node da_height=522}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6b26a7f2550d9672806fda48edf816a260cabbe6153e6e30c09fc2777f9e835c4a795f9a5b5a8a6fb1e33b0fd568bd3f4fb9c5aa23e8a43db75ce4e6585ab1b5 next_version=522 sesssion_starting_time=47.189µs -2026-04-20T11:32:17.280735Z DEBUG StfBlueprint::apply_slot{context=Node da_height=522}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=42c2905ebdeb759ffb3dd80dc174ffd4b883723f47c4f267ca337cb6d791c5ab6501968b5b0eeb7f8d6af47f2a7a12012ecbf2f1750ec8048aeeb9704cd44b3c next_version=522 time=1.237512ms accesses_build_time=48.33µs finishing_session_time=1.111743ms -2026-04-20T11:32:17.280923Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e95594308371bc104339842c7d72ba6b64f842e21888aad591bee1f434ebf3572f8ad5fcb" next_state_root="42c2905ebdeb759ffb3dd80dc174ffd4b883723f47c4f267ca337cb6d791c5ab6501968b5b0eeb7f8d6af47f2a7a12012ecbf2f1750ec8048aeeb9704cd44b3c" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:32:17.281420Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=3 min=5 max=6 -2026-04-20T11:32:17.281472Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:32:17.281533Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=138 -2026-04-20T11:32:17.281673Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=450 -2026-04-20T11:32:17.282007Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:32:17.282529Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=450 sequence_number=568 -2026-04-20T11:32:17.282569Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=568 blob_id=2147880052215992409898936067857137046 visible_slot_number_after_increase=450 visible_slots_to_advance=10 -2026-04-20T11:32:17.282594Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=7 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:32:17.284540Z DEBUG manage_blob_submission_inside_task{blob_id=2147880052215992409898936067857137046 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xd45372ee6b0afce5cbbd7f9b84e4438e08c5b75fd6bdc6c04a60ce68c5156f5f sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=523 include_at=523 bytes=13 time=595.697µs -2026-04-20T11:32:17.292543Z DEBUG compute_state_update{scope="sequencer" rollup_height=143 slot_number=450}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:32:17.292578Z DEBUG compute_state_update{scope="sequencer" rollup_height=143 slot_number=450}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:32:17.292582Z DEBUG sov_stf_runner::runner: Block execution complete time=6.005926404s -2026-04-20T11:32:17.292603Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:32:17.292632Z DEBUG compute_state_update{scope="sequencer" rollup_height=143 slot_number=450}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430842d37d180b81279114a35c77ed5aac3fa71d3ec3b9174f5c8180f51b97035d77 next_version=520 sesssion_starting_time=9.568349ms -2026-04-20T11:32:17.293693Z DEBUG compute_state_update{scope="sequencer" rollup_height=143 slot_number=450}: sov_state::nomt::prover_storage: computed next state root state_root=26234f8e7986e3a3313d9a2be1aca9d8ebd098d711ca1d3602fbb2b79a8749776d65f97850b90842901e93a33c27568a9c8802367298a36e52da0071f6a0e1e4 next_version=520 time=10.665052ms accesses_build_time=34.01µs finishing_session_time=1.041454ms -2026-04-20T11:32:17.490974Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vvpBEsrOSHaQW176V9j4VQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:17.498779Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:17.507946Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1153863 cycles -2026-04-20T11:32:17.510544Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 113, 45, 210, 219, 186, 47, 19, 111, 102, 4, 31, 223, 215, 85, 75, 247, 172, 86, 223, 215, 229, 65, 21, 6, 89, 8, 224, 63, 161, 108, 60, 203, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 49, 146, 228, 115, 218, 71, 218, 114, 48, 169, 21, 136, 28, 225, 3, 145, 100, 123, 144, 129, 148, 197, 48, 186, 199, 49, 134, 143, 228, 174, 56, 5, 219, 132, 252, 121, 155, 20, 11, 109, 171, 22, 71, 216, 33, 94, 107, 214, 144, 128, 215, 219, 135, 65, 199, 31, 13, 176, 43, 32, 142, 212, 86, 145, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:17.575512Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:17.575559Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:17.650982Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:17.685271Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EKvfEqoORbGI7whWGvuNKA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:17.688104Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EKvfEqoORbGI7whWGvuNKA==: stderr: -2026-04-20T11:32:17.688130Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EKvfEqoORbGI7whWGvuNKA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:17.688141Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EKvfEqoORbGI7whWGvuNKA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:17.688148Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EKvfEqoORbGI7whWGvuNKA==: stderr: stack backtrace: -2026-04-20T11:32:17.688154Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EKvfEqoORbGI7whWGvuNKA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:17.688161Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EKvfEqoORbGI7whWGvuNKA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:17.688246Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:17.689014Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:17.689326Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:17.757476Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:17.757523Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:17.757684Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:17.757829Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:17.757909Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:17.758223Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=569 blob_id=2147880052790262280090110551225626373 -2026-04-20T11:32:18.310099Z DEBUG sp1_core_executor_runner::native: CHILD sp1_w8cRwdF7SZmZ3L52w-GMTA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:18.317487Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:18.326729Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1098234 cycles -2026-04-20T11:32:18.329362Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 25, 39, 49, 53, 59, 69, 111, 107, 29, 132, 1, 116, 103, 67, 97, 31, 195, 216, 110, 157, 135, 134, 14, 74, 172, 146, 71, 36, 168, 136, 174, 89, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 78, 45, 27, 22, 113, 233, 132, 248, 186, 131, 249, 110, 18, 94, 130, 95, 48, 214, 27, 163, 58, 239, 83, 113, 47, 201, 101, 252, 212, 107, 29, 161, 11, 187, 117, 98, 84, 10, 242, 217, 194, 131, 118, 10, 25, 134, 155, 81, 151, 203, 22, 37, 229, 171, 123, 1, 171, 154, 74, 251, 180, 46, 43, 58, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:18.391064Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:18.391108Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:18.466576Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:18.501479Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IOG8K85MS7SDf1AltESR4A==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:18.504335Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IOG8K85MS7SDf1AltESR4A==: stderr: -2026-04-20T11:32:18.504349Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IOG8K85MS7SDf1AltESR4A==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:18.504370Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IOG8K85MS7SDf1AltESR4A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:18.504376Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IOG8K85MS7SDf1AltESR4A==: stderr: stack backtrace: -2026-04-20T11:32:18.504384Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IOG8K85MS7SDf1AltESR4A==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:18.504390Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IOG8K85MS7SDf1AltESR4A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:18.504528Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:18.505255Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:18.505575Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:18.572506Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:18.572549Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:18.572705Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:18.572880Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:18.572944Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:18.573527Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=570 blob_id=2147880053775505793276179504658500630 -2026-04-20T11:32:19.115602Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XFGsAApOQimmXRnS4jWe6g==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:19.123064Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:19.132354Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1112611 cycles -2026-04-20T11:32:19.135052Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 110, 69, 105, 145, 234, 61, 225, 24, 234, 55, 108, 199, 191, 39, 210, 210, 10, 246, 97, 2, 8, 108, 8, 108, 157, 180, 230, 10, 110, 81, 83, 154, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 93, 25, 47, 106, 171, 48, 205, 228, 130, 225, 63, 78, 58, 32, 140, 169, 28, 189, 97, 69, 113, 60, 126, 4, 70, 238, 191, 127, 194, 50, 224, 2, 238, 104, 34, 161, 51, 230, 211, 103, 113, 81, 164, 144, 209, 196, 43, 179, 40, 62, 246, 17, 128, 154, 124, 60, 199, 32, 185, 231, 146, 183, 124, 148, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:19.197530Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:19.197579Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:19.279966Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:19.314521Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ccfI1nQwSm-mWSKe1cqw7A==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:19.317357Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ccfI1nQwSm-mWSKe1cqw7A==: stderr: -2026-04-20T11:32:19.317370Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ccfI1nQwSm-mWSKe1cqw7A==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:19.317378Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ccfI1nQwSm-mWSKe1cqw7A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:19.317386Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ccfI1nQwSm-mWSKe1cqw7A==: stderr: stack backtrace: -2026-04-20T11:32:19.317392Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ccfI1nQwSm-mWSKe1cqw7A==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:19.317398Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ccfI1nQwSm-mWSKe1cqw7A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:19.317572Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:19.318255Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:19.318555Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:19.384875Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:19.384921Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:19.385073Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:19.385247Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:19.385311Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:19.385756Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=571 blob_id=2147880054758354553042695680036580608 -2026-04-20T11:32:19.930037Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yGnZJHpbQ5upZtjNLdPecg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:19.937773Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:19.946948Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1136349 cycles -2026-04-20T11:32:19.949697Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 2, 110, 251, 64, 172, 73, 27, 201, 247, 30, 76, 254, 185, 188, 211, 100, 43, 106, 198, 79, 2, 27, 129, 215, 31, 122, 34, 100, 150, 99, 89, 233, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 78, 26, 42, 224, 63, 7, 193, 147, 251, 252, 33, 141, 185, 47, 78, 102, 54, 169, 92, 42, 109, 215, 178, 194, 252, 28, 198, 223, 160, 78, 248, 123, 158, 124, 10, 50, 208, 141, 8, 97, 201, 39, 16, 177, 88, 7, 16, 197, 224, 240, 182, 193, 97, 220, 44, 39, 145, 243, 95, 112, 175, 137, 226, 39, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:20.013010Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:20.013055Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:20.094183Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:20.128697Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CnQOSQtmQ0CKPGJMqXJbtg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:20.131538Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CnQOSQtmQ0CKPGJMqXJbtg==: stderr: -2026-04-20T11:32:20.131564Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CnQOSQtmQ0CKPGJMqXJbtg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:20.131577Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CnQOSQtmQ0CKPGJMqXJbtg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:20.131586Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CnQOSQtmQ0CKPGJMqXJbtg==: stderr: stack backtrace: -2026-04-20T11:32:20.131594Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CnQOSQtmQ0CKPGJMqXJbtg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:20.131603Z DEBUG sp1_core_executor_runner::native: CHILD sp1_CnQOSQtmQ0CKPGJMqXJbtg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:20.131714Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:20.132510Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:20.132800Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:20.199631Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:20.199687Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:20.199881Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:20.200043Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:20.200119Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:20.200565Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=572 blob_id=2147880055742424597739206358364305155 -2026-04-20T11:32:20.755001Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tRnrkt3qSAONNWhrwyYL7w==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:20.762652Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:20.773471Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1126589 cycles -2026-04-20T11:32:20.776198Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 68, 234, 167, 162, 139, 68, 159, 216, 219, 131, 204, 128, 204, 3, 13, 158, 151, 181, 160, 41, 254, 75, 106, 217, 52, 154, 223, 3, 143, 166, 119, 47, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 80, 60, 166, 228, 177, 175, 88, 181, 138, 137, 103, 62, 10, 67, 233, 111, 41, 123, 93, 87, 0, 24, 243, 58, 207, 177, 171, 227, 31, 124, 135, 137, 70, 133, 183, 250, 191, 194, 127, 55, 28, 166, 245, 251, 98, 181, 188, 68, 156, 113, 4, 215, 175, 235, 216, 231, 35, 28, 28, 208, 20, 109, 157, 226, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:20.794367Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:20.794394Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:20.805625Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:20.840420Z DEBUG sp1_core_executor_runner::native: CHILD sp1_A2JIVXh7SXCDnSmYkl8ffA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:20.843259Z DEBUG sp1_core_executor_runner::native: CHILD sp1_A2JIVXh7SXCDnSmYkl8ffA==: stderr: -2026-04-20T11:32:20.843284Z DEBUG sp1_core_executor_runner::native: CHILD sp1_A2JIVXh7SXCDnSmYkl8ffA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:20.843295Z DEBUG sp1_core_executor_runner::native: CHILD sp1_A2JIVXh7SXCDnSmYkl8ffA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:20.843332Z DEBUG sp1_core_executor_runner::native: CHILD sp1_A2JIVXh7SXCDnSmYkl8ffA==: stderr: stack backtrace: -2026-04-20T11:32:20.843342Z DEBUG sp1_core_executor_runner::native: CHILD sp1_A2JIVXh7SXCDnSmYkl8ffA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:20.843349Z DEBUG sp1_core_executor_runner::native: CHILD sp1_A2JIVXh7SXCDnSmYkl8ffA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:20.843356Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:20.844188Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:20.844510Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:20.898163Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:20.898206Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:20.898410Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:20.898608Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:20.898688Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:20.899059Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=573 blob_id=2147880056587493502362972871131131307 -2026-04-20T11:32:21.445281Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Xlvc8vPtQEyP032NTIQRRg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:21.452898Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:21.462172Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1134623 cycles -2026-04-20T11:32:21.464800Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 96, 146, 72, 109, 133, 56, 205, 148, 189, 53, 239, 108, 69, 219, 59, 48, 85, 33, 16, 73, 9, 95, 197, 7, 242, 35, 162, 142, 105, 255, 113, 41, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 26, 200, 94, 228, 81, 30, 51, 5, 18, 156, 206, 228, 190, 178, 245, 229, 116, 245, 198, 30, 143, 57, 56, 90, 9, 32, 245, 14, 139, 117, 94, 3, 1, 59, 114, 80, 130, 177, 98, 132, 136, 183, 128, 119, 27, 5, 29, 94, 60, 44, 148, 254, 53, 237, 15, 209, 163, 51, 40, 224, 223, 222, 212, 201, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:21.528299Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:21.528352Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:21.607870Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:21.642151Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bl9kfBSST82XD3ZXedcqxA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:21.645020Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bl9kfBSST82XD3ZXedcqxA==: stderr: -2026-04-20T11:32:21.645044Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bl9kfBSST82XD3ZXedcqxA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:21.645054Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bl9kfBSST82XD3ZXedcqxA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:21.645061Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bl9kfBSST82XD3ZXedcqxA==: stderr: stack backtrace: -2026-04-20T11:32:21.645067Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bl9kfBSST82XD3ZXedcqxA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:21.645074Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bl9kfBSST82XD3ZXedcqxA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:21.645166Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:21.645902Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:21.646188Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:21.693815Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:21.693857Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:21.694000Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:21.694179Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:21.694254Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:21.694658Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=574 blob_id=2147880057549813856927891552107601470 -2026-04-20T11:32:22.239136Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Ve1HgHikR7i2_uL1T2vdmw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:22.246436Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:22.256034Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1094167 cycles -2026-04-20T11:32:22.258689Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 50, 63, 40, 56, 187, 10, 3, 130, 77, 98, 110, 46, 115, 254, 255, 5, 45, 47, 32, 213, 174, 199, 3, 218, 109, 222, 193, 42, 139, 194, 168, 83, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 65, 137, 153, 130, 182, 104, 168, 226, 47, 184, 120, 71, 249, 135, 116, 75, 65, 220, 184, 88, 0, 168, 230, 126, 57, 125, 75, 159, 11, 161, 202, 223, 107, 97, 236, 36, 32, 165, 245, 12, 5, 185, 125, 78, 115, 97, 126, 183, 129, 225, 136, 77, 195, 122, 17, 35, 133, 141, 165, 103, 86, 120, 15, 204, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:22.324427Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:22.324473Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:22.401115Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:22.435151Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8W1LPeRGRhyKORUxZsxU7Q==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:22.438012Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8W1LPeRGRhyKORUxZsxU7Q==: stderr: -2026-04-20T11:32:22.438037Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8W1LPeRGRhyKORUxZsxU7Q==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:22.438047Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8W1LPeRGRhyKORUxZsxU7Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:22.438054Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8W1LPeRGRhyKORUxZsxU7Q==: stderr: stack backtrace: -2026-04-20T11:32:22.438060Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8W1LPeRGRhyKORUxZsxU7Q==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:22.438067Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8W1LPeRGRhyKORUxZsxU7Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:22.438180Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:22.438929Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:22.439221Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:22.493175Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:22.493231Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:22.493403Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:22.493575Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:22.493653Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:22.494086Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=575 blob_id=2147880058515695705394358618090055668 -2026-04-20T11:32:23.036405Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fkn3s7qoQgWAA2DcUs4kZA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:23.043470Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:23.053111Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1069452 cycles -2026-04-20T11:32:23.055706Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 90, 80, 102, 47, 19, 95, 9, 33, 26, 244, 145, 46, 176, 212, 232, 144, 28, 116, 202, 151, 175, 217, 88, 163, 167, 11, 200, 241, 255, 47, 118, 156, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 77, 115, 199, 33, 193, 222, 1, 26, 252, 112, 234, 155, 63, 225, 185, 18, 179, 144, 250, 106, 112, 178, 201, 28, 76, 94, 32, 210, 186, 169, 65, 212, 11, 131, 172, 240, 168, 25, 53, 172, 235, 196, 100, 56, 237, 164, 176, 0, 242, 117, 99, 100, 190, 198, 161, 212, 97, 255, 137, 104, 225, 141, 87, 125, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:23.119607Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:23.119650Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:23.202197Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:23.236219Z DEBUG sp1_core_executor_runner::native: CHILD sp1_efX-7UwmSZC2uYO3bftCcw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:23.239049Z DEBUG sp1_core_executor_runner::native: CHILD sp1_efX-7UwmSZC2uYO3bftCcw==: stderr: -2026-04-20T11:32:23.239062Z DEBUG sp1_core_executor_runner::native: CHILD sp1_efX-7UwmSZC2uYO3bftCcw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:23.239070Z DEBUG sp1_core_executor_runner::native: CHILD sp1_efX-7UwmSZC2uYO3bftCcw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:23.239091Z DEBUG sp1_core_executor_runner::native: CHILD sp1_efX-7UwmSZC2uYO3bftCcw==: stderr: stack backtrace: -2026-04-20T11:32:23.239098Z DEBUG sp1_core_executor_runner::native: CHILD sp1_efX-7UwmSZC2uYO3bftCcw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:23.239104Z DEBUG sp1_core_executor_runner::native: CHILD sp1_efX-7UwmSZC2uYO3bftCcw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:23.239246Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:23.240001Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:23.240341Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:23.272667Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=8 height=523 prev_hash=0x01d15b91dba0344824806632739e7b295b8351fd3b84693088cc9d484e840375 hash=0x9bdb2838c0430edb70b3c5b38efa8d8c859a07baf8c318fe8fb9672b31a378b1 producing_time=1.249252ms -2026-04-20T11:32:23.274563Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=523 current_state_root="42c2905ebdeb759ffb3dd80dc174ffd4b883723f47c4f267ca337cb6d791c5ab6501968b5b0eeb7f8d6af47f2a7a12012ecbf2f1750ec8048aeeb9704cd44b3c" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd45372ee6b0afce5cbbd7f9b84e4438e08c5b75fd6bdc6c04a60ce68c5156f5f"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa035ebdee41076b88a0343ccb675b41a6e9222f4962855a9772206cd86716790, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x067c087fc0873e9a7cd0c533cc9cfa2e03e3aa23143e9b02a8882b970b667ce5, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf0ee08ec95e8670585d1385e7793545e6375a1727bf329c6a0c19c9bce15df8f, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf5785f0e15e5d5c9fb5b6c1bb5f33c73f9755256d11001c4f59139bb401952ae, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x4f1093ad67c942950d4e3799e15590a61f42b72d619107e16e9c5c4217759e78, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x6a9fce3a70acb055b655406e6df42c6bb6ffea47e3c847c5da8981e51494c00a, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9764be44adddb6b779a270d335ddbd9fd3ebe982b9862ecef71b7cdf028f57e5, len=625"] -2026-04-20T11:32:23.275035Z DEBUG StfBlueprint::apply_slot{context=Node da_height=523}: sov_chain_state: Setting next visible slot number next_visible_slot_number=450 -2026-04-20T11:32:23.275435Z DEBUG StfBlueprint::apply_slot{context=Node da_height=523}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xd45372ee6b0afce5cbbd7f9b84e4438e08c5b75fd6bdc6c04a60ce68c5156f5f}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=7 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:32:23.275682Z DEBUG StfBlueprint::apply_slot{context=Node da_height=523}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=42c2905ebdeb759ffb3dd80dc174ffd4b883723f47c4f267ca337cb6d791c5ab6501968b5b0eeb7f8d6af47f2a7a12012ecbf2f1750ec8048aeeb9704cd44b3c next_version=523 sesssion_starting_time=47.97µs -2026-04-20T11:32:23.276988Z DEBUG StfBlueprint::apply_slot{context=Node da_height=523}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=26234f8e7986e3a3313d9a2be1aca9d8ebd098d711ca1d3602fbb2b79a87497749de2c106e521788c693842aedea73d941c724d5d19ec44b04f0240d8a07fae6 next_version=523 time=1.414611ms accesses_build_time=59.1µs finishing_session_time=1.281562ms -2026-04-20T11:32:23.277188Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="1cdb78a5c267c579725a0ec929700cea76c7c6d4020b2671e2997fa3c3b7355a" -2026-04-20T11:32:23.277206Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="19429b14fb9078787c62321f0d49a693e62c3f6ead261224b2bd0aae0504c2c7" -2026-04-20T11:32:23.277214Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="5a8c1cbee49c619cb102c7d26945937feb36caebeaaeb3e90e8d3e23ebec4738" -2026-04-20T11:32:23.277224Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="c6df132fd7b0156f41782e145820ecaaa71ca4e888d92d4965e84d160153c78e" -2026-04-20T11:32:23.277232Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="eef8e09f92a52c342c0c58a9d50e0c6f9ddad422ba40433ace3b932ca1504d63" -2026-04-20T11:32:23.277241Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="5ff665775f0008e296d9cbdd0e52992af4cfef026044ce298f0f703c974ff63e" -2026-04-20T11:32:23.277250Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="e4477463b2b439ded80a3480aac1250600dbbd4aea0311feae8a1bfe23e8bd98" -2026-04-20T11:32:23.277261Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6b26a7f2550d9672806fda48edf816a260cabbe6153e6e30c09fc2777f9e835c4a795f9a5b5a8a6fb1e33b0fd568bd3f4fb9c5aa23e8a43db75ce4e6585ab1b5" next_state_root="26234f8e7986e3a3313d9a2be1aca9d8ebd098d711ca1d3602fbb2b79a87497749de2c106e521788c693842aedea73d941c724d5d19ec44b04f0240d8a07fae6" aggregated_proofs=0 proof_receipts=7 -2026-04-20T11:32:23.277881Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=4 min=5 max=6 -2026-04-20T11:32:23.277938Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:32:23.278015Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=139 -2026-04-20T11:32:23.278148Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=460 -2026-04-20T11:32:23.278439Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:32:23.278926Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=460 sequence_number=576 -2026-04-20T11:32:23.278957Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=576 blob_id=2147880059464723671063578646690895944 visible_slot_number_after_increase=460 visible_slots_to_advance=10 -2026-04-20T11:32:23.278980Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=7 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:32:23.280802Z DEBUG manage_blob_submission_inside_task{blob_id=2147880059464723671063578646690895944 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x6bcd2654203bda16f63abac577368a5488337a301bc96ec5c7a95c73345835e2 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=524 include_at=524 bytes=13 time=659.956µs -2026-04-20T11:32:23.290792Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:23.290835Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:23.290971Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:23.291104Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:23.291177Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:23.291438Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=577 blob_id=2147880059479221354719334288438206436 -2026-04-20T11:32:23.292891Z DEBUG compute_state_update{scope="sequencer" rollup_height=144 slot_number=460}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:32:23.292923Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00032127s -2026-04-20T11:32:23.292938Z DEBUG compute_state_update{scope="sequencer" rollup_height=144 slot_number=460}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:32:23.292958Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:32:23.293012Z DEBUG compute_state_update{scope="sequencer" rollup_height=144 slot_number=460}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430842d37d180b81279114a35c77ed5aac3fa71d3ec3b9174f5c8180f51b97035d77 next_version=520 sesssion_starting_time=13.442173ms -2026-04-20T11:32:23.294199Z DEBUG compute_state_update{scope="sequencer" rollup_height=144 slot_number=460}: sov_state::nomt::prover_storage: computed next state root state_root=5cb0ac698b0f80810899c7cc79b0ac3f90b2b1ec8d68a867da3003da8885232b6215a5a5269b9fcc9c5d549b87492f8639afe537b02e9058f659266839db089a next_version=520 time=14.677725ms accesses_build_time=46.98µs finishing_session_time=1.164822ms -2026-04-20T11:32:23.833763Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pnDn7nHVQpugsNm7LH_2ug==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:23.841098Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:23.850172Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1105376 cycles -2026-04-20T11:32:23.852985Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 119, 202, 130, 229, 128, 71, 195, 31, 77, 250, 3, 136, 28, 118, 172, 239, 85, 251, 32, 98, 202, 253, 144, 203, 119, 29, 134, 226, 78, 21, 214, 138, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 103, 19, 238, 185, 24, 232, 217, 43, 18, 85, 64, 47, 47, 207, 216, 44, 254, 36, 107, 73, 174, 13, 101, 31, 106, 166, 52, 11, 186, 155, 211, 73, 174, 101, 36, 31, 14, 124, 43, 6, 155, 126, 54, 35, 158, 145, 142, 196, 203, 132, 96, 152, 40, 232, 113, 149, 233, 61, 219, 57, 145, 232, 225, 43, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:23.915411Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:23.915471Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:24.000788Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:24.034089Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sAVvEX3jTciCMWsHq0u36w==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:24.036915Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sAVvEX3jTciCMWsHq0u36w==: stderr: -2026-04-20T11:32:24.036929Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sAVvEX3jTciCMWsHq0u36w==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:24.036937Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sAVvEX3jTciCMWsHq0u36w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:24.036946Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sAVvEX3jTciCMWsHq0u36w==: stderr: stack backtrace: -2026-04-20T11:32:24.036952Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sAVvEX3jTciCMWsHq0u36w==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:24.036958Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sAVvEX3jTciCMWsHq0u36w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:24.037127Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:24.037780Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:24.038069Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:24.103514Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:24.103559Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:24.103730Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:24.103900Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:24.103980Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:24.104263Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=578 blob_id=2147880060462082212448871221088228665 -2026-04-20T11:32:24.655902Z DEBUG sp1_core_executor_runner::native: CHILD sp1_B2dkBqFkRcacLO5Rpgp5xg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:24.663347Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:24.674054Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1105773 cycles -2026-04-20T11:32:24.676534Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 46, 96, 131, 202, 237, 240, 96, 2, 5, 46, 134, 33, 5, 167, 101, 26, 231, 72, 63, 224, 96, 39, 54, 140, 227, 35, 147, 247, 100, 155, 230, 75, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 87, 207, 250, 47, 53, 161, 238, 160, 164, 175, 70, 210, 243, 103, 147, 244, 103, 156, 172, 61, 227, 210, 237, 134, 185, 82, 204, 6, 155, 44, 156, 152, 185, 155, 245, 184, 126, 198, 73, 10, 129, 183, 69, 63, 3, 112, 86, 151, 209, 199, 195, 155, 214, 69, 218, 48, 90, 19, 207, 34, 54, 200, 156, 115, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:24.736996Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:24.737042Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:24.812083Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:24.845631Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gE7HiPjoTtScxy8iGLvD1g==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:24.848513Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gE7HiPjoTtScxy8iGLvD1g==: stderr: -2026-04-20T11:32:24.848537Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gE7HiPjoTtScxy8iGLvD1g==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:24.848547Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gE7HiPjoTtScxy8iGLvD1g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:24.848554Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gE7HiPjoTtScxy8iGLvD1g==: stderr: stack backtrace: -2026-04-20T11:32:24.848563Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gE7HiPjoTtScxy8iGLvD1g==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:24.848570Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gE7HiPjoTtScxy8iGLvD1g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:24.848674Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:24.849444Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:24.849737Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:24.916764Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:24.916813Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:24.917032Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:24.917203Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:24.917284Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:24.917742Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=579 blob_id=2147880061446190923253766065269426728 -2026-04-20T11:32:25.464940Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PAiPD-GMTD-eH5_vih02Ig==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:25.472637Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:25.482193Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1132017 cycles -2026-04-20T11:32:25.484899Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 27, 72, 216, 1, 89, 48, 195, 147, 28, 170, 33, 211, 177, 2, 5, 127, 126, 87, 32, 160, 247, 93, 62, 33, 10, 86, 37, 89, 255, 202, 42, 69, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 91, 141, 85, 63, 140, 42, 241, 34, 158, 121, 30, 85, 91, 142, 21, 46, 216, 117, 145, 80, 216, 110, 82, 191, 207, 153, 84, 53, 38, 147, 85, 130, 177, 37, 141, 154, 182, 175, 153, 27, 31, 65, 230, 60, 250, 97, 27, 117, 16, 119, 72, 96, 60, 238, 87, 171, 178, 14, 51, 87, 218, 104, 182, 211, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:25.548468Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:25.548517Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:25.625227Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:25.658418Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yDmJtqHPR7-CT57jWVofOg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:25.661239Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yDmJtqHPR7-CT57jWVofOg==: stderr: -2026-04-20T11:32:25.661252Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yDmJtqHPR7-CT57jWVofOg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:25.661260Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yDmJtqHPR7-CT57jWVofOg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:25.661269Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yDmJtqHPR7-CT57jWVofOg==: stderr: stack backtrace: -2026-04-20T11:32:25.661288Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yDmJtqHPR7-CT57jWVofOg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:25.661294Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yDmJtqHPR7-CT57jWVofOg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:25.661425Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:25.662165Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:25.662500Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:25.727653Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:25.727694Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:25.727880Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:25.728045Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:25.728108Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:25.728563Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=580 blob_id=2147880062425356141759598324275879153 -2026-04-20T11:32:26.281517Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3eyIrQJBQQifejI3_Ymfcg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:26.288965Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:26.298795Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1110235 cycles -2026-04-20T11:32:26.301486Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 20, 186, 188, 255, 117, 226, 189, 127, 30, 25, 63, 101, 103, 154, 139, 4, 137, 188, 206, 165, 147, 81, 99, 38, 46, 193, 124, 252, 25, 138, 218, 167, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 11, 230, 135, 227, 254, 167, 95, 229, 193, 93, 55, 222, 169, 196, 241, 248, 15, 245, 146, 161, 175, 135, 182, 217, 206, 96, 64, 188, 233, 9, 232, 184, 214, 27, 94, 87, 87, 94, 47, 210, 105, 37, 92, 119, 240, 248, 97, 190, 12, 137, 186, 191, 184, 38, 62, 116, 173, 24, 158, 96, 24, 185, 64, 66, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:26.363684Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:26.363740Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:26.434594Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:26.467296Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TuATy0yNR8OnF3ngSyTwCg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:26.470139Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TuATy0yNR8OnF3ngSyTwCg==: stderr: -2026-04-20T11:32:26.470151Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TuATy0yNR8OnF3ngSyTwCg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:26.470160Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TuATy0yNR8OnF3ngSyTwCg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:26.470168Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TuATy0yNR8OnF3ngSyTwCg==: stderr: stack backtrace: -2026-04-20T11:32:26.470175Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TuATy0yNR8OnF3ngSyTwCg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:26.470181Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TuATy0yNR8OnF3ngSyTwCg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:26.470361Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:26.471114Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:26.471446Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:26.536814Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:26.536858Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:26.537021Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:26.537175Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:26.537233Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:26.537643Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=581 blob_id=2147880063404607639943435276388241521 -2026-04-20T11:32:27.085175Z DEBUG sp1_core_executor_runner::native: CHILD sp1_MPXgCIPhR1Odr6-DmiF89A==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:27.092579Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:27.102369Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1105654 cycles -2026-04-20T11:32:27.105301Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 24, 116, 166, 211, 227, 41, 82, 198, 230, 195, 39, 200, 186, 128, 117, 123, 247, 55, 206, 173, 153, 137, 246, 36, 71, 13, 251, 222, 37, 237, 87, 0, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 97, 43, 117, 72, 65, 175, 210, 184, 1, 23, 211, 33, 188, 48, 243, 234, 119, 215, 28, 109, 24, 49, 157, 9, 180, 2, 222, 65, 134, 216, 250, 127, 188, 174, 24, 135, 224, 252, 226, 113, 83, 40, 41, 200, 194, 36, 175, 19, 254, 182, 159, 58, 43, 38, 49, 22, 253, 52, 99, 153, 173, 205, 124, 13, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:27.167001Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:27.167049Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:27.244482Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:27.278712Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vdTU3HRmSm23E0hxlXMxBQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:27.281541Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vdTU3HRmSm23E0hxlXMxBQ==: stderr: -2026-04-20T11:32:27.281553Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vdTU3HRmSm23E0hxlXMxBQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:27.281561Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vdTU3HRmSm23E0hxlXMxBQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:27.281569Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vdTU3HRmSm23E0hxlXMxBQ==: stderr: stack backtrace: -2026-04-20T11:32:27.281576Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vdTU3HRmSm23E0hxlXMxBQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:27.281582Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vdTU3HRmSm23E0hxlXMxBQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:27.281743Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:27.282520Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:27.282830Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:27.350211Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:27.350255Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:27.350478Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:27.350690Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:27.350763Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:27.351426Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=582 blob_id=2147880064387501796170135583224781557 -2026-04-20T11:32:27.902909Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bvZnFFXcS8-R_Z9hzQJ7uA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:27.910284Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:27.919976Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1094895 cycles -2026-04-20T11:32:27.922621Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 101, 124, 11, 97, 13, 209, 142, 26, 52, 122, 97, 6, 154, 60, 67, 6, 219, 65, 1, 50, 70, 250, 184, 12, 79, 70, 86, 89, 217, 92, 58, 64, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 40, 100, 152, 126, 121, 118, 96, 120, 124, 251, 151, 253, 123, 146, 18, 51, 40, 224, 51, 78, 25, 189, 160, 1, 157, 76, 40, 34, 178, 208, 52, 13, 153, 87, 215, 189, 232, 84, 200, 219, 38, 121, 250, 124, 80, 167, 184, 28, 78, 49, 220, 149, 87, 102, 76, 163, 228, 58, 159, 230, 189, 161, 190, 118, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:27.984448Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:27.984495Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:28.058377Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:28.092395Z DEBUG sp1_core_executor_runner::native: CHILD sp1_DkbvausHRXmvsPiyESKzUA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:28.095189Z DEBUG sp1_core_executor_runner::native: CHILD sp1_DkbvausHRXmvsPiyESKzUA==: stderr: -2026-04-20T11:32:28.095213Z DEBUG sp1_core_executor_runner::native: CHILD sp1_DkbvausHRXmvsPiyESKzUA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:28.095225Z DEBUG sp1_core_executor_runner::native: CHILD sp1_DkbvausHRXmvsPiyESKzUA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:28.095234Z DEBUG sp1_core_executor_runner::native: CHILD sp1_DkbvausHRXmvsPiyESKzUA==: stderr: stack backtrace: -2026-04-20T11:32:28.095242Z DEBUG sp1_core_executor_runner::native: CHILD sp1_DkbvausHRXmvsPiyESKzUA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:28.095266Z DEBUG sp1_core_executor_runner::native: CHILD sp1_DkbvausHRXmvsPiyESKzUA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:28.095404Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:28.096134Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:28.096465Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:28.162847Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:28.162889Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:28.163066Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:28.163233Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:28.163291Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:28.163888Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=583 blob_id=2147880065370348471497737737689668912 -2026-04-20T11:32:28.706930Z DEBUG sp1_core_executor_runner::native: CHILD sp1_6pD5r3sHScCt4Eo38oA0VQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:28.714418Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:28.724183Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1109626 cycles -2026-04-20T11:32:28.726728Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 55, 74, 181, 29, 43, 121, 199, 49, 83, 246, 22, 154, 126, 229, 23, 82, 213, 111, 4, 243, 229, 57, 135, 154, 194, 253, 105, 239, 104, 78, 207, 94, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 15, 36, 113, 82, 145, 160, 101, 211, 47, 133, 131, 99, 85, 180, 186, 161, 28, 254, 45, 229, 125, 240, 107, 130, 46, 144, 217, 36, 141, 1, 73, 144, 41, 5, 33, 61, 197, 60, 138, 136, 193, 156, 20, 116, 56, 66, 199, 115, 133, 5, 49, 214, 186, 224, 211, 238, 42, 33, 185, 90, 249, 134, 10, 161, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:28.788722Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:28.788767Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:28.871304Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:28.906885Z DEBUG sp1_core_executor_runner::native: CHILD sp1_crRJ2oimTouYLzqr-zTLnw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:28.909715Z DEBUG sp1_core_executor_runner::native: CHILD sp1_crRJ2oimTouYLzqr-zTLnw==: stderr: -2026-04-20T11:32:28.909740Z DEBUG sp1_core_executor_runner::native: CHILD sp1_crRJ2oimTouYLzqr-zTLnw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:28.909750Z DEBUG sp1_core_executor_runner::native: CHILD sp1_crRJ2oimTouYLzqr-zTLnw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:28.909757Z DEBUG sp1_core_executor_runner::native: CHILD sp1_crRJ2oimTouYLzqr-zTLnw==: stderr: stack backtrace: -2026-04-20T11:32:28.909763Z DEBUG sp1_core_executor_runner::native: CHILD sp1_crRJ2oimTouYLzqr-zTLnw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:28.909770Z DEBUG sp1_core_executor_runner::native: CHILD sp1_crRJ2oimTouYLzqr-zTLnw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:28.909905Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:28.910615Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:28.910921Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:28.976914Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:28.976958Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:28.977135Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:28.977307Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:28.977392Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:28.977796Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=584 blob_id=2147880066354383356836829954861269134 -2026-04-20T11:32:29.275218Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=9 height=524 prev_hash=0x9bdb2838c0430edb70b3c5b38efa8d8c859a07baf8c318fe8fb9672b31a378b1 hash=0x8d4083dd7d1e2f8b41e70d3dfddcaf0b69f9c1c5086cb302cafb215f7b6da2b2 producing_time=1.364291ms -2026-04-20T11:32:29.284161Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=524 current_state_root="26234f8e7986e3a3313d9a2be1aca9d8ebd098d711ca1d3602fbb2b79a87497749de2c106e521788c693842aedea73d941c724d5d19ec44b04f0240d8a07fae6" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x6bcd2654203bda16f63abac577368a5488337a301bc96ec5c7a95c73345835e2"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xec463d04154e275168a5126ac74df529e20fbb1aa5f756f0b1bf70fa4c7f153c, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd3538b8b39eb269c8f533a4e8ff0ac37bab957c6cf24ae3c74e243ac05a9abee, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0a2ebceec298d9df35324f89b12aa8ab682552c1d7bd7ff20110a9e3c03c95bf, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf71b4bcea65e8f86d93d014d98f780048476339a632414a93abbd26d26608579, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xebe6df54808ca4e5f4f7e7b57c9d6b7bcc9e4cac911a34999fc6685b76a7fa3a, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x842282185a8d3956bb835fd7346865528ee7229b729f1dc8bba07323e9d13e8a, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xce2c23169c9f44075ea6ca87a307c0026edafe9547c773631cf8d7f64568cad3, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc101f06581e1a2d4cb8bf3c4846ae48301e0399c9247cb347e9449e2ada2a43e, len=625"] -2026-04-20T11:32:29.284689Z DEBUG StfBlueprint::apply_slot{context=Node da_height=524}: sov_chain_state: Setting next visible slot number next_visible_slot_number=460 -2026-04-20T11:32:29.285076Z DEBUG StfBlueprint::apply_slot{context=Node da_height=524}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x6bcd2654203bda16f63abac577368a5488337a301bc96ec5c7a95c73345835e2}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=7 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:32:29.285302Z DEBUG StfBlueprint::apply_slot{context=Node da_height=524}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=26234f8e7986e3a3313d9a2be1aca9d8ebd098d711ca1d3602fbb2b79a87497749de2c106e521788c693842aedea73d941c724d5d19ec44b04f0240d8a07fae6 next_version=524 sesssion_starting_time=47.049µs -2026-04-20T11:32:29.286569Z DEBUG StfBlueprint::apply_slot{context=Node da_height=524}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=5cb0ac698b0f80810899c7cc79b0ac3f90b2b1ec8d68a867da3003da8885232b5bfa15b0472359c1f28a5b235c01c7381a8cad0c475e77c5233e290afd50d8e0 next_version=524 time=1.376901ms accesses_build_time=61.11µs finishing_session_time=1.217222ms -2026-04-20T11:32:29.286791Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="a035ebdee41076b88a0343ccb675b41a6e9222f4962855a9772206cd86716790" -2026-04-20T11:32:29.286813Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="067c087fc0873e9a7cd0c533cc9cfa2e03e3aa23143e9b02a8882b970b667ce5" -2026-04-20T11:32:29.286825Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="f0ee08ec95e8670585d1385e7793545e6375a1727bf329c6a0c19c9bce15df8f" -2026-04-20T11:32:29.286838Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="f5785f0e15e5d5c9fb5b6c1bb5f33c73f9755256d11001c4f59139bb401952ae" -2026-04-20T11:32:29.286849Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="4f1093ad67c942950d4e3799e15590a61f42b72d619107e16e9c5c4217759e78" -2026-04-20T11:32:29.286862Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="6a9fce3a70acb055b655406e6df42c6bb6ffea47e3c847c5da8981e51494c00a" -2026-04-20T11:32:29.286875Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="9764be44adddb6b779a270d335ddbd9fd3ebe982b9862ecef71b7cdf028f57e5" -2026-04-20T11:32:29.286892Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="42c2905ebdeb759ffb3dd80dc174ffd4b883723f47c4f267ca337cb6d791c5ab6501968b5b0eeb7f8d6af47f2a7a12012ecbf2f1750ec8048aeeb9704cd44b3c" next_state_root="5cb0ac698b0f80810899c7cc79b0ac3f90b2b1ec8d68a867da3003da8885232b5bfa15b0472359c1f28a5b235c01c7381a8cad0c475e77c5233e290afd50d8e0" aggregated_proofs=0 proof_receipts=7 -2026-04-20T11:32:29.287550Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=5 min=5 max=6 -2026-04-20T11:32:29.287615Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:32:29.287729Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=140 -2026-04-20T11:32:29.287864Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=470 -2026-04-20T11:32:29.288169Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:32:29.288730Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=470 sequence_number=585 -2026-04-20T11:32:29.288748Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=585 blob_id=2147880066730400072043700490439394728 visible_slot_number_after_increase=470 visible_slots_to_advance=10 -2026-04-20T11:32:29.288874Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=8 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:32:29.290689Z DEBUG manage_blob_submission_inside_task{blob_id=2147880066730400072043700490439394728 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x9928c209792ba7a06d65e9c71c01fe58f7c925266b2a6ea9bbc643f0a5eecf1f sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=525 include_at=525 bytes=13 time=679.806µs -2026-04-20T11:32:29.309370Z DEBUG compute_state_update{scope="sequencer" rollup_height=145 slot_number=470}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:32:29.309396Z DEBUG sov_stf_runner::runner: Block execution complete time=6.016439206s -2026-04-20T11:32:29.309400Z DEBUG compute_state_update{scope="sequencer" rollup_height=145 slot_number=470}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:32:29.309410Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:32:29.309457Z DEBUG compute_state_update{scope="sequencer" rollup_height=145 slot_number=470}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430842d37d180b81279114a35c77ed5aac3fa71d3ec3b9174f5c8180f51b97035d77 next_version=520 sesssion_starting_time=19.967152ms -2026-04-20T11:32:29.310742Z DEBUG compute_state_update{scope="sequencer" rollup_height=145 slot_number=470}: sov_state::nomt::prover_storage: computed next state root state_root=71c51000c76e206b5d8fec9476cafdf3870c3ec551fab628fb45e112e9632e0c17d7129c48fda12eb33e862c65009b6ff64e06a82e99a625b1c43d8cbce6ca6f next_version=520 time=21.306583ms accesses_build_time=53.509µs finishing_session_time=1.264122ms -2026-04-20T11:32:29.522115Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VeSkcdcnS1-_x14KsCt1sA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:29.529668Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:29.539119Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1121990 cycles -2026-04-20T11:32:29.541667Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 9, 182, 80, 122, 153, 197, 199, 58, 230, 46, 214, 76, 191, 100, 136, 69, 241, 112, 8, 186, 6, 74, 124, 221, 231, 71, 52, 66, 171, 71, 12, 44, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 18, 247, 22, 191, 109, 44, 34, 197, 135, 204, 227, 208, 13, 187, 239, 176, 84, 71, 228, 48, 169, 4, 254, 8, 71, 141, 204, 228, 134, 181, 21, 141, 48, 157, 173, 75, 241, 38, 140, 201, 3, 96, 56, 49, 142, 199, 153, 94, 212, 234, 209, 88, 100, 173, 16, 197, 118, 187, 205, 82, 36, 66, 224, 125, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:29.604197Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:29.604246Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:29.686577Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:29.719791Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IiqcyT5vT7-VdK1Y7Qk6sQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:29.722639Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IiqcyT5vT7-VdK1Y7Qk6sQ==: stderr: -2026-04-20T11:32:29.722650Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IiqcyT5vT7-VdK1Y7Qk6sQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:29.722659Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IiqcyT5vT7-VdK1Y7Qk6sQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:29.722667Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IiqcyT5vT7-VdK1Y7Qk6sQ==: stderr: stack backtrace: -2026-04-20T11:32:29.722673Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IiqcyT5vT7-VdK1Y7Qk6sQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:29.722680Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IiqcyT5vT7-VdK1Y7Qk6sQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:29.722837Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:29.723602Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:29.723914Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:29.790028Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:29.790078Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:29.790290Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:29.790456Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:29.790541Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:29.790840Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=586 blob_id=2147880067337276647671104674103721317 -2026-04-20T11:32:30.338273Z DEBUG sp1_core_executor_runner::native: CHILD sp1_l87vDBDaQCW_uqCNWlTNLw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:30.345735Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:30.355438Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1123419 cycles -2026-04-20T11:32:30.358077Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 6, 201, 127, 77, 217, 35, 123, 77, 249, 192, 202, 24, 75, 245, 168, 161, 110, 58, 221, 73, 157, 252, 16, 196, 244, 7, 211, 154, 116, 77, 2, 29, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 3, 35, 200, 119, 188, 222, 133, 250, 95, 65, 95, 141, 49, 155, 63, 148, 76, 217, 10, 26, 128, 196, 166, 153, 114, 123, 105, 85, 139, 80, 236, 177, 50, 110, 99, 8, 188, 199, 123, 226, 172, 96, 98, 138, 214, 97, 129, 171, 187, 190, 168, 209, 99, 100, 201, 222, 250, 150, 234, 78, 52, 200, 112, 79, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:30.377917Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:30.377945Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:30.397148Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:30.422451Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vhC1ByzNShCyDn9DjoVKtQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:30.425279Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vhC1ByzNShCyDn9DjoVKtQ==: stderr: -2026-04-20T11:32:30.425294Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vhC1ByzNShCyDn9DjoVKtQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:30.425306Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vhC1ByzNShCyDn9DjoVKtQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:30.425324Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vhC1ByzNShCyDn9DjoVKtQ==: stderr: stack backtrace: -2026-04-20T11:32:30.425338Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vhC1ByzNShCyDn9DjoVKtQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:30.425362Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vhC1ByzNShCyDn9DjoVKtQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:30.425408Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:30.426197Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:30.426345Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:30.492639Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:30.492685Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:30.492837Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:30.492957Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:30.493013Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:30.493273Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=587 blob_id=2147880068185919585793744683948441669 -2026-04-20T11:32:31.021086Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PlVQzN4eR76OD_plnaFGcQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:31.028711Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:31.038082Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1121334 cycles -2026-04-20T11:32:31.040622Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 23, 187, 2, 9, 139, 100, 205, 163, 96, 43, 200, 88, 241, 135, 48, 130, 153, 50, 175, 164, 159, 223, 253, 21, 67, 23, 190, 24, 144, 149, 121, 244, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 89, 15, 24, 237, 218, 216, 246, 126, 49, 130, 12, 117, 244, 16, 46, 28, 59, 28, 147, 235, 172, 154, 132, 166, 38, 29, 198, 33, 181, 24, 234, 32, 233, 4, 151, 222, 133, 85, 219, 231, 234, 21, 230, 195, 220, 244, 196, 91, 57, 134, 216, 1, 251, 151, 188, 141, 97, 15, 167, 119, 255, 111, 50, 192, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:31.104016Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:31.104060Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:31.200299Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:31.234081Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ZggY2hS2R920AqN0d7vHew==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:31.236894Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ZggY2hS2R920AqN0d7vHew==: stderr: -2026-04-20T11:32:31.236906Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ZggY2hS2R920AqN0d7vHew==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:31.236914Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ZggY2hS2R920AqN0d7vHew==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:31.236922Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ZggY2hS2R920AqN0d7vHew==: stderr: stack backtrace: -2026-04-20T11:32:31.236929Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ZggY2hS2R920AqN0d7vHew==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:31.236935Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ZggY2hS2R920AqN0d7vHew==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:31.237096Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:31.237818Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:31.238108Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:31.304111Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:31.304155Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:31.304304Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:31.304508Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:31.304565Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:31.304861Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=588 blob_id=2147880069167554384570210079471436160 -2026-04-20T11:32:31.852459Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hWI6InjuTuGnQqioniTycA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:31.860105Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:31.869470Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1128555 cycles -2026-04-20T11:32:31.872086Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 40, 78, 132, 179, 224, 211, 86, 49, 83, 72, 232, 3, 116, 52, 19, 35, 135, 54, 173, 187, 9, 247, 138, 41, 109, 62, 110, 53, 9, 104, 60, 80, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 110, 57, 216, 9, 9, 17, 107, 156, 60, 151, 79, 241, 115, 250, 223, 132, 169, 69, 81, 182, 245, 158, 243, 252, 56, 120, 17, 89, 238, 226, 159, 96, 19, 37, 180, 85, 163, 65, 246, 73, 189, 211, 23, 103, 57, 96, 254, 138, 71, 175, 104, 27, 247, 192, 138, 136, 236, 23, 69, 30, 41, 229, 103, 214, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:31.919307Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:31.919362Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:32.012352Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:32.047079Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Q-51NAfkS0eKev9B-Mm8Pg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:32.049896Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Q-51NAfkS0eKev9B-Mm8Pg==: stderr: -2026-04-20T11:32:32.049909Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Q-51NAfkS0eKev9B-Mm8Pg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:32.049918Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Q-51NAfkS0eKev9B-Mm8Pg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:32.049926Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Q-51NAfkS0eKev9B-Mm8Pg==: stderr: stack backtrace: -2026-04-20T11:32:32.049933Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Q-51NAfkS0eKev9B-Mm8Pg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:32.049939Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Q-51NAfkS0eKev9B-Mm8Pg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:32.050076Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:32.050866Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:32.051158Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:32.115843Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:32.115886Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:32.116060Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:32.116256Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:32.116342Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:32.116749Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=589 blob_id=2147880070149235795206559951446990714 -2026-04-20T11:32:32.666628Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2Qto8k5qS0CGYcuJDOFpAQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:32.674360Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:32.685441Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1144626 cycles -2026-04-20T11:32:32.688101Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 50, 181, 248, 142, 230, 239, 239, 37, 182, 239, 4, 173, 54, 205, 8, 171, 240, 234, 127, 125, 248, 50, 45, 195, 210, 72, 122, 60, 213, 1, 92, 214, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 95, 221, 187, 136, 34, 113, 110, 241, 21, 217, 211, 45, 82, 168, 63, 143, 222, 47, 243, 15, 186, 63, 94, 214, 51, 86, 220, 178, 115, 224, 236, 74, 200, 80, 120, 65, 71, 37, 74, 56, 131, 123, 219, 220, 182, 84, 147, 191, 33, 143, 176, 116, 139, 183, 53, 220, 229, 245, 128, 218, 124, 85, 19, 230, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:32.749655Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:32.749704Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:32.824505Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:32.859028Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jU2FNVD3TzecMyonFFUVJg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:32.861857Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jU2FNVD3TzecMyonFFUVJg==: stderr: -2026-04-20T11:32:32.861872Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jU2FNVD3TzecMyonFFUVJg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:32.861883Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jU2FNVD3TzecMyonFFUVJg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:32.861893Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jU2FNVD3TzecMyonFFUVJg==: stderr: stack backtrace: -2026-04-20T11:32:32.861902Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jU2FNVD3TzecMyonFFUVJg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:32.861923Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jU2FNVD3TzecMyonFFUVJg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:32.862013Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:32.862815Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:32.863135Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:32.929703Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:32.929747Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:32.929940Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:32.930116Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:32.930187Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:32.930823Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=590 blob_id=2147880071132076788552528898212384901 -2026-04-20T11:32:33.429173Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nZM5slH-SsiZD1UKowd3Aw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:33.436810Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:33.446675Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1137232 cycles -2026-04-20T11:32:33.449280Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 57, 247, 247, 192, 96, 243, 105, 51, 189, 121, 121, 197, 18, 33, 234, 147, 92, 56, 40, 197, 37, 71, 64, 229, 43, 208, 237, 90, 123, 193, 172, 144, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 62, 222, 220, 89, 177, 114, 251, 179, 18, 197, 44, 216, 180, 4, 88, 93, 35, 160, 71, 32, 195, 120, 213, 98, 96, 178, 163, 207, 100, 172, 102, 176, 123, 238, 86, 154, 237, 235, 172, 80, 129, 56, 246, 194, 127, 250, 3, 118, 216, 209, 218, 6, 167, 112, 120, 226, 231, 36, 232, 9, 24, 49, 250, 108, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:33.512333Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:33.512379Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:33.537288Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:33.570944Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-cbPPz6USUS76Ufb_Hb4fQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:33.573781Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-cbPPz6USUS76Ufb_Hb4fQ==: stderr: -2026-04-20T11:32:33.573793Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-cbPPz6USUS76Ufb_Hb4fQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:33.573801Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-cbPPz6USUS76Ufb_Hb4fQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:33.573808Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-cbPPz6USUS76Ufb_Hb4fQ==: stderr: stack backtrace: -2026-04-20T11:32:33.573814Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-cbPPz6USUS76Ufb_Hb4fQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:33.573820Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-cbPPz6USUS76Ufb_Hb4fQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:33.573952Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:33.574745Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:33.575037Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:33.642149Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:33.642193Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:33.642384Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:33.642578Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:33.642648Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:33.643035Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=591 blob_id=2147880071994021122855564375447439150 -2026-04-20T11:32:34.193765Z DEBUG sp1_core_executor_runner::native: CHILD sp1_X8sTaZ3AQP6DAkmgAIbvDA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:34.201205Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:34.211619Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1108877 cycles -2026-04-20T11:32:34.214212Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 64, 40, 48, 252, 102, 86, 182, 26, 190, 117, 230, 44, 95, 20, 130, 229, 131, 202, 70, 42, 241, 126, 12, 136, 67, 55, 65, 116, 44, 246, 198, 65, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 57, 57, 105, 214, 194, 125, 183, 64, 57, 191, 4, 142, 212, 202, 2, 251, 159, 0, 53, 183, 211, 144, 51, 236, 2, 165, 243, 236, 29, 198, 21, 243, 213, 103, 86, 139, 95, 59, 63, 203, 254, 187, 155, 31, 29, 81, 184, 26, 186, 114, 63, 126, 157, 241, 58, 190, 139, 162, 54, 8, 43, 166, 24, 198, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:34.274796Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:34.274843Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:34.351212Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:34.384871Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PmiMAx25RNyVWHAaNrCywg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:34.387688Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PmiMAx25RNyVWHAaNrCywg==: stderr: -2026-04-20T11:32:34.387701Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PmiMAx25RNyVWHAaNrCywg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:34.387709Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PmiMAx25RNyVWHAaNrCywg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:34.387717Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PmiMAx25RNyVWHAaNrCywg==: stderr: stack backtrace: -2026-04-20T11:32:34.387723Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PmiMAx25RNyVWHAaNrCywg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:34.387729Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PmiMAx25RNyVWHAaNrCywg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:34.387860Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:34.388603Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:34.388892Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:34.454327Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:34.454369Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:34.454502Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:34.454680Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:34.454770Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:34.455122Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=592 blob_id=2147880072975710820266075433912406634 -2026-04-20T11:32:35.016767Z DEBUG sp1_core_executor_runner::native: CHILD sp1_B6e5_iMHRBeEEpMJkiqy4g==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:35.024507Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:35.034983Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1132496 cycles -2026-04-20T11:32:35.037446Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 86, 182, 50, 111, 181, 103, 68, 108, 80, 17, 123, 16, 185, 65, 20, 124, 148, 72, 175, 154, 194, 140, 213, 219, 101, 48, 188, 155, 49, 79, 106, 132, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 94, 241, 177, 236, 67, 189, 238, 144, 176, 36, 77, 44, 185, 234, 116, 125, 208, 115, 71, 149, 198, 23, 74, 57, 61, 254, 58, 87, 248, 213, 110, 252, 115, 75, 238, 69, 54, 174, 252, 65, 106, 251, 251, 154, 89, 34, 81, 103, 112, 246, 2, 114, 200, 131, 240, 63, 252, 153, 136, 61, 214, 62, 68, 79, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:35.101201Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:35.101249Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:35.162410Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:35.195750Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JbMRREI4SzaLWwkWFUp4nA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:35.198592Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JbMRREI4SzaLWwkWFUp4nA==: stderr: -2026-04-20T11:32:35.198616Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JbMRREI4SzaLWwkWFUp4nA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:35.198627Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JbMRREI4SzaLWwkWFUp4nA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:35.198634Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JbMRREI4SzaLWwkWFUp4nA==: stderr: stack backtrace: -2026-04-20T11:32:35.198640Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JbMRREI4SzaLWwkWFUp4nA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:35.198646Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JbMRREI4SzaLWwkWFUp4nA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:35.198744Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:35.199487Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:35.199792Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:35.265474Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:35.265520Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:35.265681Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:35.265864Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:35.265933Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:35.266223Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=593 blob_id=2147880073956117191265750108402064808 -2026-04-20T11:32:35.276669Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=9 height=525 prev_hash=0x8d4083dd7d1e2f8b41e70d3dfddcaf0b69f9c1c5086cb302cafb215f7b6da2b2 hash=0x7a1f161921ece5bc1ac7adfe25657ed328ea06bc20651f4a80a522cbbf475426 producing_time=1.008094ms -2026-04-20T11:32:35.281507Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=525 current_state_root="5cb0ac698b0f80810899c7cc79b0ac3f90b2b1ec8d68a867da3003da8885232b5bfa15b0472359c1f28a5b235c01c7381a8cad0c475e77c5233e290afd50d8e0" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9928c209792ba7a06d65e9c71c01fe58f7c925266b2a6ea9bbc643f0a5eecf1f"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd1c73aa17b51a5416e0ab28aa600aba8feb1304cf968220ff662c0f101921c2b, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9455abf5d59c99fa74b9675e59fbdbd8a8c5180f07661de49f7bdab4f43c9d43, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0fb4fc8de40c04b8e8906724d9073b75467cc94a76d2a7cfedbfdef8597cebd0, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1a4aa88d43e3b6e661b9649fafe759c2a13f0b490219587f67cbfe8464adcc95, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x78ecfebce2a2dcc053bd003b928690637573843c4c89add106090a19e0e79d62, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x23411444ba246a4a1ea9bbe5bec1423916e4b96e2a90928693ae6f1233942d17, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x3dbbe1332937ae5e20ffd04b4da4a4da5beee130d72595f4c7aebb85b7918001, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x488d087d1502a91fbbbb8abb9bec6336eb6e986715a6c44914b071b5acc03255, len=625"] -2026-04-20T11:32:35.282055Z DEBUG StfBlueprint::apply_slot{context=Node da_height=525}: sov_chain_state: Setting next visible slot number next_visible_slot_number=470 -2026-04-20T11:32:35.282469Z DEBUG StfBlueprint::apply_slot{context=Node da_height=525}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x9928c209792ba7a06d65e9c71c01fe58f7c925266b2a6ea9bbc643f0a5eecf1f}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=8 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:32:35.282695Z DEBUG StfBlueprint::apply_slot{context=Node da_height=525}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5cb0ac698b0f80810899c7cc79b0ac3f90b2b1ec8d68a867da3003da8885232b5bfa15b0472359c1f28a5b235c01c7381a8cad0c475e77c5233e290afd50d8e0 next_version=525 sesssion_starting_time=47.079µs -2026-04-20T11:32:35.283701Z DEBUG StfBlueprint::apply_slot{context=Node da_height=525}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=71c51000c76e206b5d8fec9476cafdf3870c3ec551fab628fb45e112e9632e0c1702243dbaf21b10ca7d97e8ab6858b3c60932e36bb19365ce682025dca00b55 next_version=525 time=1.116903ms accesses_build_time=61.79µs finishing_session_time=982.514µs -2026-04-20T11:32:35.283900Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ec463d04154e275168a5126ac74df529e20fbb1aa5f756f0b1bf70fa4c7f153c" -2026-04-20T11:32:35.283916Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="d3538b8b39eb269c8f533a4e8ff0ac37bab957c6cf24ae3c74e243ac05a9abee" -2026-04-20T11:32:35.283926Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="0a2ebceec298d9df35324f89b12aa8ab682552c1d7bd7ff20110a9e3c03c95bf" -2026-04-20T11:32:35.283934Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="f71b4bcea65e8f86d93d014d98f780048476339a632414a93abbd26d26608579" -2026-04-20T11:32:35.283943Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ebe6df54808ca4e5f4f7e7b57c9d6b7bcc9e4cac911a34999fc6685b76a7fa3a" -2026-04-20T11:32:35.283965Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="842282185a8d3956bb835fd7346865528ee7229b729f1dc8bba07323e9d13e8a" -2026-04-20T11:32:35.283975Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ce2c23169c9f44075ea6ca87a307c0026edafe9547c773631cf8d7f64568cad3" -2026-04-20T11:32:35.283983Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="c101f06581e1a2d4cb8bf3c4846ae48301e0399c9247cb347e9449e2ada2a43e" -2026-04-20T11:32:35.283994Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="5cb0ac698b0f80810899c7cc79b0ac3f90b2b1ec8d68a867da3003da8885232b5bfa15b0472359c1f28a5b235c01c7381a8cad0c475e77c5233e290afd50d8e0" next_state_root="71c51000c76e206b5d8fec9476cafdf3870c3ec551fab628fb45e112e9632e0c1702243dbaf21b10ca7d97e8ab6858b3c60932e36bb19365ce682025dca00b55" aggregated_proofs=0 proof_receipts=8 -2026-04-20T11:32:35.284631Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=6 min=5 max=6 -2026-04-20T11:32:35.284665Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:32:35.284709Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=141 -2026-04-20T11:32:35.284801Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=480 -2026-04-20T11:32:35.285060Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:32:35.285652Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=480 sequence_number=594 -2026-04-20T11:32:35.285687Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=594 blob_id=2147880073980314615045455705740086990 visible_slot_number_after_increase=480 visible_slots_to_advance=10 -2026-04-20T11:32:35.285698Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=8 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:32:35.286014Z  INFO update_state_task_inner: sov_sequencer::preferred: Recovery: catchup batches sent; sequencer will now wait for the node to process them. We will then re-evaluate if we need to catch up again (if there are so many batches that by the time the node catches up we need to bump the visible_slot_number some more). target_sequence_number=595 -2026-04-20T11:32:35.286085Z DEBUG update_state_task_inner: sov_sequencer::preferred: Recovery: waiting for the node to process sequencer's catchup batches... next_sequence_number_according_to_node=586 target_sequence_number=595 -2026-04-20T11:32:35.287441Z DEBUG manage_blob_submission_inside_task{blob_id=2147880073980314615045455705740086990 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xc8181f8138362dac97e07dc086fc845bde300d6daba29704663f215b1d2a3157 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=526 include_at=526 bytes=13 time=706.136µs -2026-04-20T11:32:35.295456Z DEBUG compute_state_update{scope="sequencer" rollup_height=146 slot_number=480}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:32:35.295496Z DEBUG compute_state_update{scope="sequencer" rollup_height=146 slot_number=480}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:32:35.295514Z DEBUG sov_stf_runner::runner: Block execution complete time=5.986103722s -2026-04-20T11:32:35.295542Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:32:35.295562Z DEBUG compute_state_update{scope="sequencer" rollup_height=146 slot_number=480}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=225bf463d1369f3539196f568c0cb09b3713022452d8a4bfc53e678e9559430842d37d180b81279114a35c77ed5aac3fa71d3ec3b9174f5c8180f51b97035d77 next_version=520 sesssion_starting_time=9.22993ms -2026-04-20T11:32:35.296887Z DEBUG compute_state_update{scope="sequencer" rollup_height=146 slot_number=480}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7477b75f8b79c5a68d087f0b1a950d37ab108f3f6af653248e78b54911dad15cbf next_version=520 time=10.627412ms accesses_build_time=71.6µs finishing_session_time=1.297232ms -2026-04-20T11:32:35.813126Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FoE6hwrXS5Wum9DHBTmNYw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:35.820611Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:35.831584Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1112586 cycles -2026-04-20T11:32:35.834440Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 118, 194, 58, 108, 220, 177, 75, 155, 137, 105, 115, 145, 195, 117, 184, 37, 125, 193, 86, 163, 255, 73, 74, 131, 21, 252, 247, 247, 75, 0, 67, 201, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 126, 152, 162, 229, 142, 128, 185, 150, 118, 114, 146, 110, 131, 79, 45, 59, 86, 73, 235, 33, 152, 45, 212, 43, 216, 129, 242, 175, 16, 183, 55, 14, 180, 6, 201, 87, 176, 77, 139, 0, 236, 207, 79, 173, 55, 182, 105, 241, 139, 140, 239, 149, 51, 215, 230, 200, 38, 226, 138, 214, 175, 72, 130, 45, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:35.894915Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:35.894963Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:35.975158Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:36.008767Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3bqVC3GGQvGEQEK4rVhLyA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:36.011583Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3bqVC3GGQvGEQEK4rVhLyA==: stderr: -2026-04-20T11:32:36.011596Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3bqVC3GGQvGEQEK4rVhLyA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:36.011604Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3bqVC3GGQvGEQEK4rVhLyA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:36.011612Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3bqVC3GGQvGEQEK4rVhLyA==: stderr: stack backtrace: -2026-04-20T11:32:36.011620Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3bqVC3GGQvGEQEK4rVhLyA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:36.011626Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3bqVC3GGQvGEQEK4rVhLyA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:36.011751Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:36.012470Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:36.012761Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:36.078956Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:36.079000Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:36.079190Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:36.079380Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:36.079457Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:36.079809Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=595 blob_id=2147880074940204651068941477188912608 -2026-04-20T11:32:36.623295Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rkBkUvfxQ92py3E-V0LwZQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:36.630996Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:36.641757Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1140059 cycles -2026-04-20T11:32:36.644212Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 113, 169, 177, 58, 41, 61, 93, 175, 195, 113, 167, 79, 155, 44, 202, 143, 172, 239, 219, 111, 132, 23, 161, 159, 248, 237, 177, 81, 99, 134, 31, 54, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 14, 49, 111, 113, 134, 11, 70, 214, 169, 209, 59, 13, 35, 121, 17, 34, 93, 188, 111, 89, 15, 124, 181, 3, 247, 135, 9, 80, 203, 135, 192, 110, 172, 1, 152, 193, 228, 198, 137, 110, 209, 57, 128, 157, 197, 151, 147, 121, 142, 247, 233, 176, 41, 206, 116, 173, 247, 54, 121, 126, 255, 49, 173, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:36.703410Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:36.703455Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:36.786992Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:36.821412Z DEBUG sp1_core_executor_runner::native: CHILD sp1_a1eQnpmWT-iVasQwlHWwMw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:36.824232Z DEBUG sp1_core_executor_runner::native: CHILD sp1_a1eQnpmWT-iVasQwlHWwMw==: stderr: -2026-04-20T11:32:36.824245Z DEBUG sp1_core_executor_runner::native: CHILD sp1_a1eQnpmWT-iVasQwlHWwMw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:36.824254Z DEBUG sp1_core_executor_runner::native: CHILD sp1_a1eQnpmWT-iVasQwlHWwMw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:36.824262Z DEBUG sp1_core_executor_runner::native: CHILD sp1_a1eQnpmWT-iVasQwlHWwMw==: stderr: stack backtrace: -2026-04-20T11:32:36.824268Z DEBUG sp1_core_executor_runner::native: CHILD sp1_a1eQnpmWT-iVasQwlHWwMw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:36.824274Z DEBUG sp1_core_executor_runner::native: CHILD sp1_a1eQnpmWT-iVasQwlHWwMw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:36.824454Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:36.825181Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:36.825478Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:36.892308Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:36.892363Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:36.892532Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:36.892706Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:36.892773Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:36.893180Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=596 blob_id=2147880075923066101940248032419969589 -2026-04-20T11:32:37.426643Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8dsoNcg6SMKqwI14epDNKg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:37.434152Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:37.443848Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1112187 cycles -2026-04-20T11:32:37.446459Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 13, 255, 244, 158, 190, 233, 88, 118, 95, 50, 244, 28, 132, 41, 78, 1, 228, 16, 149, 26, 211, 65, 215, 197, 162, 250, 158, 27, 69, 118, 208, 107, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 73, 187, 46, 242, 88, 151, 135, 100, 58, 66, 180, 29, 57, 26, 198, 62, 137, 131, 213, 174, 145, 108, 172, 242, 167, 3, 234, 154, 235, 167, 251, 210, 56, 38, 153, 172, 76, 186, 43, 201, 94, 20, 44, 145, 172, 39, 161, 205, 102, 173, 155, 252, 231, 170, 246, 69, 197, 13, 122, 166, 212, 62, 149, 197, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:37.508111Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:37.508157Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:37.600649Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:37.635547Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qXvHS4YEQxGf5JxpaIiIZQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:37.638367Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qXvHS4YEQxGf5JxpaIiIZQ==: stderr: -2026-04-20T11:32:37.638395Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qXvHS4YEQxGf5JxpaIiIZQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:37.638403Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qXvHS4YEQxGf5JxpaIiIZQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:37.638412Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qXvHS4YEQxGf5JxpaIiIZQ==: stderr: stack backtrace: -2026-04-20T11:32:37.638419Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qXvHS4YEQxGf5JxpaIiIZQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:37.638425Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qXvHS4YEQxGf5JxpaIiIZQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:37.638574Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:37.639250Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:37.639508Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:37.706662Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:37.706705Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:37.706855Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:37.707017Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:37.707073Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:37.707666Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=597 blob_id=2147880076907089805231193815234531856 -2026-04-20T11:32:38.249912Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0sGnKDjHShaU42lZ8LlXKw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:38.257486Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:38.267658Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1127106 cycles -2026-04-20T11:32:38.270121Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 115, 225, 240, 211, 8, 156, 102, 146, 61, 191, 190, 175, 112, 215, 234, 112, 49, 93, 60, 199, 161, 119, 49, 0, 19, 203, 165, 110, 41, 72, 59, 202, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 6, 14, 43, 229, 156, 107, 252, 160, 125, 10, 126, 10, 225, 181, 105, 41, 241, 78, 42, 196, 164, 2, 223, 229, 6, 179, 64, 130, 112, 106, 33, 168, 82, 71, 79, 85, 127, 95, 199, 175, 148, 195, 151, 80, 186, 172, 130, 156, 29, 232, 37, 134, 38, 120, 126, 149, 138, 106, 197, 6, 167, 53, 78, 54, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:38.332382Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:38.332430Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:38.414078Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:38.447407Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LY6E8ECrRyeF_tsNivms8g==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:38.450262Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LY6E8ECrRyeF_tsNivms8g==: stderr: -2026-04-20T11:32:38.450287Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LY6E8ECrRyeF_tsNivms8g==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:38.450297Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LY6E8ECrRyeF_tsNivms8g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:38.450303Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LY6E8ECrRyeF_tsNivms8g==: stderr: stack backtrace: -2026-04-20T11:32:38.450309Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LY6E8ECrRyeF_tsNivms8g==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:38.450343Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LY6E8ECrRyeF_tsNivms8g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:38.450453Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:38.451131Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:38.451486Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:38.518709Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:38.518754Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:38.518909Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:38.519083Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:38.519151Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:38.519572Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=598 blob_id=2147880077888794832865110119948845919 -2026-04-20T11:32:39.072288Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JNxvPbf0TXGiAcnw9RYNuA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:39.079980Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:39.090373Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1137531 cycles -2026-04-20T11:32:39.093161Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 127, 205, 214, 128, 80, 99, 186, 124, 182, 118, 136, 168, 91, 72, 17, 157, 183, 154, 116, 241, 204, 98, 92, 160, 231, 234, 234, 219, 231, 117, 145, 250, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 75, 228, 168, 232, 70, 59, 29, 20, 46, 37, 213, 120, 127, 133, 6, 144, 214, 71, 221, 234, 129, 173, 115, 200, 81, 52, 69, 248, 71, 237, 117, 71, 131, 57, 168, 128, 83, 99, 65, 242, 39, 160, 93, 200, 124, 37, 194, 77, 116, 121, 194, 236, 248, 176, 91, 120, 58, 27, 67, 6, 115, 104, 63, 100, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:39.155417Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:39.155461Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:39.226855Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:39.260580Z DEBUG sp1_core_executor_runner::native: CHILD sp1_t04CWDVKRyytwNDbzBeewA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:39.263401Z DEBUG sp1_core_executor_runner::native: CHILD sp1_t04CWDVKRyytwNDbzBeewA==: stderr: -2026-04-20T11:32:39.263414Z DEBUG sp1_core_executor_runner::native: CHILD sp1_t04CWDVKRyytwNDbzBeewA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:39.263423Z DEBUG sp1_core_executor_runner::native: CHILD sp1_t04CWDVKRyytwNDbzBeewA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:39.263431Z DEBUG sp1_core_executor_runner::native: CHILD sp1_t04CWDVKRyytwNDbzBeewA==: stderr: stack backtrace: -2026-04-20T11:32:39.263437Z DEBUG sp1_core_executor_runner::native: CHILD sp1_t04CWDVKRyytwNDbzBeewA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:39.263443Z DEBUG sp1_core_executor_runner::native: CHILD sp1_t04CWDVKRyytwNDbzBeewA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:39.263573Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:39.264329Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:39.264640Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:39.330630Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:39.330674Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:39.330851Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:39.331011Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:39.331071Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:39.331505Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=599 blob_id=2147880078870382647070008366080146626 -2026-04-20T11:32:39.873611Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jqdgulOZROGrwC0HXYg2-Q==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:39.881135Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:39.890711Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1116986 cycles -2026-04-20T11:32:39.893600Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 27, 190, 1, 32, 200, 74, 100, 74, 225, 176, 78, 231, 234, 122, 51, 210, 54, 39, 129, 66, 146, 255, 5, 100, 201, 162, 218, 116, 58, 206, 98, 212, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 8, 191, 75, 199, 46, 125, 38, 250, 148, 9, 57, 184, 72, 140, 220, 83, 155, 64, 112, 221, 77, 116, 120, 53, 19, 237, 203, 36, 193, 220, 206, 153, 215, 216, 115, 13, 173, 80, 176, 186, 16, 21, 7, 26, 130, 181, 57, 224, 179, 174, 203, 171, 212, 247, 10, 189, 57, 214, 69, 58, 50, 215, 191, 31, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:39.956731Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:39.956776Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:40.040668Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:40.075362Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oZyIRNYXRS-neLAW2fisFQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:40.078188Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oZyIRNYXRS-neLAW2fisFQ==: stderr: -2026-04-20T11:32:40.078213Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oZyIRNYXRS-neLAW2fisFQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:40.078238Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oZyIRNYXRS-neLAW2fisFQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:40.078246Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oZyIRNYXRS-neLAW2fisFQ==: stderr: stack backtrace: -2026-04-20T11:32:40.078253Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oZyIRNYXRS-neLAW2fisFQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:40.078261Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oZyIRNYXRS-neLAW2fisFQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:40.078401Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:40.079098Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:40.079391Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:40.144919Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:40.144960Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:40.145167Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:40.145347Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:40.145423Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:40.145830Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=600 blob_id=2147880079855694063383502446417299278 -2026-04-20T11:32:40.695970Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fW_6iMA0RK2qPa4ul1yl0A==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:40.703859Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:40.714413Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1171234 cycles -2026-04-20T11:32:40.717007Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 61, 222, 201, 35, 239, 109, 172, 230, 76, 218, 177, 54, 38, 200, 237, 170, 198, 190, 255, 252, 195, 15, 139, 54, 30, 139, 9, 98, 177, 16, 90, 173, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 60, 247, 72, 0, 103, 222, 252, 101, 196, 101, 171, 52, 175, 221, 51, 3, 243, 199, 103, 95, 87, 58, 199, 115, 24, 209, 47, 110, 150, 232, 216, 165, 252, 203, 198, 110, 152, 219, 122, 170, 113, 106, 44, 52, 93, 212, 158, 83, 83, 157, 167, 227, 153, 32, 167, 64, 47, 12, 220, 44, 175, 69, 251, 243, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:40.786696Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:40.786741Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:40.851824Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:40.885471Z DEBUG sp1_core_executor_runner::native: CHILD sp1_diacb0DnSxav8N2EyQ2XXA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:40.888325Z DEBUG sp1_core_executor_runner::native: CHILD sp1_diacb0DnSxav8N2EyQ2XXA==: stderr: -2026-04-20T11:32:40.888340Z DEBUG sp1_core_executor_runner::native: CHILD sp1_diacb0DnSxav8N2EyQ2XXA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:40.888349Z DEBUG sp1_core_executor_runner::native: CHILD sp1_diacb0DnSxav8N2EyQ2XXA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:40.888358Z DEBUG sp1_core_executor_runner::native: CHILD sp1_diacb0DnSxav8N2EyQ2XXA==: stderr: stack backtrace: -2026-04-20T11:32:40.888364Z DEBUG sp1_core_executor_runner::native: CHILD sp1_diacb0DnSxav8N2EyQ2XXA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:40.888370Z DEBUG sp1_core_executor_runner::native: CHILD sp1_diacb0DnSxav8N2EyQ2XXA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:40.888508Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:40.889243Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:40.889535Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:40.959816Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:40.959861Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:40.960042Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:40.960214Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:40.960277Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:40.960708Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=601 blob_id=2147880080840978384564372028379666852 -2026-04-20T11:32:41.278773Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=8 height=526 prev_hash=0x7a1f161921ece5bc1ac7adfe25657ed328ea06bc20651f4a80a522cbbf475426 hash=0x0f883c33016d8fb6bdcfc2c1ca79060cb8af02f74517f326485b0700a9ab5327 producing_time=1.323721ms -2026-04-20T11:32:41.287970Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=526 current_state_root="71c51000c76e206b5d8fec9476cafdf3870c3ec551fab628fb45e112e9632e0c1702243dbaf21b10ca7d97e8ab6858b3c60932e36bb19365ce682025dca00b55" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc8181f8138362dac97e07dc086fc845bde300d6daba29704663f215b1d2a3157"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd450c9bf3038ce701681d950a87287674ef660475548a546eab10f99965713c5, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x61faaa9539fa8a8e3d80fae8e0a230d95ef59b15df1bb55a8eafcc73edbe3839, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x308dc3b9750a8effbd5533167c50d211ebecf03743ad8959502f9026e27e79bf, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x88532dcebbe5125407bfeacddd87e926424d7b48b63425ce20ea70de61228a24, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xab37cbf8dbb1d63307896e5cbd60759b8fc8391372d5446c7599fbdd232bae3c, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x2297c75ec9c1137dc7b2735fe3f1022a6946f797742cbe26125e1e691dd3b4bb, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x5f2839e0bc2514843c8a7732d43a5d68f989ebabfa406e504794580b4f9e9640, len=625"] -2026-04-20T11:32:41.288515Z DEBUG StfBlueprint::apply_slot{context=Node da_height=526}: sov_chain_state: Setting next visible slot number next_visible_slot_number=480 -2026-04-20T11:32:41.288924Z DEBUG StfBlueprint::apply_slot{context=Node da_height=526}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xc8181f8138362dac97e07dc086fc845bde300d6daba29704663f215b1d2a3157}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=8 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:32:41.289145Z DEBUG StfBlueprint::apply_slot{context=Node da_height=526}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=71c51000c76e206b5d8fec9476cafdf3870c3ec551fab628fb45e112e9632e0c1702243dbaf21b10ca7d97e8ab6858b3c60932e36bb19365ce682025dca00b55 next_version=526 sesssion_starting_time=53.35µs -2026-04-20T11:32:41.290298Z DEBUG StfBlueprint::apply_slot{context=Node da_height=526}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f746998da0916c82fe42f7b39fbe90566ca5b5a27e3d3eeab24e2fb686b9e179b5e next_version=526 time=1.267151ms accesses_build_time=59.829µs finishing_session_time=1.128612ms -2026-04-20T11:32:41.290519Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="d1c73aa17b51a5416e0ab28aa600aba8feb1304cf968220ff662c0f101921c2b" -2026-04-20T11:32:41.290539Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="9455abf5d59c99fa74b9675e59fbdbd8a8c5180f07661de49f7bdab4f43c9d43" -2026-04-20T11:32:41.290548Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="0fb4fc8de40c04b8e8906724d9073b75467cc94a76d2a7cfedbfdef8597cebd0" -2026-04-20T11:32:41.290556Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="1a4aa88d43e3b6e661b9649fafe759c2a13f0b490219587f67cbfe8464adcc95" -2026-04-20T11:32:41.290564Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="78ecfebce2a2dcc053bd003b928690637573843c4c89add106090a19e0e79d62" -2026-04-20T11:32:41.290573Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="23411444ba246a4a1ea9bbe5bec1423916e4b96e2a90928693ae6f1233942d17" -2026-04-20T11:32:41.290581Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="3dbbe1332937ae5e20ffd04b4da4a4da5beee130d72595f4c7aebb85b7918001" -2026-04-20T11:32:41.290590Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="488d087d1502a91fbbbb8abb9bec6336eb6e986715a6c44914b071b5acc03255" -2026-04-20T11:32:41.290601Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="71c51000c76e206b5d8fec9476cafdf3870c3ec551fab628fb45e112e9632e0c1702243dbaf21b10ca7d97e8ab6858b3c60932e36bb19365ce682025dca00b55" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f746998da0916c82fe42f7b39fbe90566ca5b5a27e3d3eeab24e2fb686b9e179b5e" aggregated_proofs=0 proof_receipts=8 -2026-04-20T11:32:41.291268Z DEBUG update_state_task_inner: sov_sequencer::preferred: Recovery: waiting for the node to process sequencer's catchup batches... next_sequence_number_according_to_node=595 target_sequence_number=595 -2026-04-20T11:32:41.291302Z  INFO update_state_task_inner: sov_sequencer::preferred: Node sequence number caught up to our recovery batches. The sequencer may have finished recovery, or we may need to send another round of batches if catching up this far took too long -2026-04-20T11:32:41.291389Z DEBUG update_state_task_inner: sov_sequencer::preferred: Calculating amount of batches to send deferred_slots_count=109 maximum_delta=54 minimum_delta=43 current_catchup_delta=46 current_visible_slot_number=480 increase_per_batch=10 -2026-04-20T11:32:41.291447Z  INFO update_state_task_inner: sov_sequencer::preferred: Recovery: no need to send any more batches! min_batches_to_send=0 max_batches_to_send=1 -2026-04-20T11:32:41.291457Z  INFO update_state_task_inner: sov_sequencer::preferred: Sequencer exiting recovery and resuming normal operation. info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 526, latest_finalized_slot_number: 526, sync_status: Syncing { synced_da_height: 525, target_da_height: 526 }, .. } -2026-04-20T11:32:41.291565Z DEBUG sov_sequencer::preferred::block_executor: Replacing state for block executor old=019daaa9-5ca5-7cc2-9ea5-e899cff88cc0 new=019daaaa-00cb-7681-a6eb-5a881e1d4d40 -2026-04-20T11:32:41.302513Z DEBUG sov_stf_runner::runner: Block execution complete time=6.006972967s -2026-04-20T11:32:41.302549Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:32:41.512666Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mUFRwg3wSdaHPibQpXEG1A==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:41.520155Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:41.530482Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1117513 cycles -2026-04-20T11:32:41.533090Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 33, 180, 241, 143, 127, 91, 5, 195, 207, 241, 190, 110, 81, 40, 147, 87, 91, 206, 0, 88, 158, 101, 254, 106, 110, 9, 19, 249, 118, 168, 252, 19, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 45, 223, 44, 226, 36, 25, 41, 106, 112, 158, 153, 209, 144, 77, 11, 236, 44, 28, 105, 122, 214, 129, 170, 152, 63, 223, 35, 148, 127, 101, 221, 215, 63, 7, 53, 37, 25, 93, 225, 249, 78, 141, 102, 120, 221, 52, 125, 13, 154, 148, 194, 177, 71, 229, 191, 63, 113, 89, 16, 124, 171, 140, 236, 236, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:41.594976Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:41.595021Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:41.667092Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:41.700209Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fU1m00oLRkSpNwwu8EvbRw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:41.703050Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fU1m00oLRkSpNwwu8EvbRw==: stderr: -2026-04-20T11:32:41.703062Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fU1m00oLRkSpNwwu8EvbRw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:41.703069Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fU1m00oLRkSpNwwu8EvbRw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:41.703077Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fU1m00oLRkSpNwwu8EvbRw==: stderr: stack backtrace: -2026-04-20T11:32:41.703082Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fU1m00oLRkSpNwwu8EvbRw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:41.703088Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fU1m00oLRkSpNwwu8EvbRw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:41.703256Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:41.703990Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:41.704288Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:41.771429Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:41.771474Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:41.771682Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:41.771874Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:41.771945Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:41.772367Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=602 blob_id=2147880081821382394900355918992810759 -2026-04-20T11:32:42.319027Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nVz2k23zSZWf4cYTItU5eg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:42.326688Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:42.336587Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1138948 cycles -2026-04-20T11:32:42.339287Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 12, 130, 206, 193, 116, 89, 29, 184, 131, 40, 29, 207, 232, 170, 199, 228, 170, 196, 154, 86, 209, 78, 241, 190, 127, 212, 103, 2, 254, 209, 109, 52, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 124, 100, 184, 60, 131, 42, 241, 197, 208, 134, 105, 123, 231, 89, 117, 110, 253, 59, 116, 79, 9, 22, 176, 125, 107, 15, 38, 212, 226, 58, 2, 202, 94, 217, 102, 218, 74, 196, 187, 24, 168, 73, 192, 63, 231, 127, 81, 20, 119, 160, 93, 81, 235, 157, 77, 50, 187, 152, 116, 212, 165, 134, 21, 250, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:42.402990Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:42.403035Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:42.480250Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:42.513437Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fTE2GDVwSgWxQH4YQ75_Xw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:42.516282Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fTE2GDVwSgWxQH4YQ75_Xw==: stderr: -2026-04-20T11:32:42.516295Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fTE2GDVwSgWxQH4YQ75_Xw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:42.516304Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fTE2GDVwSgWxQH4YQ75_Xw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:42.516311Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fTE2GDVwSgWxQH4YQ75_Xw==: stderr: stack backtrace: -2026-04-20T11:32:42.516341Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fTE2GDVwSgWxQH4YQ75_Xw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:42.516348Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fTE2GDVwSgWxQH4YQ75_Xw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:42.516482Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:42.517216Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:42.517516Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:42.584012Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:42.584057Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:42.584244Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:42.584422Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:42.584507Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:42.585041Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=603 blob_id=2147880082804227260845050356842852252 -2026-04-20T11:32:43.133288Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gXsZXNkyTqezpXc3ht6K3w==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:43.140826Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:43.151001Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1124146 cycles -2026-04-20T11:32:43.153465Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 83, 33, 114, 249, 165, 77, 4, 89, 33, 121, 254, 241, 140, 114, 51, 5, 141, 236, 40, 221, 239, 103, 83, 123, 205, 238, 167, 38, 91, 250, 61, 51, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 32, 170, 102, 221, 10, 120, 251, 171, 59, 179, 254, 194, 25, 189, 58, 104, 17, 12, 232, 227, 94, 230, 83, 157, 217, 15, 63, 138, 106, 121, 136, 148, 21, 5, 253, 72, 68, 86, 218, 212, 85, 225, 35, 178, 9, 76, 8, 92, 139, 235, 192, 173, 92, 123, 131, 121, 209, 142, 23, 109, 50, 245, 21, 138, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:43.216292Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:43.216347Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:43.292424Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:43.327152Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EUNN9MRUTgyWqh4LrJgqyg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:43.330030Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EUNN9MRUTgyWqh4LrJgqyg==: stderr: -2026-04-20T11:32:43.330043Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EUNN9MRUTgyWqh4LrJgqyg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:43.330054Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EUNN9MRUTgyWqh4LrJgqyg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:43.330064Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EUNN9MRUTgyWqh4LrJgqyg==: stderr: stack backtrace: -2026-04-20T11:32:43.330072Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EUNN9MRUTgyWqh4LrJgqyg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:43.330080Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EUNN9MRUTgyWqh4LrJgqyg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:43.330248Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:43.330977Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:43.331283Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:43.397092Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:43.397135Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:43.397266Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:43.397450Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:43.397521Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:43.397916Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=604 blob_id=2147880083787074492080627755976091531 -2026-04-20T11:32:43.947761Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PEmlNsd2Rki1sThQgaibww==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:43.955221Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:43.965180Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1114038 cycles -2026-04-20T11:32:43.968016Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 14, 163, 76, 96, 119, 214, 72, 234, 169, 213, 220, 69, 62, 163, 185, 204, 157, 90, 231, 171, 179, 183, 215, 191, 22, 26, 242, 38, 200, 193, 210, 31, 46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 23, 140, 78, 206, 121, 235, 128, 187, 95, 116, 8, 214, 49, 214, 79, 57, 16, 45, 26, 39, 36, 156, 102, 149, 189, 116, 74, 189, 217, 133, 109, 156, 251, 154, 33, 215, 64, 14, 79, 185, 151, 35, 19, 47, 202, 194, 45, 180, 224, 173, 108, 101, 158, 235, 235, 165, 160, 248, 147, 62, 60, 197, 163, 195, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:44.030692Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:44.030736Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:44.104826Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:44.139584Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NZWcGjbKQe60RGa_r91uwQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:44.142404Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NZWcGjbKQe60RGa_r91uwQ==: stderr: -2026-04-20T11:32:44.142429Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NZWcGjbKQe60RGa_r91uwQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:44.142437Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NZWcGjbKQe60RGa_r91uwQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:44.142446Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NZWcGjbKQe60RGa_r91uwQ==: stderr: stack backtrace: -2026-04-20T11:32:44.142452Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NZWcGjbKQe60RGa_r91uwQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:44.142458Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NZWcGjbKQe60RGa_r91uwQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:44.142583Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:44.143324Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:44.143649Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:44.213919Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:44.213965Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:44.214129Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:44.214405Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:44.214516Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:44.214927Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=605 blob_id=2147880084774832760143557027631119140 -2026-04-20T11:32:44.763861Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Nnof1zuiR6SAYI6qIsxlVg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:44.816827Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:44.829693Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 9267649 cycles -2026-04-20T11:32:44.832259Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 134, 25, 244, 165, 28, 35, 104, 231, 159, 62, 244, 187, 11, 154, 175, 238, 141, 210, 100, 205, 11, 224, 235, 171, 90, 8, 142, 203, 219, 152, 241, 123, 124, 107, 244, 178, 237, 108, 222, 144, 221, 106, 83, 43, 70, 53, 151, 155, 43, 149, 178, 218, 46, 94, 166, 181, 75, 88, 118, 198, 132, 177, 13, 82, 125, 237, 38, 107, 117, 69, 220, 107, 67, 121, 84, 207, 148, 169, 161, 169, 225, 233, 96, 119, 146, 83, 249, 183, 255, 5, 170, 127, 113, 25, 38, 42, 131, 2, 174, 134, 136, 151, 241, 101, 140, 244, 42, 128, 117, 6, 39, 99, 248, 195, 23, 171, 191, 85, 36, 155, 227, 80, 232, 161, 209, 54, 42, 231, 82, 185, 11, 206, 68, 24, 152, 217, 92, 187, 186, 21, 217, 172, 236, 27, 225, 210, 170, 96, 23, 151, 94, 105, 170, 14, 72, 176, 0, 199, 36, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:45.119152Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:45.119189Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:45.224772Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:45.259658Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jONIcLXrT56SVyEzhPr4qQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:45.262499Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jONIcLXrT56SVyEzhPr4qQ==: stderr: -2026-04-20T11:32:45.262511Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jONIcLXrT56SVyEzhPr4qQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:45.262520Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jONIcLXrT56SVyEzhPr4qQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:45.262529Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jONIcLXrT56SVyEzhPr4qQ==: stderr: stack backtrace: -2026-04-20T11:32:45.262535Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jONIcLXrT56SVyEzhPr4qQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:45.262541Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jONIcLXrT56SVyEzhPr4qQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:45.262679Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:45.263445Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:45.263753Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:45.290576Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:45.290604Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:45.290763Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:45.290979Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:45.291069Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:45.291403Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=606 blob_id=2147880086075626886376816047382284724 -2026-04-20T11:32:45.841815Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-g70E9GKSaiJkayjoBeONw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:45.861136Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:45.872253Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2719551 cycles -2026-04-20T11:32:45.875134Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [62, 92, 87, 180, 52, 69, 111, 149, 14, 25, 198, 3, 254, 5, 84, 253, 79, 47, 71, 31, 198, 199, 82, 156, 37, 56, 219, 14, 236, 131, 31, 3, 95, 76, 14, 46, 231, 224, 85, 139, 79, 207, 64, 253, 80, 99, 190, 86, 2, 8, 182, 48, 50, 13, 17, 178, 22, 95, 4, 249, 40, 170, 124, 108, 51, 57, 66, 15, 195, 3, 27, 106, 156, 188, 101, 44, 12, 177, 255, 213, 215, 81, 162, 73, 6, 231, 251, 168, 233, 163, 176, 72, 219, 7, 147, 178, 120, 43, 230, 218, 56, 9, 119, 160, 38, 231, 36, 26, 178, 102, 105, 249, 180, 132, 93, 84, 21, 115, 70, 203, 163, 239, 217, 74, 126, 94, 25, 106, 61, 70, 67, 5, 200, 44, 186, 164, 112, 208, 3, 186, 105, 115, 212, 110, 54, 112, 145, 199, 170, 239, 182, 87, 218, 110, 105, 216, 165, 118, 0, 220, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:45.970524Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:45.970560Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:45.998306Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:46.032078Z DEBUG sp1_core_executor_runner::native: CHILD sp1_X0Sa7frYRjWU2lE2uulwnA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:46.034933Z DEBUG sp1_core_executor_runner::native: CHILD sp1_X0Sa7frYRjWU2lE2uulwnA==: stderr: -2026-04-20T11:32:46.034958Z DEBUG sp1_core_executor_runner::native: CHILD sp1_X0Sa7frYRjWU2lE2uulwnA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:46.034968Z DEBUG sp1_core_executor_runner::native: CHILD sp1_X0Sa7frYRjWU2lE2uulwnA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:46.034975Z DEBUG sp1_core_executor_runner::native: CHILD sp1_X0Sa7frYRjWU2lE2uulwnA==: stderr: stack backtrace: -2026-04-20T11:32:46.034981Z DEBUG sp1_core_executor_runner::native: CHILD sp1_X0Sa7frYRjWU2lE2uulwnA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:46.034988Z DEBUG sp1_core_executor_runner::native: CHILD sp1_X0Sa7frYRjWU2lE2uulwnA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:46.035033Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:46.035832Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:46.036163Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:46.107150Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:46.107195Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:46.107396Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:46.107646Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:46.107744Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:46.108138Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=607 blob_id=2147880087063309266451420364475926398 -2026-04-20T11:32:46.658105Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gFGLRRKYR5a4Exn8LrFyNQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:46.686494Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:46.697960Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4407661 cycles -2026-04-20T11:32:46.700670Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [67, 94, 53, 173, 92, 222, 233, 86, 78, 101, 190, 184, 252, 54, 169, 203, 56, 204, 18, 128, 176, 177, 246, 243, 127, 153, 148, 248, 137, 7, 103, 171, 33, 33, 37, 140, 151, 136, 207, 63, 2, 177, 53, 30, 66, 37, 100, 224, 120, 182, 191, 25, 15, 106, 209, 189, 222, 160, 48, 198, 8, 152, 237, 167, 108, 50, 210, 21, 202, 139, 207, 191, 120, 138, 61, 227, 161, 88, 80, 254, 169, 161, 85, 2, 19, 92, 222, 213, 2, 196, 61, 15, 154, 94, 168, 182, 91, 54, 79, 147, 36, 100, 158, 72, 181, 156, 193, 230, 144, 40, 73, 173, 177, 47, 218, 43, 118, 20, 25, 87, 34, 254, 222, 130, 26, 197, 172, 146, 34, 105, 75, 197, 82, 240, 157, 81, 82, 239, 69, 207, 15, 26, 144, 199, 46, 181, 42, 241, 112, 105, 45, 66, 59, 47, 90, 42, 28, 53, 159, 172, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:46.860919Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:46.860955Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:46.918282Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:46.952662Z DEBUG sp1_core_executor_runner::native: CHILD sp1_MdQQefJSQjGboiBN3ClL2Q==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:46.955497Z DEBUG sp1_core_executor_runner::native: CHILD sp1_MdQQefJSQjGboiBN3ClL2Q==: stderr: -2026-04-20T11:32:46.955513Z DEBUG sp1_core_executor_runner::native: CHILD sp1_MdQQefJSQjGboiBN3ClL2Q==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:46.955539Z DEBUG sp1_core_executor_runner::native: CHILD sp1_MdQQefJSQjGboiBN3ClL2Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:46.955550Z DEBUG sp1_core_executor_runner::native: CHILD sp1_MdQQefJSQjGboiBN3ClL2Q==: stderr: stack backtrace: -2026-04-20T11:32:46.955558Z DEBUG sp1_core_executor_runner::native: CHILD sp1_MdQQefJSQjGboiBN3ClL2Q==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:46.955566Z DEBUG sp1_core_executor_runner::native: CHILD sp1_MdQQefJSQjGboiBN3ClL2Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:46.955646Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:46.956419Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:46.956708Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:47.022520Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:47.022564Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:47.022741Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:47.022986Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:47.023053Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:47.023471Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=608 blob_id=2147880088169457757814954159623761210 -2026-04-20T11:32:47.281775Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=7 height=527 prev_hash=0x0f883c33016d8fb6bdcfc2c1ca79060cb8af02f74517f326485b0700a9ab5327 hash=0x456e9507b74674131575b6b0c44cdf0903f0b6bf4def3f58df63e7476851db20 producing_time=1.309441ms -2026-04-20T11:32:47.284470Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=527 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f746998da0916c82fe42f7b39fbe90566ca5b5a27e3d3eeab24e2fb686b9e179b5e" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x313d56b0e4b3f60236a7f1040164db449ef3b23f9b7ecb645fb538daa2a1350f, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x218d906931ff4e21f73ce3a70ad441651c69aa1433902baf988c9d94a681d333, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x4cc5bab06e2a125ee4f6e897a2625309403180a88686c81c3758f7ec04649d09, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xee8a68a2f0ef2a9cfd6f314d6d6a35adadb884c6294b79931445b0093590bff8, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1aa5253cbb0dfa6744b6ad35614c8d0e92ad1847426fea6490ef21819478dd87, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x49279e894748857142bb916fedea63b161af65a5eac81b8ba2ef6b3001ecf8a6, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc941c60a902c94c69c8dbb7c771483ad6a18424ab7bfff163eacc20714c6db56, len=625"] -2026-04-20T11:32:47.284894Z DEBUG StfBlueprint::apply_slot{context=Node da_height=527}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f746998da0916c82fe42f7b39fbe90566ca5b5a27e3d3eeab24e2fb686b9e179b5e next_version=527 sesssion_starting_time=48.32µs -2026-04-20T11:32:47.285687Z DEBUG StfBlueprint::apply_slot{context=Node da_height=527}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f743ba0a75e8626204c1228e874f3518e53093133c5543932b41384f4a4c34645e1 next_version=527 time=872.224µs accesses_build_time=29.339µs finishing_session_time=765.265µs -2026-04-20T11:32:47.285757Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f746998da0916c82fe42f7b39fbe90566ca5b5a27e3d3eeab24e2fb686b9e179b5e" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f743ba0a75e8626204c1228e874f3518e53093133c5543932b41384f4a4c34645e1" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:32:47.286390Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 527, latest_finalized_slot_number: 527, sync_status: Synced { synced_da_height: 526 }, .. } -2026-04-20T11:32:47.286460Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Proceeding with `replay_soft_confirmations_on_top_of_node_state` initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: true } -2026-04-20T11:32:47.286486Z DEBUG sov_sequencer::preferred::transaction_subscriptions: Cleaning and overwriting transaction cache up to 0 -2026-04-20T11:32:47.286501Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Populating pinned cache for replay. This may take a few moments. inner_status=InitialStatus { is_startup: false, is_resync: false, is_recover: true } -2026-04-20T11:32:47.286511Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Pinned cache populated. Starting transaction replay. -2026-04-20T11:32:47.286637Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Completed proofs found without a completed batch; carrying them into final catchup pending_completed_proofs=14 next_sequence_number=595 -2026-04-20T11:32:47.286712Z DEBUG sov_sequencer::preferred::block_executor: Replacing state for block executor old=019daaaa-00cb-7681-a6eb-5a881e1d4d40 new=019daaaa-1836-7fd2-a32f-1324006affa6 -2026-04-20T11:32:47.296854Z DEBUG sov_stf_runner::runner: Block execution complete time=5.994306979s -2026-04-20T11:32:47.296881Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:32:47.573748Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zBHMJ0ncR7mLOHe2PDB89w==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:47.603860Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:47.615804Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4573139 cycles -2026-04-20T11:32:47.618338Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [125, 163, 100, 7, 129, 127, 83, 121, 151, 64, 212, 16, 206, 67, 156, 38, 228, 193, 42, 116, 111, 184, 181, 81, 169, 111, 50, 19, 117, 177, 187, 229, 87, 221, 3, 252, 223, 214, 22, 17, 22, 128, 199, 216, 250, 20, 65, 144, 47, 138, 189, 156, 24, 1, 125, 73, 39, 125, 3, 191, 56, 158, 86, 233, 7, 218, 87, 11, 15, 188, 49, 91, 28, 77, 25, 135, 130, 212, 26, 107, 114, 93, 20, 118, 140, 75, 105, 230, 198, 179, 150, 141, 155, 163, 199, 54, 57, 246, 98, 95, 77, 166, 62, 141, 95, 101, 112, 107, 112, 151, 206, 74, 24, 97, 103, 180, 147, 77, 77, 210, 250, 253, 86, 184, 60, 23, 143, 228, 65, 124, 79, 255, 42, 98, 135, 50, 109, 124, 53, 239, 143, 96, 43, 141, 27, 207, 32, 52, 124, 244, 166, 96, 79, 15, 218, 234, 11, 16, 208, 215, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:47.782045Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:47.782083Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:47.831335Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:47.864924Z DEBUG sp1_core_executor_runner::native: CHILD sp1_UYnPNlcfTLi8jI2ECt7LpQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:47.867752Z DEBUG sp1_core_executor_runner::native: CHILD sp1_UYnPNlcfTLi8jI2ECt7LpQ==: stderr: -2026-04-20T11:32:47.867767Z DEBUG sp1_core_executor_runner::native: CHILD sp1_UYnPNlcfTLi8jI2ECt7LpQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:47.867776Z DEBUG sp1_core_executor_runner::native: CHILD sp1_UYnPNlcfTLi8jI2ECt7LpQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:47.867784Z DEBUG sp1_core_executor_runner::native: CHILD sp1_UYnPNlcfTLi8jI2ECt7LpQ==: stderr: stack backtrace: -2026-04-20T11:32:47.867790Z DEBUG sp1_core_executor_runner::native: CHILD sp1_UYnPNlcfTLi8jI2ECt7LpQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:47.867796Z DEBUG sp1_core_executor_runner::native: CHILD sp1_UYnPNlcfTLi8jI2ECt7LpQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:47.867917Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:47.868652Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:47.868961Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:47.934425Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:47.934468Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:47.934628Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:47.934848Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:47.934952Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:47.935449Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=609 blob_id=2147880089271999304475532209358324806 -2026-04-20T11:32:48.440816Z DEBUG sp1_core_executor_runner::native: CHILD sp1_cJp_qc2MS-ii2LuxIzV2eA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:48.470465Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:48.482494Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4639509 cycles -2026-04-20T11:32:48.485368Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [126, 16, 96, 47, 237, 222, 146, 212, 107, 58, 196, 215, 91, 47, 81, 60, 96, 159, 0, 179, 76, 63, 109, 173, 242, 86, 181, 227, 3, 31, 130, 222, 15, 103, 6, 56, 146, 74, 215, 173, 172, 173, 70, 76, 230, 199, 100, 162, 116, 147, 147, 96, 96, 196, 238, 202, 102, 114, 252, 80, 203, 141, 150, 204, 108, 7, 97, 57, 13, 173, 231, 112, 123, 45, 93, 190, 163, 76, 8, 246, 24, 37, 156, 106, 8, 223, 227, 174, 218, 164, 228, 107, 226, 231, 36, 138, 99, 104, 71, 248, 1, 251, 21, 251, 51, 109, 203, 17, 114, 108, 222, 241, 133, 20, 18, 238, 107, 233, 223, 101, 90, 217, 145, 203, 160, 67, 147, 190, 99, 26, 138, 126, 45, 240, 36, 184, 65, 204, 52, 151, 80, 32, 146, 177, 145, 251, 37, 193, 78, 129, 223, 153, 230, 72, 180, 78, 197, 146, 137, 236, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:48.648264Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:48.648300Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:48.744679Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:48.778112Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-hUnjNwRT_GaUREocYpCLA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:48.780939Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-hUnjNwRT_GaUREocYpCLA==: stderr: -2026-04-20T11:32:48.780952Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-hUnjNwRT_GaUREocYpCLA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:48.780961Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-hUnjNwRT_GaUREocYpCLA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:48.780969Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-hUnjNwRT_GaUREocYpCLA==: stderr: stack backtrace: -2026-04-20T11:32:48.780975Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-hUnjNwRT_GaUREocYpCLA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:48.780981Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-hUnjNwRT_GaUREocYpCLA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:48.781122Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:48.781862Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:48.782163Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:48.851414Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:48.851457Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:48.851623Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:48.851865Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:48.851980Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:48.852402Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=610 blob_id=2147880090380570999269977977926352282 -2026-04-20T11:32:49.402363Z DEBUG sp1_core_executor_runner::native: CHILD sp1_dmQEpDpBTfW1rlQjAgkoxQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:49.431894Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:49.443959Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4555844 cycles -2026-04-20T11:32:49.446197Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [14, 201, 220, 169, 144, 250, 85, 43, 61, 102, 84, 185, 65, 234, 139, 119, 12, 253, 203, 215, 194, 13, 127, 185, 194, 146, 148, 65, 87, 107, 238, 132, 111, 152, 152, 210, 236, 217, 54, 147, 246, 217, 99, 147, 209, 22, 96, 252, 173, 248, 16, 77, 242, 67, 13, 219, 96, 18, 52, 10, 220, 121, 11, 216, 105, 197, 63, 173, 202, 199, 187, 127, 34, 253, 152, 0, 12, 137, 16, 98, 210, 237, 17, 254, 79, 203, 0, 230, 36, 184, 197, 185, 1, 140, 110, 203, 15, 36, 208, 147, 139, 44, 92, 44, 165, 126, 255, 25, 217, 236, 239, 227, 84, 159, 74, 215, 148, 89, 64, 190, 241, 232, 45, 93, 205, 133, 61, 44, 201, 95, 199, 70, 82, 111, 122, 255, 14, 233, 216, 86, 72, 5, 249, 240, 83, 161, 99, 43, 133, 49, 202, 49, 72, 216, 88, 159, 71, 190, 186, 20, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:49.610869Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:49.610905Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:49.661379Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:49.695434Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aUTzsOmVTUqRE71sma0cZg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:49.698269Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aUTzsOmVTUqRE71sma0cZg==: stderr: -2026-04-20T11:32:49.698284Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aUTzsOmVTUqRE71sma0cZg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:49.698292Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aUTzsOmVTUqRE71sma0cZg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:49.698301Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aUTzsOmVTUqRE71sma0cZg==: stderr: stack backtrace: -2026-04-20T11:32:49.698307Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aUTzsOmVTUqRE71sma0cZg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:49.698323Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aUTzsOmVTUqRE71sma0cZg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:49.698443Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:49.699231Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:49.699552Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:49.765477Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:49.765522Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:49.765702Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:49.765895Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:49.765965Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:49.766357Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=611 blob_id=2147880091485564341627757598343049027 -2026-04-20T11:32:50.314143Z DEBUG sp1_core_executor_runner::native: CHILD sp1_t-Cjalk-Sx22EDqWAIijfw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:50.324380Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:50.335174Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1518478 cycles -2026-04-20T11:32:50.337823Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 8, 255, 49, 125, 122, 20, 166, 19, 102, 193, 6, 128, 153, 236, 175, 205, 195, 111, 156, 155, 1, 208, 201, 67, 79, 122, 58, 217, 209, 111, 197, 111, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 50, 224, 125, 124, 110, 116, 253, 191, 142, 176, 183, 130, 122, 120, 52, 148, 217, 209, 14, 182, 16, 149, 222, 161, 251, 148, 202, 111, 4, 102, 187, 12, 30, 165, 74, 207, 82, 180, 71, 221, 114, 56, 176, 43, 52, 230, 14, 161, 52, 201, 241, 199, 0, 60, 57, 143, 233, 17, 120, 129, 100, 216, 74, 246, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:50.415153Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:50.415182Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:50.473280Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:50.499549Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tOnMHrs7ToKmW9w88J69UQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:50.502390Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tOnMHrs7ToKmW9w88J69UQ==: stderr: -2026-04-20T11:32:50.502402Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tOnMHrs7ToKmW9w88J69UQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:50.502410Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tOnMHrs7ToKmW9w88J69UQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:50.502417Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tOnMHrs7ToKmW9w88J69UQ==: stderr: stack backtrace: -2026-04-20T11:32:50.502423Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tOnMHrs7ToKmW9w88J69UQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:50.502431Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tOnMHrs7ToKmW9w88J69UQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:50.502539Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:50.503327Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:50.503622Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:50.558107Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:50.558148Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:50.558339Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:50.558613Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:50.558693Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:50.558977Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=612 blob_id=2147880092444263138770336737252845193 -2026-04-20T11:32:51.112466Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QRer7o1VQD6kKdaGzqknAw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:51.122880Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:51.133533Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1550133 cycles -2026-04-20T11:32:51.136010Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 29, 127, 228, 108, 173, 45, 132, 63, 254, 166, 251, 254, 18, 150, 96, 114, 32, 170, 211, 45, 71, 142, 114, 178, 16, 252, 231, 155, 237, 124, 188, 176, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 92, 103, 147, 183, 255, 176, 196, 217, 124, 154, 79, 184, 136, 240, 5, 154, 147, 73, 206, 155, 194, 248, 130, 35, 56, 54, 218, 3, 210, 252, 180, 199, 57, 65, 174, 171, 161, 56, 134, 59, 207, 197, 91, 95, 205, 40, 121, 157, 207, 197, 59, 132, 178, 205, 74, 230, 42, 90, 127, 211, 45, 34, 206, 123, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:51.216516Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:51.216551Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:51.266049Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:51.299635Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nQQzFibVSNiSLGyM3Hum_w==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:51.302475Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nQQzFibVSNiSLGyM3Hum_w==: stderr: -2026-04-20T11:32:51.302499Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nQQzFibVSNiSLGyM3Hum_w==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:51.302510Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nQQzFibVSNiSLGyM3Hum_w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:51.302517Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nQQzFibVSNiSLGyM3Hum_w==: stderr: stack backtrace: -2026-04-20T11:32:51.302523Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nQQzFibVSNiSLGyM3Hum_w==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:51.302529Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nQQzFibVSNiSLGyM3Hum_w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:51.302577Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:51.303371Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:51.303672Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:51.351070Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:51.351112Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:51.351303Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:51.351530Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:51.351617Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:51.351979Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=613 blob_id=2147880093402906191665695984924074339 -2026-04-20T11:32:51.910175Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-USnZsv-QgeX8giZnokYEA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:51.920841Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:51.932362Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1578090 cycles -2026-04-20T11:32:51.935008Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 66, 149, 80, 209, 219, 116, 46, 213, 161, 224, 87, 216, 208, 143, 1, 89, 16, 3, 87, 73, 9, 69, 253, 146, 8, 94, 123, 125, 84, 220, 223, 7, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 80, 19, 72, 28, 210, 151, 116, 12, 146, 65, 232, 186, 92, 216, 93, 200, 14, 21, 0, 198, 89, 235, 22, 101, 154, 98, 240, 8, 31, 103, 131, 106, 96, 75, 223, 124, 103, 35, 219, 106, 157, 240, 54, 170, 137, 62, 251, 15, 43, 117, 39, 5, 141, 72, 118, 250, 175, 162, 242, 46, 208, 107, 84, 118, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:52.015229Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:52.015265Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:52.059799Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:52.093649Z DEBUG sp1_core_executor_runner::native: CHILD sp1__q-To3L3SHOUm6jyX6uqFQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:52.096466Z DEBUG sp1_core_executor_runner::native: CHILD sp1__q-To3L3SHOUm6jyX6uqFQ==: stderr: -2026-04-20T11:32:52.096480Z DEBUG sp1_core_executor_runner::native: CHILD sp1__q-To3L3SHOUm6jyX6uqFQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:52.096489Z DEBUG sp1_core_executor_runner::native: CHILD sp1__q-To3L3SHOUm6jyX6uqFQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:52.096497Z DEBUG sp1_core_executor_runner::native: CHILD sp1__q-To3L3SHOUm6jyX6uqFQ==: stderr: stack backtrace: -2026-04-20T11:32:52.096504Z DEBUG sp1_core_executor_runner::native: CHILD sp1__q-To3L3SHOUm6jyX6uqFQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:52.096510Z DEBUG sp1_core_executor_runner::native: CHILD sp1__q-To3L3SHOUm6jyX6uqFQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:52.096576Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:52.097387Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:52.097703Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:52.163288Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:52.163344Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:52.163568Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:52.163758Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:52.163836Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:52.164209Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=614 blob_id=2147880094384556648604182752295211311 -2026-04-20T11:32:52.725071Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4hkH9lh7RfiMSxPnXzwC7g==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:52.733576Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:52.745299Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1254847 cycles -2026-04-20T11:32:52.748136Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 27, 78, 147, 241, 25, 87, 180, 180, 13, 179, 118, 103, 195, 238, 228, 108, 27, 40, 118, 51, 234, 26, 151, 0, 147, 234, 159, 182, 83, 83, 238, 11, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 89, 173, 24, 55, 92, 250, 49, 232, 151, 197, 171, 186, 59, 2, 219, 132, 13, 82, 185, 79, 25, 138, 72, 123, 191, 209, 38, 251, 206, 71, 214, 236, 202, 205, 88, 211, 66, 140, 20, 46, 85, 67, 229, 231, 43, 55, 27, 64, 0, 52, 83, 201, 87, 33, 197, 121, 30, 130, 210, 68, 190, 229, 74, 57, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:52.814333Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:52.814378Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:52.871461Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:52.904690Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ublhiUsrT0qqmpv_cI2OSA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:52.907545Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ublhiUsrT0qqmpv_cI2OSA==: stderr: -2026-04-20T11:32:52.907570Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ublhiUsrT0qqmpv_cI2OSA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:52.907580Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ublhiUsrT0qqmpv_cI2OSA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:52.907586Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ublhiUsrT0qqmpv_cI2OSA==: stderr: stack backtrace: -2026-04-20T11:32:52.907593Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ublhiUsrT0qqmpv_cI2OSA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:52.907599Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ublhiUsrT0qqmpv_cI2OSA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:52.907730Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:52.908467Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:52.908809Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:52.956731Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:52.956772Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:52.956939Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:52.957133Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:52.957178Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:52.957755Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=615 blob_id=2147880095343213277075992831183360458 -2026-04-20T11:32:53.284410Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=7 height=528 prev_hash=0x456e9507b74674131575b6b0c44cdf0903f0b6bf4def3f58df63e7476851db20 hash=0x14b6f7e05d7b63ac2589112b552695b28fac115ea0a0297da0701a10b9d16382 producing_time=1.083183ms -2026-04-20T11:32:53.288231Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=528 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f743ba0a75e8626204c1228e874f3518e53093133c5543932b41384f4a4c34645e1" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x95565a1882d7840aac5e116fa6601e05f20dd8e2851b5df9ba3878e550de5bdf, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x365c7751cbdd61ca2fb69f4c0071476658331c13581baaf287fbbf61092e8f7b, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x015f3bfd63dc6a1013fd2166672fc0653e28e73d065f9aa1767242b055293961, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9c2a5cb82808fd984dc8095de2249020b756800a5271a3ad3ee7d185bfd1c153, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0a92e82a570d102f91e3d6df94dc765eecd6d6f14d67da4b2f9707c2b554e62f, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x28c88c5ca8014ef18a7b97540f7bbd8b537b07af0d6d3a31b32485e56aa47d3d, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x608a2a336cbb1b7b010d7260414e66524cfe7ccf7d8b0b0058447b26ff96cc5d, len=625"] -2026-04-20T11:32:53.288649Z DEBUG StfBlueprint::apply_slot{context=Node da_height=528}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f743ba0a75e8626204c1228e874f3518e53093133c5543932b41384f4a4c34645e1 next_version=528 sesssion_starting_time=49.429µs -2026-04-20T11:32:53.289866Z DEBUG StfBlueprint::apply_slot{context=Node da_height=528}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f742cb46f35168150e90f4f324dbf5e9b771c5ffac7502da0b054c8c94ff0853adc next_version=528 time=1.295011ms accesses_build_time=27.42µs finishing_session_time=1.164542ms -2026-04-20T11:32:53.289942Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f743ba0a75e8626204c1228e874f3518e53093133c5543932b41384f4a4c34645e1" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f742cb46f35168150e90f4f324dbf5e9b771c5ffac7502da0b054c8c94ff0853adc" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:32:53.290450Z DEBUG sov_stf_runner::runner: Block execution complete time=5.993570773s -2026-04-20T11:32:53.290479Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:32:53.290531Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 528, latest_finalized_slot_number: 527, sync_status: Synced { synced_da_height: 527 }, .. } -2026-04-20T11:32:53.290624Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 528, latest_finalized_slot_number: 527, sync_status: Synced { synced_da_height: 527 }, .. } -2026-04-20T11:32:53.290680Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:32:53.515664Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vRM1dfBpQc-r5ThPqcdp7Q==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:53.523243Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:53.533543Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1123343 cycles -2026-04-20T11:32:53.536139Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 50, 8, 96, 218, 117, 187, 53, 145, 193, 152, 5, 102, 245, 90, 56, 106, 88, 241, 23, 93, 224, 179, 163, 244, 12, 159, 253, 142, 26, 236, 137, 159, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 57, 104, 161, 109, 32, 134, 103, 241, 206, 192, 105, 236, 60, 48, 221, 42, 21, 58, 204, 205, 14, 79, 243, 1, 137, 21, 236, 47, 226, 219, 58, 158, 71, 125, 156, 23, 167, 116, 124, 63, 97, 16, 117, 108, 166, 171, 200, 128, 198, 76, 32, 246, 22, 108, 78, 187, 170, 200, 131, 200, 24, 210, 226, 136, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:53.598379Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:53.598424Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:53.664738Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:53.698687Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QYRQOL4YQGulDRHico6oew==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:53.701528Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QYRQOL4YQGulDRHico6oew==: stderr: -2026-04-20T11:32:53.701540Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QYRQOL4YQGulDRHico6oew==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:53.701551Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QYRQOL4YQGulDRHico6oew==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:53.701559Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QYRQOL4YQGulDRHico6oew==: stderr: stack backtrace: -2026-04-20T11:32:53.701566Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QYRQOL4YQGulDRHico6oew==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:53.701572Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QYRQOL4YQGulDRHico6oew==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:53.701743Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:53.702444Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:53.702733Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:53.767720Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:53.767764Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:53.767909Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:53.768082Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:53.768148Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:53.768585Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=616 blob_id=2147880096323685748672930902427921690 -2026-04-20T11:32:54.317679Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hXqoaiyQSWeiZeGgSDU1_w==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:54.325362Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:54.335996Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1137522 cycles -2026-04-20T11:32:54.338464Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 67, 176, 111, 150, 83, 207, 234, 173, 81, 204, 128, 106, 34, 140, 54, 121, 118, 213, 231, 76, 87, 222, 88, 210, 224, 5, 50, 183, 218, 200, 57, 177, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 122, 158, 49, 9, 127, 196, 179, 107, 140, 221, 105, 48, 101, 87, 97, 70, 179, 43, 130, 128, 240, 197, 129, 33, 120, 202, 77, 30, 157, 81, 100, 171, 220, 118, 1, 194, 166, 65, 105, 130, 0, 147, 212, 129, 118, 200, 33, 140, 25, 57, 239, 132, 213, 103, 34, 136, 142, 48, 213, 237, 193, 237, 14, 169, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:54.401106Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:54.401151Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:54.474789Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:54.509196Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tm4TBXLyQsWMUkJtWameAA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:54.512106Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tm4TBXLyQsWMUkJtWameAA==: stderr: -2026-04-20T11:32:54.512130Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tm4TBXLyQsWMUkJtWameAA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:54.512140Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tm4TBXLyQsWMUkJtWameAA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:54.512146Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tm4TBXLyQsWMUkJtWameAA==: stderr: stack backtrace: -2026-04-20T11:32:54.512153Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tm4TBXLyQsWMUkJtWameAA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:54.512159Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tm4TBXLyQsWMUkJtWameAA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:54.512295Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:54.513072Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:54.513412Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:54.579668Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:54.579723Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:54.579949Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:54.580131Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:54.580202Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:54.580594Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=617 blob_id=2147880097305295992273360281897353867 -2026-04-20T11:32:55.128595Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Byoffg9BR7SE7otQjKvR7g==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:55.135900Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:55.146188Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1098770 cycles -2026-04-20T11:32:55.149068Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 110, 157, 28, 169, 169, 123, 109, 93, 83, 161, 2, 130, 104, 107, 173, 41, 98, 6, 21, 69, 20, 72, 182, 211, 126, 238, 242, 180, 120, 135, 57, 219, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 30, 200, 174, 110, 246, 8, 143, 96, 18, 106, 41, 68, 197, 97, 135, 146, 26, 228, 82, 255, 88, 137, 108, 201, 250, 148, 108, 70, 252, 159, 51, 208, 64, 41, 64, 191, 109, 131, 46, 49, 149, 74, 116, 84, 178, 215, 198, 41, 76, 148, 242, 163, 226, 125, 233, 230, 73, 114, 121, 89, 18, 140, 64, 248, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:55.209606Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:55.209653Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:55.286830Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:55.320754Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SCFypvBwSgG7tGi75L-DHw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:55.323622Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SCFypvBwSgG7tGi75L-DHw==: stderr: -2026-04-20T11:32:55.323646Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SCFypvBwSgG7tGi75L-DHw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:55.323656Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SCFypvBwSgG7tGi75L-DHw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:55.323678Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SCFypvBwSgG7tGi75L-DHw==: stderr: stack backtrace: -2026-04-20T11:32:55.323684Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SCFypvBwSgG7tGi75L-DHw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:55.323691Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SCFypvBwSgG7tGi75L-DHw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:55.323814Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:55.324530Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:55.324820Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:55.389474Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:55.389517Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:55.389695Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:55.389865Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:55.389923Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:55.390325Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=618 blob_id=2147880098284561083127452090716097388 -2026-04-20T11:32:55.940540Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ke3ZU2fHRBK4Mj9eYdqhVA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:55.948204Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:55.959430Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1147286 cycles -2026-04-20T11:32:55.962115Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 92, 72, 194, 200, 122, 141, 188, 113, 100, 54, 25, 157, 244, 116, 28, 242, 103, 82, 54, 90, 55, 29, 102, 83, 198, 61, 20, 114, 188, 166, 127, 25, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 43, 152, 157, 186, 67, 209, 103, 120, 121, 139, 129, 167, 180, 34, 161, 38, 221, 142, 251, 247, 203, 151, 71, 166, 108, 152, 132, 100, 134, 107, 64, 12, 80, 98, 165, 231, 216, 53, 125, 167, 14, 218, 222, 38, 157, 142, 200, 18, 138, 90, 63, 121, 177, 88, 245, 194, 32, 124, 58, 255, 150, 148, 47, 223, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:56.024013Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:56.024074Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:56.096845Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:56.130544Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gS4nZWqeSh-t0hua9kgQEg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:56.133362Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gS4nZWqeSh-t0hua9kgQEg==: stderr: -2026-04-20T11:32:56.133387Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gS4nZWqeSh-t0hua9kgQEg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:56.133397Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gS4nZWqeSh-t0hua9kgQEg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:56.133404Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gS4nZWqeSh-t0hua9kgQEg==: stderr: stack backtrace: -2026-04-20T11:32:56.133410Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gS4nZWqeSh-t0hua9kgQEg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:56.133416Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gS4nZWqeSh-t0hua9kgQEg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:56.133498Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:56.134262Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:56.134572Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:56.200239Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:56.200283Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:56.200457Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:56.200643Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:56.200709Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:56.201084Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=619 blob_id=2147880099265002541201174597176549457 -2026-04-20T11:32:56.762853Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mR-NFmcDRY2ufXeOutSnPg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:56.770384Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:56.780909Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1116940 cycles -2026-04-20T11:32:56.783634Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 54, 77, 94, 85, 33, 162, 108, 240, 143, 8, 159, 255, 182, 144, 245, 139, 226, 233, 156, 216, 250, 136, 17, 33, 125, 81, 140, 179, 120, 70, 31, 252, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 93, 63, 13, 59, 115, 4, 22, 30, 234, 96, 83, 226, 254, 122, 255, 194, 221, 255, 1, 107, 26, 56, 0, 224, 5, 26, 253, 221, 178, 9, 200, 8, 56, 141, 31, 228, 3, 181, 129, 168, 225, 6, 208, 13, 215, 196, 98, 63, 53, 38, 222, 251, 255, 11, 180, 131, 94, 65, 123, 142, 127, 245, 250, 154, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:56.844925Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:56.844973Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:56.909296Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:56.944096Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PfKWRbXxT1eYpanJ6pKtAQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:56.946966Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PfKWRbXxT1eYpanJ6pKtAQ==: stderr: -2026-04-20T11:32:56.946992Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PfKWRbXxT1eYpanJ6pKtAQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:56.947002Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PfKWRbXxT1eYpanJ6pKtAQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:56.947009Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PfKWRbXxT1eYpanJ6pKtAQ==: stderr: stack backtrace: -2026-04-20T11:32:56.947015Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PfKWRbXxT1eYpanJ6pKtAQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:56.947022Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PfKWRbXxT1eYpanJ6pKtAQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:56.947164Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:56.947926Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:56.948236Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:57.014832Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:57.014875Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:57.015108Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:57.015273Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:57.015358Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:57.015720Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=620 blob_id=2147880100250239619260774649382357056 -2026-04-20T11:32:57.567616Z DEBUG sp1_core_executor_runner::native: CHILD sp1_U72M7ixMSoitTAAOLbGsyQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:57.575289Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:57.585588Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1117520 cycles -2026-04-20T11:32:57.588244Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 55, 215, 100, 27, 21, 173, 247, 213, 146, 106, 84, 153, 81, 133, 103, 202, 153, 244, 78, 179, 205, 200, 43, 22, 174, 152, 113, 161, 22, 95, 137, 207, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 33, 230, 101, 90, 35, 156, 233, 201, 94, 239, 238, 93, 222, 142, 132, 183, 147, 89, 36, 250, 228, 78, 221, 68, 187, 85, 242, 99, 163, 194, 14, 8, 141, 253, 172, 197, 51, 254, 144, 91, 135, 201, 204, 161, 147, 170, 222, 177, 237, 90, 89, 14, 196, 153, 136, 100, 216, 199, 144, 218, 215, 69, 231, 33, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:57.650796Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:57.650843Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:57.722388Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:57.756084Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Xi4SpKjxTxyzpfr9qSEWjw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:57.758908Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Xi4SpKjxTxyzpfr9qSEWjw==: stderr: -2026-04-20T11:32:57.758920Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Xi4SpKjxTxyzpfr9qSEWjw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:57.758929Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Xi4SpKjxTxyzpfr9qSEWjw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:57.758937Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Xi4SpKjxTxyzpfr9qSEWjw==: stderr: stack backtrace: -2026-04-20T11:32:57.758956Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Xi4SpKjxTxyzpfr9qSEWjw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:57.758963Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Xi4SpKjxTxyzpfr9qSEWjw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:57.759079Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:57.759862Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:57.760185Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:57.824935Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:57.824978Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:57.825203Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:57.825400Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:57.825483Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:57.825973Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=621 blob_id=2147880101229466268097010898852080877 -2026-04-20T11:32:58.377132Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mwxz8LACQuqCzSNJ4k_oqw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:58.384602Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:58.395249Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1112887 cycles -2026-04-20T11:32:58.397904Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 9, 194, 105, 114, 71, 105, 48, 97, 118, 4, 17, 100, 242, 210, 92, 98, 87, 11, 34, 70, 248, 183, 15, 207, 15, 223, 27, 112, 86, 180, 246, 155, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 22, 69, 45, 85, 13, 102, 86, 152, 122, 52, 248, 253, 228, 201, 21, 82, 184, 0, 55, 141, 24, 178, 112, 114, 11, 152, 217, 201, 153, 197, 116, 25, 200, 27, 129, 103, 162, 149, 191, 44, 187, 114, 31, 161, 66, 204, 231, 218, 135, 173, 134, 157, 95, 205, 196, 152, 211, 95, 123, 57, 14, 248, 50, 145, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:58.459425Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:58.459470Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:58.532111Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:58.566020Z DEBUG sp1_core_executor_runner::native: CHILD sp1_s8e9sf3RRaaT-7FW1UByLw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:58.568861Z DEBUG sp1_core_executor_runner::native: CHILD sp1_s8e9sf3RRaaT-7FW1UByLw==: stderr: -2026-04-20T11:32:58.568874Z DEBUG sp1_core_executor_runner::native: CHILD sp1_s8e9sf3RRaaT-7FW1UByLw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:58.568882Z DEBUG sp1_core_executor_runner::native: CHILD sp1_s8e9sf3RRaaT-7FW1UByLw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:58.568891Z DEBUG sp1_core_executor_runner::native: CHILD sp1_s8e9sf3RRaaT-7FW1UByLw==: stderr: stack backtrace: -2026-04-20T11:32:58.568897Z DEBUG sp1_core_executor_runner::native: CHILD sp1_s8e9sf3RRaaT-7FW1UByLw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:58.568903Z DEBUG sp1_core_executor_runner::native: CHILD sp1_s8e9sf3RRaaT-7FW1UByLw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:58.569064Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:58.569831Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:58.570124Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:58.637612Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:58.637662Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:58.637817Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:58.638013Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:58.638093Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:58.638474Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=622 blob_id=2147880102211129989442097935891517865 -2026-04-20T11:32:59.189514Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QvlrhiqnSRSCldgExfFnIg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:32:59.196908Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:59.207426Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1102185 cycles -2026-04-20T11:32:59.210142Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 59, 238, 23, 117, 182, 163, 139, 242, 115, 251, 28, 116, 69, 53, 4, 103, 51, 14, 56, 246, 255, 3, 4, 75, 157, 131, 142, 43, 56, 91, 61, 97, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 125, 213, 148, 142, 129, 93, 244, 154, 143, 123, 27, 100, 4, 126, 26, 150, 238, 146, 184, 23, 189, 179, 104, 204, 17, 213, 135, 138, 194, 150, 114, 69, 116, 54, 139, 176, 97, 252, 151, 217, 52, 130, 170, 73, 187, 213, 236, 193, 243, 29, 25, 174, 14, 96, 195, 37, 160, 248, 78, 191, 185, 34, 26, 129, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:32:59.270630Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:59.270675Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:59.287063Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=7 height=529 prev_hash=0x14b6f7e05d7b63ac2589112b552695b28fac115ea0a0297da0701a10b9d16382 hash=0x82313516763f806f004a2e1a255be546688fa056c3eac7fb51ba781f4cfea704 producing_time=1.237961ms -2026-04-20T11:32:59.292903Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=529 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f742cb46f35168150e90f4f324dbf5e9b771c5ffac7502da0b054c8c94ff0853adc" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x2e0f60578fe9af277566124d82a79987c29ef9adc1f9d58844f5ded589b6b636, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x6d3941237682682085d5f1d34ab9a4411f32b2fd9f314f5a3c5262fa4a7a2c8b, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x06d75235d0c066866c4bbe93c23d30446af63742b402fd7e8f5436176873143a, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0d84a4369b75cbc5b548a332012fe04c1c3b711a44a1f46ba69a96829ca58d46, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x5f6cceb9c5f7bbb346873b08fedc8af696b41eba68c28e71e1c0a306ca5b3e3b, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x26ee156448a7e4c40da81444485ae6dcdce123bf8c6b044cd74d548129257b8b, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x410ae34ec25b4b4c057c6b1e6811a7852d6a36ea68873eba4d2b5ba8b9c1736d, len=625"] -2026-04-20T11:32:59.293287Z DEBUG StfBlueprint::apply_slot{context=Node da_height=529}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f742cb46f35168150e90f4f324dbf5e9b771c5ffac7502da0b054c8c94ff0853adc next_version=529 sesssion_starting_time=50.52µs -2026-04-20T11:32:59.294210Z DEBUG StfBlueprint::apply_slot{context=Node da_height=529}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7459dbdd90b699b9930f4cd29fee40df2770a5c48398fcb544fcb7a1e49378c220 next_version=529 time=1.001413ms accesses_build_time=26.89µs finishing_session_time=855.515µs -2026-04-20T11:32:59.294282Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f743ba0a75e8626204c1228e874f3518e53093133c5543932b41384f4a4c34645e1" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7459dbdd90b699b9930f4cd29fee40df2770a5c48398fcb544fcb7a1e49378c220" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:32:59.294909Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 529, latest_finalized_slot_number: 528, sync_status: Syncing { synced_da_height: 528, target_da_height: 529 }, .. } -2026-04-20T11:32:59.295003Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 529, latest_finalized_slot_number: 528, sync_status: Syncing { synced_da_height: 528, target_da_height: 529 }, .. } -2026-04-20T11:32:59.295064Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:32:59.302388Z DEBUG sov_stf_runner::runner: Block execution complete time=6.011911006s -2026-04-20T11:32:59.302416Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:32:59.344761Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:59.380725Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HPb-HFL9QE6iRREOl1XUCQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:32:59.383544Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HPb-HFL9QE6iRREOl1XUCQ==: stderr: -2026-04-20T11:32:59.383557Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HPb-HFL9QE6iRREOl1XUCQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:32:59.383566Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HPb-HFL9QE6iRREOl1XUCQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:59.383575Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HPb-HFL9QE6iRREOl1XUCQ==: stderr: stack backtrace: -2026-04-20T11:32:59.383582Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HPb-HFL9QE6iRREOl1XUCQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:32:59.383589Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HPb-HFL9QE6iRREOl1XUCQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:32:59.383760Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:32:59.384583Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:32:59.384876Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:32:59.452264Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:32:59.452307Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:32:59.452482Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:32:59.452662Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:32:59.452725Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:32:59.453108Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=623 blob_id=2147880103196438142334963673687195791 -2026-04-20T11:33:00.015438Z DEBUG sp1_core_executor_runner::native: CHILD sp1_brW4Jwo2REumaLF-ybB9VQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:33:00.022715Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:33:00.033908Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1088029 cycles -2026-04-20T11:33:00.036557Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 85, 180, 109, 126, 114, 153, 82, 201, 47, 222, 44, 90, 253, 147, 71, 73, 250, 183, 255, 66, 19, 71, 127, 7, 106, 22, 238, 216, 67, 111, 91, 119, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 126, 80, 205, 224, 18, 113, 117, 153, 248, 172, 125, 106, 154, 168, 6, 48, 245, 196, 16, 137, 35, 19, 37, 181, 164, 244, 192, 145, 18, 39, 233, 131, 183, 48, 62, 245, 161, 165, 34, 58, 106, 207, 17, 194, 173, 227, 16, 37, 152, 62, 147, 197, 11, 136, 160, 153, 51, 148, 209, 148, 34, 92, 146, 153, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:33:00.095961Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:33:00.096015Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:33:00.161022Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:33:00.193854Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tZJGsxkkS0ai_rTHwlHjCg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:33:00.196669Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tZJGsxkkS0ai_rTHwlHjCg==: stderr: -2026-04-20T11:33:00.196694Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tZJGsxkkS0ai_rTHwlHjCg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:33:00.196704Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tZJGsxkkS0ai_rTHwlHjCg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:33:00.196711Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tZJGsxkkS0ai_rTHwlHjCg==: stderr: stack backtrace: -2026-04-20T11:33:00.196717Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tZJGsxkkS0ai_rTHwlHjCg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:33:00.196723Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tZJGsxkkS0ai_rTHwlHjCg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:33:00.196823Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:33:00.197562Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:33:00.197865Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:33:00.262942Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:33:00.262986Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:33:00.263191Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:33:00.263801Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=624 blob_id=2147880104176873459242930848228595361 -2026-04-20T11:33:05.289654Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=530 prev_hash=0x82313516763f806f004a2e1a255be546688fa056c3eac7fb51ba781f4cfea704 hash=0x21f70dae82817038d9aa3b3d614f266d21af7b7f817eb9ecd1ec49aa1127a613 producing_time=1.268042ms -2026-04-20T11:33:05.294615Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=530 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7459dbdd90b699b9930f4cd29fee40df2770a5c48398fcb544fcb7a1e49378c220" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x4df7d099316b4c566fd350b7e647aae7860aeed30ebb554980aa3da2f5d772b8, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0a8a5492e950a7aac7d3d9f33d0caac552dc8da9e6199f2295b7ab740fc4b23f, len=625"] -2026-04-20T11:33:05.294965Z DEBUG StfBlueprint::apply_slot{context=Node da_height=530}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7459dbdd90b699b9930f4cd29fee40df2770a5c48398fcb544fcb7a1e49378c220 next_version=530 sesssion_starting_time=44.879µs -2026-04-20T11:33:05.295841Z DEBUG StfBlueprint::apply_slot{context=Node da_height=530}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f747dde9487bf2b7584f83079a9af7074f1253ef9d0cfc9e6366f6d7f85dbead99d next_version=530 time=940.954µs accesses_build_time=19.27µs finishing_session_time=825.585µs -2026-04-20T11:33:05.295911Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f742cb46f35168150e90f4f324dbf5e9b771c5ffac7502da0b054c8c94ff0853adc" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f747dde9487bf2b7584f83079a9af7074f1253ef9d0cfc9e6366f6d7f85dbead99d" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:33:05.296478Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 530, latest_finalized_slot_number: 529, sync_status: Syncing { synced_da_height: 529, target_da_height: 530 }, .. } -2026-04-20T11:33:05.296597Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 530, latest_finalized_slot_number: 529, sync_status: Syncing { synced_da_height: 529, target_da_height: 530 }, .. } -2026-04-20T11:33:05.296661Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:33:05.306828Z DEBUG sov_stf_runner::runner: Block execution complete time=6.004413864s -2026-04-20T11:33:05.306855Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:33:11.291809Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=531 prev_hash=0x21f70dae82817038d9aa3b3d614f266d21af7b7f817eb9ecd1ec49aa1127a613 hash=0x4592d98f0f0f336962f44fe5ba72baa4418f2a4be3117532c87a58ebd3026470 producing_time=1.152552ms -2026-04-20T11:33:11.298661Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=531 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f747dde9487bf2b7584f83079a9af7074f1253ef9d0cfc9e6366f6d7f85dbead99d" batch_blobs=[] proof_blobs=[] -2026-04-20T11:33:11.299020Z DEBUG StfBlueprint::apply_slot{context=Node da_height=531}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f747dde9487bf2b7584f83079a9af7074f1253ef9d0cfc9e6366f6d7f85dbead99d next_version=531 sesssion_starting_time=46.61µs -2026-04-20T11:33:11.299900Z DEBUG StfBlueprint::apply_slot{context=Node da_height=531}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74296677be3b2bee33ff3731e87e262b258de359b9995a0c6516264971b72fbfab next_version=531 time=944.514µs accesses_build_time=16.67µs finishing_session_time=849.674µs -2026-04-20T11:33:11.299967Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7459dbdd90b699b9930f4cd29fee40df2770a5c48398fcb544fcb7a1e49378c220" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74296677be3b2bee33ff3731e87e262b258de359b9995a0c6516264971b72fbfab" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:33:11.300565Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 531, latest_finalized_slot_number: 530, sync_status: Synced { synced_da_height: 530 }, .. } -2026-04-20T11:33:11.300684Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 531, latest_finalized_slot_number: 530, sync_status: Synced { synced_da_height: 530 }, .. } -2026-04-20T11:33:11.300748Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:33:11.307304Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000449019s -2026-04-20T11:33:11.307354Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:33:17.293720Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=532 prev_hash=0x4592d98f0f0f336962f44fe5ba72baa4418f2a4be3117532c87a58ebd3026470 hash=0xcd318c7dfb9325ed3372d638e1eeaf5313d4290211b60dd76801708853207d65 producing_time=1.245092ms -2026-04-20T11:33:17.298426Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=532 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74296677be3b2bee33ff3731e87e262b258de359b9995a0c6516264971b72fbfab" batch_blobs=[] proof_blobs=[] -2026-04-20T11:33:17.298769Z DEBUG StfBlueprint::apply_slot{context=Node da_height=532}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74296677be3b2bee33ff3731e87e262b258de359b9995a0c6516264971b72fbfab next_version=532 sesssion_starting_time=49.1µs -2026-04-20T11:33:17.299559Z DEBUG StfBlueprint::apply_slot{context=Node da_height=532}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f741a432fdb5648bd41ca7ce9ec7bbccc0a86e8ff521a9a5564f4103a5ff61a799d next_version=532 time=857.345µs accesses_build_time=16.9µs finishing_session_time=728.375µs -2026-04-20T11:33:17.299630Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f747dde9487bf2b7584f83079a9af7074f1253ef9d0cfc9e6366f6d7f85dbead99d" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f741a432fdb5648bd41ca7ce9ec7bbccc0a86e8ff521a9a5564f4103a5ff61a799d" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:33:17.300177Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 532, latest_finalized_slot_number: 531, sync_status: Synced { synced_da_height: 531 }, .. } -2026-04-20T11:33:17.300270Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 532, latest_finalized_slot_number: 531, sync_status: Synced { synced_da_height: 531 }, .. } -2026-04-20T11:33:17.300360Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:33:17.310578Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003225942s -2026-04-20T11:33:17.310613Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:33:23.295717Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=533 prev_hash=0xcd318c7dfb9325ed3372d638e1eeaf5313d4290211b60dd76801708853207d65 hash=0x68c4438c73d6c4749fe2fde5a68bbc4cc8dee9efab5bf747d31957692b9d1ba7 producing_time=1.156453ms -2026-04-20T11:33:23.302518Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=533 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f741a432fdb5648bd41ca7ce9ec7bbccc0a86e8ff521a9a5564f4103a5ff61a799d" batch_blobs=[] proof_blobs=[] -2026-04-20T11:33:23.302853Z DEBUG StfBlueprint::apply_slot{context=Node da_height=533}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f741a432fdb5648bd41ca7ce9ec7bbccc0a86e8ff521a9a5564f4103a5ff61a799d next_version=533 sesssion_starting_time=47.08µs -2026-04-20T11:33:23.303681Z DEBUG StfBlueprint::apply_slot{context=Node da_height=533}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f742e579c05f14205a343217ff3c120f51eac858be67a609e86dfb583702645bea6 next_version=533 time=891.914µs accesses_build_time=15.98µs finishing_session_time=771.024µs -2026-04-20T11:33:23.303746Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74296677be3b2bee33ff3731e87e262b258de359b9995a0c6516264971b72fbfab" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f742e579c05f14205a343217ff3c120f51eac858be67a609e86dfb583702645bea6" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:33:23.304274Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 533, latest_finalized_slot_number: 532, sync_status: Synced { synced_da_height: 532 }, .. } -2026-04-20T11:33:23.304365Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 533, latest_finalized_slot_number: 532, sync_status: Synced { synced_da_height: 532 }, .. } -2026-04-20T11:33:23.304518Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:33:23.314618Z DEBUG sov_stf_runner::runner: Block execution complete time=6.004005687s -2026-04-20T11:33:23.314657Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:33:29.297641Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=534 prev_hash=0x68c4438c73d6c4749fe2fde5a68bbc4cc8dee9efab5bf747d31957692b9d1ba7 hash=0x005a3b9d873bb51a1a42dca5acf02cd74822621b37f34fd2f14cb96e61869500 producing_time=1.163873ms -2026-04-20T11:33:29.306623Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=534 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f742e579c05f14205a343217ff3c120f51eac858be67a609e86dfb583702645bea6" batch_blobs=[] proof_blobs=[] -2026-04-20T11:33:29.306964Z DEBUG StfBlueprint::apply_slot{context=Node da_height=534}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f742e579c05f14205a343217ff3c120f51eac858be67a609e86dfb583702645bea6 next_version=534 sesssion_starting_time=45.75µs -2026-04-20T11:33:29.307908Z DEBUG StfBlueprint::apply_slot{context=Node da_height=534}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7463b44b6a6ded9eab6c5b99673717a4204bc7f6330d27a72eb8beaa03a62f07fa next_version=534 time=1.007024ms accesses_build_time=15.91µs finishing_session_time=884.624µs -2026-04-20T11:33:29.307985Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f741a432fdb5648bd41ca7ce9ec7bbccc0a86e8ff521a9a5564f4103a5ff61a799d" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7463b44b6a6ded9eab6c5b99673717a4204bc7f6330d27a72eb8beaa03a62f07fa" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:33:29.308578Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 534, latest_finalized_slot_number: 533, sync_status: Synced { synced_da_height: 533 }, .. } -2026-04-20T11:33:29.308692Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 534, latest_finalized_slot_number: 533, sync_status: Synced { synced_da_height: 533 }, .. } -2026-04-20T11:33:29.308752Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:33:29.315143Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000489849s -2026-04-20T11:33:29.315170Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:33:35.300598Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=535 prev_hash=0x005a3b9d873bb51a1a42dca5acf02cd74822621b37f34fd2f14cb96e61869500 hash=0x88bbaee2ac0443a68ab029d58ae3fd1228d9d8f2238e75b6e3a70b263933c907 producing_time=1.254472ms -2026-04-20T11:33:35.306371Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=535 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7463b44b6a6ded9eab6c5b99673717a4204bc7f6330d27a72eb8beaa03a62f07fa" batch_blobs=[] proof_blobs=[] -2026-04-20T11:33:35.306706Z DEBUG StfBlueprint::apply_slot{context=Node da_height=535}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7463b44b6a6ded9eab6c5b99673717a4204bc7f6330d27a72eb8beaa03a62f07fa next_version=535 sesssion_starting_time=46.12µs -2026-04-20T11:33:35.307550Z DEBUG StfBlueprint::apply_slot{context=Node da_height=535}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7456d3556021131f084d4f2acf613476bf05aba537b139589ac7517b765aa6625b next_version=535 time=907.035µs accesses_build_time=16.59µs finishing_session_time=792.895µs -2026-04-20T11:33:35.307615Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f742e579c05f14205a343217ff3c120f51eac858be67a609e86dfb583702645bea6" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7456d3556021131f084d4f2acf613476bf05aba537b139589ac7517b765aa6625b" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:33:35.308152Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 535, latest_finalized_slot_number: 534, sync_status: Synced { synced_da_height: 534 }, .. } -2026-04-20T11:33:35.308255Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 535, latest_finalized_slot_number: 534, sync_status: Synced { synced_da_height: 534 }, .. } -2026-04-20T11:33:35.308339Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:33:35.318528Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003359101s -2026-04-20T11:33:35.318554Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:33:41.303135Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=536 prev_hash=0x88bbaee2ac0443a68ab029d58ae3fd1228d9d8f2238e75b6e3a70b263933c907 hash=0x1fdd285ebe143f270d5936665efa79535ee5cbd75af39c5f2695ec253df0366c producing_time=1.198783ms -2026-04-20T11:33:41.310869Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=536 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7456d3556021131f084d4f2acf613476bf05aba537b139589ac7517b765aa6625b" batch_blobs=[] proof_blobs=[] -2026-04-20T11:33:41.311213Z DEBUG StfBlueprint::apply_slot{context=Node da_height=536}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7456d3556021131f084d4f2acf613476bf05aba537b139589ac7517b765aa6625b next_version=536 sesssion_starting_time=46.82µs -2026-04-20T11:33:41.312032Z DEBUG StfBlueprint::apply_slot{context=Node da_height=536}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74223d712f20b919e9f3def559edd40cf4f4f39431ed35baf7bcdbe2b3b1ca1514 next_version=536 time=884.554µs accesses_build_time=18.19µs finishing_session_time=758.855µs -2026-04-20T11:33:41.312105Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7463b44b6a6ded9eab6c5b99673717a4204bc7f6330d27a72eb8beaa03a62f07fa" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74223d712f20b919e9f3def559edd40cf4f4f39431ed35baf7bcdbe2b3b1ca1514" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:33:41.312687Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 536, latest_finalized_slot_number: 535, sync_status: Synced { synced_da_height: 535 }, .. } -2026-04-20T11:33:41.312795Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 536, latest_finalized_slot_number: 535, sync_status: Synced { synced_da_height: 535 }, .. } -2026-04-20T11:33:41.312856Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:33:41.319207Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000653968s -2026-04-20T11:33:41.319242Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:33:47.305286Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=537 prev_hash=0x1fdd285ebe143f270d5936665efa79535ee5cbd75af39c5f2695ec253df0366c hash=0x256c06cfa6871a83c3a8e0632c46c0e806c09897ed6e325adf1b6b2e9fdc9f87 producing_time=1.180102ms -2026-04-20T11:33:47.311089Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=537 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74223d712f20b919e9f3def559edd40cf4f4f39431ed35baf7bcdbe2b3b1ca1514" batch_blobs=[] proof_blobs=[] -2026-04-20T11:33:47.311441Z DEBUG StfBlueprint::apply_slot{context=Node da_height=537}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74223d712f20b919e9f3def559edd40cf4f4f39431ed35baf7bcdbe2b3b1ca1514 next_version=537 sesssion_starting_time=47.07µs -2026-04-20T11:33:47.312414Z DEBUG StfBlueprint::apply_slot{context=Node da_height=537}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7419314c54378b610c9f9fa0289063a61361c92969e7d28ee14dea7f1b8ac0056d next_version=537 time=1.037714ms accesses_build_time=16.85µs finishing_session_time=919.375µs -2026-04-20T11:33:47.312483Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7456d3556021131f084d4f2acf613476bf05aba537b139589ac7517b765aa6625b" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7419314c54378b610c9f9fa0289063a61361c92969e7d28ee14dea7f1b8ac0056d" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:33:47.313001Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 537, latest_finalized_slot_number: 536, sync_status: Synced { synced_da_height: 536 }, .. } -2026-04-20T11:33:47.313108Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 537, latest_finalized_slot_number: 536, sync_status: Synced { synced_da_height: 536 }, .. } -2026-04-20T11:33:47.313171Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:33:47.323685Z DEBUG sov_stf_runner::runner: Block execution complete time=6.004444114s -2026-04-20T11:33:47.323721Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:33:53.309064Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=538 prev_hash=0x256c06cfa6871a83c3a8e0632c46c0e806c09897ed6e325adf1b6b2e9fdc9f87 hash=0x60afd3c540be18196aba90d3aa5d9d65e81502c22022f11c7c4a1c32762aa982 producing_time=3.447868ms -2026-04-20T11:33:53.315905Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=538 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7419314c54378b610c9f9fa0289063a61361c92969e7d28ee14dea7f1b8ac0056d" batch_blobs=[] proof_blobs=[] -2026-04-20T11:33:53.316233Z DEBUG StfBlueprint::apply_slot{context=Node da_height=538}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7419314c54378b610c9f9fa0289063a61361c92969e7d28ee14dea7f1b8ac0056d next_version=538 sesssion_starting_time=47.23µs -2026-04-20T11:33:53.316989Z DEBUG StfBlueprint::apply_slot{context=Node da_height=538}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f747bfd396828cfed87007a30272c04af80cc4cb373b52c3877ee208c8cdfd5ad61 next_version=538 time=820.725µs accesses_build_time=16.44µs finishing_session_time=699.316µs -2026-04-20T11:33:53.317053Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74223d712f20b919e9f3def559edd40cf4f4f39431ed35baf7bcdbe2b3b1ca1514" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f747bfd396828cfed87007a30272c04af80cc4cb373b52c3877ee208c8cdfd5ad61" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:33:53.317610Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 538, latest_finalized_slot_number: 537, sync_status: Synced { synced_da_height: 537 }, .. } -2026-04-20T11:33:53.317727Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 538, latest_finalized_slot_number: 537, sync_status: Synced { synced_da_height: 537 }, .. } -2026-04-20T11:33:53.317790Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:33:53.324037Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00031827s -2026-04-20T11:33:53.324061Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:33:59.316310Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=539 prev_hash=0x60afd3c540be18196aba90d3aa5d9d65e81502c22022f11c7c4a1c32762aa982 hash=0xf17b3d958d699fa14a3a5372698ed45d6f14cc90fa8d36ece4a9b9d676c238b4 producing_time=6.445818ms -2026-04-20T11:33:59.324967Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=539 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f747bfd396828cfed87007a30272c04af80cc4cb373b52c3877ee208c8cdfd5ad61" batch_blobs=[] proof_blobs=[] -2026-04-20T11:33:59.325154Z DEBUG StfBlueprint::apply_slot{context=Node da_height=539}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f747bfd396828cfed87007a30272c04af80cc4cb373b52c3877ee208c8cdfd5ad61 next_version=539 sesssion_starting_time=26.25µs -2026-04-20T11:33:59.325780Z DEBUG StfBlueprint::apply_slot{context=Node da_height=539}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74504f8ec10b48815630458d418da279dae5ce5faa986af05e6aee3213068164c5 next_version=539 time=662.816µs accesses_build_time=9.35µs finishing_session_time=600.156µs -2026-04-20T11:33:59.325812Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7419314c54378b610c9f9fa0289063a61361c92969e7d28ee14dea7f1b8ac0056d" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74504f8ec10b48815630458d418da279dae5ce5faa986af05e6aee3213068164c5" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:33:59.326247Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 539, latest_finalized_slot_number: 538, sync_status: Synced { synced_da_height: 538 }, .. } -2026-04-20T11:33:59.326359Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 539, latest_finalized_slot_number: 538, sync_status: Synced { synced_da_height: 538 }, .. } -2026-04-20T11:33:59.326538Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:33:59.333069Z DEBUG sov_stf_runner::runner: Block execution complete time=6.009008645s -2026-04-20T11:33:59.333097Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:34:05.319477Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=540 prev_hash=0xf17b3d958d699fa14a3a5372698ed45d6f14cc90fa8d36ece4a9b9d676c238b4 hash=0x2afc5c748b7e7a2d212e44318ea9a0e9eb251ac074c72881e9f19e69ef3f1d8e producing_time=1.727908ms -2026-04-20T11:34:05.324071Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=540 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74504f8ec10b48815630458d418da279dae5ce5faa986af05e6aee3213068164c5" batch_blobs=[] proof_blobs=[] -2026-04-20T11:34:05.324406Z DEBUG StfBlueprint::apply_slot{context=Node da_height=540}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74504f8ec10b48815630458d418da279dae5ce5faa986af05e6aee3213068164c5 next_version=540 sesssion_starting_time=45.75µs -2026-04-20T11:34:05.325187Z DEBUG StfBlueprint::apply_slot{context=Node da_height=540}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74727444c5c13ff27c38ca5734fe4bb9cd5978cfa1fdf13fac8952a5a3d816d7a4 next_version=540 time=844.655µs accesses_build_time=16.52µs finishing_session_time=730.456µs -2026-04-20T11:34:05.325249Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f747bfd396828cfed87007a30272c04af80cc4cb373b52c3877ee208c8cdfd5ad61" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74727444c5c13ff27c38ca5734fe4bb9cd5978cfa1fdf13fac8952a5a3d816d7a4" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:34:05.325749Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 540, latest_finalized_slot_number: 539, sync_status: Synced { synced_da_height: 539 }, .. } -2026-04-20T11:34:05.325843Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 540, latest_finalized_slot_number: 539, sync_status: Synced { synced_da_height: 539 }, .. } -2026-04-20T11:34:05.325904Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:34:05.331849Z DEBUG sov_stf_runner::runner: Block execution complete time=5.998752911s -2026-04-20T11:34:05.331881Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:34:11.322592Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=541 prev_hash=0x2afc5c748b7e7a2d212e44318ea9a0e9eb251ac074c72881e9f19e69ef3f1d8e hash=0x8cc32970d884138ce3afe5116c6c38e914c5107424be4cac0f5b86515917e8ec producing_time=1.143223ms -2026-04-20T11:34:11.323159Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=541 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74727444c5c13ff27c38ca5734fe4bb9cd5978cfa1fdf13fac8952a5a3d816d7a4" batch_blobs=[] proof_blobs=[] -2026-04-20T11:34:11.323508Z DEBUG StfBlueprint::apply_slot{context=Node da_height=541}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74727444c5c13ff27c38ca5734fe4bb9cd5978cfa1fdf13fac8952a5a3d816d7a4 next_version=541 sesssion_starting_time=46.42µs -2026-04-20T11:34:11.324409Z DEBUG StfBlueprint::apply_slot{context=Node da_height=541}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7439936fa027844e2927a11894dbabf85ee810550508c219767c3f1f5deaab0d37 next_version=541 time=964.834µs accesses_build_time=16.38µs finishing_session_time=843.694µs -2026-04-20T11:34:11.324475Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74504f8ec10b48815630458d418da279dae5ce5faa986af05e6aee3213068164c5" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7439936fa027844e2927a11894dbabf85ee810550508c219767c3f1f5deaab0d37" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:34:11.324962Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 541, latest_finalized_slot_number: 540, sync_status: Synced { synced_da_height: 540 }, .. } -2026-04-20T11:34:11.325072Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 541, latest_finalized_slot_number: 540, sync_status: Synced { synced_da_height: 540 }, .. } -2026-04-20T11:34:11.325133Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:34:11.332226Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000346319s -2026-04-20T11:34:11.332250Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:34:17.325544Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=542 prev_hash=0x8cc32970d884138ce3afe5116c6c38e914c5107424be4cac0f5b86515917e8ec hash=0xfd09d190dd65795f2a10bcf890d40b06fd67c3eb0797844764638f3f27d7c2e6 producing_time=1.201063ms -2026-04-20T11:34:17.333521Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=542 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7439936fa027844e2927a11894dbabf85ee810550508c219767c3f1f5deaab0d37" batch_blobs=[] proof_blobs=[] -2026-04-20T11:34:17.333846Z DEBUG StfBlueprint::apply_slot{context=Node da_height=542}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7439936fa027844e2927a11894dbabf85ee810550508c219767c3f1f5deaab0d37 next_version=542 sesssion_starting_time=48.249µs -2026-04-20T11:34:17.334633Z DEBUG StfBlueprint::apply_slot{context=Node da_height=542}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f745d3cddfa6713e3d3854fa9d1cfc81de330e0f44cfeaea68cb009f41de752c448 next_version=542 time=852.934µs accesses_build_time=16.62µs finishing_session_time=731.555µs -2026-04-20T11:34:17.334707Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74727444c5c13ff27c38ca5734fe4bb9cd5978cfa1fdf13fac8952a5a3d816d7a4" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f745d3cddfa6713e3d3854fa9d1cfc81de330e0f44cfeaea68cb009f41de752c448" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:34:17.335201Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 542, latest_finalized_slot_number: 542, sync_status: Synced { synced_da_height: 541 }, .. } -2026-04-20T11:34:17.335290Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 542, latest_finalized_slot_number: 542, sync_status: Synced { synced_da_height: 541 }, .. } -2026-04-20T11:34:17.335372Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:34:17.347950Z DEBUG sov_stf_runner::runner: Block execution complete time=6.015701452s -2026-04-20T11:34:17.347966Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:34:23.328019Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=543 prev_hash=0xfd09d190dd65795f2a10bcf890d40b06fd67c3eb0797844764638f3f27d7c2e6 hash=0x762d018c048fc4fb63b06452dca80a00e31c69f6443e947aafa730da42a6cd87 producing_time=1.504891ms -2026-04-20T11:34:23.329805Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=543 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f745d3cddfa6713e3d3854fa9d1cfc81de330e0f44cfeaea68cb009f41de752c448" batch_blobs=[] proof_blobs=[] -2026-04-20T11:34:23.330164Z DEBUG StfBlueprint::apply_slot{context=Node da_height=543}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f745d3cddfa6713e3d3854fa9d1cfc81de330e0f44cfeaea68cb009f41de752c448 next_version=543 sesssion_starting_time=48.87µs -2026-04-20T11:34:23.331049Z DEBUG StfBlueprint::apply_slot{context=Node da_height=543}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74681b76ad4c85429b2205fa23599e0434ad2519bbd95b61b187307fadb0b21f83 next_version=543 time=951.754µs accesses_build_time=17.18µs finishing_session_time=830.135µs -2026-04-20T11:34:23.331121Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f745d3cddfa6713e3d3854fa9d1cfc81de330e0f44cfeaea68cb009f41de752c448" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74681b76ad4c85429b2205fa23599e0434ad2519bbd95b61b187307fadb0b21f83" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:34:23.331577Z DEBUG sov_stf_runner::runner: Block execution complete time=5.983611548s -2026-04-20T11:34:23.331609Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:34:23.331693Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 543, latest_finalized_slot_number: 542, sync_status: Synced { synced_da_height: 542 }, .. } -2026-04-20T11:34:23.331798Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 543, latest_finalized_slot_number: 542, sync_status: Synced { synced_da_height: 542 }, .. } -2026-04-20T11:34:23.331860Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:34:29.331715Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=544 prev_hash=0x762d018c048fc4fb63b06452dca80a00e31c69f6443e947aafa730da42a6cd87 hash=0xd658382c767786ab5f3a4fcc33b36740fe7cf3bf8647a7e4df115796fe3e959e producing_time=2.254426ms -2026-04-20T11:34:29.333526Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=544 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74681b76ad4c85429b2205fa23599e0434ad2519bbd95b61b187307fadb0b21f83" batch_blobs=[] proof_blobs=[] -2026-04-20T11:34:29.333857Z DEBUG StfBlueprint::apply_slot{context=Node da_height=544}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74681b76ad4c85429b2205fa23599e0434ad2519bbd95b61b187307fadb0b21f83 next_version=544 sesssion_starting_time=46.6µs -2026-04-20T11:34:29.334739Z DEBUG StfBlueprint::apply_slot{context=Node da_height=544}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74257a67c58b930d4a9e14fb9d9167aa820f3230aa5ded5aaac976f17518e0de34 next_version=544 time=945.354µs accesses_build_time=15.79µs finishing_session_time=830.144µs -2026-04-20T11:34:29.334816Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f745d3cddfa6713e3d3854fa9d1cfc81de330e0f44cfeaea68cb009f41de752c448" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74257a67c58b930d4a9e14fb9d9167aa820f3230aa5ded5aaac976f17518e0de34" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:34:29.335298Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 544, latest_finalized_slot_number: 544, sync_status: Synced { synced_da_height: 543 }, .. } -2026-04-20T11:34:29.335395Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 544, latest_finalized_slot_number: 544, sync_status: Synced { synced_da_height: 543 }, .. } -2026-04-20T11:34:29.335460Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:34:29.343953Z DEBUG sov_stf_runner::runner: Block execution complete time=6.012345864s -2026-04-20T11:34:29.343967Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:34:35.333605Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=545 prev_hash=0xd658382c767786ab5f3a4fcc33b36740fe7cf3bf8647a7e4df115796fe3e959e hash=0x63112d126eac42ab8225c1f4c5672dc4e3c6cb5a205d2546fe15efdbb1978941 producing_time=1.137203ms -2026-04-20T11:34:35.335256Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=545 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74257a67c58b930d4a9e14fb9d9167aa820f3230aa5ded5aaac976f17518e0de34" batch_blobs=[] proof_blobs=[] -2026-04-20T11:34:35.335603Z DEBUG StfBlueprint::apply_slot{context=Node da_height=545}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74257a67c58b930d4a9e14fb9d9167aa820f3230aa5ded5aaac976f17518e0de34 next_version=545 sesssion_starting_time=52.909µs -2026-04-20T11:34:35.336452Z DEBUG StfBlueprint::apply_slot{context=Node da_height=545}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f740b96ac2c0c478a79124c88ed69c09e621c3f2e42d945e3784777427f6e1d891f next_version=545 time=921.394µs accesses_build_time=18.01µs finishing_session_time=787.445µs -2026-04-20T11:34:35.336532Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74257a67c58b930d4a9e14fb9d9167aa820f3230aa5ded5aaac976f17518e0de34" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f740b96ac2c0c478a79124c88ed69c09e621c3f2e42d945e3784777427f6e1d891f" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:34:35.337094Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 545, latest_finalized_slot_number: 545, sync_status: Synced { synced_da_height: 544 }, .. } -2026-04-20T11:34:35.337193Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 545, latest_finalized_slot_number: 545, sync_status: Synced { synced_da_height: 544 }, .. } -2026-04-20T11:34:35.337261Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:34:35.347808Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003840948s -2026-04-20T11:34:35.347840Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:34:41.335963Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=546 prev_hash=0x63112d126eac42ab8225c1f4c5672dc4e3c6cb5a205d2546fe15efdbb1978941 hash=0x3b72b7520acbb9d4ad986b48496c32744c74c52996d4a2a3b50618575e1129bc producing_time=1.054723ms -2026-04-20T11:34:41.339742Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=546 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f740b96ac2c0c478a79124c88ed69c09e621c3f2e42d945e3784777427f6e1d891f" batch_blobs=[] proof_blobs=[] -2026-04-20T11:34:41.340073Z DEBUG StfBlueprint::apply_slot{context=Node da_height=546}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f740b96ac2c0c478a79124c88ed69c09e621c3f2e42d945e3784777427f6e1d891f next_version=546 sesssion_starting_time=46.229µs -2026-04-20T11:34:41.340845Z DEBUG StfBlueprint::apply_slot{context=Node da_height=546}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f741e15c9f8483dfeddaf6f624cf7c9b6647941ec3e414e20ed6fe8c627d62ae6ed next_version=546 time=837.885µs accesses_build_time=18.92µs finishing_session_time=722.726µs -2026-04-20T11:34:41.340926Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f740b96ac2c0c478a79124c88ed69c09e621c3f2e42d945e3784777427f6e1d891f" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f741e15c9f8483dfeddaf6f624cf7c9b6647941ec3e414e20ed6fe8c627d62ae6ed" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:34:41.341389Z DEBUG sov_stf_runner::runner: Block execution complete time=5.993550804s -2026-04-20T11:34:41.341430Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:34:41.341452Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 546, latest_finalized_slot_number: 545, sync_status: Syncing { synced_da_height: 545, target_da_height: 546 }, .. } -2026-04-20T11:34:41.341537Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 546, latest_finalized_slot_number: 545, sync_status: Syncing { synced_da_height: 545, target_da_height: 546 }, .. } -2026-04-20T11:34:41.341593Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:34:47.338192Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=547 prev_hash=0x3b72b7520acbb9d4ad986b48496c32744c74c52996d4a2a3b50618575e1129bc hash=0xa985d81aa151474da173b068734fa933f346719e2d3c905450a467127d3cd7dc producing_time=1.159693ms -2026-04-20T11:34:47.343967Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=547 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f741e15c9f8483dfeddaf6f624cf7c9b6647941ec3e414e20ed6fe8c627d62ae6ed" batch_blobs=[] proof_blobs=[] -2026-04-20T11:34:47.344297Z DEBUG StfBlueprint::apply_slot{context=Node da_height=547}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f741e15c9f8483dfeddaf6f624cf7c9b6647941ec3e414e20ed6fe8c627d62ae6ed next_version=547 sesssion_starting_time=46.149µs -2026-04-20T11:34:47.345267Z DEBUG StfBlueprint::apply_slot{context=Node da_height=547}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7468ccff5997996a9daf5d0517911b988594778f8ae4ca09a5cbc3aeb4a929aa3c next_version=547 time=1.034583ms accesses_build_time=16.65µs finishing_session_time=908.554µs -2026-04-20T11:34:47.345352Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f740b96ac2c0c478a79124c88ed69c09e621c3f2e42d945e3784777427f6e1d891f" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7468ccff5997996a9daf5d0517911b988594778f8ae4ca09a5cbc3aeb4a929aa3c" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:34:47.345832Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 547, latest_finalized_slot_number: 546, sync_status: Syncing { synced_da_height: 546, target_da_height: 547 }, .. } -2026-04-20T11:34:47.345917Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 547, latest_finalized_slot_number: 546, sync_status: Syncing { synced_da_height: 546, target_da_height: 547 }, .. } -2026-04-20T11:34:47.345976Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:34:47.355380Z DEBUG sov_stf_runner::runner: Block execution complete time=6.013951913s -2026-04-20T11:34:47.355404Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:34:53.340005Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=548 prev_hash=0xa985d81aa151474da173b068734fa933f346719e2d3c905450a467127d3cd7dc hash=0x7401930cf089b74a29ee175d37016cfe1804f9b5b046f7c1c8ddb8752a7c7625 producing_time=1.116343ms -2026-04-20T11:34:53.348032Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=548 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7468ccff5997996a9daf5d0517911b988594778f8ae4ca09a5cbc3aeb4a929aa3c" batch_blobs=[] proof_blobs=[] -2026-04-20T11:34:53.348386Z DEBUG StfBlueprint::apply_slot{context=Node da_height=548}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7468ccff5997996a9daf5d0517911b988594778f8ae4ca09a5cbc3aeb4a929aa3c next_version=548 sesssion_starting_time=48.37µs -2026-04-20T11:34:53.349155Z DEBUG StfBlueprint::apply_slot{context=Node da_height=548}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74162b04b32319089659a2c26b2d13a8afa96037addba5be00bffbfc437e2a1e7b next_version=548 time=851.525µs accesses_build_time=32.78µs finishing_session_time=716.386µs -2026-04-20T11:34:53.349221Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f741e15c9f8483dfeddaf6f624cf7c9b6647941ec3e414e20ed6fe8c627d62ae6ed" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74162b04b32319089659a2c26b2d13a8afa96037addba5be00bffbfc437e2a1e7b" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:34:53.349716Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 548, latest_finalized_slot_number: 547, sync_status: Syncing { synced_da_height: 547, target_da_height: 548 }, .. } -2026-04-20T11:34:53.349811Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 548, latest_finalized_slot_number: 547, sync_status: Syncing { synced_da_height: 547, target_da_height: 548 }, .. } -2026-04-20T11:34:53.349871Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:34:53.356127Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000724898s -2026-04-20T11:34:53.356152Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:34:59.344193Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=549 prev_hash=0x7401930cf089b74a29ee175d37016cfe1804f9b5b046f7c1c8ddb8752a7c7625 hash=0xbe64ee30a6fb2cdac9b45a0f4f0fd78442c97d1266de961c0370357d176d8ff8 producing_time=3.13154ms -2026-04-20T11:34:59.347884Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=549 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74162b04b32319089659a2c26b2d13a8afa96037addba5be00bffbfc437e2a1e7b" batch_blobs=[] proof_blobs=[] -2026-04-20T11:34:59.348209Z DEBUG StfBlueprint::apply_slot{context=Node da_height=549}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74162b04b32319089659a2c26b2d13a8afa96037addba5be00bffbfc437e2a1e7b next_version=549 sesssion_starting_time=48.76µs -2026-04-20T11:34:59.348954Z DEBUG StfBlueprint::apply_slot{context=Node da_height=549}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f747be348fa24323c80f70b380abb1c3b97162f310cb8625904727e85746a2155bd next_version=549 time=811.375µs accesses_build_time=16.27µs finishing_session_time=691.985µs -2026-04-20T11:34:59.349020Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7468ccff5997996a9daf5d0517911b988594778f8ae4ca09a5cbc3aeb4a929aa3c" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f747be348fa24323c80f70b380abb1c3b97162f310cb8625904727e85746a2155bd" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:34:59.349508Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 549, latest_finalized_slot_number: 548, sync_status: Synced { synced_da_height: 548 }, .. } -2026-04-20T11:34:59.349605Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 549, latest_finalized_slot_number: 548, sync_status: Synced { synced_da_height: 548 }, .. } -2026-04-20T11:34:59.349666Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:34:59.356029Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999877474s -2026-04-20T11:34:59.356062Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:35:05.346842Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=550 prev_hash=0xbe64ee30a6fb2cdac9b45a0f4f0fd78442c97d1266de961c0370357d176d8ff8 hash=0x4833eaf505b055fc4261e11aee96a023c9e8eac8e0110811907da35024e88a37 producing_time=1.922117ms -2026-04-20T11:35:05.357587Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=550 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f747be348fa24323c80f70b380abb1c3b97162f310cb8625904727e85746a2155bd" batch_blobs=[] proof_blobs=[] -2026-04-20T11:35:05.357917Z DEBUG StfBlueprint::apply_slot{context=Node da_height=550}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f747be348fa24323c80f70b380abb1c3b97162f310cb8625904727e85746a2155bd next_version=550 sesssion_starting_time=47.71µs -2026-04-20T11:35:05.358794Z DEBUG StfBlueprint::apply_slot{context=Node da_height=550}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7446e60515bd84727c041acedb85278902656a48c538ce7fcc58b3f9aaa6a12acb next_version=550 time=943.594µs accesses_build_time=17.35µs finishing_session_time=824.674µs -2026-04-20T11:35:05.358865Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74162b04b32319089659a2c26b2d13a8afa96037addba5be00bffbfc437e2a1e7b" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7446e60515bd84727c041acedb85278902656a48c538ce7fcc58b3f9aaa6a12acb" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:35:05.359357Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 550, latest_finalized_slot_number: 549, sync_status: Synced { synced_da_height: 549 }, .. } -2026-04-20T11:35:05.359455Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 550, latest_finalized_slot_number: 549, sync_status: Synced { synced_da_height: 549 }, .. } -2026-04-20T11:35:05.359525Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:35:05.369510Z DEBUG sov_stf_runner::runner: Block execution complete time=6.013451087s -2026-04-20T11:35:05.369542Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:35:11.348551Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=551 prev_hash=0x4833eaf505b055fc4261e11aee96a023c9e8eac8e0110811907da35024e88a37 hash=0x28688ef80963e7789aaeba78113b86874a6074b84c9a335377ceb869bb003ea0 producing_time=1.046473ms -2026-04-20T11:35:11.351180Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=551 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7446e60515bd84727c041acedb85278902656a48c538ce7fcc58b3f9aaa6a12acb" batch_blobs=[] proof_blobs=[] -2026-04-20T11:35:11.351537Z DEBUG StfBlueprint::apply_slot{context=Node da_height=551}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7446e60515bd84727c041acedb85278902656a48c538ce7fcc58b3f9aaa6a12acb next_version=551 sesssion_starting_time=49.35µs -2026-04-20T11:35:11.352246Z DEBUG StfBlueprint::apply_slot{context=Node da_height=551}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f744f553a964c1ab8df97fa39cc482165d891f5873781e4df4d690200fade133129 next_version=551 time=777.035µs accesses_build_time=16.81µs finishing_session_time=656.636µs -2026-04-20T11:35:11.352311Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f747be348fa24323c80f70b380abb1c3b97162f310cb8625904727e85746a2155bd" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f744f553a964c1ab8df97fa39cc482165d891f5873781e4df4d690200fade133129" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:35:11.352810Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 551, latest_finalized_slot_number: 550, sync_status: Synced { synced_da_height: 550 }, .. } -2026-04-20T11:35:11.352893Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 551, latest_finalized_slot_number: 550, sync_status: Synced { synced_da_height: 550 }, .. } -2026-04-20T11:35:11.352960Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:35:11.363492Z DEBUG sov_stf_runner::runner: Block execution complete time=5.993951662s -2026-04-20T11:35:11.363515Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:35:17.350941Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=552 prev_hash=0x28688ef80963e7789aaeba78113b86874a6074b84c9a335377ceb869bb003ea0 hash=0x034813eb028df239799b0a5b81e93224d96e81580ebcb4f99ccd647c85ce0ec0 producing_time=1.097623ms -2026-04-20T11:35:17.355509Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=552 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f744f553a964c1ab8df97fa39cc482165d891f5873781e4df4d690200fade133129" batch_blobs=[] proof_blobs=[] -2026-04-20T11:35:17.355835Z DEBUG StfBlueprint::apply_slot{context=Node da_height=552}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f744f553a964c1ab8df97fa39cc482165d891f5873781e4df4d690200fade133129 next_version=552 sesssion_starting_time=49.399µs -2026-04-20T11:35:17.356656Z DEBUG StfBlueprint::apply_slot{context=Node da_height=552}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74715d15132ed0b8812e52513149c381e9d8389ee3df39ffda61a075ad40cc012e next_version=552 time=887.384µs accesses_build_time=16.17µs finishing_session_time=772.035µs -2026-04-20T11:35:17.356723Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7446e60515bd84727c041acedb85278902656a48c538ce7fcc58b3f9aaa6a12acb" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74715d15132ed0b8812e52513149c381e9d8389ee3df39ffda61a075ad40cc012e" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:35:17.357233Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 552, latest_finalized_slot_number: 551, sync_status: Synced { synced_da_height: 551 }, .. } -2026-04-20T11:35:17.357342Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 552, latest_finalized_slot_number: 551, sync_status: Synced { synced_da_height: 551 }, .. } -2026-04-20T11:35:17.357423Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:35:17.364149Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000634309s -2026-04-20T11:35:17.364182Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:35:23.352841Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=553 prev_hash=0x034813eb028df239799b0a5b81e93224d96e81580ebcb4f99ccd647c85ce0ec0 hash=0x5107d35ed37f9a930343a7f40fd151811d0f081a3f4e8dbb31e9f4025172a982 producing_time=1.128453ms -2026-04-20T11:35:23.355530Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=553 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74715d15132ed0b8812e52513149c381e9d8389ee3df39ffda61a075ad40cc012e" batch_blobs=[] proof_blobs=[] -2026-04-20T11:35:23.355858Z DEBUG StfBlueprint::apply_slot{context=Node da_height=553}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74715d15132ed0b8812e52513149c381e9d8389ee3df39ffda61a075ad40cc012e next_version=553 sesssion_starting_time=47.529µs -2026-04-20T11:35:23.356597Z DEBUG StfBlueprint::apply_slot{context=Node da_height=553}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7469adc16b59df81de1ecbf6d7150c6b5b5f3018257959975a64a61434257467c2 next_version=553 time=804.384µs accesses_build_time=16.47µs finishing_session_time=690.866µs -2026-04-20T11:35:23.356670Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f744f553a964c1ab8df97fa39cc482165d891f5873781e4df4d690200fade133129" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7469adc16b59df81de1ecbf6d7150c6b5b5f3018257959975a64a61434257467c2" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:35:23.357175Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 553, latest_finalized_slot_number: 552, sync_status: Synced { synced_da_height: 552 }, .. } -2026-04-20T11:35:23.357268Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 553, latest_finalized_slot_number: 552, sync_status: Synced { synced_da_height: 552 }, .. } -2026-04-20T11:35:23.357336Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:35:23.364230Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000049942s -2026-04-20T11:35:23.364254Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:35:29.354973Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=554 prev_hash=0x5107d35ed37f9a930343a7f40fd151811d0f081a3f4e8dbb31e9f4025172a982 hash=0xa74e54dadb91318567cc594cba216517077fa581cc24eabbc2c7d37fc2829b54 producing_time=1.129882ms -2026-04-20T11:35:29.365660Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=554 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7469adc16b59df81de1ecbf6d7150c6b5b5f3018257959975a64a61434257467c2" batch_blobs=[] proof_blobs=[] -2026-04-20T11:35:29.365994Z DEBUG StfBlueprint::apply_slot{context=Node da_height=554}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7469adc16b59df81de1ecbf6d7150c6b5b5f3018257959975a64a61434257467c2 next_version=554 sesssion_starting_time=46.63µs -2026-04-20T11:35:29.366891Z DEBUG StfBlueprint::apply_slot{context=Node da_height=554}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7417ed996ab094b4404db8004c7cbf65a8f10d74ee94641049fc00d2b1119cbbec next_version=554 time=960.313µs accesses_build_time=16.279µs finishing_session_time=846.725µs -2026-04-20T11:35:29.366963Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74715d15132ed0b8812e52513149c381e9d8389ee3df39ffda61a075ad40cc012e" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7417ed996ab094b4404db8004c7cbf65a8f10d74ee94641049fc00d2b1119cbbec" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:35:29.367497Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 554, latest_finalized_slot_number: 553, sync_status: Synced { synced_da_height: 553 }, .. } -2026-04-20T11:35:29.367596Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 554, latest_finalized_slot_number: 553, sync_status: Synced { synced_da_height: 553 }, .. } -2026-04-20T11:35:29.367666Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:35:29.373831Z DEBUG sov_stf_runner::runner: Block execution complete time=6.009578202s -2026-04-20T11:35:29.373856Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:35:35.358644Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=555 prev_hash=0xa74e54dadb91318567cc594cba216517077fa581cc24eabbc2c7d37fc2829b54 hash=0xb179ff09c6ffb9b5e04d4b06701b1280b901e237d21cfcd0d42e00bace5cc6de producing_time=2.981891ms -2026-04-20T11:35:35.365220Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=555 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7417ed996ab094b4404db8004c7cbf65a8f10d74ee94641049fc00d2b1119cbbec" batch_blobs=[] proof_blobs=[] -2026-04-20T11:35:35.365535Z DEBUG StfBlueprint::apply_slot{context=Node da_height=555}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7417ed996ab094b4404db8004c7cbf65a8f10d74ee94641049fc00d2b1119cbbec next_version=555 sesssion_starting_time=46.04µs -2026-04-20T11:35:35.366207Z DEBUG StfBlueprint::apply_slot{context=Node da_height=555}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7440f829d59457708a3864fb200a176db2957197cba11d917fbbe77295201bc049 next_version=555 time=735.375µs accesses_build_time=16.1µs finishing_session_time=624.466µs -2026-04-20T11:35:35.366265Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7469adc16b59df81de1ecbf6d7150c6b5b5f3018257959975a64a61434257467c2" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7440f829d59457708a3864fb200a176db2957197cba11d917fbbe77295201bc049" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:35:35.366721Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 555, latest_finalized_slot_number: 554, sync_status: Synced { synced_da_height: 554 }, .. } -2026-04-20T11:35:35.366813Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 555, latest_finalized_slot_number: 554, sync_status: Synced { synced_da_height: 554 }, .. } -2026-04-20T11:35:35.366876Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:35:35.374194Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000337571s -2026-04-20T11:35:35.374237Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:35:41.361298Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=556 prev_hash=0xb179ff09c6ffb9b5e04d4b06701b1280b901e237d21cfcd0d42e00bace5cc6de hash=0x696bc6c88a1be7853aea3969bdd60fae5bca2579f8e0d87859f55b795f6571b6 producing_time=1.287992ms -2026-04-20T11:35:41.365162Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=556 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7440f829d59457708a3864fb200a176db2957197cba11d917fbbe77295201bc049" batch_blobs=[] proof_blobs=[] -2026-04-20T11:35:41.365524Z DEBUG StfBlueprint::apply_slot{context=Node da_height=556}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7440f829d59457708a3864fb200a176db2957197cba11d917fbbe77295201bc049 next_version=556 sesssion_starting_time=55.15µs -2026-04-20T11:35:41.366274Z DEBUG StfBlueprint::apply_slot{context=Node da_height=556}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f741dd2821d324ac6e8c057286119156c33f9f38d3c1a72cae7e0539c63ce7844b8 next_version=556 time=824.585µs accesses_build_time=18.26µs finishing_session_time=682.606µs -2026-04-20T11:35:41.366364Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7417ed996ab094b4404db8004c7cbf65a8f10d74ee94641049fc00d2b1119cbbec" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f741dd2821d324ac6e8c057286119156c33f9f38d3c1a72cae7e0539c63ce7844b8" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:35:41.366852Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 556, latest_finalized_slot_number: 555, sync_status: Synced { synced_da_height: 555 }, .. } -2026-04-20T11:35:41.366938Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 556, latest_finalized_slot_number: 555, sync_status: Synced { synced_da_height: 555 }, .. } -2026-04-20T11:35:41.366997Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:35:41.374143Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999908914s -2026-04-20T11:35:41.374177Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:35:47.363385Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=557 prev_hash=0x696bc6c88a1be7853aea3969bdd60fae5bca2579f8e0d87859f55b795f6571b6 hash=0xd53961f2f6dd5fc93551e669dab5a876be1531458d3fb543b559a504e84ecb9c producing_time=1.042583ms -2026-04-20T11:35:47.365015Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=557 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f741dd2821d324ac6e8c057286119156c33f9f38d3c1a72cae7e0539c63ce7844b8" batch_blobs=[] proof_blobs=[] -2026-04-20T11:35:47.365391Z DEBUG StfBlueprint::apply_slot{context=Node da_height=557}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f741dd2821d324ac6e8c057286119156c33f9f38d3c1a72cae7e0539c63ce7844b8 next_version=557 sesssion_starting_time=87.449µs -2026-04-20T11:35:47.366251Z DEBUG StfBlueprint::apply_slot{context=Node da_height=557}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f740b099fb654b562d731fea9c2d5e779475aab9bd96989312e9a372dea9d06c8ba next_version=557 time=965.104µs accesses_build_time=15.911µs finishing_session_time=798.645µs -2026-04-20T11:35:47.366338Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7440f829d59457708a3864fb200a176db2957197cba11d917fbbe77295201bc049" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f740b099fb654b562d731fea9c2d5e779475aab9bd96989312e9a372dea9d06c8ba" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:35:47.366837Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 557, latest_finalized_slot_number: 556, sync_status: Synced { synced_da_height: 556 }, .. } -2026-04-20T11:35:47.366929Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 557, latest_finalized_slot_number: 556, sync_status: Synced { synced_da_height: 556 }, .. } -2026-04-20T11:35:47.366989Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:35:47.377718Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00354306s -2026-04-20T11:35:47.377743Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:35:53.366347Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=558 prev_hash=0xd53961f2f6dd5fc93551e669dab5a876be1531458d3fb543b559a504e84ecb9c hash=0x5f8793f43a907daa0e8d586c58801a53d67af7eaafee6858f218f666ef023bca producing_time=1.734009ms -2026-04-20T11:35:53.368955Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=558 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f740b099fb654b562d731fea9c2d5e779475aab9bd96989312e9a372dea9d06c8ba" batch_blobs=[] proof_blobs=[] -2026-04-20T11:35:53.369292Z DEBUG StfBlueprint::apply_slot{context=Node da_height=558}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f740b099fb654b562d731fea9c2d5e779475aab9bd96989312e9a372dea9d06c8ba next_version=558 sesssion_starting_time=45.39µs -2026-04-20T11:35:53.370053Z DEBUG StfBlueprint::apply_slot{context=Node da_height=558}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f744a6a6907ba733b0418790f73693dd849ae41140b518813868fe5f4de8a6531af next_version=558 time=823.854µs accesses_build_time=16.309µs finishing_session_time=699.555µs -2026-04-20T11:35:53.370128Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f741dd2821d324ac6e8c057286119156c33f9f38d3c1a72cae7e0539c63ce7844b8" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f744a6a6907ba733b0418790f73693dd849ae41140b518813868fe5f4de8a6531af" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:35:53.370695Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 558, latest_finalized_slot_number: 557, sync_status: Synced { synced_da_height: 557 }, .. } -2026-04-20T11:35:53.370808Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 558, latest_finalized_slot_number: 557, sync_status: Synced { synced_da_height: 557 }, .. } -2026-04-20T11:35:53.370874Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:35:53.376956Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999214209s -2026-04-20T11:35:53.376982Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:35:59.368995Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=559 prev_hash=0x5f8793f43a907daa0e8d586c58801a53d67af7eaafee6858f218f666ef023bca hash=0x58e8ede32a3e6ecd2b273f6b14bea7f88a28d79aa0b01730d2f14172790f1181 producing_time=925.614µs -2026-04-20T11:35:59.378512Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=559 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f744a6a6907ba733b0418790f73693dd849ae41140b518813868fe5f4de8a6531af" batch_blobs=[] proof_blobs=[] -2026-04-20T11:35:59.378831Z DEBUG StfBlueprint::apply_slot{context=Node da_height=559}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f744a6a6907ba733b0418790f73693dd849ae41140b518813868fe5f4de8a6531af next_version=559 sesssion_starting_time=50.69µs -2026-04-20T11:35:59.379402Z DEBUG StfBlueprint::apply_slot{context=Node da_height=559}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f743ac79f27b1a28cab73de9bce336bb5a8509cdc88228f5015a0ed9b778981dacf next_version=559 time=638.555µs accesses_build_time=15.759µs finishing_session_time=517.776µs -2026-04-20T11:35:59.379477Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f740b099fb654b562d731fea9c2d5e779475aab9bd96989312e9a372dea9d06c8ba" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f743ac79f27b1a28cab73de9bce336bb5a8509cdc88228f5015a0ed9b778981dacf" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:35:59.379988Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 559, latest_finalized_slot_number: 558, sync_status: Synced { synced_da_height: 558 }, .. } -2026-04-20T11:35:59.380080Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 559, latest_finalized_slot_number: 558, sync_status: Synced { synced_da_height: 558 }, .. } -2026-04-20T11:35:59.380146Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:35:59.390579Z DEBUG sov_stf_runner::runner: Block execution complete time=6.013597785s -2026-04-20T11:35:59.390613Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:36:05.371561Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=560 prev_hash=0x58e8ede32a3e6ecd2b273f6b14bea7f88a28d79aa0b01730d2f14172790f1181 hash=0xd116dcc0ac2d273f2f57ad46f204e9d41e64e3aead5986da124b547317ea75fe producing_time=1.154552ms -2026-04-20T11:36:05.372123Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=560 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f743ac79f27b1a28cab73de9bce336bb5a8509cdc88228f5015a0ed9b778981dacf" batch_blobs=[] proof_blobs=[] -2026-04-20T11:36:05.372465Z DEBUG StfBlueprint::apply_slot{context=Node da_height=560}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f743ac79f27b1a28cab73de9bce336bb5a8509cdc88228f5015a0ed9b778981dacf next_version=560 sesssion_starting_time=47.819µs -2026-04-20T11:36:05.373388Z DEBUG StfBlueprint::apply_slot{context=Node da_height=560}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f745c1bd117e20a55388d10ddf7114508d62e403d700c90650e84c5f9822b919b50 next_version=560 time=987.594µs accesses_build_time=17.17µs finishing_session_time=859.794µs -2026-04-20T11:36:05.373471Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f744a6a6907ba733b0418790f73693dd849ae41140b518813868fe5f4de8a6531af" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f745c1bd117e20a55388d10ddf7114508d62e403d700c90650e84c5f9822b919b50" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:36:05.373983Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 560, latest_finalized_slot_number: 559, sync_status: Synced { synced_da_height: 559 }, .. } -2026-04-20T11:36:05.374072Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 560, latest_finalized_slot_number: 559, sync_status: Synced { synced_da_height: 559 }, .. } -2026-04-20T11:36:05.374131Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:36:05.380990Z DEBUG sov_stf_runner::runner: Block execution complete time=5.990378276s -2026-04-20T11:36:05.381015Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:36:11.374101Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=561 prev_hash=0xd116dcc0ac2d273f2f57ad46f204e9d41e64e3aead5986da124b547317ea75fe hash=0x72d2a225e5053a239919b99a6ddf9de9f2ba00bd69822827d2d96affd083f60e producing_time=1.408161ms -2026-04-20T11:36:11.382890Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=561 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f745c1bd117e20a55388d10ddf7114508d62e403d700c90650e84c5f9822b919b50" batch_blobs=[] proof_blobs=[] -2026-04-20T11:36:11.383220Z DEBUG StfBlueprint::apply_slot{context=Node da_height=561}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f745c1bd117e20a55388d10ddf7114508d62e403d700c90650e84c5f9822b919b50 next_version=561 sesssion_starting_time=49.09µs -2026-04-20T11:36:11.383999Z DEBUG StfBlueprint::apply_slot{context=Node da_height=561}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f742b08f6400068d0befd11330e251e38708fc55f6028d93641d625e9ef36a6c876 next_version=561 time=846.255µs accesses_build_time=16.56µs finishing_session_time=721.836µs -2026-04-20T11:36:11.384068Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f743ac79f27b1a28cab73de9bce336bb5a8509cdc88228f5015a0ed9b778981dacf" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f742b08f6400068d0befd11330e251e38708fc55f6028d93641d625e9ef36a6c876" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:36:11.384590Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 561, latest_finalized_slot_number: 561, sync_status: Synced { synced_da_height: 560 }, .. } -2026-04-20T11:36:11.384687Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 561, latest_finalized_slot_number: 561, sync_status: Synced { synced_da_height: 560 }, .. } -2026-04-20T11:36:11.384745Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:36:11.396528Z DEBUG sov_stf_runner::runner: Block execution complete time=6.015514894s -2026-04-20T11:36:11.396546Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:36:17.376264Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=562 prev_hash=0x72d2a225e5053a239919b99a6ddf9de9f2ba00bd69822827d2d96affd083f60e hash=0x7bbb32be54ceed6ff2456783357608894228579860fa0ee736ff9ca8e9cd766a producing_time=1.202582ms -2026-04-20T11:36:17.378976Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=562 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f742b08f6400068d0befd11330e251e38708fc55f6028d93641d625e9ef36a6c876" batch_blobs=[] proof_blobs=[] -2026-04-20T11:36:17.379311Z DEBUG StfBlueprint::apply_slot{context=Node da_height=562}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f742b08f6400068d0befd11330e251e38708fc55f6028d93641d625e9ef36a6c876 next_version=562 sesssion_starting_time=51.78µs -2026-04-20T11:36:17.380135Z DEBUG StfBlueprint::apply_slot{context=Node da_height=562}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74069cb2aa54f808e1aaaa523f7e8a932486913c4a17dc68fa6244d177276fdb92 next_version=562 time=893.514µs accesses_build_time=16.94µs finishing_session_time=753.075µs -2026-04-20T11:36:17.380198Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f742b08f6400068d0befd11330e251e38708fc55f6028d93641d625e9ef36a6c876" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74069cb2aa54f808e1aaaa523f7e8a932486913c4a17dc68fa6244d177276fdb92" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:36:17.380616Z DEBUG sov_stf_runner::runner: Block execution complete time=5.984071086s -2026-04-20T11:36:17.380652Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:36:17.380699Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 562, latest_finalized_slot_number: 561, sync_status: Synced { synced_da_height: 561 }, .. } -2026-04-20T11:36:17.380787Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 562, latest_finalized_slot_number: 561, sync_status: Synced { synced_da_height: 561 }, .. } -2026-04-20T11:36:17.380848Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:36:23.378266Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=563 prev_hash=0x7bbb32be54ceed6ff2456783357608894228579860fa0ee736ff9ca8e9cd766a hash=0xa04b57b657ceb3ad2a426ce9f69bee14e293ccf88e6d28a7e2594b77e4c183b0 producing_time=1.165103ms -2026-04-20T11:36:23.382848Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=563 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74069cb2aa54f808e1aaaa523f7e8a932486913c4a17dc68fa6244d177276fdb92" batch_blobs=[] proof_blobs=[] -2026-04-20T11:36:23.383162Z DEBUG StfBlueprint::apply_slot{context=Node da_height=563}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74069cb2aa54f808e1aaaa523f7e8a932486913c4a17dc68fa6244d177276fdb92 next_version=563 sesssion_starting_time=47.09µs -2026-04-20T11:36:23.383947Z DEBUG StfBlueprint::apply_slot{context=Node da_height=563}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f743fabef90729c82f2b491543036774f0f8f7434583ad93df42870d644ddb148ea next_version=563 time=847.695µs accesses_build_time=14.92µs finishing_session_time=736.925µs -2026-04-20T11:36:23.384014Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f742b08f6400068d0befd11330e251e38708fc55f6028d93641d625e9ef36a6c876" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f743fabef90729c82f2b491543036774f0f8f7434583ad93df42870d644ddb148ea" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:36:23.384493Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 563, latest_finalized_slot_number: 563, sync_status: Synced { synced_da_height: 562 }, .. } -2026-04-20T11:36:23.384596Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 563, latest_finalized_slot_number: 563, sync_status: Synced { synced_da_height: 562 }, .. } -2026-04-20T11:36:23.384655Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:36:23.393459Z DEBUG sov_stf_runner::runner: Block execution complete time=6.012809071s -2026-04-20T11:36:23.393476Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:36:29.379797Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=564 prev_hash=0xa04b57b657ceb3ad2a426ce9f69bee14e293ccf88e6d28a7e2594b77e4c183b0 hash=0x13241eed074d4d5758743692ea2260213dfe66159a2c2abbb7d65ca342c7074b producing_time=1.207722ms -2026-04-20T11:36:29.385861Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=564 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f743fabef90729c82f2b491543036774f0f8f7434583ad93df42870d644ddb148ea" batch_blobs=[] proof_blobs=[] -2026-04-20T11:36:29.386186Z DEBUG StfBlueprint::apply_slot{context=Node da_height=564}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f743fabef90729c82f2b491543036774f0f8f7434583ad93df42870d644ddb148ea next_version=564 sesssion_starting_time=47.14µs -2026-04-20T11:36:29.387013Z DEBUG StfBlueprint::apply_slot{context=Node da_height=564}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f745c6c9278b585388e957da516430f663867ec7d406f1a2a9d3e588c642cd109e0 next_version=564 time=891.375µs accesses_build_time=16.43µs finishing_session_time=772.345µs -2026-04-20T11:36:29.387081Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f743fabef90729c82f2b491543036774f0f8f7434583ad93df42870d644ddb148ea" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f745c6c9278b585388e957da516430f663867ec7d406f1a2a9d3e588c642cd109e0" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:36:29.387612Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 564, latest_finalized_slot_number: 564, sync_status: Synced { synced_da_height: 563 }, .. } -2026-04-20T11:36:29.387708Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 564, latest_finalized_slot_number: 564, sync_status: Synced { synced_da_height: 563 }, .. } -2026-04-20T11:36:29.387777Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:36:29.397688Z DEBUG sov_stf_runner::runner: Block execution complete time=6.004212096s -2026-04-20T11:36:29.397713Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:36:35.382709Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=565 prev_hash=0x13241eed074d4d5758743692ea2260213dfe66159a2c2abbb7d65ca342c7074b hash=0x51ac4836b2c3f79ef9f99037373aa129e52875a68ac476a92b7df303a7f5c762 producing_time=1.395521ms -2026-04-20T11:36:35.389372Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=565 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f745c6c9278b585388e957da516430f663867ec7d406f1a2a9d3e588c642cd109e0" batch_blobs=[] proof_blobs=[] -2026-04-20T11:36:35.389705Z DEBUG StfBlueprint::apply_slot{context=Node da_height=565}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f745c6c9278b585388e957da516430f663867ec7d406f1a2a9d3e588c642cd109e0 next_version=565 sesssion_starting_time=53.18µs -2026-04-20T11:36:35.390515Z DEBUG StfBlueprint::apply_slot{context=Node da_height=565}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f746a670d76cf07641455477bfc779a5ce209da3efea2610c25a9b60edc79db946f next_version=565 time=880.484µs accesses_build_time=15.879µs finishing_session_time=751.915µs -2026-04-20T11:36:35.390582Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f745c6c9278b585388e957da516430f663867ec7d406f1a2a9d3e588c642cd109e0" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f746a670d76cf07641455477bfc779a5ce209da3efea2610c25a9b60edc79db946f" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:36:35.391040Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 565, latest_finalized_slot_number: 565, sync_status: Syncing { synced_da_height: 564, target_da_height: 565 }, .. } -2026-04-20T11:36:35.391123Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 565, latest_finalized_slot_number: 565, sync_status: Syncing { synced_da_height: 564, target_da_height: 565 }, .. } -2026-04-20T11:36:35.391189Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:36:35.401662Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003950018s -2026-04-20T11:36:35.401687Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:36:41.384797Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=566 prev_hash=0x51ac4836b2c3f79ef9f99037373aa129e52875a68ac476a92b7df303a7f5c762 hash=0x93fd50ef2eb29ba1250616a4239a6074cc4dd6d967b7c8d8273c4f1f9505b6b2 producing_time=1.117043ms -2026-04-20T11:36:41.393718Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=566 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f746a670d76cf07641455477bfc779a5ce209da3efea2610c25a9b60edc79db946f" batch_blobs=[] proof_blobs=[] -2026-04-20T11:36:41.394054Z DEBUG StfBlueprint::apply_slot{context=Node da_height=566}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f746a670d76cf07641455477bfc779a5ce209da3efea2610c25a9b60edc79db946f next_version=566 sesssion_starting_time=51.21µs -2026-04-20T11:36:41.394904Z DEBUG StfBlueprint::apply_slot{context=Node da_height=566}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f742e4bc540a52bbba37ccfd4ed8c79e15f3c0ecb5600be8096c0401915ab08a818 next_version=566 time=921.244µs accesses_build_time=18.08µs finishing_session_time=787.745µs -2026-04-20T11:36:41.394986Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f746a670d76cf07641455477bfc779a5ce209da3efea2610c25a9b60edc79db946f" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f742e4bc540a52bbba37ccfd4ed8c79e15f3c0ecb5600be8096c0401915ab08a818" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:36:41.395466Z DEBUG sov_stf_runner::runner: Block execution complete time=5.993779873s -2026-04-20T11:36:41.395503Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:36:41.395547Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 566, latest_finalized_slot_number: 565, sync_status: Syncing { synced_da_height: 565, target_da_height: 566 }, .. } -2026-04-20T11:36:41.395625Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 566, latest_finalized_slot_number: 565, sync_status: Syncing { synced_da_height: 565, target_da_height: 566 }, .. } -2026-04-20T11:36:41.395682Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:36:47.387044Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=567 prev_hash=0x93fd50ef2eb29ba1250616a4239a6074cc4dd6d967b7c8d8273c4f1f9505b6b2 hash=0xc36f4428fb5249790d630bd9494df20a0c8abe074a57b86ac0f22d318bb1c0e7 producing_time=1.189402ms -2026-04-20T11:36:47.397030Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=567 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f742e4bc540a52bbba37ccfd4ed8c79e15f3c0ecb5600be8096c0401915ab08a818" batch_blobs=[] proof_blobs=[] -2026-04-20T11:36:47.397382Z DEBUG StfBlueprint::apply_slot{context=Node da_height=567}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f742e4bc540a52bbba37ccfd4ed8c79e15f3c0ecb5600be8096c0401915ab08a818 next_version=567 sesssion_starting_time=48.41µs -2026-04-20T11:36:47.398257Z DEBUG StfBlueprint::apply_slot{context=Node da_height=567}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f744b30d40336efac6c293a14835cc201decc39f3a5278c87563c4110b084c8e80e next_version=567 time=955.844µs accesses_build_time=31.47µs finishing_session_time=808.644µs -2026-04-20T11:36:47.398345Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f746a670d76cf07641455477bfc779a5ce209da3efea2610c25a9b60edc79db946f" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f744b30d40336efac6c293a14835cc201decc39f3a5278c87563c4110b084c8e80e" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:36:47.398905Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 567, latest_finalized_slot_number: 566, sync_status: Syncing { synced_da_height: 566, target_da_height: 567 }, .. } -2026-04-20T11:36:47.398992Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 567, latest_finalized_slot_number: 566, sync_status: Syncing { synced_da_height: 566, target_da_height: 567 }, .. } -2026-04-20T11:36:47.399054Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:36:47.405927Z DEBUG sov_stf_runner::runner: Block execution complete time=6.010426297s -2026-04-20T11:36:47.405952Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:36:53.389252Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=568 prev_hash=0xc36f4428fb5249790d630bd9494df20a0c8abe074a57b86ac0f22d318bb1c0e7 hash=0xcc1e7a2ddf5787fc1ca95f9643b98dd5a7f07e8aaafc4f8d453ca28b442fc7a0 producing_time=1.105813ms -2026-04-20T11:36:53.397151Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=568 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f744b30d40336efac6c293a14835cc201decc39f3a5278c87563c4110b084c8e80e" batch_blobs=[] proof_blobs=[] -2026-04-20T11:36:53.397498Z DEBUG StfBlueprint::apply_slot{context=Node da_height=568}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f744b30d40336efac6c293a14835cc201decc39f3a5278c87563c4110b084c8e80e next_version=568 sesssion_starting_time=49.37µs -2026-04-20T11:36:53.398377Z DEBUG StfBlueprint::apply_slot{context=Node da_height=568}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7418c151a23f135bfca727e906e25eaef0a00434f7d5a06b9eda7501a46a637cd0 next_version=568 time=945.624µs accesses_build_time=16.13µs finishing_session_time=820.924µs -2026-04-20T11:36:53.398447Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f742e4bc540a52bbba37ccfd4ed8c79e15f3c0ecb5600be8096c0401915ab08a818" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7418c151a23f135bfca727e906e25eaef0a00434f7d5a06b9eda7501a46a637cd0" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:36:53.398989Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 568, latest_finalized_slot_number: 567, sync_status: Syncing { synced_da_height: 567, target_da_height: 568 }, .. } -2026-04-20T11:36:53.399076Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 568, latest_finalized_slot_number: 567, sync_status: Syncing { synced_da_height: 567, target_da_height: 568 }, .. } -2026-04-20T11:36:53.399135Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:36:53.406098Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000147772s -2026-04-20T11:36:53.406125Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:36:59.391506Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=569 prev_hash=0xcc1e7a2ddf5787fc1ca95f9643b98dd5a7f07e8aaafc4f8d453ca28b442fc7a0 hash=0xc8d78947d46864e63db89ca4412b40d4b26d6c939a377e39b014c9b9831012a0 producing_time=1.231452ms -2026-04-20T11:36:59.397352Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=569 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7418c151a23f135bfca727e906e25eaef0a00434f7d5a06b9eda7501a46a637cd0" batch_blobs=[] proof_blobs=[] -2026-04-20T11:36:59.397678Z DEBUG StfBlueprint::apply_slot{context=Node da_height=569}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7418c151a23f135bfca727e906e25eaef0a00434f7d5a06b9eda7501a46a637cd0 next_version=569 sesssion_starting_time=45.859µs -2026-04-20T11:36:59.398502Z DEBUG StfBlueprint::apply_slot{context=Node da_height=569}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f740172dcd08164ad2a5e382b80851e921be3f4cf8e51b72e3a928121ab717d1213 next_version=569 time=887.434µs accesses_build_time=16.38µs finishing_session_time=771.635µs -2026-04-20T11:36:59.398571Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f744b30d40336efac6c293a14835cc201decc39f3a5278c87563c4110b084c8e80e" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f740172dcd08164ad2a5e382b80851e921be3f4cf8e51b72e3a928121ab717d1213" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:36:59.399048Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 569, latest_finalized_slot_number: 568, sync_status: Synced { synced_da_height: 568 }, .. } -2026-04-20T11:36:59.399134Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 569, latest_finalized_slot_number: 568, sync_status: Synced { synced_da_height: 568 }, .. } -2026-04-20T11:36:59.399195Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:36:59.406047Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999923324s -2026-04-20T11:36:59.406071Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:37:05.393775Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=570 prev_hash=0xc8d78947d46864e63db89ca4412b40d4b26d6c939a377e39b014c9b9831012a0 hash=0x01c92b8096342c629cde5b6e41f69baa714727003db737fc0b3bdf537be123a6 producing_time=1.252442ms -2026-04-20T11:37:05.397573Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=570 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f740172dcd08164ad2a5e382b80851e921be3f4cf8e51b72e3a928121ab717d1213" batch_blobs=[] proof_blobs=[] -2026-04-20T11:37:05.397902Z DEBUG StfBlueprint::apply_slot{context=Node da_height=570}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f740172dcd08164ad2a5e382b80851e921be3f4cf8e51b72e3a928121ab717d1213 next_version=570 sesssion_starting_time=45.07µs -2026-04-20T11:37:05.398729Z DEBUG StfBlueprint::apply_slot{context=Node da_height=570}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f746e9345740bebc5598eea9c1accb6b61e3eb5c3218f3d45ad0bacb9557e4b48a3 next_version=570 time=889.424µs accesses_build_time=15.99µs finishing_session_time=775.065µs -2026-04-20T11:37:05.398806Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7418c151a23f135bfca727e906e25eaef0a00434f7d5a06b9eda7501a46a637cd0" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f746e9345740bebc5598eea9c1accb6b61e3eb5c3218f3d45ad0bacb9557e4b48a3" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:37:05.399331Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 570, latest_finalized_slot_number: 569, sync_status: Synced { synced_da_height: 569 }, .. } -2026-04-20T11:37:05.399427Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 570, latest_finalized_slot_number: 569, sync_status: Synced { synced_da_height: 569 }, .. } -2026-04-20T11:37:05.399486Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:37:05.409632Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003562701s -2026-04-20T11:37:05.409664Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:37:11.395926Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=571 prev_hash=0x01c92b8096342c629cde5b6e41f69baa714727003db737fc0b3bdf537be123a6 hash=0x7380ae97fe40924d2d79192018bf365c3536c25f47a2c7215240f8d2802dc8a5 producing_time=1.196152ms -2026-04-20T11:37:11.401770Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=571 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f746e9345740bebc5598eea9c1accb6b61e3eb5c3218f3d45ad0bacb9557e4b48a3" batch_blobs=[] proof_blobs=[] -2026-04-20T11:37:11.402097Z DEBUG StfBlueprint::apply_slot{context=Node da_height=571}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f746e9345740bebc5598eea9c1accb6b61e3eb5c3218f3d45ad0bacb9557e4b48a3 next_version=571 sesssion_starting_time=46.229µs -2026-04-20T11:37:11.402973Z DEBUG StfBlueprint::apply_slot{context=Node da_height=571}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f741317a5b5b7f1d7253c2fd61a5864d1b5a77b3940cc8dbd6b1409233f77d620ca next_version=571 time=938.964µs accesses_build_time=15.97µs finishing_session_time=822.485µs -2026-04-20T11:37:11.403043Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f740172dcd08164ad2a5e382b80851e921be3f4cf8e51b72e3a928121ab717d1213" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f741317a5b5b7f1d7253c2fd61a5864d1b5a77b3940cc8dbd6b1409233f77d620ca" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:37:11.403550Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 571, latest_finalized_slot_number: 570, sync_status: Synced { synced_da_height: 570 }, .. } -2026-04-20T11:37:11.403646Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 571, latest_finalized_slot_number: 570, sync_status: Synced { synced_da_height: 570 }, .. } -2026-04-20T11:37:11.403705Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:37:11.413927Z DEBUG sov_stf_runner::runner: Block execution complete time=6.004265256s -2026-04-20T11:37:11.413954Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:37:17.398008Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=572 prev_hash=0x7380ae97fe40924d2d79192018bf365c3536c25f47a2c7215240f8d2802dc8a5 hash=0xbeecca46a6217259eb2ad1f5b7c1f1810c6ebae9b0ca489988713170b142357d producing_time=1.134113ms -2026-04-20T11:37:17.405790Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=572 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f741317a5b5b7f1d7253c2fd61a5864d1b5a77b3940cc8dbd6b1409233f77d620ca" batch_blobs=[] proof_blobs=[] -2026-04-20T11:37:17.406116Z DEBUG StfBlueprint::apply_slot{context=Node da_height=572}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f741317a5b5b7f1d7253c2fd61a5864d1b5a77b3940cc8dbd6b1409233f77d620ca next_version=572 sesssion_starting_time=44.89µs -2026-04-20T11:37:17.406938Z DEBUG StfBlueprint::apply_slot{context=Node da_height=572}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f746104a853b5499658ade0dd6e9829fc9263d4ed2da8291153ed945cbb94fa371a next_version=572 time=883.034µs accesses_build_time=15.66µs finishing_session_time=769.505µs -2026-04-20T11:37:17.407009Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f746e9345740bebc5598eea9c1accb6b61e3eb5c3218f3d45ad0bacb9557e4b48a3" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f746104a853b5499658ade0dd6e9829fc9263d4ed2da8291153ed945cbb94fa371a" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:37:17.407507Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 572, latest_finalized_slot_number: 571, sync_status: Synced { synced_da_height: 571 }, .. } -2026-04-20T11:37:17.407604Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 572, latest_finalized_slot_number: 571, sync_status: Synced { synced_da_height: 571 }, .. } -2026-04-20T11:37:17.407666Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:37:17.417680Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00372613s -2026-04-20T11:37:17.417713Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:37:23.399840Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=573 prev_hash=0xbeecca46a6217259eb2ad1f5b7c1f1810c6ebae9b0ca489988713170b142357d hash=0x29b8e0238514028624aef66ebbe377c9ea8c8ab2c2a403b7ee560654cd032b5e producing_time=1.179263ms -2026-04-20T11:37:23.409598Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=573 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f746104a853b5499658ade0dd6e9829fc9263d4ed2da8291153ed945cbb94fa371a" batch_blobs=[] proof_blobs=[] -2026-04-20T11:37:23.409937Z DEBUG StfBlueprint::apply_slot{context=Node da_height=573}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f746104a853b5499658ade0dd6e9829fc9263d4ed2da8291153ed945cbb94fa371a next_version=573 sesssion_starting_time=46.47µs -2026-04-20T11:37:23.410743Z DEBUG StfBlueprint::apply_slot{context=Node da_height=573}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74000138c99818e46cc59b2d857c435cd4a2fcc8a60bb536d8077c3993bd567cf4 next_version=573 time=868.794µs accesses_build_time=15.98µs finishing_session_time=752.765µs -2026-04-20T11:37:23.410814Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f741317a5b5b7f1d7253c2fd61a5864d1b5a77b3940cc8dbd6b1409233f77d620ca" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74000138c99818e46cc59b2d857c435cd4a2fcc8a60bb536d8077c3993bd567cf4" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:37:23.411375Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 573, latest_finalized_slot_number: 572, sync_status: Synced { synced_da_height: 572 }, .. } -2026-04-20T11:37:23.411471Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 573, latest_finalized_slot_number: 572, sync_status: Synced { synced_da_height: 572 }, .. } -2026-04-20T11:37:23.411530Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:37:23.418249Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00053833s -2026-04-20T11:37:23.418276Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:37:29.402536Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=574 prev_hash=0x29b8e0238514028624aef66ebbe377c9ea8c8ab2c2a403b7ee560654cd032b5e hash=0x4535829a2e1cee7283475cf5d179802c838f18bf4d11c6ed5a31bd10d22f1054 producing_time=1.198082ms -2026-04-20T11:37:29.409162Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=574 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74000138c99818e46cc59b2d857c435cd4a2fcc8a60bb536d8077c3993bd567cf4" batch_blobs=[] proof_blobs=[] -2026-04-20T11:37:29.409517Z DEBUG StfBlueprint::apply_slot{context=Node da_height=574}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74000138c99818e46cc59b2d857c435cd4a2fcc8a60bb536d8077c3993bd567cf4 next_version=574 sesssion_starting_time=46.21µs -2026-04-20T11:37:29.410404Z DEBUG StfBlueprint::apply_slot{context=Node da_height=574}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7453c2ac990001861a8c395055eada6831db44d2037f9fe26e881dcd9867b40600 next_version=574 time=949.484µs accesses_build_time=15.22µs finishing_session_time=831.694µs -2026-04-20T11:37:29.410476Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f746104a853b5499658ade0dd6e9829fc9263d4ed2da8291153ed945cbb94fa371a" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7453c2ac990001861a8c395055eada6831db44d2037f9fe26e881dcd9867b40600" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:37:29.410953Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 574, latest_finalized_slot_number: 573, sync_status: Synced { synced_da_height: 573 }, .. } -2026-04-20T11:37:29.411043Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 574, latest_finalized_slot_number: 573, sync_status: Synced { synced_da_height: 573 }, .. } -2026-04-20T11:37:29.411101Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:37:29.418017Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999742756s -2026-04-20T11:37:29.418042Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:37:35.404967Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=575 prev_hash=0x4535829a2e1cee7283475cf5d179802c838f18bf4d11c6ed5a31bd10d22f1054 hash=0xbd2de0d3ba6ec3989c9a0382a0786ddf619db70038323574f2e48b4635bf0562 producing_time=1.039593ms -2026-04-20T11:37:35.409559Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=575 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7453c2ac990001861a8c395055eada6831db44d2037f9fe26e881dcd9867b40600" batch_blobs=[] proof_blobs=[] -2026-04-20T11:37:35.409886Z DEBUG StfBlueprint::apply_slot{context=Node da_height=575}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7453c2ac990001861a8c395055eada6831db44d2037f9fe26e881dcd9867b40600 next_version=575 sesssion_starting_time=51.509µs -2026-04-20T11:37:35.410624Z DEBUG StfBlueprint::apply_slot{context=Node da_height=575}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7440923f11d16d1d6de2b4b58b75f52d8641e76c1f63bcb856db780ed0273eb11a next_version=575 time=807.375µs accesses_build_time=16.2µs finishing_session_time=679.046µs -2026-04-20T11:37:35.410707Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f74000138c99818e46cc59b2d857c435cd4a2fcc8a60bb536d8077c3993bd567cf4" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7440923f11d16d1d6de2b4b58b75f52d8641e76c1f63bcb856db780ed0273eb11a" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:37:35.411220Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 575, latest_finalized_slot_number: 574, sync_status: Synced { synced_da_height: 574 }, .. } -2026-04-20T11:37:35.411324Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 575, latest_finalized_slot_number: 574, sync_status: Synced { synced_da_height: 574 }, .. } -2026-04-20T11:37:35.411398Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:37:35.421588Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003546911s -2026-04-20T11:37:35.421622Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:37:41.407108Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=576 prev_hash=0xbd2de0d3ba6ec3989c9a0382a0786ddf619db70038323574f2e48b4635bf0562 hash=0x4bc5b1e3458165b0a4ad54fd5337f2ff4d6bfc1d64eae1cdbc80596d7f69fd02 producing_time=1.148352ms -2026-04-20T11:37:41.413827Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=576 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7440923f11d16d1d6de2b4b58b75f52d8641e76c1f63bcb856db780ed0273eb11a" batch_blobs=[] proof_blobs=[] -2026-04-20T11:37:41.414154Z DEBUG StfBlueprint::apply_slot{context=Node da_height=576}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7440923f11d16d1d6de2b4b58b75f52d8641e76c1f63bcb856db780ed0273eb11a next_version=576 sesssion_starting_time=45.11µs -2026-04-20T11:37:41.414980Z DEBUG StfBlueprint::apply_slot{context=Node da_height=576}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7413aa1c178cdd66702f5776f73d03e076d2932b980a46e8b9e4793294ba94e8a5 next_version=576 time=887.275µs accesses_build_time=15.63µs finishing_session_time=774.935µs -2026-04-20T11:37:41.415046Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7453c2ac990001861a8c395055eada6831db44d2037f9fe26e881dcd9867b40600" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7413aa1c178cdd66702f5776f73d03e076d2932b980a46e8b9e4793294ba94e8a5" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:37:41.415565Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 576, latest_finalized_slot_number: 575, sync_status: Synced { synced_da_height: 575 }, .. } -2026-04-20T11:37:41.415669Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 576, latest_finalized_slot_number: 575, sync_status: Synced { synced_da_height: 575 }, .. } -2026-04-20T11:37:41.415729Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:37:41.422088Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000468211s -2026-04-20T11:37:41.422112Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:37:47.409306Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=577 prev_hash=0x4bc5b1e3458165b0a4ad54fd5337f2ff4d6bfc1d64eae1cdbc80596d7f69fd02 hash=0x9156ebbdb9245f8e609661f80bff28c1e020fe568701c1100d95e5eb42cba178 producing_time=1.203792ms -2026-04-20T11:37:47.414037Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=577 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7413aa1c178cdd66702f5776f73d03e076d2932b980a46e8b9e4793294ba94e8a5" batch_blobs=[] proof_blobs=[] -2026-04-20T11:37:47.414407Z DEBUG StfBlueprint::apply_slot{context=Node da_height=577}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7413aa1c178cdd66702f5776f73d03e076d2932b980a46e8b9e4793294ba94e8a5 next_version=577 sesssion_starting_time=55.249µs -2026-04-20T11:37:47.415242Z DEBUG StfBlueprint::apply_slot{context=Node da_height=577}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7419cc7ae2e359d34f561a2495e3e8de0aee7aa73b573c4734ccedc0441e2737df next_version=577 time=934.524µs accesses_build_time=42.98µs finishing_session_time=777.455µs -2026-04-20T11:37:47.415302Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7440923f11d16d1d6de2b4b58b75f52d8641e76c1f63bcb856db780ed0273eb11a" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7419cc7ae2e359d34f561a2495e3e8de0aee7aa73b573c4734ccedc0441e2737df" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:37:47.415781Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 577, latest_finalized_slot_number: 576, sync_status: Synced { synced_da_height: 576 }, .. } -2026-04-20T11:37:47.415879Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 577, latest_finalized_slot_number: 576, sync_status: Synced { synced_da_height: 576 }, .. } -2026-04-20T11:37:47.415938Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:37:47.423145Z DEBUG sov_stf_runner::runner: Block execution complete time=6.001034217s -2026-04-20T11:37:47.423171Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:37:53.411460Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=578 prev_hash=0x9156ebbdb9245f8e609661f80bff28c1e020fe568701c1100d95e5eb42cba178 hash=0xde9a11ab9ba22c8306cd1b34d0e382bb0e655eb563ebc652e4a181925b34e49d producing_time=1.150112ms -2026-04-20T11:37:53.414282Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=578 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7419cc7ae2e359d34f561a2495e3e8de0aee7aa73b573c4734ccedc0441e2737df" batch_blobs=[] proof_blobs=[] -2026-04-20T11:37:53.414630Z DEBUG StfBlueprint::apply_slot{context=Node da_height=578}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7419cc7ae2e359d34f561a2495e3e8de0aee7aa73b573c4734ccedc0441e2737df next_version=578 sesssion_starting_time=46.2µs -2026-04-20T11:37:53.415394Z DEBUG StfBlueprint::apply_slot{context=Node da_height=578}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7432d75172841d76128a6c36be3c2970aa22c1dd80b1afe7240966ab4de05b3b83 next_version=578 time=830.455µs accesses_build_time=18.35µs finishing_session_time=709.225µs -2026-04-20T11:37:53.415473Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7413aa1c178cdd66702f5776f73d03e076d2932b980a46e8b9e4793294ba94e8a5" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7432d75172841d76128a6c36be3c2970aa22c1dd80b1afe7240966ab4de05b3b83" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:37:53.416021Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 578, latest_finalized_slot_number: 577, sync_status: Synced { synced_da_height: 577 }, .. } -2026-04-20T11:37:53.416124Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 578, latest_finalized_slot_number: 577, sync_status: Synced { synced_da_height: 577 }, .. } -2026-04-20T11:37:53.416187Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 -2026-04-20T11:37:53.423278Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000108453s -2026-04-20T11:37:53.423311Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:37:59.413798Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=579 prev_hash=0xde9a11ab9ba22c8306cd1b34d0e382bb0e655eb563ebc652e4a181925b34e49d hash=0x524642a6b3dd61809612ab55ec506c2df6c8b959f90bc016c19dde3f81395d45 producing_time=1.154032ms -2026-04-20T11:37:59.414336Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=579 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7432d75172841d76128a6c36be3c2970aa22c1dd80b1afe7240966ab4de05b3b83" batch_blobs=[] proof_blobs=[] -2026-04-20T11:37:59.414667Z DEBUG StfBlueprint::apply_slot{context=Node da_height=579}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7432d75172841d76128a6c36be3c2970aa22c1dd80b1afe7240966ab4de05b3b83 next_version=579 sesssion_starting_time=47.93µs -2026-04-20T11:37:59.415414Z DEBUG StfBlueprint::apply_slot{context=Node da_height=579}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f740f7e7de2dc849a963275790b8db2c1a3cbfa3e383c8675561928e253721fd205 next_version=579 time=812.765µs accesses_build_time=16.52µs finishing_session_time=699.975µs -2026-04-20T11:37:59.415482Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7419cc7ae2e359d34f561a2495e3e8de0aee7aa73b573c4734ccedc0441e2737df" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f740f7e7de2dc849a963275790b8db2c1a3cbfa3e383c8675561928e253721fd205" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:37:59.415958Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 579, latest_finalized_slot_number: 578, sync_status: Synced { synced_da_height: 578 }, .. } -2026-04-20T11:37:59.416029Z ERROR sov_sequencer::preferred::sync_sequencer_state::conditions_table: Sequencer has detected that it is past, or very close to, having the visible_slot_number lag behind the deferred_slots_count threshold. Normal operation will be suspended until this can be remedied. slot_number_according_to_node=579 current_visible_slot_number=480 deferred_slots=120 -2026-04-20T11:37:59.416073Z DEBUG sov_sequencer::preferred::executor_events: Recovery: No in-progress batch to terminate. -2026-04-20T11:37:59.416122Z DEBUG sov_sequencer::preferred::block_executor: Replacing state for block executor old=019daaaa-1836-7fd2-a32f-1324006affa6 new=019daaae-db78-72a0-b846-ce6dd2e549f9 -2026-04-20T11:37:59.416180Z  INFO sov_sequencer::preferred::sync_sequencer_state::inner: Beginning sequencer recovery info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 579, latest_finalized_slot_number: 578, sync_status: Synced { synced_da_height: 578 }, .. } current_visible_slot_number=480 -2026-04-20T11:37:59.416181Z  WARN sov_sequencer::preferred::side_effects: TryToSave recovery strategy has been configured. The currently pending soft confirmations will be flushed to the node. This may save some of the transactions, but if any are no longer valid, the sequencer will be penalised. num_batches_to_replay=30 -2026-04-20T11:37:59.416201Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=595 blob_id=2147880074940204651068941477188912608 -2026-04-20T11:37:59.416213Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147880074940204651068941477188912608 -2026-04-20T11:37:59.416231Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=596 blob_id=2147880075923066101940248032419969589 -2026-04-20T11:37:59.416230Z DEBUG update_state_task_inner: sov_sequencer::preferred: Calculating amount of batches to send deferred_slots_count=109 maximum_delta=54 minimum_delta=43 current_catchup_delta=98 current_visible_slot_number=480 increase_per_batch=10 -2026-04-20T11:37:59.416240Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147880075923066101940248032419969589 -2026-04-20T11:37:59.416246Z  INFO update_state_task_inner: sov_sequencer::preferred: Recovery: sending max_batches_to_send empty catchup batches to bump the visible_slot_number min_batches_to_send=5 max_batches_to_send=6 -2026-04-20T11:37:59.416251Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=597 blob_id=2147880076907089805231193815234531856 -2026-04-20T11:37:59.416261Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147880076907089805231193815234531856 -2026-04-20T11:37:59.416269Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=598 blob_id=2147880077888794832865110119948845919 -2026-04-20T11:37:59.416279Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147880077888794832865110119948845919 -2026-04-20T11:37:59.416286Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=599 blob_id=2147880078870382647070008366080146626 -2026-04-20T11:37:59.416296Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147880078870382647070008366080146626 -2026-04-20T11:37:59.416305Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=600 blob_id=2147880079855694063383502446417299278 -2026-04-20T11:37:59.416325Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147880079855694063383502446417299278 -2026-04-20T11:37:59.416340Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=601 blob_id=2147880080840978384564372028379666852 -2026-04-20T11:37:59.416348Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147880080840978384564372028379666852 -2026-04-20T11:37:59.416355Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=602 blob_id=2147880081821382394900355918992810759 -2026-04-20T11:37:59.416364Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147880081821382394900355918992810759 -2026-04-20T11:37:59.416380Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=603 blob_id=2147880082804227260845050356842852252 -2026-04-20T11:37:59.416388Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147880082804227260845050356842852252 -2026-04-20T11:37:59.416396Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=604 blob_id=2147880083787074492080627755976091531 -2026-04-20T11:37:59.416404Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147880083787074492080627755976091531 -2026-04-20T11:37:59.416411Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=605 blob_id=2147880084774832760143557027631119140 -2026-04-20T11:37:59.416420Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147880084774832760143557027631119140 -2026-04-20T11:37:59.416427Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=606 blob_id=2147880086075626886376816047382284724 -2026-04-20T11:37:59.416435Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147880086075626886376816047382284724 -2026-04-20T11:37:59.416444Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=607 blob_id=2147880087063309266451420364475926398 -2026-04-20T11:37:59.416452Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147880087063309266451420364475926398 -2026-04-20T11:37:59.416460Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=608 blob_id=2147880088169457757814954159623761210 -2026-04-20T11:37:59.416467Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147880088169457757814954159623761210 -2026-04-20T11:37:59.416475Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=609 blob_id=2147880089271999304475532209358324806 -2026-04-20T11:37:59.416483Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147880089271999304475532209358324806 -2026-04-20T11:37:59.416490Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=610 blob_id=2147880090380570999269977977926352282 -2026-04-20T11:37:59.416498Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147880090380570999269977977926352282 -2026-04-20T11:37:59.416505Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=611 blob_id=2147880091485564341627757598343049027 -2026-04-20T11:37:59.416520Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147880091485564341627757598343049027 -2026-04-20T11:37:59.416528Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=612 blob_id=2147880092444263138770336737252845193 -2026-04-20T11:37:59.416536Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147880092444263138770336737252845193 -2026-04-20T11:37:59.416543Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=613 blob_id=2147880093402906191665695984924074339 -2026-04-20T11:37:59.416551Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147880093402906191665695984924074339 -2026-04-20T11:37:59.416559Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=614 blob_id=2147880094384556648604182752295211311 -2026-04-20T11:37:59.416568Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147880094384556648604182752295211311 -2026-04-20T11:37:59.416575Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=615 blob_id=2147880095343213277075992831183360458 -2026-04-20T11:37:59.416582Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147880095343213277075992831183360458 -2026-04-20T11:37:59.416590Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=616 blob_id=2147880096323685748672930902427921690 -2026-04-20T11:37:59.416598Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147880096323685748672930902427921690 -2026-04-20T11:37:59.416605Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=617 blob_id=2147880097305295992273360281897353867 -2026-04-20T11:37:59.416613Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147880097305295992273360281897353867 -2026-04-20T11:37:59.416621Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=618 blob_id=2147880098284561083127452090716097388 -2026-04-20T11:37:59.416629Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147880098284561083127452090716097388 -2026-04-20T11:37:59.416637Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=619 blob_id=2147880099265002541201174597176549457 -2026-04-20T11:37:59.416644Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147880099265002541201174597176549457 -2026-04-20T11:37:59.416659Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=620 blob_id=2147880100250239619260774649382357056 -2026-04-20T11:37:59.416669Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147880100250239619260774649382357056 -2026-04-20T11:37:59.416676Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=621 blob_id=2147880101229466268097010898852080877 -2026-04-20T11:37:59.416684Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147880101229466268097010898852080877 -2026-04-20T11:37:59.416691Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=622 blob_id=2147880102211129989442097935891517865 -2026-04-20T11:37:59.416700Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147880102211129989442097935891517865 -2026-04-20T11:37:59.416707Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=623 blob_id=2147880103196438142334963673687195791 -2026-04-20T11:37:59.416715Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147880103196438142334963673687195791 -2026-04-20T11:37:59.416723Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=624 blob_id=2147880104176873459242930848228595361 -2026-04-20T11:37:59.416731Z  INFO sov_blob_sender: No need to publish blob as it's already in-flight or awaiting finalization. Skipping. blob_id=2147880104176873459242930848228595361 -2026-04-20T11:37:59.422984Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999674796s -2026-04-20T11:37:59.423010Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:38:05.416254Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=580 prev_hash=0x524642a6b3dd61809612ab55ec506c2df6c8b959f90bc016c19dde3f81395d45 hash=0xcf3c3c821d87595122adb3437740816ba4e1ad2b90c470bf9cdae9ee472fa472 producing_time=1.244902ms -2026-04-20T11:38:05.424026Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=580 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f740f7e7de2dc849a963275790b8db2c1a3cbfa3e383c8675561928e253721fd205" batch_blobs=[] proof_blobs=[] -2026-04-20T11:38:05.424381Z DEBUG StfBlueprint::apply_slot{context=Node da_height=580}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f740f7e7de2dc849a963275790b8db2c1a3cbfa3e383c8675561928e253721fd205 next_version=580 sesssion_starting_time=52.78µs -2026-04-20T11:38:05.425188Z DEBUG StfBlueprint::apply_slot{context=Node da_height=580}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f746fa8747663dde121c82ff0f740b96e360432b91c780a60ccf474c4fae09f987e next_version=580 time=890.174µs accesses_build_time=28.99µs finishing_session_time=747.405µs -2026-04-20T11:38:05.425249Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f7432d75172841d76128a6c36be3c2970aa22c1dd80b1afe7240966ab4de05b3b83" next_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f746fa8747663dde121c82ff0f740b96e360432b91c780a60ccf474c4fae09f987e" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:38:05.425647Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=1 min=5 max=6 -2026-04-20T11:38:05.425710Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:38:05.425811Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=142 -2026-04-20T11:38:05.425900Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=490 -2026-04-20T11:38:05.426104Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:38:05.427264Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=490 sequence_number=625 -2026-04-20T11:38:05.427291Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=625 blob_id=2147880473097498090435920701053817107 visible_slot_number_after_increase=490 visible_slots_to_advance=10 -2026-04-20T11:38:05.427335Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=30 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:38:05.429149Z DEBUG manage_blob_submission_inside_task{blob_id=2147880473097498090435920701053817107 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x43495a3c2258bfeddc2ccd512cbab6629b49adce5b39e8907c62a91dccd3ee36 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=581 include_at=581 bytes=13 time=595.386µs -2026-04-20T11:38:05.435244Z DEBUG compute_state_update{scope="sequencer" rollup_height=147 slot_number=490}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:38:05.435270Z DEBUG compute_state_update{scope="sequencer" rollup_height=147 slot_number=490}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:38:05.435285Z DEBUG sov_stf_runner::runner: Block execution complete time=6.012276645s -2026-04-20T11:38:05.435309Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:38:05.435329Z DEBUG compute_state_update{scope="sequencer" rollup_height=147 slot_number=490}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f740f7e7de2dc849a963275790b8db2c1a3cbfa3e383c8675561928e253721fd205 next_version=580 sesssion_starting_time=7.542292ms -2026-04-20T11:38:05.436044Z DEBUG compute_state_update{scope="sequencer" rollup_height=147 slot_number=490}: sov_state::nomt::prover_storage: computed next state root state_root=18c6809a32125ccf85c96b3bca948fa39285fc87e1879be41a1038ca77b34ce54f18129fed744ddad136ab45cb1c40ddd8363db14d66a53ee013aea5e8ac6048 next_version=580 time=8.278496ms accesses_build_time=20.43µs finishing_session_time=697.235µs -2026-04-20T11:38:11.418630Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=581 prev_hash=0xcf3c3c821d87595122adb3437740816ba4e1ad2b90c470bf9cdae9ee472fa472 hash=0x2fc723023d25bb0ae6b594e5ae5b76f067f6c2fc3573e1df1b82474060a9d70a producing_time=1.197073ms -2026-04-20T11:38:11.426332Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=581 current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f746fa8747663dde121c82ff0f740b96e360432b91c780a60ccf474c4fae09f987e" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x43495a3c2258bfeddc2ccd512cbab6629b49adce5b39e8907c62a91dccd3ee36"] proof_blobs=[] -2026-04-20T11:38:11.427326Z DEBUG StfBlueprint::apply_slot{context=Node da_height=581}: sov_chain_state: Setting next visible slot number next_visible_slot_number=490 -2026-04-20T11:38:11.428440Z DEBUG StfBlueprint::apply_slot{context=Node da_height=581}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x43495a3c2258bfeddc2ccd512cbab6629b49adce5b39e8907c62a91dccd3ee36}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=30 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:38:11.428734Z DEBUG StfBlueprint::apply_slot{context=Node da_height=581}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f746fa8747663dde121c82ff0f740b96e360432b91c780a60ccf474c4fae09f987e next_version=581 sesssion_starting_time=49.3µs -2026-04-20T11:38:11.429955Z DEBUG StfBlueprint::apply_slot{context=Node da_height=581}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=18c6809a32125ccf85c96b3bca948fa39285fc87e1879be41a1038ca77b34ce508aaf0dc5d31623f17d11926f604174c17555c8ccd3721820f75c73e79749fe8 next_version=581 time=1.353972ms accesses_build_time=81.49µs finishing_session_time=1.185723ms -2026-04-20T11:38:11.430173Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="d450c9bf3038ce701681d950a87287674ef660475548a546eab10f99965713c5" -2026-04-20T11:38:11.430193Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="61faaa9539fa8a8e3d80fae8e0a230d95ef59b15df1bb55a8eafcc73edbe3839" -2026-04-20T11:38:11.430206Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="308dc3b9750a8effbd5533167c50d211ebecf03743ad8959502f9026e27e79bf" -2026-04-20T11:38:11.430218Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="88532dcebbe5125407bfeacddd87e926424d7b48b63425ce20ea70de61228a24" -2026-04-20T11:38:11.430227Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ab37cbf8dbb1d63307896e5cbd60759b8fc8391372d5446c7599fbdd232bae3c" -2026-04-20T11:38:11.430238Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="2297c75ec9c1137dc7b2735fe3f1022a6946f797742cbe26125e1e691dd3b4bb" -2026-04-20T11:38:11.430246Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="5f2839e0bc2514843c8a7732d43a5d68f989ebabfa406e504794580b4f9e9640" -2026-04-20T11:38:11.430256Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="313d56b0e4b3f60236a7f1040164db449ef3b23f9b7ecb645fb538daa2a1350f" -2026-04-20T11:38:11.430277Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="218d906931ff4e21f73ce3a70ad441651c69aa1433902baf988c9d94a681d333" -2026-04-20T11:38:11.430286Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="4cc5bab06e2a125ee4f6e897a2625309403180a88686c81c3758f7ec04649d09" -2026-04-20T11:38:11.430295Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="ee8a68a2f0ef2a9cfd6f314d6d6a35adadb884c6294b79931445b0093590bff8" -2026-04-20T11:38:11.430303Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="1aa5253cbb0dfa6744b6ad35614c8d0e92ad1847426fea6490ef21819478dd87" -2026-04-20T11:38:11.430325Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="49279e894748857142bb916fedea63b161af65a5eac81b8ba2ef6b3001ecf8a6" -2026-04-20T11:38:11.430343Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="c941c60a902c94c69c8dbb7c771483ad6a18424ab7bfff163eacc20714c6db56" -2026-04-20T11:38:11.430355Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="95565a1882d7840aac5e116fa6601e05f20dd8e2851b5df9ba3878e550de5bdf" -2026-04-20T11:38:11.430367Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="365c7751cbdd61ca2fb69f4c0071476658331c13581baaf287fbbf61092e8f7b" -2026-04-20T11:38:11.430379Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="015f3bfd63dc6a1013fd2166672fc0653e28e73d065f9aa1767242b055293961" -2026-04-20T11:38:11.430393Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="9c2a5cb82808fd984dc8095de2249020b756800a5271a3ad3ee7d185bfd1c153" -2026-04-20T11:38:11.430405Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="0a92e82a570d102f91e3d6df94dc765eecd6d6f14d67da4b2f9707c2b554e62f" -2026-04-20T11:38:11.430418Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="28c88c5ca8014ef18a7b97540f7bbd8b537b07af0d6d3a31b32485e56aa47d3d" -2026-04-20T11:38:11.430430Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="608a2a336cbb1b7b010d7260414e66524cfe7ccf7d8b0b0058447b26ff96cc5d" -2026-04-20T11:38:11.430452Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="2e0f60578fe9af277566124d82a79987c29ef9adc1f9d58844f5ded589b6b636" -2026-04-20T11:38:11.430465Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="6d3941237682682085d5f1d34ab9a4411f32b2fd9f314f5a3c5262fa4a7a2c8b" -2026-04-20T11:38:11.430477Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="06d75235d0c066866c4bbe93c23d30446af63742b402fd7e8f5436176873143a" -2026-04-20T11:38:11.430491Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="0d84a4369b75cbc5b548a332012fe04c1c3b711a44a1f46ba69a96829ca58d46" -2026-04-20T11:38:11.430503Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="5f6cceb9c5f7bbb346873b08fedc8af696b41eba68c28e71e1c0a306ca5b3e3b" -2026-04-20T11:38:11.430515Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="26ee156448a7e4c40da81444485ae6dcdce123bf8c6b044cd74d548129257b8b" -2026-04-20T11:38:11.430527Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="410ae34ec25b4b4c057c6b1e6811a7852d6a36ea68873eba4d2b5ba8b9c1736d" -2026-04-20T11:38:11.430540Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="4df7d099316b4c566fd350b7e647aae7860aeed30ebb554980aa3da2f5d772b8" -2026-04-20T11:38:11.430552Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="0a8a5492e950a7aac7d3d9f33d0caac552dc8da9e6199f2295b7ab740fc4b23f" -2026-04-20T11:38:11.430568Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f740f7e7de2dc849a963275790b8db2c1a3cbfa3e383c8675561928e253721fd205" next_state_root="18c6809a32125ccf85c96b3bca948fa39285fc87e1879be41a1038ca77b34ce508aaf0dc5d31623f17d11926f604174c17555c8ccd3721820f75c73e79749fe8" aggregated_proofs=0 proof_receipts=30 -2026-04-20T11:38:11.430752Z  WARN sov_stf_runner::processes::stf_info_manager: State Transition Info is not consumed fast enough, cannot prune older entries. Please check that consumer works. next_height_to_receive=480 prune_up_to=481 -2026-04-20T11:38:11.431231Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=2 min=5 max=6 -2026-04-20T11:38:11.431283Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:38:11.431372Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=143 -2026-04-20T11:38:11.431488Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=500 -2026-04-20T11:38:11.431687Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:38:11.431862Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=500 sequence_number=626 -2026-04-20T11:38:11.431896Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=626 blob_id=2147880480355909703084102040230284861 visible_slot_number_after_increase=500 visible_slots_to_advance=10 -2026-04-20T11:38:11.431908Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:38:11.433701Z DEBUG manage_blob_submission_inside_task{blob_id=2147880480355909703084102040230284861 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xc63692b1cd85c95a1ef06d3aeb9484b3625890a4c46534b5061bdb7f8d951ad9 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=582 include_at=582 bytes=13 time=629.226µs -2026-04-20T11:38:11.437585Z DEBUG compute_state_update{scope="sequencer" rollup_height=148 slot_number=500}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:38:11.437600Z DEBUG compute_state_update{scope="sequencer" rollup_height=148 slot_number=500}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:38:11.437626Z DEBUG compute_state_update{scope="sequencer" rollup_height=148 slot_number=500}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f740f7e7de2dc849a963275790b8db2c1a3cbfa3e383c8675561928e253721fd205 next_version=580 sesssion_starting_time=5.293486ms -2026-04-20T11:38:11.437635Z DEBUG sov_stf_runner::runner: Block execution complete time=6.002327389s -2026-04-20T11:38:11.437657Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:38:11.437880Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:11.437983Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:11.438252Z DEBUG compute_state_update{scope="sequencer" rollup_height=148 slot_number=500}: sov_state::nomt::prover_storage: computed next state root state_root=109701bfe5caa72466a1993c421756a6d8f6090cc5fbc21df0f2e3bbbd4dc556765b0976ed226147a3797a8adae4999aec0c115c790db0070650cbe55c923935 next_version=580 time=5.964841ms accesses_build_time=44.469µs finishing_session_time=615.806µs -2026-04-20T11:38:11.997792Z DEBUG sp1_core_executor_runner::native: CHILD sp1_lMUX8ATLTfOglO1b5fb5iA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:12.005459Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:12.016762Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1126347 cycles -2026-04-20T11:38:12.019300Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 87, 222, 46, 178, 95, 48, 194, 156, 170, 253, 158, 154, 112, 204, 167, 90, 140, 92, 32, 46, 103, 52, 79, 5, 223, 105, 9, 238, 163, 128, 154, 224, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 72, 153, 19, 109, 158, 146, 223, 88, 246, 119, 163, 188, 196, 150, 18, 63, 104, 149, 190, 118, 53, 31, 255, 29, 71, 191, 247, 98, 12, 40, 53, 25, 71, 252, 94, 171, 104, 241, 70, 115, 195, 7, 85, 174, 29, 198, 1, 238, 201, 153, 65, 150, 184, 137, 63, 89, 130, 124, 112, 104, 30, 148, 30, 49, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:12.080707Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:12.080757Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:12.145538Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:12.180601Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YTfCaNhnT-29mCxsk0-Hfw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:12.183463Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YTfCaNhnT-29mCxsk0-Hfw==: stderr: -2026-04-20T11:38:12.183489Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YTfCaNhnT-29mCxsk0-Hfw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:12.183500Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YTfCaNhnT-29mCxsk0-Hfw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:12.183507Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YTfCaNhnT-29mCxsk0-Hfw==: stderr: stack backtrace: -2026-04-20T11:38:12.183514Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YTfCaNhnT-29mCxsk0-Hfw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:12.183535Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YTfCaNhnT-29mCxsk0-Hfw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:12.183543Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:12.184411Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:12.184700Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:12.250540Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:12.250587Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:12.250770Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:12.250922Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:12.250990Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:12.251255Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=627 blob_id=2147880481345966512693545274337512155 -2026-04-20T11:38:12.806008Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NRUhVhEgTyGTqSHar_bV_w==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:12.813453Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:12.824057Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1114722 cycles -2026-04-20T11:38:12.826681Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 3, 65, 94, 51, 155, 1, 65, 112, 187, 221, 98, 1, 211, 235, 64, 77, 16, 196, 217, 72, 75, 181, 2, 51, 102, 98, 220, 167, 125, 1, 15, 67, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 63, 208, 229, 24, 112, 41, 161, 119, 187, 79, 77, 193, 45, 50, 3, 233, 184, 33, 98, 252, 223, 221, 150, 0, 55, 176, 95, 81, 116, 1, 61, 102, 107, 184, 118, 229, 213, 81, 78, 1, 75, 61, 42, 191, 165, 49, 101, 141, 54, 185, 195, 194, 220, 190, 39, 209, 41, 249, 59, 135, 126, 205, 235, 178, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:12.887931Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:12.887978Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:12.957880Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:12.991418Z DEBUG sp1_core_executor_runner::native: CHILD sp1_7YGsB7EQRk-m3QudmCV1tQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:12.994241Z DEBUG sp1_core_executor_runner::native: CHILD sp1_7YGsB7EQRk-m3QudmCV1tQ==: stderr: -2026-04-20T11:38:12.994258Z DEBUG sp1_core_executor_runner::native: CHILD sp1_7YGsB7EQRk-m3QudmCV1tQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:12.994269Z DEBUG sp1_core_executor_runner::native: CHILD sp1_7YGsB7EQRk-m3QudmCV1tQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:12.994280Z DEBUG sp1_core_executor_runner::native: CHILD sp1_7YGsB7EQRk-m3QudmCV1tQ==: stderr: stack backtrace: -2026-04-20T11:38:12.994289Z DEBUG sp1_core_executor_runner::native: CHILD sp1_7YGsB7EQRk-m3QudmCV1tQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:12.994297Z DEBUG sp1_core_executor_runner::native: CHILD sp1_7YGsB7EQRk-m3QudmCV1tQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:12.994414Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:12.995138Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:12.995434Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:13.061483Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:13.061530Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:13.061705Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:13.061827Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:13.061902Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:13.062404Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=628 blob_id=2147880482326416255319512027010995977 -2026-04-20T11:38:13.614224Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Zk4Zr6UMS4-bhzm8pv-CAQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:13.621768Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:13.631645Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1117642 cycles -2026-04-20T11:38:13.634286Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 38, 71, 16, 36, 154, 174, 185, 163, 48, 32, 35, 12, 121, 179, 17, 152, 173, 221, 148, 82, 180, 17, 49, 145, 128, 59, 202, 173, 82, 135, 117, 171, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 48, 70, 246, 140, 196, 120, 41, 171, 230, 134, 186, 78, 94, 11, 126, 199, 141, 92, 92, 58, 240, 196, 204, 160, 173, 200, 142, 168, 112, 7, 173, 173, 92, 87, 61, 249, 192, 192, 22, 130, 243, 146, 140, 21, 65, 133, 206, 64, 208, 225, 88, 66, 207, 165, 35, 222, 28, 103, 168, 37, 247, 19, 113, 124, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:13.696909Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:13.696955Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:13.771595Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:13.805407Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kGcu3LWmRv22SQyCgBAFUw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:13.808220Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kGcu3LWmRv22SQyCgBAFUw==: stderr: -2026-04-20T11:38:13.808244Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kGcu3LWmRv22SQyCgBAFUw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:13.808254Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kGcu3LWmRv22SQyCgBAFUw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:13.808264Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kGcu3LWmRv22SQyCgBAFUw==: stderr: stack backtrace: -2026-04-20T11:38:13.808271Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kGcu3LWmRv22SQyCgBAFUw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:13.808277Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kGcu3LWmRv22SQyCgBAFUw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:13.808367Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:13.809202Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:13.809500Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:13.875657Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:13.875700Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:13.875888Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:13.876046Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:13.876124Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:13.876521Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=629 blob_id=2147880483310494910075959331665662115 -2026-04-20T11:38:14.418566Z DEBUG sp1_core_executor_runner::native: CHILD sp1_cSXyYHmdRvyZE15TvdYPyg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:14.425989Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:14.435040Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1114357 cycles -2026-04-20T11:38:14.437710Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 20, 168, 143, 184, 210, 171, 123, 205, 188, 227, 244, 37, 145, 173, 218, 238, 97, 146, 183, 126, 13, 145, 232, 185, 142, 1, 199, 93, 66, 192, 244, 36, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 119, 79, 1, 72, 1, 217, 206, 39, 145, 237, 136, 91, 80, 248, 239, 219, 118, 123, 72, 181, 162, 231, 233, 178, 1, 175, 216, 177, 220, 11, 122, 233, 251, 116, 9, 75, 33, 190, 106, 155, 168, 230, 119, 97, 109, 214, 189, 15, 83, 237, 200, 33, 109, 226, 102, 238, 246, 11, 167, 87, 13, 100, 130, 237, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:14.500535Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:14.500583Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:14.582651Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:14.616690Z DEBUG sp1_core_executor_runner::native: CHILD sp1_j6Ykqp8TTgeehk56WfSQSA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:14.619523Z DEBUG sp1_core_executor_runner::native: CHILD sp1_j6Ykqp8TTgeehk56WfSQSA==: stderr: -2026-04-20T11:38:14.619538Z DEBUG sp1_core_executor_runner::native: CHILD sp1_j6Ykqp8TTgeehk56WfSQSA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:14.619547Z DEBUG sp1_core_executor_runner::native: CHILD sp1_j6Ykqp8TTgeehk56WfSQSA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:14.619556Z DEBUG sp1_core_executor_runner::native: CHILD sp1_j6Ykqp8TTgeehk56WfSQSA==: stderr: stack backtrace: -2026-04-20T11:38:14.619562Z DEBUG sp1_core_executor_runner::native: CHILD sp1_j6Ykqp8TTgeehk56WfSQSA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:14.619568Z DEBUG sp1_core_executor_runner::native: CHILD sp1_j6Ykqp8TTgeehk56WfSQSA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:14.619694Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:14.620477Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:14.620773Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:14.686553Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:14.686592Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:14.686747Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:14.686907Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:14.686964Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:14.687433Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=630 blob_id=2147880484290928402614446793579863870 -2026-04-20T11:38:15.232376Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XZOSI5VxT42znEknlfIuYA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:15.239872Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:15.249158Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1124075 cycles -2026-04-20T11:38:15.251610Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 23, 228, 249, 96, 166, 110, 164, 106, 58, 96, 183, 214, 228, 114, 61, 98, 100, 238, 112, 55, 215, 193, 115, 5, 104, 123, 182, 188, 119, 132, 113, 154, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 19, 155, 44, 147, 155, 190, 245, 177, 179, 247, 12, 47, 162, 67, 247, 78, 54, 233, 19, 33, 111, 241, 47, 119, 126, 110, 189, 226, 185, 5, 230, 164, 46, 4, 37, 190, 29, 203, 167, 234, 142, 85, 194, 30, 120, 87, 166, 112, 18, 7, 47, 114, 146, 219, 191, 239, 186, 154, 230, 211, 12, 77, 142, 114, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:15.314887Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:15.314932Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:15.394892Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:15.428984Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8KtBIZ_LQZaEYtIgtpqPkQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:15.431830Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8KtBIZ_LQZaEYtIgtpqPkQ==: stderr: -2026-04-20T11:38:15.431843Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8KtBIZ_LQZaEYtIgtpqPkQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:15.431852Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8KtBIZ_LQZaEYtIgtpqPkQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:15.431858Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8KtBIZ_LQZaEYtIgtpqPkQ==: stderr: stack backtrace: -2026-04-20T11:38:15.431866Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8KtBIZ_LQZaEYtIgtpqPkQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:15.431872Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8KtBIZ_LQZaEYtIgtpqPkQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:15.432006Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:15.432779Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:15.433071Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:15.498608Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:15.498650Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:15.498828Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:15.498996Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:15.499066Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:15.499447Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=631 blob_id=2147880485272552889482102718563234380 -2026-04-20T11:38:16.049606Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RptkDutxTLKLTXsOiIQBlA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:16.056892Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:16.067417Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1094296 cycles -2026-04-20T11:38:16.070031Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 112, 122, 36, 171, 123, 137, 39, 188, 172, 27, 165, 92, 71, 88, 44, 241, 142, 2, 4, 84, 227, 167, 84, 37, 208, 186, 65, 203, 91, 75, 242, 52, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 52, 123, 249, 97, 213, 65, 40, 172, 148, 31, 83, 199, 240, 160, 22, 91, 213, 156, 190, 49, 9, 60, 250, 119, 156, 202, 220, 12, 112, 217, 27, 177, 245, 185, 22, 37, 245, 165, 32, 109, 116, 65, 102, 180, 153, 95, 162, 163, 117, 32, 60, 250, 224, 234, 110, 91, 70, 80, 107, 177, 226, 93, 204, 6, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:16.130092Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:16.130139Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:16.206569Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:16.231573Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wWK9fMIeRwKy-Zh31Ig3lA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:16.234408Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wWK9fMIeRwKy-Zh31Ig3lA==: stderr: -2026-04-20T11:38:16.234433Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wWK9fMIeRwKy-Zh31Ig3lA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:16.234443Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wWK9fMIeRwKy-Zh31Ig3lA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:16.234450Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wWK9fMIeRwKy-Zh31Ig3lA==: stderr: stack backtrace: -2026-04-20T11:38:16.234456Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wWK9fMIeRwKy-Zh31Ig3lA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:16.234463Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wWK9fMIeRwKy-Zh31Ig3lA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:16.234557Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:16.235350Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:16.235640Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:16.302113Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:16.302157Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:16.302349Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:16.302549Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:16.302618Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:16.302997Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=632 blob_id=2147880486244546051931816451937492916 -2026-04-20T11:38:16.836241Z DEBUG sp1_core_executor_runner::native: CHILD sp1_l5PXyT7ZSk-h3ILihVh50w==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:16.843445Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:16.852536Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1093519 cycles -2026-04-20T11:38:16.855157Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 34, 227, 196, 47, 160, 16, 94, 234, 89, 220, 66, 42, 252, 52, 151, 238, 191, 101, 126, 120, 173, 210, 230, 165, 147, 39, 55, 204, 214, 224, 160, 15, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 58, 219, 36, 207, 123, 195, 106, 71, 172, 0, 33, 247, 77, 236, 169, 111, 111, 230, 99, 115, 113, 225, 219, 222, 104, 0, 236, 112, 167, 150, 251, 186, 196, 111, 237, 171, 110, 107, 108, 90, 156, 190, 234, 112, 187, 169, 100, 89, 72, 141, 217, 101, 175, 232, 178, 124, 70, 151, 163, 235, 41, 124, 77, 97, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:16.916576Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:16.916623Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:17.010504Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:17.042816Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qiY1ghohTGeA66onBeASCw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:17.045631Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qiY1ghohTGeA66onBeASCw==: stderr: -2026-04-20T11:38:17.045643Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qiY1ghohTGeA66onBeASCw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:17.045652Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qiY1ghohTGeA66onBeASCw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:17.045661Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qiY1ghohTGeA66onBeASCw==: stderr: stack backtrace: -2026-04-20T11:38:17.045667Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qiY1ghohTGeA66onBeASCw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:17.045673Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qiY1ghohTGeA66onBeASCw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:17.045818Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:17.046584Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:17.046899Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:17.113144Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:17.113187Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:17.113361Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:17.113552Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:17.113599Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:17.113997Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=633 blob_id=2147880487225025619982630691794491703 -2026-04-20T11:38:17.421221Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=8 height=582 prev_hash=0x2fc723023d25bb0ae6b594e5ae5b76f067f6c2fc3573e1df1b82474060a9d70a hash=0xae3b906521893494d9c5729eb0e76ad1ec2bece2a39f4912e530a6b55b14e707 producing_time=1.204482ms -2026-04-20T11:38:17.430041Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=582 current_state_root="18c6809a32125ccf85c96b3bca948fa39285fc87e1879be41a1038ca77b34ce508aaf0dc5d31623f17d11926f604174c17555c8ccd3721820f75c73e79749fe8" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc63692b1cd85c95a1ef06d3aeb9484b3625890a4c46534b5061bdb7f8d951ad9"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x3c617bb4a746e426857ed27cca7130ce892f8f40b20c34feaad55248573bece3, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xbe0454576f46d193db5308e2468362244159cfe167ad7abec6104d9c4c25b966, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x97a497c3bf0b00b8a4dd18c10a6018e55a39cfe976f1f25f711be47d8386741d, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x13c7cdafed49927cd02d45666e9a89e58c50f9f98669d43af791de628b43119e, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1daf79b5add6c8a5ab158ce7ba25118f47b8e203153bf2dd4e5d80d616065c5a, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x2a91b8723955f3d928795c57fb50770457a53a6af13170870bbd26cb918a207e, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf75fe108e5040beebb832b22efee0af00537287e13e06de2514d9a6d87dbccd9, len=625"] -2026-04-20T11:38:17.430409Z DEBUG StfBlueprint::apply_slot{context=Node da_height=582}: sov_chain_state: Setting next visible slot number next_visible_slot_number=500 -2026-04-20T11:38:17.430590Z DEBUG StfBlueprint::apply_slot{context=Node da_height=582}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xc63692b1cd85c95a1ef06d3aeb9484b3625890a4c46534b5061bdb7f8d951ad9}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:38:17.430811Z DEBUG StfBlueprint::apply_slot{context=Node da_height=582}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=18c6809a32125ccf85c96b3bca948fa39285fc87e1879be41a1038ca77b34ce508aaf0dc5d31623f17d11926f604174c17555c8ccd3721820f75c73e79749fe8 next_version=582 sesssion_starting_time=48.919µs -2026-04-20T11:38:17.431996Z DEBUG StfBlueprint::apply_slot{context=Node da_height=582}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=109701bfe5caa72466a1993c421756a6d8f6090cc5fbc21df0f2e3bbbd4dc5567d5fb7ac959e80548f1cdce4daf1136bb4d8ed30e93ec42244ecb7ad4fde3faa next_version=582 time=1.285692ms accesses_build_time=49.68µs finishing_session_time=1.157053ms -2026-04-20T11:38:17.432227Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f746fa8747663dde121c82ff0f740b96e360432b91c780a60ccf474c4fae09f987e" next_state_root="109701bfe5caa72466a1993c421756a6d8f6090cc5fbc21df0f2e3bbbd4dc5567d5fb7ac959e80548f1cdce4daf1136bb4d8ed30e93ec42244ecb7ad4fde3faa" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:38:17.432691Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=3 min=5 max=6 -2026-04-20T11:38:17.432744Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:38:17.432812Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=144 -2026-04-20T11:38:17.432932Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=510 -2026-04-20T11:38:17.433264Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:38:17.433807Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=510 sequence_number=634 -2026-04-20T11:38:17.433832Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=634 blob_id=2147880487611829662891764605605318155 visible_slot_number_after_increase=510 visible_slots_to_advance=10 -2026-04-20T11:38:17.433862Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=7 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:38:17.435720Z DEBUG manage_blob_submission_inside_task{blob_id=2147880487611829662891764605605318155 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x397c397ac676805e32a007a86b0b9c772155a45b9c7371b29508e8a22781b712 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=583 include_at=583 bytes=13 time=581.636µs -2026-04-20T11:38:17.447525Z DEBUG compute_state_update{scope="sequencer" rollup_height=149 slot_number=510}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:38:17.447549Z DEBUG compute_state_update{scope="sequencer" rollup_height=149 slot_number=510}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:38:17.447568Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00991175s -2026-04-20T11:38:17.447591Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:38:17.447593Z DEBUG compute_state_update{scope="sequencer" rollup_height=149 slot_number=510}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f740f7e7de2dc849a963275790b8db2c1a3cbfa3e383c8675561928e253721fd205 next_version=580 sesssion_starting_time=13.253544ms -2026-04-20T11:38:17.448552Z DEBUG compute_state_update{scope="sequencer" rollup_height=149 slot_number=510}: sov_state::nomt::prover_storage: computed next state root state_root=43590c88b888bee851d111a679ecbe9eee0a14932a538722c1e55835c1e086513e4620fef27a031d26bad6dea0ce9917542ed980d8edb8acf9a050ae3317b4cd next_version=580 time=14.265348ms accesses_build_time=51.47µs finishing_session_time=943.124µs -2026-04-20T11:38:17.637109Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AYTyf1fNQP-_vVFmOeCNSg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:17.644619Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:17.653865Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1109962 cycles -2026-04-20T11:38:17.656730Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 127, 170, 157, 215, 228, 4, 77, 107, 61, 209, 183, 61, 187, 110, 202, 74, 168, 53, 150, 148, 156, 191, 16, 83, 85, 215, 48, 194, 63, 196, 84, 107, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 102, 5, 136, 247, 0, 25, 154, 26, 131, 164, 151, 158, 171, 249, 246, 231, 197, 153, 47, 24, 252, 117, 243, 102, 86, 192, 246, 102, 127, 1, 185, 220, 206, 31, 252, 30, 253, 194, 146, 169, 213, 23, 5, 185, 79, 143, 0, 65, 65, 155, 34, 50, 135, 141, 216, 21, 203, 251, 123, 142, 67, 111, 15, 47, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:17.719061Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:17.719109Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:17.821507Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:17.856305Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ryBpH6vGR82fs6s7xRc-LQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:17.859155Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ryBpH6vGR82fs6s7xRc-LQ==: stderr: -2026-04-20T11:38:17.859182Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ryBpH6vGR82fs6s7xRc-LQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:17.859192Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ryBpH6vGR82fs6s7xRc-LQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:17.859199Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ryBpH6vGR82fs6s7xRc-LQ==: stderr: stack backtrace: -2026-04-20T11:38:17.859205Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ryBpH6vGR82fs6s7xRc-LQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:17.859212Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ryBpH6vGR82fs6s7xRc-LQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:17.859337Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:17.860062Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:17.860363Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:17.926745Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:17.926787Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:17.926989Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:17.927160Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:17.927229Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:17.927749Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=635 blob_id=2147880488209096867607338996258933834 -2026-04-20T11:38:18.440827Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PBRpDs_DT7-Cd1h61ysJrQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:18.448226Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:18.457466Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1112887 cycles -2026-04-20T11:38:18.460217Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 12, 32, 233, 216, 60, 233, 110, 18, 137, 122, 29, 152, 123, 177, 9, 252, 153, 15, 133, 168, 147, 114, 99, 218, 239, 120, 112, 62, 19, 123, 79, 103, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 81, 17, 15, 40, 72, 190, 83, 29, 80, 182, 85, 154, 85, 253, 3, 111, 233, 53, 135, 226, 86, 139, 46, 193, 147, 69, 147, 225, 105, 87, 120, 107, 147, 238, 174, 140, 140, 67, 247, 64, 72, 248, 169, 31, 225, 93, 196, 250, 154, 107, 8, 139, 92, 5, 48, 21, 30, 109, 172, 105, 125, 98, 171, 84, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:18.523468Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:18.523513Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:18.532554Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:18.565888Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9d-UJ3jNR_e6DP8ZM8pAwg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:18.568714Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9d-UJ3jNR_e6DP8ZM8pAwg==: stderr: -2026-04-20T11:38:18.568729Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9d-UJ3jNR_e6DP8ZM8pAwg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:18.568740Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9d-UJ3jNR_e6DP8ZM8pAwg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:18.568751Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9d-UJ3jNR_e6DP8ZM8pAwg==: stderr: stack backtrace: -2026-04-20T11:38:18.568761Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9d-UJ3jNR_e6DP8ZM8pAwg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:18.568789Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9d-UJ3jNR_e6DP8ZM8pAwg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:18.568888Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:18.569669Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:18.569964Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:18.637565Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:18.637607Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:18.637770Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:18.637938Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:18.638007Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:18.638452Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=636 blob_id=2147880489067412927013367251546277126 -2026-04-20T11:38:19.176093Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oBN60RZEQXCvj2W18YQP2w==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:19.183128Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:19.192083Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1073277 cycles -2026-04-20T11:38:19.194668Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 83, 41, 183, 201, 7, 91, 86, 102, 179, 86, 149, 208, 192, 54, 94, 67, 9, 10, 187, 223, 244, 174, 17, 97, 25, 20, 155, 208, 112, 67, 155, 168, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 81, 181, 19, 49, 185, 191, 211, 178, 100, 122, 105, 94, 107, 185, 223, 215, 245, 6, 66, 127, 156, 236, 66, 83, 108, 230, 111, 162, 204, 49, 131, 6, 203, 127, 236, 201, 13, 248, 232, 114, 25, 198, 149, 106, 1, 74, 8, 125, 35, 87, 250, 192, 21, 177, 185, 90, 8, 190, 17, 229, 64, 207, 44, 51, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:19.255065Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:19.255109Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:19.345493Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:19.380166Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XJTQKjG1Q_SX-loSNfDRAw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:19.383011Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XJTQKjG1Q_SX-loSNfDRAw==: stderr: -2026-04-20T11:38:19.383036Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XJTQKjG1Q_SX-loSNfDRAw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:19.383047Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XJTQKjG1Q_SX-loSNfDRAw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:19.383053Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XJTQKjG1Q_SX-loSNfDRAw==: stderr: stack backtrace: -2026-04-20T11:38:19.383059Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XJTQKjG1Q_SX-loSNfDRAw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:19.383066Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XJTQKjG1Q_SX-loSNfDRAw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:19.383192Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:19.383921Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:19.384209Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:19.446793Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:19.446830Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:19.447011Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:19.447164Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:19.447233Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:19.447623Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=637 blob_id=2147880490046660273480903776435242548 -2026-04-20T11:38:19.981043Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YCHe3Nh3S3uVVc_4XnAtsQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:19.988429Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:19.997584Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1101056 cycles -2026-04-20T11:38:19.998603Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 16, 195, 77, 246, 64, 175, 39, 94, 3, 150, 29, 193, 234, 158, 39, 147, 73, 19, 19, 98, 128, 124, 155, 216, 72, 201, 232, 162, 108, 96, 211, 124, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 5, 157, 178, 228, 4, 164, 49, 29, 51, 203, 106, 188, 106, 192, 39, 149, 79, 218, 89, 69, 168, 85, 55, 38, 94, 235, 209, 180, 181, 101, 33, 186, 40, 188, 12, 250, 177, 188, 195, 226, 45, 170, 183, 158, 245, 31, 14, 111, 107, 183, 224, 33, 108, 90, 255, 29, 3, 104, 152, 79, 212, 119, 5, 45, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:20.061205Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:20.061248Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:20.156652Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:20.187603Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Cwz5ZOexQNeHWXcvBoMmMg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:20.190434Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Cwz5ZOexQNeHWXcvBoMmMg==: stderr: -2026-04-20T11:38:20.190447Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Cwz5ZOexQNeHWXcvBoMmMg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:20.190455Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Cwz5ZOexQNeHWXcvBoMmMg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:20.190463Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Cwz5ZOexQNeHWXcvBoMmMg==: stderr: stack backtrace: -2026-04-20T11:38:20.190469Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Cwz5ZOexQNeHWXcvBoMmMg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:20.190475Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Cwz5ZOexQNeHWXcvBoMmMg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:20.190636Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:20.191389Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:20.191679Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:20.259512Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:20.259556Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:20.259691Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:20.259864Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:20.259953Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:20.260357Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=638 blob_id=2147880491028240727885636951519637714 -2026-04-20T11:38:20.805242Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1toVKbD7QbGj2g0po4hOOw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:20.812753Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:20.822863Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1113441 cycles -2026-04-20T11:38:20.825322Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 92, 150, 46, 116, 10, 227, 217, 4, 41, 69, 213, 83, 105, 60, 226, 42, 203, 3, 227, 32, 34, 115, 68, 211, 43, 77, 131, 213, 16, 23, 139, 84, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 30, 220, 200, 73, 147, 88, 242, 21, 24, 54, 158, 236, 229, 165, 124, 61, 3, 157, 195, 239, 224, 83, 196, 103, 175, 105, 176, 4, 1, 18, 187, 65, 192, 246, 67, 121, 91, 176, 182, 141, 169, 134, 193, 36, 79, 88, 38, 185, 204, 154, 52, 14, 59, 103, 187, 112, 122, 206, 7, 157, 201, 205, 188, 80, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:20.887429Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:20.887474Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:20.967017Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:21.002444Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0VrXsZHEQt2_UT1Mh3AaOQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:21.005251Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0VrXsZHEQt2_UT1Mh3AaOQ==: stderr: -2026-04-20T11:38:21.005264Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0VrXsZHEQt2_UT1Mh3AaOQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:21.005273Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0VrXsZHEQt2_UT1Mh3AaOQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:21.005281Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0VrXsZHEQt2_UT1Mh3AaOQ==: stderr: stack backtrace: -2026-04-20T11:38:21.005287Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0VrXsZHEQt2_UT1Mh3AaOQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:21.005293Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0VrXsZHEQt2_UT1Mh3AaOQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:21.005472Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:21.006200Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:21.006497Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:21.073309Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:21.073362Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:21.073502Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:21.073660Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:21.073717Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:21.074149Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=639 blob_id=2147880492012314331006023820656192820 -2026-04-20T11:38:21.616803Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jx7pkRaNQfeNp_JbMFJ3bw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:21.624015Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:21.633551Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1088769 cycles -2026-04-20T11:38:21.635647Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 46, 163, 196, 14, 234, 184, 240, 3, 31, 175, 206, 111, 212, 24, 156, 146, 139, 34, 127, 82, 52, 10, 21, 206, 204, 118, 187, 236, 253, 82, 177, 220, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 47, 242, 12, 252, 164, 123, 221, 232, 238, 131, 171, 182, 97, 36, 49, 186, 214, 196, 73, 214, 215, 236, 50, 91, 98, 74, 255, 63, 206, 168, 29, 248, 146, 129, 210, 78, 106, 75, 67, 240, 229, 204, 146, 147, 9, 150, 101, 89, 14, 119, 245, 196, 212, 40, 186, 247, 202, 7, 45, 3, 38, 61, 90, 91, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:21.697280Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:21.697342Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:21.781352Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:21.816704Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pDK7BA5HSMa7clNFWksMCw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:21.819524Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pDK7BA5HSMa7clNFWksMCw==: stderr: -2026-04-20T11:38:21.819552Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pDK7BA5HSMa7clNFWksMCw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:21.819562Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pDK7BA5HSMa7clNFWksMCw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:21.819569Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pDK7BA5HSMa7clNFWksMCw==: stderr: stack backtrace: -2026-04-20T11:38:21.819575Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pDK7BA5HSMa7clNFWksMCw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:21.819582Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pDK7BA5HSMa7clNFWksMCw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:21.819694Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:21.820417Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:21.820706Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:21.886498Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:21.886540Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:21.886696Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:21.886866Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:21.886924Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:21.887300Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=640 blob_id=2147880492995209929831304940068197808 -2026-04-20T11:38:22.425037Z DEBUG sp1_core_executor_runner::native: CHILD sp1_flxazBfXRbexqbPzhcCvYQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:22.432457Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:22.442586Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1123209 cycles -2026-04-20T11:38:22.445100Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 13, 222, 224, 151, 112, 127, 144, 6, 207, 222, 171, 28, 125, 253, 48, 153, 172, 134, 35, 35, 84, 177, 84, 20, 58, 22, 190, 40, 47, 215, 4, 232, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 71, 198, 189, 199, 156, 173, 214, 10, 69, 92, 127, 174, 43, 38, 34, 193, 129, 190, 44, 119, 95, 35, 153, 231, 233, 58, 153, 88, 126, 175, 12, 97, 235, 205, 205, 236, 144, 93, 222, 210, 168, 91, 238, 193, 211, 176, 148, 23, 226, 79, 249, 230, 174, 31, 178, 6, 103, 225, 172, 71, 126, 161, 136, 187, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:22.464220Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:22.464242Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:22.492597Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:22.528963Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zSwIffC3Qiii10l6NQXc8w==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:22.531834Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zSwIffC3Qiii10l6NQXc8w==: stderr: -2026-04-20T11:38:22.531846Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zSwIffC3Qiii10l6NQXc8w==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:22.531855Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zSwIffC3Qiii10l6NQXc8w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:22.531864Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zSwIffC3Qiii10l6NQXc8w==: stderr: stack backtrace: -2026-04-20T11:38:22.531870Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zSwIffC3Qiii10l6NQXc8w==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:22.531876Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zSwIffC3Qiii10l6NQXc8w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:22.531972Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:22.532785Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:22.533076Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:22.598943Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:22.598986Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:22.599118Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:22.599300Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:22.599388Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:22.599958Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=641 blob_id=2147880493857183777725871103356598847 -2026-04-20T11:38:23.158165Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ew-AZdNnTfmNgahHAoHARw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:23.165828Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:23.180051Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1134813 cycles -2026-04-20T11:38:23.182610Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 10, 196, 156, 204, 154, 127, 99, 225, 254, 151, 201, 121, 18, 8, 189, 1, 161, 144, 97, 145, 250, 154, 131, 98, 28, 43, 13, 165, 222, 137, 43, 102, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 33, 147, 189, 235, 38, 75, 31, 108, 238, 16, 16, 118, 183, 42, 5, 76, 116, 222, 189, 21, 4, 87, 38, 214, 77, 216, 186, 186, 134, 193, 175, 115, 41, 117, 46, 215, 99, 220, 114, 58, 195, 130, 59, 213, 145, 65, 238, 126, 51, 22, 231, 222, 192, 53, 85, 107, 87, 74, 94, 103, 168, 73, 47, 121, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:23.242760Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:23.242813Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:23.305868Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:23.341238Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nBmDYEoaQq-IeqEwUfOFpw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:23.344076Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nBmDYEoaQq-IeqEwUfOFpw==: stderr: -2026-04-20T11:38:23.344103Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nBmDYEoaQq-IeqEwUfOFpw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:23.344116Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nBmDYEoaQq-IeqEwUfOFpw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:23.344124Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nBmDYEoaQq-IeqEwUfOFpw==: stderr: stack backtrace: -2026-04-20T11:38:23.344133Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nBmDYEoaQq-IeqEwUfOFpw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:23.344141Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nBmDYEoaQq-IeqEwUfOFpw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:23.344195Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:23.345000Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:23.345292Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:23.412494Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:23.412544Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:23.412763Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:23.412943Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:23.413015Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:23.413427Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=642 blob_id=2147880494840020712165396587995041582 -2026-04-20T11:38:23.422861Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=9 height=583 prev_hash=0xae3b906521893494d9c5729eb0e76ad1ec2bece2a39f4912e530a6b55b14e707 hash=0x62cea48f26c89e942934543ac942c4f00b0c74c3c401ad168802d58a582b9295 producing_time=911.464µs -2026-04-20T11:38:23.429480Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=583 current_state_root="109701bfe5caa72466a1993c421756a6d8f6090cc5fbc21df0f2e3bbbd4dc5567d5fb7ac959e80548f1cdce4daf1136bb4d8ed30e93ec42244ecb7ad4fde3faa" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x397c397ac676805e32a007a86b0b9c772155a45b9c7371b29508e8a22781b712"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x02f4732731056fd677e2998967446c71fdedf5725a5e7c31c3ff2f7084ecc1fb, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x52d9eeb464093765e25d0f9cf63c1b86369ec44e6da8d7012964171562dab9aa, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x4a3b71860e2dc657331b51f5d55fd74b20a7290950b21d94664cfe44edf9d92a, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0d9fb8c7849d737b16169b2b2ca26004198746df1e10ddd173c32c936ece74d7, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc67f782b12db03adb9e88b9654da09678f5031ffb25fe0ce05adac357bf8d936, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x8eac3fa7402728ddb20070f3005518bffedafabc9631c20d0c70d96c6a6b883b, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x74ee69fb80af2e0767bd635239393523ce58f51ec9f3933ebc76f0976ad07150, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xcd4a3df9ae0c1392d7812187cb38fa74c58a5e4ab911d9df7a7b8d332f2d037e, len=625"] -2026-04-20T11:38:23.429969Z DEBUG StfBlueprint::apply_slot{context=Node da_height=583}: sov_chain_state: Setting next visible slot number next_visible_slot_number=510 -2026-04-20T11:38:23.430408Z DEBUG StfBlueprint::apply_slot{context=Node da_height=583}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x397c397ac676805e32a007a86b0b9c772155a45b9c7371b29508e8a22781b712}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=7 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:38:23.430632Z DEBUG StfBlueprint::apply_slot{context=Node da_height=583}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=109701bfe5caa72466a1993c421756a6d8f6090cc5fbc21df0f2e3bbbd4dc5567d5fb7ac959e80548f1cdce4daf1136bb4d8ed30e93ec42244ecb7ad4fde3faa next_version=583 sesssion_starting_time=46.29µs -2026-04-20T11:38:23.431666Z DEBUG StfBlueprint::apply_slot{context=Node da_height=583}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=43590c88b888bee851d111a679ecbe9eee0a14932a538722c1e55835c1e086515e38a70050fc57488bc575dbd9df68c12fe98e31aa002f9eab4c11d572c1ffc1 next_version=583 time=1.145753ms accesses_build_time=64.58µs finishing_session_time=1.011033ms -2026-04-20T11:38:23.431895Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="3c617bb4a746e426857ed27cca7130ce892f8f40b20c34feaad55248573bece3" -2026-04-20T11:38:23.431917Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="be0454576f46d193db5308e2468362244159cfe167ad7abec6104d9c4c25b966" -2026-04-20T11:38:23.431930Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="97a497c3bf0b00b8a4dd18c10a6018e55a39cfe976f1f25f711be47d8386741d" -2026-04-20T11:38:23.431942Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="13c7cdafed49927cd02d45666e9a89e58c50f9f98669d43af791de628b43119e" -2026-04-20T11:38:23.431954Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="1daf79b5add6c8a5ab158ce7ba25118f47b8e203153bf2dd4e5d80d616065c5a" -2026-04-20T11:38:23.431967Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="2a91b8723955f3d928795c57fb50770457a53a6af13170870bbd26cb918a207e" -2026-04-20T11:38:23.431993Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="f75fe108e5040beebb832b22efee0af00537287e13e06de2514d9a6d87dbccd9" -2026-04-20T11:38:23.432005Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="109701bfe5caa72466a1993c421756a6d8f6090cc5fbc21df0f2e3bbbd4dc5567d5fb7ac959e80548f1cdce4daf1136bb4d8ed30e93ec42244ecb7ad4fde3faa" next_state_root="43590c88b888bee851d111a679ecbe9eee0a14932a538722c1e55835c1e086515e38a70050fc57488bc575dbd9df68c12fe98e31aa002f9eab4c11d572c1ffc1" aggregated_proofs=0 proof_receipts=7 -2026-04-20T11:38:23.432541Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=4 min=5 max=6 -2026-04-20T11:38:23.432584Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:38:23.432649Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=145 -2026-04-20T11:38:23.432749Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=520 -2026-04-20T11:38:23.433031Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:38:23.433535Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=520 sequence_number=643 -2026-04-20T11:38:23.433560Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=643 blob_id=2147880494865400517549228292957292069 visible_slot_number_after_increase=520 visible_slots_to_advance=10 -2026-04-20T11:38:23.433590Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=8 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:38:23.435178Z DEBUG manage_blob_submission_inside_task{blob_id=2147880494865400517549228292957292069 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xde210381a754e4cb0ce610372567860910f1567a4dc141262daa52e4f860e5fb sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=584 include_at=584 bytes=13 time=529.606µs -2026-04-20T11:38:23.443744Z DEBUG compute_state_update{scope="sequencer" rollup_height=150 slot_number=520}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:38:23.443792Z DEBUG sov_stf_runner::runner: Block execution complete time=5.996201529s -2026-04-20T11:38:23.443802Z DEBUG compute_state_update{scope="sequencer" rollup_height=150 slot_number=520}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:38:23.443820Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:38:23.443866Z DEBUG compute_state_update{scope="sequencer" rollup_height=150 slot_number=520}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f740f7e7de2dc849a963275790b8db2c1a3cbfa3e383c8675561928e253721fd205 next_version=580 sesssion_starting_time=9.833277ms -2026-04-20T11:38:23.445008Z DEBUG compute_state_update{scope="sequencer" rollup_height=150 slot_number=520}: sov_state::nomt::prover_storage: computed next state root state_root=02091ca7d629e90171e6a4b780d820c3ae5c4946228c623479f42f89fc86133060f07d027f7dc6718df7ac5db8bd7a4d5d8c5dde647a6c06c2620d9157fc235c next_version=580 time=11.014569ms accesses_build_time=38.5µs finishing_session_time=1.117352ms -2026-04-20T11:38:23.980095Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tG7zyhOJS2KO1KuJeW8JsA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:23.987429Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:23.998285Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1097231 cycles -2026-04-20T11:38:24.000746Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 88, 69, 163, 34, 135, 30, 221, 200, 209, 72, 121, 234, 66, 52, 214, 123, 195, 221, 34, 239, 74, 42, 6, 194, 168, 193, 70, 234, 33, 239, 157, 71, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 79, 192, 89, 23, 145, 229, 192, 190, 97, 113, 15, 84, 12, 220, 150, 109, 236, 28, 168, 146, 17, 65, 68, 179, 94, 3, 42, 199, 95, 31, 215, 117, 13, 187, 44, 135, 25, 20, 100, 124, 224, 246, 160, 82, 185, 92, 51, 191, 165, 28, 31, 157, 66, 163, 115, 218, 194, 109, 54, 141, 1, 2, 132, 144, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:24.061553Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:24.061600Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:24.121311Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:24.154541Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eZhUEFg1SZSStv8-64LU-A==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:24.157377Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eZhUEFg1SZSStv8-64LU-A==: stderr: -2026-04-20T11:38:24.157401Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eZhUEFg1SZSStv8-64LU-A==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:24.157411Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eZhUEFg1SZSStv8-64LU-A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:24.157418Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eZhUEFg1SZSStv8-64LU-A==: stderr: stack backtrace: -2026-04-20T11:38:24.157424Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eZhUEFg1SZSStv8-64LU-A==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:24.157430Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eZhUEFg1SZSStv8-64LU-A==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:24.157528Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:24.158276Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:24.158594Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:24.224688Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:24.224732Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:24.224898Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:24.225077Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:24.225135Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:24.225475Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=644 blob_id=2147880495821699798010899625153712859 -2026-04-20T11:38:24.790686Z DEBUG sp1_core_executor_runner::native: CHILD sp1_lil1L5e-RN6YDpJTjn6cyg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:24.798290Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:24.809307Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1126154 cycles -2026-04-20T11:38:24.811813Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 31, 185, 130, 227, 43, 199, 237, 80, 0, 102, 213, 86, 245, 237, 193, 37, 96, 150, 231, 173, 243, 215, 15, 89, 237, 184, 66, 41, 10, 14, 118, 147, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 102, 28, 220, 183, 99, 135, 186, 221, 154, 184, 25, 123, 217, 72, 83, 22, 239, 206, 234, 113, 255, 88, 66, 208, 40, 226, 24, 184, 151, 130, 150, 162, 232, 221, 202, 227, 1, 43, 152, 128, 92, 51, 190, 208, 194, 40, 201, 194, 85, 130, 3, 56, 165, 233, 122, 160, 57, 53, 75, 244, 193, 252, 200, 223, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:24.873369Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:24.873415Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:24.933627Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:24.967529Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9liQTncASF23afDJYoeWCQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:24.970406Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9liQTncASF23afDJYoeWCQ==: stderr: -2026-04-20T11:38:24.970431Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9liQTncASF23afDJYoeWCQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:24.970441Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9liQTncASF23afDJYoeWCQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:24.970448Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9liQTncASF23afDJYoeWCQ==: stderr: stack backtrace: -2026-04-20T11:38:24.970454Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9liQTncASF23afDJYoeWCQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:24.970461Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9liQTncASF23afDJYoeWCQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:24.970584Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:24.971349Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:24.971638Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:25.036682Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:25.036726Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:25.036890Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:25.037062Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:25.037119Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:25.037567Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=645 blob_id=2147880496803338691981671817167587372 -2026-04-20T11:38:25.589905Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SDn7wSQMQ6axX1vN4DBKPA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:25.597177Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:25.607186Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1092111 cycles -2026-04-20T11:38:25.609680Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 92, 143, 84, 161, 229, 166, 92, 118, 53, 166, 225, 202, 143, 217, 86, 45, 38, 34, 214, 131, 247, 232, 128, 170, 169, 194, 124, 247, 199, 32, 114, 14, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 23, 137, 254, 117, 202, 53, 200, 57, 236, 205, 136, 60, 16, 113, 205, 131, 213, 162, 191, 182, 151, 79, 156, 20, 211, 14, 26, 64, 178, 8, 78, 41, 176, 84, 175, 214, 151, 253, 19, 84, 134, 194, 76, 0, 32, 200, 234, 136, 236, 63, 254, 153, 177, 8, 251, 180, 137, 154, 186, 198, 202, 31, 0, 198, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:25.670349Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:25.670395Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:25.744479Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:25.779201Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QFjZ7p5aRNGVYDa0YehVJw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:25.782010Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QFjZ7p5aRNGVYDa0YehVJw==: stderr: -2026-04-20T11:38:25.782023Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QFjZ7p5aRNGVYDa0YehVJw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:25.782032Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QFjZ7p5aRNGVYDa0YehVJw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:25.782040Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QFjZ7p5aRNGVYDa0YehVJw==: stderr: stack backtrace: -2026-04-20T11:38:25.782046Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QFjZ7p5aRNGVYDa0YehVJw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:25.782052Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QFjZ7p5aRNGVYDa0YehVJw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:25.782180Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:25.782912Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:25.783204Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:25.848032Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:25.848076Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:25.848279Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:25.848468Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:25.848534Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:25.848982Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=646 blob_id=2147880497784930343922317100701509807 -2026-04-20T11:38:26.401785Z DEBUG sp1_core_executor_runner::native: CHILD sp1_s7TZDrRdTVmTJzjPRu7lbw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:26.409154Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:26.418959Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1099268 cycles -2026-04-20T11:38:26.421502Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 97, 224, 85, 239, 162, 140, 39, 137, 120, 216, 56, 127, 230, 62, 240, 2, 7, 35, 33, 192, 15, 125, 101, 100, 14, 207, 67, 96, 40, 124, 176, 207, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 122, 104, 228, 128, 162, 182, 145, 130, 255, 118, 187, 154, 228, 83, 220, 141, 80, 95, 59, 47, 114, 12, 139, 197, 77, 234, 78, 129, 130, 167, 188, 65, 9, 19, 83, 240, 114, 190, 218, 225, 180, 149, 114, 159, 11, 113, 83, 80, 173, 77, 253, 50, 63, 222, 91, 216, 163, 206, 30, 69, 231, 225, 53, 78, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:26.482826Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:26.482871Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:26.555966Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:26.589058Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rUfHXL2gQJGVPmuk-3wzVg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:26.591891Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rUfHXL2gQJGVPmuk-3wzVg==: stderr: -2026-04-20T11:38:26.591916Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rUfHXL2gQJGVPmuk-3wzVg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:26.591925Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rUfHXL2gQJGVPmuk-3wzVg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:26.591931Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rUfHXL2gQJGVPmuk-3wzVg==: stderr: stack backtrace: -2026-04-20T11:38:26.591939Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rUfHXL2gQJGVPmuk-3wzVg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:26.591945Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rUfHXL2gQJGVPmuk-3wzVg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:26.592046Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:26.592758Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:26.593046Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:26.658381Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:26.658425Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:26.658595Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:26.658761Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:26.658834Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:26.659213Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=647 blob_id=2147880498764208700103467741339758141 -2026-04-20T11:38:27.203181Z DEBUG sp1_core_executor_runner::native: CHILD sp1_OVUrrWaZQfaTC86TyogVRg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:27.210777Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:27.219816Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1129618 cycles -2026-04-20T11:38:27.222344Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 31, 155, 12, 162, 26, 66, 219, 12, 243, 237, 74, 120, 179, 98, 29, 236, 99, 222, 26, 167, 54, 57, 83, 57, 75, 183, 247, 232, 86, 52, 209, 197, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 52, 19, 231, 14, 37, 147, 15, 115, 25, 68, 85, 222, 69, 181, 133, 231, 140, 37, 20, 149, 221, 83, 82, 55, 204, 68, 198, 148, 165, 74, 237, 60, 77, 239, 96, 96, 212, 50, 166, 241, 37, 55, 146, 155, 109, 221, 253, 201, 194, 158, 47, 186, 220, 9, 97, 129, 33, 26, 206, 223, 199, 168, 22, 129, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:27.286437Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:27.286480Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:27.367287Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:27.401224Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EFmOdyp2RWq-Cdo-VwgAuA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:27.404068Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EFmOdyp2RWq-Cdo-VwgAuA==: stderr: -2026-04-20T11:38:27.404092Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EFmOdyp2RWq-Cdo-VwgAuA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:27.404102Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EFmOdyp2RWq-Cdo-VwgAuA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:27.404109Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EFmOdyp2RWq-Cdo-VwgAuA==: stderr: stack backtrace: -2026-04-20T11:38:27.404115Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EFmOdyp2RWq-Cdo-VwgAuA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:27.404122Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EFmOdyp2RWq-Cdo-VwgAuA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:27.404208Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:27.404981Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:27.405269Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:27.469817Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:27.469861Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:27.470074Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:27.470240Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:27.470310Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:27.470900Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=648 blob_id=2147880499745866463115889197130619733 -2026-04-20T11:38:28.012276Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Esz4vRLESsC2ZltUMPmDSQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:28.019275Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:28.028040Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1062622 cycles -2026-04-20T11:38:28.030525Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 9, 206, 113, 210, 46, 184, 115, 239, 177, 170, 237, 146, 115, 78, 191, 13, 122, 214, 194, 65, 79, 14, 209, 133, 35, 10, 47, 158, 169, 213, 41, 49, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 85, 211, 212, 246, 205, 126, 170, 18, 200, 33, 74, 218, 37, 120, 238, 80, 33, 53, 251, 244, 248, 152, 151, 166, 84, 9, 93, 10, 128, 215, 164, 76, 213, 243, 119, 220, 68, 37, 209, 138, 149, 96, 178, 225, 217, 103, 26, 48, 53, 218, 57, 100, 81, 238, 82, 197, 234, 120, 8, 107, 36, 214, 196, 55, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:28.090926Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:28.090971Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:28.178073Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:28.211780Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kLBU7tFISP-97kL7vLRqBw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:28.214596Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kLBU7tFISP-97kL7vLRqBw==: stderr: -2026-04-20T11:38:28.214620Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kLBU7tFISP-97kL7vLRqBw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:28.214630Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kLBU7tFISP-97kL7vLRqBw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:28.214636Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kLBU7tFISP-97kL7vLRqBw==: stderr: stack backtrace: -2026-04-20T11:38:28.214643Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kLBU7tFISP-97kL7vLRqBw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:28.214649Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kLBU7tFISP-97kL7vLRqBw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:28.214745Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:28.215502Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:28.215809Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:28.282037Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:28.282080Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:28.282234Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:28.282399Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:28.282469Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:28.282869Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=649 blob_id=2147880500727514539484366251796814936 -2026-04-20T11:38:28.829294Z DEBUG sp1_core_executor_runner::native: CHILD sp1_WQVGRXVQTpKW2o8uN1HMdQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:28.836881Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:28.845714Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1135270 cycles -2026-04-20T11:38:28.848240Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 118, 114, 241, 95, 134, 126, 132, 100, 46, 132, 179, 33, 95, 239, 225, 13, 113, 151, 8, 166, 26, 241, 83, 241, 175, 153, 65, 142, 159, 127, 51, 216, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 8, 190, 135, 66, 212, 147, 191, 6, 187, 99, 170, 32, 172, 107, 191, 228, 123, 69, 130, 140, 227, 94, 159, 229, 234, 20, 130, 136, 191, 166, 132, 25, 38, 191, 135, 192, 33, 71, 88, 226, 197, 18, 78, 87, 18, 230, 5, 22, 15, 101, 135, 17, 41, 122, 236, 76, 189, 52, 125, 188, 213, 23, 91, 208, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:28.911346Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:28.911393Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:28.989186Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:29.023920Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qwqz_6LuRUG_gjOwilaAmw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:29.026753Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qwqz_6LuRUG_gjOwilaAmw==: stderr: -2026-04-20T11:38:29.026780Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qwqz_6LuRUG_gjOwilaAmw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:29.026806Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qwqz_6LuRUG_gjOwilaAmw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:29.026813Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qwqz_6LuRUG_gjOwilaAmw==: stderr: stack backtrace: -2026-04-20T11:38:29.026819Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qwqz_6LuRUG_gjOwilaAmw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:29.026826Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qwqz_6LuRUG_gjOwilaAmw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:29.026886Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:29.027675Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:29.027965Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:29.093039Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:29.093083Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:29.093303Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:29.093496Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:29.093566Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:29.093979Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=650 blob_id=2147880501707903796726404325993827501 -2026-04-20T11:38:29.425584Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=8 height=584 prev_hash=0x62cea48f26c89e942934543ac942c4f00b0c74c3c401ad168802d58a582b9295 hash=0x98acb3b03e51c820e6be47b627d45660cf68d9097ec3814ee1489769fa93cb77 producing_time=1.239461ms -2026-04-20T11:38:29.435632Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=584 current_state_root="43590c88b888bee851d111a679ecbe9eee0a14932a538722c1e55835c1e086515e38a70050fc57488bc575dbd9df68c12fe98e31aa002f9eab4c11d572c1ffc1" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xde210381a754e4cb0ce610372567860910f1567a4dc141262daa52e4f860e5fb"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x27a2790f30bfd559b16e1c9f5b94fe7ec660a0b5fa6cf46d1abbf651aee9bd09, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x61441146d21075ccec32148d878df252d62b697432c44bb68bba229b6b300278, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xdf7b0c20a4fcbf40b593cb2969ae691daf765ba08c46d398fbf4c21fe7605be6, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xaf176153fba7bcf60ac4f73ef05de219eb7cdecf351f86561c9c8ac1a1a8f208, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xdf54f1629f144f33c8c4228e171364f4314561deafea8f65d58bd36375f93dcb, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1fc956730803cd5fb116e1eb256e14fbef09748fcc09868e4b14398c2f8cb9db, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x830317d79d95b00fec8619085cede6ceac25a53dd53feeee3b8c545298978db8, len=625"] -2026-04-20T11:38:29.436193Z DEBUG StfBlueprint::apply_slot{context=Node da_height=584}: sov_chain_state: Setting next visible slot number next_visible_slot_number=520 -2026-04-20T11:38:29.436617Z DEBUG StfBlueprint::apply_slot{context=Node da_height=584}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xde210381a754e4cb0ce610372567860910f1567a4dc141262daa52e4f860e5fb}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=8 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:38:29.436843Z DEBUG StfBlueprint::apply_slot{context=Node da_height=584}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=43590c88b888bee851d111a679ecbe9eee0a14932a538722c1e55835c1e086515e38a70050fc57488bc575dbd9df68c12fe98e31aa002f9eab4c11d572c1ffc1 next_version=584 sesssion_starting_time=48.69µs -2026-04-20T11:38:29.438035Z DEBUG StfBlueprint::apply_slot{context=Node da_height=584}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=02091ca7d629e90171e6a4b780d820c3ae5c4946228c623479f42f89fc8613303d023ace83586df1b3530683e2cb495d3245e30f264169dce725a9438e6b2d65 next_version=584 time=1.300591ms accesses_build_time=59.039µs finishing_session_time=1.161592ms -2026-04-20T11:38:29.438234Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="02f4732731056fd677e2998967446c71fdedf5725a5e7c31c3ff2f7084ecc1fb" -2026-04-20T11:38:29.438250Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="52d9eeb464093765e25d0f9cf63c1b86369ec44e6da8d7012964171562dab9aa" -2026-04-20T11:38:29.438260Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="4a3b71860e2dc657331b51f5d55fd74b20a7290950b21d94664cfe44edf9d92a" -2026-04-20T11:38:29.438286Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="0d9fb8c7849d737b16169b2b2ca26004198746df1e10ddd173c32c936ece74d7" -2026-04-20T11:38:29.438298Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="c67f782b12db03adb9e88b9654da09678f5031ffb25fe0ce05adac357bf8d936" -2026-04-20T11:38:29.438311Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="8eac3fa7402728ddb20070f3005518bffedafabc9631c20d0c70d96c6a6b883b" -2026-04-20T11:38:29.438342Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="74ee69fb80af2e0767bd635239393523ce58f51ec9f3933ebc76f0976ad07150" -2026-04-20T11:38:29.438355Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="cd4a3df9ae0c1392d7812187cb38fa74c58a5e4ab911d9df7a7b8d332f2d037e" -2026-04-20T11:38:29.438366Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="43590c88b888bee851d111a679ecbe9eee0a14932a538722c1e55835c1e086515e38a70050fc57488bc575dbd9df68c12fe98e31aa002f9eab4c11d572c1ffc1" next_state_root="02091ca7d629e90171e6a4b780d820c3ae5c4946228c623479f42f89fc8613303d023ace83586df1b3530683e2cb495d3245e30f264169dce725a9438e6b2d65" aggregated_proofs=0 proof_receipts=8 -2026-04-20T11:38:29.438849Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=5 min=5 max=6 -2026-04-20T11:38:29.438894Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:38:29.438958Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=146 -2026-04-20T11:38:29.439085Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=530 -2026-04-20T11:38:29.439396Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:38:29.439862Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=530 sequence_number=651 -2026-04-20T11:38:29.439890Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=651 blob_id=2147880502126181834874735537498443260 visible_slot_number_after_increase=530 visible_slots_to_advance=10 -2026-04-20T11:38:29.439913Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=7 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:38:29.441619Z DEBUG manage_blob_submission_inside_task{blob_id=2147880502126181834874735537498443260 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x7fb64014a619adc6cdd1a84056cb056bf1ffa71139064cc74a5edcc897f5cbbd sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=585 include_at=585 bytes=13 time=699.405µs -2026-04-20T11:38:29.457005Z DEBUG compute_state_update{scope="sequencer" rollup_height=151 slot_number=530}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:38:29.457035Z DEBUG compute_state_update{scope="sequencer" rollup_height=151 slot_number=530}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:38:29.457046Z DEBUG sov_stf_runner::runner: Block execution complete time=6.013228129s -2026-04-20T11:38:29.457064Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:38:29.457081Z DEBUG compute_state_update{scope="sequencer" rollup_height=151 slot_number=530}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f740f7e7de2dc849a963275790b8db2c1a3cbfa3e383c8675561928e253721fd205 next_version=580 sesssion_starting_time=16.675763ms -2026-04-20T11:38:29.458503Z DEBUG compute_state_update{scope="sequencer" rollup_height=151 slot_number=530}: sov_state::nomt::prover_storage: computed next state root state_root=3f8d8ef2a0ea9281bfff76df8472ade64f3fc897bd1ac5c3e4a6b94468e1a28a3e13ea8a2cafc3c3c6f10f785bf6ee3aa44981be19e75ff5e8801ee235837df1 next_version=580 time=18.143874ms accesses_build_time=47.39µs finishing_session_time=1.394121ms -2026-04-20T11:38:29.637970Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M1fzEQiLSKSVJ9kgHbiR8g==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:29.645459Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:29.654979Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1122242 cycles -2026-04-20T11:38:29.657436Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 114, 189, 52, 62, 150, 52, 214, 180, 128, 73, 119, 70, 32, 209, 154, 230, 102, 253, 30, 31, 164, 89, 172, 148, 240, 47, 98, 222, 24, 219, 102, 7, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 99, 181, 41, 3, 107, 194, 186, 56, 94, 46, 200, 117, 161, 180, 85, 57, 102, 195, 76, 118, 45, 120, 30, 8, 76, 61, 124, 76, 157, 68, 227, 181, 100, 41, 221, 229, 93, 228, 91, 13, 104, 171, 101, 169, 52, 241, 172, 21, 63, 225, 67, 199, 29, 172, 66, 126, 147, 6, 71, 63, 173, 126, 165, 65, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:29.719829Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:29.719875Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:29.802506Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:29.836614Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LWhvqMksTJGNREeLl5MNeg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:29.839419Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LWhvqMksTJGNREeLl5MNeg==: stderr: -2026-04-20T11:38:29.839431Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LWhvqMksTJGNREeLl5MNeg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:29.839440Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LWhvqMksTJGNREeLl5MNeg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:29.839448Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LWhvqMksTJGNREeLl5MNeg==: stderr: stack backtrace: -2026-04-20T11:38:29.839454Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LWhvqMksTJGNREeLl5MNeg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:29.839460Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LWhvqMksTJGNREeLl5MNeg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:29.839572Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:29.840463Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:29.840754Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:29.906976Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:29.907022Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:29.907200Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:29.907358Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:29.907433Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:29.907694Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=652 blob_id=2147880502691964412058735742813835063 -2026-04-20T11:38:30.430229Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fwzNjn2wRKKibKaVYE5Lhw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:30.437476Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:30.446602Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1080614 cycles -2026-04-20T11:38:30.449272Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 31, 205, 47, 216, 68, 92, 89, 4, 77, 74, 175, 180, 181, 134, 239, 104, 207, 34, 39, 99, 225, 123, 253, 171, 217, 7, 80, 149, 177, 165, 63, 109, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 82, 175, 66, 199, 160, 142, 244, 102, 192, 16, 144, 193, 72, 222, 164, 216, 137, 180, 226, 58, 123, 85, 73, 112, 202, 244, 99, 215, 67, 243, 232, 176, 204, 192, 139, 151, 116, 222, 10, 122, 74, 173, 149, 224, 91, 236, 74, 219, 29, 136, 134, 214, 216, 204, 182, 146, 112, 83, 96, 232, 84, 199, 66, 157, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:30.492425Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:30.492470Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:30.514151Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:30.548121Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mfvcSolTQxq0QXnFmlvtVg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:30.550949Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mfvcSolTQxq0QXnFmlvtVg==: stderr: -2026-04-20T11:38:30.550962Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mfvcSolTQxq0QXnFmlvtVg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:30.550971Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mfvcSolTQxq0QXnFmlvtVg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:30.550980Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mfvcSolTQxq0QXnFmlvtVg==: stderr: stack backtrace: -2026-04-20T11:38:30.550986Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mfvcSolTQxq0QXnFmlvtVg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:30.550992Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mfvcSolTQxq0QXnFmlvtVg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:30.551165Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:30.551868Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:30.552159Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:30.623071Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:30.623117Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:30.623379Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:30.623580Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:30.623647Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:30.624011Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=653 blob_id=2147880503557596324424267422832858521 -2026-04-20T11:38:31.167010Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zF3HF1VdSLWmrIXMUJ7fEA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:31.174262Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:31.183373Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1092249 cycles -2026-04-20T11:38:31.185875Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 81, 144, 239, 247, 48, 9, 221, 36, 142, 8, 146, 7, 129, 29, 13, 116, 167, 107, 241, 247, 144, 230, 85, 148, 185, 3, 212, 218, 121, 59, 194, 41, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 57, 152, 35, 74, 170, 165, 151, 225, 98, 251, 203, 159, 192, 21, 56, 126, 78, 119, 142, 77, 249, 219, 102, 112, 87, 33, 139, 255, 160, 100, 201, 0, 182, 206, 152, 3, 241, 211, 21, 15, 69, 198, 121, 13, 161, 4, 34, 178, 64, 235, 115, 162, 17, 205, 149, 61, 206, 37, 138, 181, 222, 94, 111, 57, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:31.229724Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:31.229766Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:31.332402Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:31.366994Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BOGGSfAYRLC5JPraiMLa-g==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:31.369824Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BOGGSfAYRLC5JPraiMLa-g==: stderr: -2026-04-20T11:38:31.369850Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BOGGSfAYRLC5JPraiMLa-g==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:31.369858Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BOGGSfAYRLC5JPraiMLa-g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:31.369866Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BOGGSfAYRLC5JPraiMLa-g==: stderr: stack backtrace: -2026-04-20T11:38:31.369872Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BOGGSfAYRLC5JPraiMLa-g==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:31.369878Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BOGGSfAYRLC5JPraiMLa-g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:31.370041Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:31.370724Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:31.371010Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:31.443077Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:31.443121Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:31.443328Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:31.443499Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:31.443553Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:31.443929Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=654 blob_id=2147880504548894212701973903797693424 -2026-04-20T11:38:31.989665Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sdb-fNEDQGutSL2pRIDzvw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:31.997032Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:32.006349Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1100855 cycles -2026-04-20T11:38:32.007354Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 79, 92, 176, 5, 24, 51, 14, 91, 161, 6, 21, 55, 8, 121, 164, 211, 71, 41, 23, 97, 45, 84, 144, 23, 80, 66, 160, 210, 229, 48, 183, 49, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 54, 96, 49, 117, 82, 211, 136, 157, 211, 87, 225, 113, 56, 227, 173, 250, 27, 155, 191, 159, 172, 166, 22, 15, 132, 189, 165, 96, 51, 106, 188, 217, 26, 15, 146, 209, 96, 143, 92, 201, 245, 191, 236, 65, 184, 147, 137, 158, 42, 160, 236, 201, 85, 175, 231, 70, 154, 122, 148, 71, 174, 24, 241, 230, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:32.070441Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:32.070487Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:32.152669Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:32.186820Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kmySnIzcQg-sjjk4IlbtVg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:32.189637Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kmySnIzcQg-sjjk4IlbtVg==: stderr: -2026-04-20T11:38:32.189650Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kmySnIzcQg-sjjk4IlbtVg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:32.189659Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kmySnIzcQg-sjjk4IlbtVg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:32.189665Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kmySnIzcQg-sjjk4IlbtVg==: stderr: stack backtrace: -2026-04-20T11:38:32.189672Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kmySnIzcQg-sjjk4IlbtVg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:32.189678Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kmySnIzcQg-sjjk4IlbtVg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:32.189773Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:32.190543Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:32.190832Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:32.256080Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:32.256126Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:32.256290Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:32.256456Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:32.256523Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:32.257072Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=655 blob_id=2147880505531736754609981546172517719 -2026-04-20T11:38:32.801261Z DEBUG sp1_core_executor_runner::native: CHILD sp1_o03zxmVCQIK4kCJps95ZnA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:32.808239Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:32.818786Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1063604 cycles -2026-04-20T11:38:32.821449Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 22, 158, 119, 78, 178, 105, 125, 234, 145, 94, 71, 116, 45, 38, 33, 4, 233, 62, 244, 196, 254, 141, 56, 124, 7, 58, 160, 211, 139, 243, 175, 36, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 35, 120, 231, 233, 190, 147, 208, 182, 2, 19, 23, 68, 215, 177, 77, 14, 221, 186, 68, 170, 233, 154, 48, 91, 112, 28, 94, 73, 168, 5, 205, 21, 103, 17, 230, 54, 121, 49, 178, 246, 57, 4, 193, 14, 55, 124, 66, 33, 227, 56, 211, 141, 23, 9, 119, 119, 79, 33, 85, 160, 87, 146, 252, 163, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:32.838084Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:32.838110Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:32.862659Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:32.898835Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gk1GLDrXQ5qemUKAFsOe9w==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:32.901665Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gk1GLDrXQ5qemUKAFsOe9w==: stderr: -2026-04-20T11:38:32.901679Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gk1GLDrXQ5qemUKAFsOe9w==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:32.901688Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gk1GLDrXQ5qemUKAFsOe9w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:32.901696Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gk1GLDrXQ5qemUKAFsOe9w==: stderr: stack backtrace: -2026-04-20T11:38:32.901702Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gk1GLDrXQ5qemUKAFsOe9w==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:32.901709Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gk1GLDrXQ5qemUKAFsOe9w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:32.901862Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:32.902556Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:32.902899Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:32.968878Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:32.968920Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:32.969076Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:32.969238Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:32.969283Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:32.969696Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=656 blob_id=2147880506393692912485449925771641830 -2026-04-20T11:38:33.596662Z DEBUG sp1_core_executor_runner::native: CHILD sp1_flTzmGIWR2uJ6ozYC5h1bQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:33.604764Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:33.618195Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1128670 cycles -2026-04-20T11:38:33.620958Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 32, 44, 6, 201, 194, 169, 182, 232, 144, 218, 238, 119, 37, 77, 241, 18, 201, 11, 102, 89, 182, 99, 45, 43, 231, 207, 126, 170, 151, 186, 3, 200, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 22, 96, 238, 65, 83, 88, 80, 93, 113, 207, 121, 80, 215, 241, 158, 185, 1, 170, 1, 22, 182, 9, 216, 10, 80, 188, 100, 214, 37, 16, 9, 197, 112, 165, 68, 62, 222, 187, 159, 18, 195, 13, 226, 246, 242, 162, 194, 179, 80, 136, 148, 176, 209, 243, 180, 150, 32, 77, 14, 100, 81, 170, 203, 80, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:33.678838Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:33.678886Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:33.777682Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:33.812835Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5p5ljIRqQMa-JIMYf0fDJQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:33.815939Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5p5ljIRqQMa-JIMYf0fDJQ==: stderr: -2026-04-20T11:38:33.815964Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5p5ljIRqQMa-JIMYf0fDJQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:33.815989Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5p5ljIRqQMa-JIMYf0fDJQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:33.815997Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5p5ljIRqQMa-JIMYf0fDJQ==: stderr: stack backtrace: -2026-04-20T11:38:33.816003Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5p5ljIRqQMa-JIMYf0fDJQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:33.816010Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5p5ljIRqQMa-JIMYf0fDJQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:33.816126Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:33.817088Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:33.817425Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:33.884846Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:33.884890Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:33.885070Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:33.885225Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:33.885295Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:33.885616Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=657 blob_id=2147880507501121463823701334375882900 -2026-04-20T11:38:34.440016Z DEBUG sp1_core_executor_runner::native: CHILD sp1_N9-vV-cGSnCtpvOOjciGCA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:34.447577Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:34.458420Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1124765 cycles -2026-04-20T11:38:34.460961Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 1, 106, 235, 137, 204, 18, 58, 60, 102, 155, 186, 169, 133, 5, 50, 165, 110, 57, 123, 128, 77, 94, 240, 137, 121, 50, 54, 253, 50, 212, 215, 86, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 68, 71, 162, 128, 110, 75, 193, 156, 119, 88, 121, 94, 172, 125, 232, 240, 74, 33, 237, 214, 147, 130, 202, 59, 141, 59, 14, 178, 22, 65, 46, 107, 162, 96, 146, 102, 224, 154, 6, 232, 227, 15, 46, 171, 74, 167, 208, 124, 183, 159, 93, 83, 82, 28, 228, 30, 89, 87, 38, 30, 89, 78, 150, 40, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:34.522678Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:34.522726Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:34.591854Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:34.625920Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JIGgIrBPQWW4cYm8J2obaw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:34.628769Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JIGgIrBPQWW4cYm8J2obaw==: stderr: -2026-04-20T11:38:34.628792Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JIGgIrBPQWW4cYm8J2obaw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:34.628803Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JIGgIrBPQWW4cYm8J2obaw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:34.628809Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JIGgIrBPQWW4cYm8J2obaw==: stderr: stack backtrace: -2026-04-20T11:38:34.628817Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JIGgIrBPQWW4cYm8J2obaw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:34.628824Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JIGgIrBPQWW4cYm8J2obaw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:34.628902Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:34.629747Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:34.630035Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:34.697567Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:34.697614Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:34.697774Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:34.697939Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:34.697998Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:34.698438Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=658 blob_id=2147880508482747388291389825302161158 -2026-04-20T11:38:35.265804Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SpcMXQt7T3qFeserFPl7GA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:35.273027Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:35.284086Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1083073 cycles -2026-04-20T11:38:35.286682Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 88, 79, 199, 145, 198, 47, 68, 129, 225, 230, 25, 72, 132, 148, 20, 96, 69, 226, 95, 174, 136, 197, 214, 12, 174, 119, 206, 204, 86, 23, 206, 6, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 20, 62, 72, 32, 54, 73, 43, 141, 14, 198, 16, 84, 40, 90, 87, 182, 221, 56, 100, 130, 7, 33, 179, 119, 245, 88, 26, 11, 147, 150, 124, 234, 156, 177, 111, 109, 104, 50, 113, 56, 1, 228, 165, 160, 56, 146, 227, 114, 5, 21, 110, 240, 89, 226, 236, 200, 255, 31, 35, 229, 205, 231, 215, 85, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:35.345527Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:35.345574Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:35.405225Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:35.428638Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=8 height=585 prev_hash=0x98acb3b03e51c820e6be47b627d45660cf68d9097ec3814ee1489769fa93cb77 hash=0xc365233236330e3379e849756b0cbacdc474f634c7cdf2abf7d26b06d880ded9 producing_time=1.274642ms -2026-04-20T11:38:35.438729Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=585 current_state_root="02091ca7d629e90171e6a4b780d820c3ae5c4946228c623479f42f89fc8613303d023ace83586df1b3530683e2cb495d3245e30f264169dce725a9438e6b2d65" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x7fb64014a619adc6cdd1a84056cb056bf1ffa71139064cc74a5edcc897f5cbbd"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x85fc7c4b93b08e5f23580f0af7b3da2f5174d82867ba6f73f83cf2ab7b327eb0, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x940098725c878e23695edff02d9dbe1c49c25589ddaa5e1875aaa4184e997b0d, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x3537957503d7ea3a18c98a7f13f6361db55dd729a0e1d38a0343b47ceb788679, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x76cbe119d4a2c962e10e7ee49890151a66f5cf37812763ba26529f2f9361a66d, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x738f586b4558802870c3059fbfe8f01012b19e54dc98f35a328df50a546fb268, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x15b7587fb392c42478ae801362d2e4d7635985e25434b7aa4aca3278da3ab4bd, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe694db944de81e777d02b8cf23b6fb76e02d22a52c4acbcd9247777f7d21f8a9, len=625"] -2026-04-20T11:38:35.439247Z DEBUG StfBlueprint::apply_slot{context=Node da_height=585}: sov_chain_state: Setting next visible slot number next_visible_slot_number=530 -2026-04-20T11:38:35.439593Z DEBUG sp1_core_executor_runner::native: CHILD sp1_F3OMwj4YQGy4c0jChaXG1g==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:35.439644Z DEBUG StfBlueprint::apply_slot{context=Node da_height=585}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x7fb64014a619adc6cdd1a84056cb056bf1ffa71139064cc74a5edcc897f5cbbd}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=7 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:38:35.439858Z DEBUG StfBlueprint::apply_slot{context=Node da_height=585}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=02091ca7d629e90171e6a4b780d820c3ae5c4946228c623479f42f89fc8613303d023ace83586df1b3530683e2cb495d3245e30f264169dce725a9438e6b2d65 next_version=585 sesssion_starting_time=49µs -2026-04-20T11:38:35.441016Z DEBUG StfBlueprint::apply_slot{context=Node da_height=585}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3f8d8ef2a0ea9281bfff76df8472ade64f3fc897bd1ac5c3e4a6b94468e1a28a711690a95016705e42d8efb0d3d6e9c1f617e0961e79e5d0f421574a224b5b11 next_version=585 time=1.265941ms accesses_build_time=57.609µs finishing_session_time=1.127113ms -2026-04-20T11:38:35.441214Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="27a2790f30bfd559b16e1c9f5b94fe7ec660a0b5fa6cf46d1abbf651aee9bd09" -2026-04-20T11:38:35.441230Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="61441146d21075ccec32148d878df252d62b697432c44bb68bba229b6b300278" -2026-04-20T11:38:35.441239Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="df7b0c20a4fcbf40b593cb2969ae691daf765ba08c46d398fbf4c21fe7605be6" -2026-04-20T11:38:35.441247Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="af176153fba7bcf60ac4f73ef05de219eb7cdecf351f86561c9c8ac1a1a8f208" -2026-04-20T11:38:35.441256Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="df54f1629f144f33c8c4228e171364f4314561deafea8f65d58bd36375f93dcb" -2026-04-20T11:38:35.441278Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="1fc956730803cd5fb116e1eb256e14fbef09748fcc09868e4b14398c2f8cb9db" -2026-04-20T11:38:35.441286Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="830317d79d95b00fec8619085cede6ceac25a53dd53feeee3b8c545298978db8" -2026-04-20T11:38:35.441298Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="02091ca7d629e90171e6a4b780d820c3ae5c4946228c623479f42f89fc8613303d023ace83586df1b3530683e2cb495d3245e30f264169dce725a9438e6b2d65" next_state_root="3f8d8ef2a0ea9281bfff76df8472ade64f3fc897bd1ac5c3e4a6b94468e1a28a711690a95016705e42d8efb0d3d6e9c1f617e0961e79e5d0f421574a224b5b11" aggregated_proofs=0 proof_receipts=7 -2026-04-20T11:38:35.441834Z DEBUG update_state_task_inner: sov_sequencer::preferred: Sending catchup batch number=6 min=5 max=6 -2026-04-20T11:38:35.441892Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=10 -2026-04-20T11:38:35.441958Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=147 -2026-04-20T11:38:35.442075Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=540 -2026-04-20T11:38:35.442357Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 -2026-04-20T11:38:35.442441Z DEBUG sp1_core_executor_runner::native: CHILD sp1_F3OMwj4YQGy4c0jChaXG1g==: stderr: -2026-04-20T11:38:35.442451Z DEBUG sp1_core_executor_runner::native: CHILD sp1_F3OMwj4YQGy4c0jChaXG1g==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:35.442460Z DEBUG sp1_core_executor_runner::native: CHILD sp1_F3OMwj4YQGy4c0jChaXG1g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:35.442469Z DEBUG sp1_core_executor_runner::native: CHILD sp1_F3OMwj4YQGy4c0jChaXG1g==: stderr: stack backtrace: -2026-04-20T11:38:35.442475Z DEBUG sp1_core_executor_runner::native: CHILD sp1_F3OMwj4YQGy4c0jChaXG1g==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:35.442481Z DEBUG sp1_core_executor_runner::native: CHILD sp1_F3OMwj4YQGy4c0jChaXG1g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:35.442597Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:35.442820Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=10 visible_slot_number_after_increase=540 sequence_number=659 -2026-04-20T11:38:35.442844Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=659 blob_id=2147880509383410460972369318972069693 visible_slot_number_after_increase=540 visible_slots_to_advance=10 -2026-04-20T11:38:35.442879Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=7 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:38:35.443111Z  INFO update_state_task_inner: sov_sequencer::preferred: Recovery: catchup batches sent; sequencer will now wait for the node to process them. We will then re-evaluate if we need to catch up again (if there are so many batches that by the time the node catches up we need to bump the visible_slot_number some more). target_sequence_number=660 -2026-04-20T11:38:35.443173Z DEBUG update_state_task_inner: sov_sequencer::preferred: Recovery: waiting for the node to process sequencer's catchup batches... next_sequence_number_according_to_node=652 target_sequence_number=660 -2026-04-20T11:38:35.443374Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:35.443710Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:35.444601Z DEBUG manage_blob_submission_inside_task{blob_id=2147880509383410460972369318972069693 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x7faaedeb601a7ed1b8698a63e65aaed4a82f78ef6feec2f203ab1f52a9439a5d sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=586 include_at=586 bytes=13 time=655.616µs -2026-04-20T11:38:35.453458Z DEBUG compute_state_update{scope="sequencer" rollup_height=152 slot_number=540}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:38:35.453494Z DEBUG compute_state_update{scope="sequencer" rollup_height=152 slot_number=540}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed -2026-04-20T11:38:35.453494Z DEBUG sov_stf_runner::runner: Block execution complete time=5.996431307s -2026-04-20T11:38:35.453529Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:38:35.453550Z DEBUG compute_state_update{scope="sequencer" rollup_height=152 slot_number=540}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=434fd7c90f42dd4d44f37b43515282c338eab225d3b9e1ee4310d029e11d2f740f7e7de2dc849a963275790b8db2c1a3cbfa3e383c8675561928e253721fd205 next_version=580 sesssion_starting_time=10.161735ms -2026-04-20T11:38:35.454786Z DEBUG compute_state_update{scope="sequencer" rollup_height=152 slot_number=540}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a4665bba425909a6a56101567c19b37489497df8a74df5a5f9ca6ca7da5a0410d next_version=580 time=11.452056ms accesses_build_time=54.009µs finishing_session_time=1.186123ms -2026-04-20T11:38:35.509960Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:35.510006Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:35.510171Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:35.510327Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:35.510393Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:35.510699Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=660 blob_id=2147880509465613542306470308928042907 -2026-04-20T11:38:36.072053Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oOx56qrjQ_CJQv_JcV6yqQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:36.079762Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:36.090625Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1137061 cycles -2026-04-20T11:38:36.093081Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 46, 51, 92, 1, 158, 123, 238, 55, 214, 66, 109, 175, 198, 204, 63, 105, 79, 164, 3, 156, 205, 213, 22, 37, 138, 46, 239, 56, 80, 16, 31, 219, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 64, 148, 224, 102, 117, 222, 193, 134, 108, 92, 154, 75, 93, 82, 101, 129, 25, 219, 54, 243, 241, 29, 148, 236, 140, 37, 87, 27, 230, 133, 135, 42, 2, 18, 97, 167, 16, 103, 185, 7, 183, 120, 93, 104, 146, 110, 202, 159, 164, 87, 68, 74, 233, 28, 52, 51, 66, 65, 34, 125, 232, 184, 165, 115, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:36.155810Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:36.155858Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:36.217222Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:36.251778Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fpzM9vClQoej2rUAvx46Sw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:36.254609Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fpzM9vClQoej2rUAvx46Sw==: stderr: -2026-04-20T11:38:36.254622Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fpzM9vClQoej2rUAvx46Sw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:36.254631Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fpzM9vClQoej2rUAvx46Sw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:36.254639Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fpzM9vClQoej2rUAvx46Sw==: stderr: stack backtrace: -2026-04-20T11:38:36.254646Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fpzM9vClQoej2rUAvx46Sw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:36.254653Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fpzM9vClQoej2rUAvx46Sw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:36.254774Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:36.255517Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:36.255806Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:36.324121Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:36.324169Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:36.324371Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:36.324548Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:36.324619Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:36.324944Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=661 blob_id=2147880510449684768330090248070470045 -2026-04-20T11:38:36.887442Z DEBUG sp1_core_executor_runner::native: CHILD sp1_dfKMMr7lRyGmvrlpiF4zyA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:36.895044Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:36.905749Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1127053 cycles -2026-04-20T11:38:36.908391Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 62, 144, 26, 145, 44, 129, 91, 93, 82, 52, 189, 140, 62, 233, 185, 248, 131, 253, 133, 154, 101, 6, 56, 113, 249, 71, 128, 35, 195, 130, 80, 22, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 49, 59, 57, 195, 99, 151, 157, 235, 14, 218, 61, 234, 36, 30, 198, 230, 58, 51, 41, 137, 209, 142, 33, 60, 43, 239, 63, 204, 158, 34, 146, 123, 33, 86, 245, 74, 144, 196, 112, 181, 58, 213, 242, 113, 197, 49, 176, 38, 60, 179, 53, 152, 216, 86, 74, 156, 248, 36, 211, 34, 76, 249, 46, 20, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:36.969519Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:36.969564Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:37.031814Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:37.066845Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HaNzpFu-Tu2R0-aqDkSKGA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:37.069756Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HaNzpFu-Tu2R0-aqDkSKGA==: stderr: -2026-04-20T11:38:37.069783Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HaNzpFu-Tu2R0-aqDkSKGA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:37.069793Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HaNzpFu-Tu2R0-aqDkSKGA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:37.069799Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HaNzpFu-Tu2R0-aqDkSKGA==: stderr: stack backtrace: -2026-04-20T11:38:37.069806Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HaNzpFu-Tu2R0-aqDkSKGA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:37.069812Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HaNzpFu-Tu2R0-aqDkSKGA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:37.069877Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:37.070650Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:37.070938Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:37.140374Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:37.140423Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:37.140592Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:37.140758Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:37.140834Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:37.141421Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=662 blob_id=2147880511436138405242201547579202453 -2026-04-20T11:38:37.696873Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eGzn0PmfQlmooCR0mQHcww==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:37.704218Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:37.714485Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1104061 cycles -2026-04-20T11:38:37.716933Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 22, 62, 193, 229, 21, 227, 95, 215, 63, 30, 39, 156, 200, 202, 69, 121, 190, 219, 198, 102, 37, 239, 109, 97, 66, 141, 13, 72, 93, 203, 30, 125, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 96, 104, 97, 192, 194, 76, 245, 239, 90, 141, 13, 60, 197, 224, 251, 65, 154, 237, 50, 43, 76, 97, 133, 88, 31, 183, 98, 42, 78, 87, 227, 93, 212, 19, 116, 168, 33, 199, 253, 144, 208, 241, 205, 220, 54, 195, 23, 220, 216, 182, 5, 243, 145, 115, 9, 223, 114, 208, 26, 3, 30, 58, 82, 84, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:37.735358Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:37.735381Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:37.746801Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:37.781346Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eB2BLmZLRjS9XUeynUHJ3w==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:37.784220Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eB2BLmZLRjS9XUeynUHJ3w==: stderr: -2026-04-20T11:38:37.784236Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eB2BLmZLRjS9XUeynUHJ3w==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:37.784248Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eB2BLmZLRjS9XUeynUHJ3w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:37.784256Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eB2BLmZLRjS9XUeynUHJ3w==: stderr: stack backtrace: -2026-04-20T11:38:37.784266Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eB2BLmZLRjS9XUeynUHJ3w==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:37.784274Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eB2BLmZLRjS9XUeynUHJ3w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:37.784445Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:37.785150Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:37.785445Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:37.851234Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:37.851278Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:37.851438Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:37.851623Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:37.851680Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:37.852105Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=663 blob_id=2147880512295722479250576846635826985 -2026-04-20T11:38:38.402245Z DEBUG sp1_core_executor_runner::native: CHILD sp1_MlrveaKQSm64RX-LIMirhw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:38.409537Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:38.419264Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1092419 cycles -2026-04-20T11:38:38.420334Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 87, 208, 251, 146, 93, 68, 14, 158, 178, 96, 3, 22, 162, 208, 209, 92, 77, 36, 204, 186, 160, 199, 15, 52, 111, 157, 170, 93, 228, 69, 12, 75, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 67, 250, 119, 62, 91, 83, 245, 198, 204, 138, 250, 49, 43, 202, 74, 58, 105, 248, 187, 186, 155, 23, 132, 123, 140, 129, 227, 137, 127, 240, 128, 25, 24, 116, 204, 214, 132, 112, 181, 51, 23, 205, 244, 55, 247, 111, 75, 108, 211, 91, 181, 139, 27, 146, 128, 246, 202, 216, 5, 4, 241, 69, 242, 69, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:38.480673Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:38.480717Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:38.559602Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:38.593926Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AAQuv-ZXRF6V_XTbEXYVQQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:38.596769Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AAQuv-ZXRF6V_XTbEXYVQQ==: stderr: -2026-04-20T11:38:38.596794Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AAQuv-ZXRF6V_XTbEXYVQQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:38.596804Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AAQuv-ZXRF6V_XTbEXYVQQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:38.596811Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AAQuv-ZXRF6V_XTbEXYVQQ==: stderr: stack backtrace: -2026-04-20T11:38:38.596817Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AAQuv-ZXRF6V_XTbEXYVQQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:38.596824Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AAQuv-ZXRF6V_XTbEXYVQQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:38.596947Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:38.597691Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:38.597982Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:38.664461Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:38.664506Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:38.664722Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:38.664899Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:38.664970Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:38.665267Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=664 blob_id=2147880513278527780496702418469376181 -2026-04-20T11:38:39.213053Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xVYVJbgVQPKGcnP0bzdzhg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:39.220414Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:39.229877Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1100630 cycles -2026-04-20T11:38:39.232613Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 99, 234, 187, 49, 31, 109, 164, 32, 45, 12, 146, 191, 14, 210, 33, 122, 101, 68, 3, 216, 123, 100, 52, 186, 11, 253, 129, 146, 176, 146, 214, 211, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 109, 62, 171, 19, 181, 187, 144, 55, 156, 195, 12, 141, 251, 160, 86, 132, 22, 79, 200, 22, 8, 221, 114, 235, 181, 255, 48, 167, 24, 255, 73, 80, 247, 49, 117, 148, 147, 163, 202, 131, 191, 136, 151, 174, 130, 146, 119, 145, 220, 140, 7, 171, 141, 182, 190, 50, 210, 242, 179, 202, 53, 62, 140, 223, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:39.293215Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:39.293260Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:39.372013Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:39.408540Z DEBUG sp1_core_executor_runner::native: CHILD sp1_iJyj5WK7S_aV7fXyhIfKxQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:39.411375Z DEBUG sp1_core_executor_runner::native: CHILD sp1_iJyj5WK7S_aV7fXyhIfKxQ==: stderr: -2026-04-20T11:38:39.411388Z DEBUG sp1_core_executor_runner::native: CHILD sp1_iJyj5WK7S_aV7fXyhIfKxQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:39.411397Z DEBUG sp1_core_executor_runner::native: CHILD sp1_iJyj5WK7S_aV7fXyhIfKxQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:39.411406Z DEBUG sp1_core_executor_runner::native: CHILD sp1_iJyj5WK7S_aV7fXyhIfKxQ==: stderr: stack backtrace: -2026-04-20T11:38:39.411411Z DEBUG sp1_core_executor_runner::native: CHILD sp1_iJyj5WK7S_aV7fXyhIfKxQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:39.411418Z DEBUG sp1_core_executor_runner::native: CHILD sp1_iJyj5WK7S_aV7fXyhIfKxQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:39.411552Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:39.412264Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:39.412395Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:39.477936Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:39.477979Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:39.478198Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:39.478383Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:39.478466Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:39.478848Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=665 blob_id=2147880514262585463523840409070739331 -2026-04-20T11:38:40.027780Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SC29Xn3ARgC-PgtZMB25BA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:40.035296Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:40.044835Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1118821 cycles -2026-04-20T11:38:40.047292Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 29, 239, 121, 45, 96, 138, 61, 76, 94, 6, 254, 25, 33, 25, 96, 196, 163, 48, 252, 74, 142, 18, 94, 146, 108, 171, 18, 147, 78, 45, 166, 54, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 93, 177, 72, 27, 9, 168, 125, 241, 170, 3, 73, 241, 214, 245, 99, 144, 54, 135, 87, 95, 140, 129, 135, 196, 123, 158, 109, 95, 193, 90, 182, 159, 49, 29, 109, 178, 207, 1, 230, 39, 67, 136, 74, 255, 119, 130, 57, 27, 132, 138, 125, 240, 84, 164, 166, 65, 68, 130, 78, 40, 13, 79, 65, 158, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:40.110480Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:40.110527Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:40.185492Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:40.219696Z DEBUG sp1_core_executor_runner::native: CHILD sp1_o4-3QPnnQ5iBkOFCFD2X8Q==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:40.222556Z DEBUG sp1_core_executor_runner::native: CHILD sp1_o4-3QPnnQ5iBkOFCFD2X8Q==: stderr: -2026-04-20T11:38:40.222583Z DEBUG sp1_core_executor_runner::native: CHILD sp1_o4-3QPnnQ5iBkOFCFD2X8Q==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:40.222595Z DEBUG sp1_core_executor_runner::native: CHILD sp1_o4-3QPnnQ5iBkOFCFD2X8Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:40.222604Z DEBUG sp1_core_executor_runner::native: CHILD sp1_o4-3QPnnQ5iBkOFCFD2X8Q==: stderr: stack backtrace: -2026-04-20T11:38:40.222612Z DEBUG sp1_core_executor_runner::native: CHILD sp1_o4-3QPnnQ5iBkOFCFD2X8Q==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:40.222622Z DEBUG sp1_core_executor_runner::native: CHILD sp1_o4-3QPnnQ5iBkOFCFD2X8Q==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:40.222749Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:40.223489Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:40.223780Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:40.289769Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:40.289813Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:40.289964Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:40.290150Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:40.290210Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:40.290623Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=666 blob_id=2147880515244246476848886861418750654 -2026-04-20T11:38:40.845508Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vrfCk_U5TkGgo4lzxDtk0w==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:40.853004Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:40.862402Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1113107 cycles -2026-04-20T11:38:40.864843Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 107, 44, 158, 139, 19, 223, 133, 172, 209, 98, 123, 36, 151, 180, 189, 248, 178, 254, 23, 176, 42, 38, 114, 40, 197, 34, 63, 220, 91, 199, 153, 6, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 9, 116, 14, 207, 244, 11, 85, 162, 171, 146, 94, 75, 69, 166, 80, 186, 102, 109, 205, 77, 115, 106, 247, 25, 134, 187, 75, 191, 252, 98, 87, 185, 164, 83, 166, 131, 240, 171, 224, 117, 45, 216, 84, 17, 10, 220, 155, 51, 163, 77, 147, 200, 109, 78, 254, 200, 183, 124, 156, 228, 125, 102, 90, 130, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:40.927638Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:40.927685Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:40.997855Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:41.031829Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-_TfSbO4R1G0y5V5Q5pWhA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:41.034647Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-_TfSbO4R1G0y5V5Q5pWhA==: stderr: -2026-04-20T11:38:41.034660Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-_TfSbO4R1G0y5V5Q5pWhA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:41.034681Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-_TfSbO4R1G0y5V5Q5pWhA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:41.034691Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-_TfSbO4R1G0y5V5Q5pWhA==: stderr: stack backtrace: -2026-04-20T11:38:41.034698Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-_TfSbO4R1G0y5V5Q5pWhA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:41.034705Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-_TfSbO4R1G0y5V5Q5pWhA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:41.034864Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:41.035616Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:41.035908Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:41.102716Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:41.102760Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:41.102948Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:41.103134Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:41.103202Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:41.103660Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=667 blob_id=2147880516225948586663818758622539069 -2026-04-20T11:38:41.431675Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=9 height=586 prev_hash=0xc365233236330e3379e849756b0cbacdc474f634c7cdf2abf7d26b06d880ded9 hash=0x2ebba059999673d34fea4cecd7a8607fc03f79af70be0c2e0b948cd1097091f6 producing_time=1.213962ms -2026-04-20T11:38:41.435525Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=586 current_state_root="3f8d8ef2a0ea9281bfff76df8472ade64f3fc897bd1ac5c3e4a6b94468e1a28a711690a95016705e42d8efb0d3d6e9c1f617e0961e79e5d0f421574a224b5b11" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x7faaedeb601a7ed1b8698a63e65aaed4a82f78ef6feec2f203ab1f52a9439a5d"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xeacd1cade55ebbb0083d543f44299abb2868fa4da99d4016b67c1bb143ce05f7, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x896c4cec9080549a8dcbdbc43a396982548be8d0de60a5fcd0bb64915eb0ed9c, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x98631d26de1e6f5450bcb0cdd633d3bb488e10d4cd26a688f4f9d89aa2a21fc9, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x085181b668e58d50853459f97242a1f11129d7b3ed9db701fcd2d10359184115, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x84e95e8de5d3ed483d2636c31d1de7130e60feb2e86f8aed72e4be283a42c3c5, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa93920fbfdc8c314061e8538c4eff8a62b537a0bc0806ea8eadaf71dd599a22d, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x10e851bdfc4188490fe2895deed0de4e74d276c5bd3a3bd2e5c3e246b0da55d6, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x4a56018655338163ba69b33e8190074eb3c024665656307760ac0f29b487756d, len=625"] -2026-04-20T11:38:41.436049Z DEBUG StfBlueprint::apply_slot{context=Node da_height=586}: sov_chain_state: Setting next visible slot number next_visible_slot_number=540 -2026-04-20T11:38:41.436449Z DEBUG StfBlueprint::apply_slot{context=Node da_height=586}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x7faaedeb601a7ed1b8698a63e65aaed4a82f78ef6feec2f203ab1f52a9439a5d}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=7 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } -2026-04-20T11:38:41.436671Z DEBUG StfBlueprint::apply_slot{context=Node da_height=586}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3f8d8ef2a0ea9281bfff76df8472ade64f3fc897bd1ac5c3e4a6b94468e1a28a711690a95016705e42d8efb0d3d6e9c1f617e0961e79e5d0f421574a224b5b11 next_version=586 sesssion_starting_time=47.22µs -2026-04-20T11:38:41.437896Z DEBUG StfBlueprint::apply_slot{context=Node da_height=586}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a1a9c24b1544632394ec2e97df0f48f753666d8924c70d1ddf070dd49f651b3e9 next_version=586 time=1.334222ms accesses_build_time=60.56µs finishing_session_time=1.200133ms -2026-04-20T11:38:41.438092Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="85fc7c4b93b08e5f23580f0af7b3da2f5174d82867ba6f73f83cf2ab7b327eb0" -2026-04-20T11:38:41.438108Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="940098725c878e23695edff02d9dbe1c49c25589ddaa5e1875aaa4184e997b0d" -2026-04-20T11:38:41.438128Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="3537957503d7ea3a18c98a7f13f6361db55dd729a0e1d38a0343b47ceb788679" -2026-04-20T11:38:41.438137Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="76cbe119d4a2c962e10e7ee49890151a66f5cf37812763ba26529f2f9361a66d" -2026-04-20T11:38:41.438146Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="738f586b4558802870c3059fbfe8f01012b19e54dc98f35a328df50a546fb268" -2026-04-20T11:38:41.438155Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="15b7587fb392c42478ae801362d2e4d7635985e25434b7aa4aca3278da3ab4bd" -2026-04-20T11:38:41.438163Z ERROR sov_stf_runner::runner: Invalid proof outcome outcome=Invalid(PreconditionNotMet("Prover is not bonded at the time of the transaction")) blob_hash="e694db944de81e777d02b8cf23b6fb76e02d22a52c4acbcd9247777f7d21f8a9" -2026-04-20T11:38:41.438175Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3f8d8ef2a0ea9281bfff76df8472ade64f3fc897bd1ac5c3e4a6b94468e1a28a711690a95016705e42d8efb0d3d6e9c1f617e0961e79e5d0f421574a224b5b11" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a1a9c24b1544632394ec2e97df0f48f753666d8924c70d1ddf070dd49f651b3e9" aggregated_proofs=0 proof_receipts=7 -2026-04-20T11:38:41.438801Z DEBUG update_state_task_inner: sov_sequencer::preferred: Recovery: waiting for the node to process sequencer's catchup batches... next_sequence_number_according_to_node=660 target_sequence_number=660 -2026-04-20T11:38:41.438843Z  INFO update_state_task_inner: sov_sequencer::preferred: Node sequence number caught up to our recovery batches. The sequencer may have finished recovery, or we may need to send another round of batches if catching up this far took too long -2026-04-20T11:38:41.438884Z DEBUG update_state_task_inner: sov_sequencer::preferred: Calculating amount of batches to send deferred_slots_count=109 maximum_delta=54 minimum_delta=43 current_catchup_delta=46 current_visible_slot_number=540 increase_per_batch=10 -2026-04-20T11:38:41.438898Z  INFO update_state_task_inner: sov_sequencer::preferred: Recovery: no need to send any more batches! min_batches_to_send=0 max_batches_to_send=1 -2026-04-20T11:38:41.438908Z  INFO update_state_task_inner: sov_sequencer::preferred: Sequencer exiting recovery and resuming normal operation. info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 586, latest_finalized_slot_number: 586, sync_status: Synced { synced_da_height: 585 }, .. } -2026-04-20T11:38:41.438978Z DEBUG sov_sequencer::preferred::block_executor: Replacing state for block executor old=019daaae-db78-72a0-b846-ce6dd2e549f9 new=019daaaf-7f9e-7241-a9a5-0a0a4f1b188b -2026-04-20T11:38:41.450973Z DEBUG sov_stf_runner::runner: Block execution complete time=5.997446051s -2026-04-20T11:38:41.451003Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:38:41.650812Z DEBUG sp1_core_executor_runner::native: CHILD sp1__rN10ag3QHel2i9dA5MMFw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:41.658307Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:41.668296Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1116177 cycles -2026-04-20T11:38:41.670920Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 105, 173, 239, 65, 252, 171, 252, 232, 153, 103, 88, 243, 112, 28, 167, 71, 217, 255, 167, 118, 82, 62, 34, 74, 114, 149, 121, 136, 51, 82, 218, 72, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 33, 167, 142, 252, 141, 78, 100, 87, 238, 37, 181, 86, 87, 108, 22, 113, 87, 227, 124, 28, 139, 75, 137, 124, 248, 38, 135, 88, 112, 217, 89, 53, 22, 33, 19, 207, 85, 246, 27, 79, 240, 20, 60, 82, 116, 206, 215, 254, 52, 146, 95, 147, 75, 33, 126, 196, 179, 15, 180, 140, 204, 13, 109, 206, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:41.737691Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:41.737740Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:41.811457Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:41.846071Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nTdACSGSSDaem49AjaRs7w==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:41.848916Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nTdACSGSSDaem49AjaRs7w==: stderr: -2026-04-20T11:38:41.848930Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nTdACSGSSDaem49AjaRs7w==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:41.848939Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nTdACSGSSDaem49AjaRs7w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:41.848947Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nTdACSGSSDaem49AjaRs7w==: stderr: stack backtrace: -2026-04-20T11:38:41.848954Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nTdACSGSSDaem49AjaRs7w==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:41.848960Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nTdACSGSSDaem49AjaRs7w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:41.849092Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:41.849856Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:41.850148Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:41.918990Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:41.919036Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:41.919214Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:41.919368Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:41.919454Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:41.919895Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=668 blob_id=2147880517213627125280184231583337875 -2026-04-20T11:38:42.452681Z DEBUG sp1_core_executor_runner::native: CHILD sp1_P6yx6Xf7SZmNuufkFSjqAg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:42.460185Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:42.470746Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1117693 cycles -2026-04-20T11:38:42.473451Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 72, 251, 176, 156, 165, 173, 219, 36, 41, 200, 224, 83, 221, 228, 138, 189, 77, 20, 172, 111, 5, 88, 44, 251, 212, 170, 53, 14, 219, 239, 162, 3, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 65, 39, 37, 159, 19, 13, 101, 223, 118, 226, 162, 102, 170, 163, 152, 70, 254, 49, 219, 17, 101, 29, 104, 142, 54, 65, 80, 197, 186, 175, 101, 231, 100, 214, 185, 230, 205, 202, 166, 111, 75, 112, 29, 141, 123, 132, 67, 87, 60, 91, 126, 239, 178, 230, 162, 12, 34, 75, 216, 160, 6, 177, 98, 89, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:42.535442Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:42.535485Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:42.626868Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:42.663642Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2STCUpp0SBWwwsATp9nudA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:42.666465Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2STCUpp0SBWwwsATp9nudA==: stderr: -2026-04-20T11:38:42.666492Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2STCUpp0SBWwwsATp9nudA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:42.666504Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2STCUpp0SBWwwsATp9nudA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:42.666511Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2STCUpp0SBWwwsATp9nudA==: stderr: stack backtrace: -2026-04-20T11:38:42.666518Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2STCUpp0SBWwwsATp9nudA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:42.666524Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2STCUpp0SBWwwsATp9nudA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:42.666662Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:42.667386Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:42.667684Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:42.738694Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:42.738737Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:42.738915Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:42.739098Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:42.739182Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:42.739560Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=669 blob_id=2147880518203746503144672500137702210 -2026-04-20T11:38:43.285618Z DEBUG sp1_core_executor_runner::native: CHILD sp1_GHVl5Z2aQQWPySKNjcbJBw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:43.293120Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:43.302056Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1124167 cycles -2026-04-20T11:38:43.304918Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 101, 71, 3, 83, 185, 165, 55, 85, 123, 179, 130, 50, 231, 143, 47, 72, 11, 79, 28, 90, 111, 134, 9, 135, 67, 41, 194, 122, 169, 129, 51, 41, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 114, 250, 5, 135, 148, 157, 219, 54, 29, 217, 210, 246, 103, 96, 238, 90, 218, 242, 57, 211, 12, 83, 73, 62, 110, 0, 29, 93, 150, 19, 31, 92, 203, 132, 64, 99, 122, 225, 92, 228, 161, 95, 24, 24, 101, 240, 75, 194, 222, 228, 2, 251, 112, 119, 188, 232, 245, 221, 135, 39, 79, 242, 164, 56, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:43.368097Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:43.368139Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:43.446552Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:43.482551Z DEBUG sp1_core_executor_runner::native: CHILD sp1_WX0sekeJShyG8WRWmiWqrw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:43.485447Z DEBUG sp1_core_executor_runner::native: CHILD sp1_WX0sekeJShyG8WRWmiWqrw==: stderr: -2026-04-20T11:38:43.485479Z DEBUG sp1_core_executor_runner::native: CHILD sp1_WX0sekeJShyG8WRWmiWqrw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:43.485485Z DEBUG sp1_core_executor_runner::native: CHILD sp1_WX0sekeJShyG8WRWmiWqrw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:43.485489Z DEBUG sp1_core_executor_runner::native: CHILD sp1_WX0sekeJShyG8WRWmiWqrw==: stderr: stack backtrace: -2026-04-20T11:38:43.485492Z DEBUG sp1_core_executor_runner::native: CHILD sp1_WX0sekeJShyG8WRWmiWqrw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:43.485496Z DEBUG sp1_core_executor_runner::native: CHILD sp1_WX0sekeJShyG8WRWmiWqrw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:43.485625Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:43.486392Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:43.486687Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:43.553515Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:43.553560Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:43.553746Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:43.553938Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:43.554021Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:43.554513Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=670 blob_id=2147880519189018684403901652040513001 -2026-04-20T11:38:44.102564Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sOsWuhQSSy6ZF0oAdmtB7Q==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:44.110045Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:44.119468Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1114388 cycles -2026-04-20T11:38:44.121915Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 66, 211, 125, 24, 11, 129, 39, 145, 20, 163, 92, 119, 237, 90, 172, 63, 167, 29, 62, 195, 185, 23, 79, 92, 129, 128, 245, 27, 151, 3, 93, 119, 34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 122, 161, 27, 55, 179, 168, 230, 245, 179, 229, 229, 78, 72, 139, 40, 241, 98, 51, 19, 38, 118, 86, 98, 235, 198, 3, 9, 81, 238, 181, 154, 55, 117, 15, 106, 166, 202, 59, 95, 192, 187, 254, 144, 11, 185, 198, 232, 112, 172, 83, 254, 52, 85, 211, 34, 245, 214, 18, 138, 6, 4, 91, 9, 103, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:44.184924Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:44.184971Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:44.263049Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:44.296214Z DEBUG sp1_core_executor_runner::native: CHILD sp1_uLWcGl6BRUGGblLfgWAeYQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:44.299026Z DEBUG sp1_core_executor_runner::native: CHILD sp1_uLWcGl6BRUGGblLfgWAeYQ==: stderr: -2026-04-20T11:38:44.299039Z DEBUG sp1_core_executor_runner::native: CHILD sp1_uLWcGl6BRUGGblLfgWAeYQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:44.299047Z DEBUG sp1_core_executor_runner::native: CHILD sp1_uLWcGl6BRUGGblLfgWAeYQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:44.299056Z DEBUG sp1_core_executor_runner::native: CHILD sp1_uLWcGl6BRUGGblLfgWAeYQ==: stderr: stack backtrace: -2026-04-20T11:38:44.299062Z DEBUG sp1_core_executor_runner::native: CHILD sp1_uLWcGl6BRUGGblLfgWAeYQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:44.299068Z DEBUG sp1_core_executor_runner::native: CHILD sp1_uLWcGl6BRUGGblLfgWAeYQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:44.299225Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:44.299923Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:44.300226Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:44.367216Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:44.367261Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:44.367501Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:44.367785Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:44.367963Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:44.368248Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=671 blob_id=2147880520173068088229288679479045300 -2026-04-20T11:38:44.920227Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yB9Kou0LTlGi4GekgnduCA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:44.973876Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:44.985866Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 9332914 cycles -2026-04-20T11:38:44.988506Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 91, 244, 99, 209, 54, 159, 53, 57, 25, 111, 86, 140, 12, 176, 155, 55, 19, 2, 36, 82, 216, 164, 191, 197, 62, 103, 142, 149, 89, 67, 8, 55, 27, 193, 4, 51, 152, 66, 199, 215, 43, 166, 182, 79, 132, 46, 33, 136, 138, 173, 89, 27, 238, 31, 67, 78, 191, 53, 114, 248, 173, 95, 203, 22, 196, 59, 110, 13, 115, 251, 106, 87, 34, 120, 177, 152, 78, 89, 30, 59, 78, 110, 110, 198, 228, 224, 46, 83, 243, 145, 225, 1, 12, 52, 202, 96, 76, 59, 210, 139, 114, 131, 183, 136, 116, 88, 59, 161, 127, 184, 34, 69, 255, 77, 23, 166, 68, 50, 198, 226, 90, 124, 105, 155, 14, 90, 246, 80, 147, 107, 83, 110, 104, 47, 100, 1, 111, 143, 226, 236, 130, 52, 49, 52, 57, 107, 41, 206, 159, 238, 121, 57, 235, 108, 132, 202, 64, 171, 175, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:45.277216Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:45.277257Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:45.381490Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:45.416414Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qp1k66oUQBatbOBjWZfriw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:45.419230Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qp1k66oUQBatbOBjWZfriw==: stderr: -2026-04-20T11:38:45.419257Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qp1k66oUQBatbOBjWZfriw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:45.419283Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qp1k66oUQBatbOBjWZfriw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:45.419290Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qp1k66oUQBatbOBjWZfriw==: stderr: stack backtrace: -2026-04-20T11:38:45.419296Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qp1k66oUQBatbOBjWZfriw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:45.419303Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qp1k66oUQBatbOBjWZfriw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:45.419380Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:45.420145Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:45.420440Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:45.492901Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:45.492946Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:45.493130Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:45.493373Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:45.493506Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:45.493846Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=672 blob_id=2147880521534316732810792227641831225 -2026-04-20T11:38:46.041509Z DEBUG sp1_core_executor_runner::native: CHILD sp1_KcXz3wPZRsaF_qiKKx2afA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:46.062074Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:46.071892Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2882873 cycles -2026-04-20T11:38:46.074479Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [107, 38, 167, 242, 85, 13, 150, 114, 128, 111, 218, 72, 237, 248, 22, 162, 96, 202, 187, 230, 21, 62, 110, 48, 192, 159, 194, 119, 127, 158, 131, 92, 74, 121, 95, 154, 91, 90, 138, 111, 177, 227, 59, 15, 213, 104, 189, 63, 79, 185, 197, 170, 35, 232, 164, 61, 183, 92, 228, 230, 88, 90, 177, 181, 73, 241, 223, 186, 108, 232, 127, 65, 89, 162, 75, 202, 255, 233, 124, 185, 101, 179, 90, 244, 236, 180, 196, 245, 212, 72, 210, 145, 77, 5, 35, 51, 49, 94, 209, 211, 170, 64, 167, 49, 130, 106, 39, 85, 8, 27, 251, 204, 231, 87, 141, 135, 44, 55, 96, 40, 98, 181, 152, 38, 243, 186, 12, 229, 1, 209, 91, 145, 219, 160, 52, 72, 36, 128, 102, 50, 115, 158, 123, 41, 91, 131, 81, 253, 59, 132, 105, 48, 136, 204, 157, 72, 78, 132, 3, 117, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:46.193622Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:46.193656Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:46.301419Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:46.334938Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oAfubwjURySZmhSvZ8XgjQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:46.337777Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oAfubwjURySZmhSvZ8XgjQ==: stderr: -2026-04-20T11:38:46.337801Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oAfubwjURySZmhSvZ8XgjQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:46.337812Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oAfubwjURySZmhSvZ8XgjQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:46.337819Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oAfubwjURySZmhSvZ8XgjQ==: stderr: stack backtrace: -2026-04-20T11:38:46.337825Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oAfubwjURySZmhSvZ8XgjQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:46.337831Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oAfubwjURySZmhSvZ8XgjQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:46.337937Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:46.338707Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:46.338997Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:46.410884Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:46.410929Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:46.411094Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:46.411356Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:46.411478Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:46.411835Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=673 blob_id=2147880522644116300949524750141459752 -2026-04-20T11:38:46.964634Z DEBUG sp1_core_executor_runner::native: CHILD sp1_f8HUseagT-y8v_6G14jMHQ==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:46.994560Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:47.005973Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4586785 cycles -2026-04-20T11:38:47.008492Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [66, 194, 144, 94, 189, 235, 117, 159, 251, 61, 216, 13, 193, 116, 255, 212, 184, 131, 114, 63, 71, 196, 242, 103, 202, 51, 124, 182, 215, 145, 197, 171, 101, 1, 150, 139, 91, 14, 235, 127, 141, 106, 244, 127, 42, 122, 18, 1, 46, 203, 242, 241, 117, 14, 200, 4, 138, 238, 185, 112, 76, 212, 75, 60, 47, 211, 116, 66, 208, 104, 194, 215, 219, 213, 206, 53, 49, 131, 25, 148, 103, 26, 55, 8, 248, 124, 163, 173, 225, 167, 123, 36, 102, 119, 81, 97, 20, 179, 33, 139, 174, 227, 125, 32, 69, 11, 49, 61, 251, 10, 23, 178, 189, 60, 46, 111, 222, 140, 152, 117, 31, 100, 170, 181, 252, 23, 243, 152, 155, 219, 40, 56, 192, 67, 14, 219, 112, 179, 197, 179, 142, 250, 141, 140, 133, 154, 7, 186, 248, 195, 24, 254, 143, 185, 103, 43, 49, 163, 120, 177, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:47.172282Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:47.172323Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:47.222509Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:47.258604Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QBNaKILMTG6s1YBOzJ5_KQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:47.261427Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QBNaKILMTG6s1YBOzJ5_KQ==: stderr: -2026-04-20T11:38:47.261441Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QBNaKILMTG6s1YBOzJ5_KQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:47.261447Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QBNaKILMTG6s1YBOzJ5_KQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:47.261450Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QBNaKILMTG6s1YBOzJ5_KQ==: stderr: stack backtrace: -2026-04-20T11:38:47.261454Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QBNaKILMTG6s1YBOzJ5_KQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:47.261457Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QBNaKILMTG6s1YBOzJ5_KQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:47.261572Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:47.262337Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:47.262626Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:47.328508Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:47.328563Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:47.328742Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:47.328979Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:47.329087Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:47.329580Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=674 blob_id=2147880523752659012463903689678259028 -2026-04-20T11:38:47.434072Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=7 height=587 prev_hash=0x2ebba059999673d34fea4cecd7a8607fc03f79af70be0c2e0b948cd1097091f6 hash=0x2a939fb37e6d4501113946c75ff4825c57902f46ccebf078b6bd79263ab1cee0 producing_time=1.146803ms -2026-04-20T11:38:47.442928Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=587 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a1a9c24b1544632394ec2e97df0f48f753666d8924c70d1ddf070dd49f651b3e9" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x96b9f3cf014dd129120dcab2fb96d4c498ff4768d8eb23c067de97f67f01c3bc, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x24e3367a6e5c0c06b9ef570e4c1489eb685587e4a97a9605bd5d55f6d78f5f88, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x524613fa30cdb2af0d2965f4d13d26b98c11e9e6fb78092ac4c06ea9a8f96832, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x3f085688dba5f019a01b5af3e23f306e6ba2dd455ee7fde442d6b6553a9c55f2, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x3d0f5cd29d1e5f09d3c9505812796297432a35e2961677a9ad7592733ae23416, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x543214147898a902cd8d62cfd8e6cabd62ad8aa3ebfddef8be2c0f5f10dbabc6, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x88ec105a2e8d3aeca77ff62a73299f8769dd9f5f345a59f165169e4dec87ca28, len=625"] -2026-04-20T11:38:47.443345Z DEBUG StfBlueprint::apply_slot{context=Node da_height=587}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a1a9c24b1544632394ec2e97df0f48f753666d8924c70d1ddf070dd49f651b3e9 next_version=587 sesssion_starting_time=63.649µs -2026-04-20T11:38:47.444206Z DEBUG StfBlueprint::apply_slot{context=Node da_height=587}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a329f78079cda70f0195abe9e1e76b605cc9dd31b13806db0a33b5b5f1bfa9319 next_version=587 time=953.904µs accesses_build_time=28.819µs finishing_session_time=822.545µs -2026-04-20T11:38:47.444296Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a1a9c24b1544632394ec2e97df0f48f753666d8924c70d1ddf070dd49f651b3e9" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a329f78079cda70f0195abe9e1e76b605cc9dd31b13806db0a33b5b5f1bfa9319" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:38:47.444830Z DEBUG sov_stf_runner::runner: Block execution complete time=5.993828305s -2026-04-20T11:38:47.444864Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:38:47.444930Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 587, latest_finalized_slot_number: 586, sync_status: Syncing { synced_da_height: 586, target_da_height: 587 }, .. } -2026-04-20T11:38:47.445001Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Proceeding with `replay_soft_confirmations_on_top_of_node_state` initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: true } -2026-04-20T11:38:47.445027Z DEBUG sov_sequencer::preferred::transaction_subscriptions: Cleaning and overwriting transaction cache up to 0 -2026-04-20T11:38:47.445042Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Populating pinned cache for replay. This may take a few moments. inner_status=InitialStatus { is_startup: false, is_resync: false, is_recover: true } -2026-04-20T11:38:47.445053Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Pinned cache populated. Starting transaction replay. -2026-04-20T11:38:47.445191Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Completed proofs found without a completed batch; carrying them into final catchup pending_completed_proofs=15 next_sequence_number=660 -2026-04-20T11:38:47.445250Z DEBUG sov_sequencer::preferred::block_executor: Replacing state for block executor old=019daaaf-7f9e-7241-a9a5-0a0a4f1b188b new=019daaaf-9715-70b0-a849-c55e79579ab6 -2026-04-20T11:38:47.884007Z DEBUG sp1_core_executor_runner::native: CHILD sp1_y7tlKGthSpuHvQDNsn338A==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:47.914031Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:47.925433Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4570701 cycles -2026-04-20T11:38:47.927965Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [38, 35, 79, 142, 121, 134, 227, 163, 49, 61, 154, 43, 225, 172, 169, 216, 235, 208, 152, 215, 17, 202, 29, 54, 2, 251, 178, 183, 154, 135, 73, 119, 73, 222, 44, 16, 110, 82, 23, 136, 198, 147, 132, 42, 237, 234, 115, 217, 65, 199, 36, 213, 209, 158, 196, 75, 4, 240, 36, 13, 138, 7, 250, 230, 35, 123, 114, 57, 27, 249, 221, 81, 163, 24, 118, 174, 88, 149, 120, 235, 232, 225, 182, 110, 149, 158, 96, 205, 16, 224, 49, 19, 43, 56, 171, 97, 83, 141, 23, 38, 25, 155, 68, 92, 210, 117, 198, 194, 202, 114, 96, 92, 205, 180, 124, 93, 58, 231, 18, 237, 64, 40, 101, 7, 241, 158, 56, 4, 141, 64, 131, 221, 125, 30, 47, 139, 65, 231, 13, 61, 253, 220, 175, 11, 105, 249, 193, 197, 8, 108, 179, 2, 202, 251, 33, 95, 123, 109, 162, 178, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:48.090828Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:48.090864Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:48.139979Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:48.171656Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IHQXdNTUQiS6jpmUgXGRhg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:48.174482Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IHQXdNTUQiS6jpmUgXGRhg==: stderr: -2026-04-20T11:38:48.174498Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IHQXdNTUQiS6jpmUgXGRhg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:48.174508Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IHQXdNTUQiS6jpmUgXGRhg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:48.174517Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IHQXdNTUQiS6jpmUgXGRhg==: stderr: stack backtrace: -2026-04-20T11:38:48.174524Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IHQXdNTUQiS6jpmUgXGRhg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:48.174531Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IHQXdNTUQiS6jpmUgXGRhg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:48.174645Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:48.175433Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:48.175752Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:48.241245Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:48.241288Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:48.241444Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:48.241704Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:48.241807Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:48.242130Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=675 blob_id=2147880524856453481990889804800556019 -2026-04-20T11:38:48.788476Z DEBUG sp1_core_executor_runner::native: CHILD sp1_a3MKcgEEQM-JVrLo4Phd2g==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:48.817806Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:48.828631Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4668452 cycles -2026-04-20T11:38:48.831447Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [92, 176, 172, 105, 139, 15, 128, 129, 8, 153, 199, 204, 121, 176, 172, 63, 144, 178, 177, 236, 141, 104, 168, 103, 218, 48, 3, 218, 136, 133, 35, 43, 91, 250, 21, 176, 71, 35, 89, 193, 242, 138, 91, 35, 92, 1, 199, 56, 26, 140, 173, 12, 71, 94, 119, 197, 35, 62, 41, 10, 253, 80, 216, 224, 86, 141, 202, 29, 47, 57, 248, 141, 84, 33, 34, 116, 14, 205, 122, 237, 180, 251, 242, 96, 146, 208, 122, 49, 205, 59, 28, 115, 161, 213, 2, 214, 42, 189, 156, 188, 190, 8, 81, 61, 183, 250, 88, 170, 240, 251, 118, 34, 179, 112, 50, 191, 97, 145, 45, 26, 40, 139, 49, 229, 186, 42, 137, 101, 122, 31, 22, 25, 33, 236, 229, 188, 26, 199, 173, 254, 37, 101, 126, 211, 40, 234, 6, 188, 32, 101, 31, 74, 128, 165, 34, 203, 191, 71, 84, 38, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:48.996674Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:48.996710Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:49.049984Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:49.083363Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JKTZux06TNCq8o_xQnOL3w==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:49.086179Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JKTZux06TNCq8o_xQnOL3w==: stderr: -2026-04-20T11:38:49.086193Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JKTZux06TNCq8o_xQnOL3w==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:49.086202Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JKTZux06TNCq8o_xQnOL3w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:49.086208Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JKTZux06TNCq8o_xQnOL3w==: stderr: stack backtrace: -2026-04-20T11:38:49.086216Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JKTZux06TNCq8o_xQnOL3w==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:49.086222Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JKTZux06TNCq8o_xQnOL3w==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:49.086373Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:49.087163Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:49.087465Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:49.153744Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:49.153785Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:49.153922Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:49.154163Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:49.154251Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:49.154609Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=676 blob_id=2147880525958955423475514710750310449 -2026-04-20T11:38:49.701274Z DEBUG sp1_core_executor_runner::native: CHILD sp1_O6y31fj2TyupYJdst7Isfw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:49.731699Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:49.742794Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4756551 cycles -2026-04-20T11:38:49.745352Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [113, 197, 16, 0, 199, 110, 32, 107, 93, 143, 236, 148, 118, 202, 253, 243, 135, 12, 62, 197, 81, 250, 182, 40, 251, 69, 225, 18, 233, 99, 46, 12, 23, 2, 36, 61, 186, 242, 27, 16, 202, 125, 151, 232, 171, 104, 88, 179, 198, 9, 50, 227, 107, 177, 147, 101, 206, 104, 32, 37, 220, 160, 11, 85, 10, 55, 15, 58, 198, 235, 221, 229, 207, 240, 133, 184, 74, 242, 92, 101, 43, 115, 186, 123, 211, 94, 174, 206, 126, 1, 133, 240, 136, 43, 5, 100, 30, 216, 164, 66, 160, 6, 26, 29, 76, 51, 203, 190, 50, 132, 150, 104, 153, 138, 228, 161, 71, 112, 18, 228, 244, 118, 222, 235, 177, 252, 98, 24, 15, 136, 60, 51, 1, 109, 143, 182, 189, 207, 194, 193, 202, 121, 6, 12, 184, 175, 2, 247, 69, 23, 243, 38, 72, 91, 7, 0, 169, 171, 83, 39, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:49.917350Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:49.917387Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:49.963252Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:49.994440Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eY7IIQiUQLePxk7iZUSYGg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:49.997270Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eY7IIQiUQLePxk7iZUSYGg==: stderr: -2026-04-20T11:38:49.997308Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eY7IIQiUQLePxk7iZUSYGg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:49.997330Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eY7IIQiUQLePxk7iZUSYGg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:49.997337Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eY7IIQiUQLePxk7iZUSYGg==: stderr: stack backtrace: -2026-04-20T11:38:49.997343Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eY7IIQiUQLePxk7iZUSYGg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:49.997350Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eY7IIQiUQLePxk7iZUSYGg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:49.997427Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:49.998151Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:49.998455Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:50.064521Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:50.064565Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:50.064729Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:50.064918Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:50.064991Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:50.065398Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=677 blob_id=2147880527060345301516384016759875427 -2026-04-20T11:38:50.593225Z DEBUG sp1_core_executor_runner::native: CHILD sp1_uG1AQbkVQwaNUWP12kdqvg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:50.603643Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:50.613534Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1538957 cycles -2026-04-20T11:38:50.616290Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [67, 79, 215, 201, 15, 66, 221, 77, 68, 243, 123, 67, 81, 82, 130, 195, 56, 234, 178, 37, 211, 185, 225, 238, 67, 16, 208, 41, 225, 29, 47, 116, 105, 152, 218, 9, 22, 200, 47, 228, 47, 123, 57, 251, 233, 5, 102, 202, 91, 90, 39, 227, 211, 238, 171, 36, 226, 251, 104, 107, 158, 23, 155, 94, 67, 79, 215, 201, 15, 66, 221, 77, 68, 243, 123, 67, 81, 82, 130, 195, 56, 234, 178, 37, 211, 185, 225, 238, 67, 16, 208, 41, 225, 29, 47, 116, 45, 100, 69, 233, 177, 19, 210, 182, 184, 113, 202, 40, 39, 204, 10, 185, 175, 183, 191, 221, 200, 7, 132, 75, 202, 174, 126, 216, 126, 158, 145, 8, 69, 110, 149, 7, 183, 70, 116, 19, 21, 117, 182, 176, 196, 76, 223, 9, 3, 240, 182, 191, 77, 239, 63, 88, 223, 99, 231, 71, 104, 81, 219, 32, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:50.694666Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:50.694701Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:50.774474Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:50.809070Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XkA06Zv3RAOYIrzK_ZEHBQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:50.811904Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XkA06Zv3RAOYIrzK_ZEHBQ==: stderr: -2026-04-20T11:38:50.811928Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XkA06Zv3RAOYIrzK_ZEHBQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:50.811938Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XkA06Zv3RAOYIrzK_ZEHBQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:50.811945Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XkA06Zv3RAOYIrzK_ZEHBQ==: stderr: stack backtrace: -2026-04-20T11:38:50.811951Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XkA06Zv3RAOYIrzK_ZEHBQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:50.811957Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XkA06Zv3RAOYIrzK_ZEHBQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:50.812052Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:50.812847Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:50.813135Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:50.879814Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:50.879858Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:50.880039Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:50.880248Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:50.880351Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:50.880786Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=678 blob_id=2147880528046803406774163565016070508 -2026-04-20T11:38:51.422858Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vZ7npaPRT4-lUbnu8DWAfw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:51.432974Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:51.442490Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1525903 cycles -2026-04-20T11:38:51.444956Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [67, 79, 215, 201, 15, 66, 221, 77, 68, 243, 123, 67, 81, 82, 130, 195, 56, 234, 178, 37, 211, 185, 225, 238, 67, 16, 208, 41, 225, 29, 47, 116, 59, 160, 167, 94, 134, 38, 32, 76, 18, 40, 232, 116, 243, 81, 142, 83, 9, 49, 51, 197, 84, 57, 50, 180, 19, 132, 244, 164, 195, 70, 69, 225, 67, 79, 215, 201, 15, 66, 221, 77, 68, 243, 123, 67, 81, 82, 130, 195, 56, 234, 178, 37, 211, 185, 225, 238, 67, 16, 208, 41, 225, 29, 47, 116, 51, 67, 138, 249, 69, 65, 105, 67, 118, 7, 126, 216, 131, 253, 152, 37, 56, 244, 31, 83, 87, 13, 239, 233, 170, 121, 226, 54, 193, 191, 199, 217, 20, 182, 247, 224, 93, 123, 99, 172, 37, 137, 17, 43, 85, 38, 149, 178, 143, 172, 17, 94, 160, 160, 41, 125, 160, 112, 26, 16, 185, 209, 99, 130, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:51.525746Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:51.525781Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:51.588165Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:51.622588Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VXOsB3xWTXusk6cclgvIFg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:51.625418Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VXOsB3xWTXusk6cclgvIFg==: stderr: -2026-04-20T11:38:51.625443Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VXOsB3xWTXusk6cclgvIFg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:51.625453Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VXOsB3xWTXusk6cclgvIFg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:51.625460Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VXOsB3xWTXusk6cclgvIFg==: stderr: stack backtrace: -2026-04-20T11:38:51.625466Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VXOsB3xWTXusk6cclgvIFg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:51.625472Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VXOsB3xWTXusk6cclgvIFg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:51.625570Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:51.626337Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:51.626645Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:51.697283Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:51.697341Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:51.697527Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:51.697726Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:51.697808Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:51.698178Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=679 blob_id=2147880529034504658000850645801415497 -2026-04-20T11:38:52.244669Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eIqQhKWxTyuln8FArB5beA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:52.255257Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:52.264663Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1566801 cycles -2026-04-20T11:38:52.267251Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [67, 79, 215, 201, 15, 66, 221, 77, 68, 243, 123, 67, 81, 82, 130, 195, 56, 234, 178, 37, 211, 185, 225, 238, 67, 16, 208, 41, 225, 29, 47, 116, 44, 180, 111, 53, 22, 129, 80, 233, 15, 79, 50, 77, 191, 94, 155, 119, 28, 95, 250, 199, 80, 45, 160, 176, 84, 200, 201, 79, 240, 133, 58, 220, 67, 79, 215, 201, 15, 66, 221, 77, 68, 243, 123, 67, 81, 82, 130, 195, 56, 234, 178, 37, 211, 185, 225, 238, 67, 16, 208, 41, 225, 29, 47, 116, 81, 158, 71, 84, 188, 145, 207, 138, 233, 180, 169, 44, 147, 154, 163, 192, 8, 207, 175, 170, 217, 3, 61, 165, 24, 181, 19, 217, 167, 173, 146, 110, 130, 49, 53, 22, 118, 63, 128, 111, 0, 74, 46, 26, 37, 91, 229, 70, 104, 143, 160, 86, 195, 234, 199, 251, 81, 186, 120, 31, 76, 254, 167, 4, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:52.349948Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:52.349985Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:52.404729Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:52.438802Z DEBUG sp1_core_executor_runner::native: CHILD sp1_GWY3_4JFRKGGI6nyJjZhcQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:52.441621Z DEBUG sp1_core_executor_runner::native: CHILD sp1_GWY3_4JFRKGGI6nyJjZhcQ==: stderr: -2026-04-20T11:38:52.441635Z DEBUG sp1_core_executor_runner::native: CHILD sp1_GWY3_4JFRKGGI6nyJjZhcQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:52.441657Z DEBUG sp1_core_executor_runner::native: CHILD sp1_GWY3_4JFRKGGI6nyJjZhcQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:52.441667Z DEBUG sp1_core_executor_runner::native: CHILD sp1_GWY3_4JFRKGGI6nyJjZhcQ==: stderr: stack backtrace: -2026-04-20T11:38:52.441674Z DEBUG sp1_core_executor_runner::native: CHILD sp1_GWY3_4JFRKGGI6nyJjZhcQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:52.441681Z DEBUG sp1_core_executor_runner::native: CHILD sp1_GWY3_4JFRKGGI6nyJjZhcQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:52.441816Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:52.442547Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:52.442873Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:52.509895Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:52.509938Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:52.510130Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:52.510479Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:52.510569Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:52.510965Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=680 blob_id=2147880530017338012539416227860130003 -2026-04-20T11:38:53.043016Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3NoiWwnARS60XdSQGqs_Yg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:53.051522Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:53.062099Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1265258 cycles -2026-04-20T11:38:53.064550Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [67, 79, 215, 201, 15, 66, 221, 77, 68, 243, 123, 67, 81, 82, 130, 195, 56, 234, 178, 37, 211, 185, 225, 238, 67, 16, 208, 41, 225, 29, 47, 116, 89, 219, 221, 144, 182, 153, 185, 147, 15, 76, 210, 159, 238, 64, 223, 39, 112, 165, 196, 131, 152, 252, 181, 68, 252, 183, 161, 228, 147, 120, 194, 32, 67, 79, 215, 201, 15, 66, 221, 77, 68, 243, 123, 67, 81, 82, 130, 195, 56, 234, 178, 37, 211, 185, 225, 238, 67, 16, 208, 41, 225, 29, 47, 116, 25, 174, 145, 237, 94, 142, 239, 168, 216, 154, 236, 147, 215, 51, 36, 124, 7, 45, 173, 106, 43, 203, 219, 219, 39, 123, 67, 238, 51, 12, 63, 0, 33, 247, 13, 174, 130, 129, 112, 56, 217, 170, 59, 61, 97, 79, 38, 109, 33, 175, 123, 127, 129, 126, 185, 236, 209, 236, 73, 170, 17, 39, 166, 19, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:53.133854Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:53.133899Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:53.216941Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:53.250989Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Xmi3Kf5aTv-oBDTNRjz6xw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:53.253812Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Xmi3Kf5aTv-oBDTNRjz6xw==: stderr: -2026-04-20T11:38:53.253837Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Xmi3Kf5aTv-oBDTNRjz6xw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:53.253846Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Xmi3Kf5aTv-oBDTNRjz6xw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:53.253853Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Xmi3Kf5aTv-oBDTNRjz6xw==: stderr: stack backtrace: -2026-04-20T11:38:53.253859Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Xmi3Kf5aTv-oBDTNRjz6xw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:53.253866Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Xmi3Kf5aTv-oBDTNRjz6xw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:53.253914Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:53.254706Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:53.254947Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:53.321667Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:53.321711Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:53.321917Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:53.322092Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:53.322150Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:53.322563Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=681 blob_id=2147880530997777461290907360493993037 -2026-04-20T11:38:53.436272Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=7 height=588 prev_hash=0x2a939fb37e6d4501113946c75ff4825c57902f46ccebf078b6bd79263ab1cee0 hash=0x505ac55675137e1a8ae4d814219720e58d9a238b66d67fc708922949f33a6dc6 producing_time=1.179352ms -2026-04-20T11:38:53.446051Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=588 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a329f78079cda70f0195abe9e1e76b605cc9dd31b13806db0a33b5b5f1bfa9319" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x64cdb9fa7a2edb2471ba8a28320e456a824f075d6aaefe8fca58d80512a74df9, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xdbe435055ed57c1530c715a667b1b847ffbaee604f40ade4aabf6f39c19ca302, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x56c2dd724c73b5bbeb0b793aacc11b083ce66d9653749da1e653e188802a3b1a, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x7c13e54d7f43edea413e56b8bc5a9dc2f72a2dbddd5d724af955debc35f05ca7, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x8416f3c4929d7b4ba9632a2537b0fe20b69e8811b90aae6b16b2876734fec391, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xba8882b30d648922e9455f92b821704874e37a6e6dbc7808f0647f780f9cca92, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xbf0a8f8b45af74690041bb2da4d718cc9e138faeb5e8e6b3298e447dc02fab9c, len=625"] -2026-04-20T11:38:53.446398Z DEBUG StfBlueprint::apply_slot{context=Node da_height=588}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a329f78079cda70f0195abe9e1e76b605cc9dd31b13806db0a33b5b5f1bfa9319 next_version=588 sesssion_starting_time=43.79µs -2026-04-20T11:38:53.447267Z DEBUG StfBlueprint::apply_slot{context=Node da_height=588}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a5e5b42903919309f7fd45f95fc143fdd907beeefdb14b32b94b89378ed40d998 next_version=588 time=937.544µs accesses_build_time=23.53µs finishing_session_time=836.634µs -2026-04-20T11:38:53.447325Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a1a9c24b1544632394ec2e97df0f48f753666d8924c70d1ddf070dd49f651b3e9" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a5e5b42903919309f7fd45f95fc143fdd907beeefdb14b32b94b89378ed40d998" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:38:53.447766Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 588, latest_finalized_slot_number: 587, sync_status: Syncing { synced_da_height: 587, target_da_height: 588 }, .. } -2026-04-20T11:38:53.447865Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 588, latest_finalized_slot_number: 587, sync_status: Syncing { synced_da_height: 587, target_da_height: 588 }, .. } -2026-04-20T11:38:53.447925Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:38:53.454768Z DEBUG sov_stf_runner::runner: Block execution complete time=6.009906931s -2026-04-20T11:38:53.454786Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:38:53.870886Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IL3VzBBNRlqTW53TaBC2tA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:53.878661Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:53.889494Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1151871 cycles -2026-04-20T11:38:53.892236Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [67, 79, 215, 201, 15, 66, 221, 77, 68, 243, 123, 67, 81, 82, 130, 195, 56, 234, 178, 37, 211, 185, 225, 238, 67, 16, 208, 41, 225, 29, 47, 116, 125, 222, 148, 135, 191, 43, 117, 132, 248, 48, 121, 169, 175, 112, 116, 241, 37, 62, 249, 208, 207, 201, 230, 54, 111, 109, 127, 133, 219, 234, 217, 157, 67, 79, 215, 201, 15, 66, 221, 77, 68, 243, 123, 67, 81, 82, 130, 195, 56, 234, 178, 37, 211, 185, 225, 238, 67, 16, 208, 41, 225, 29, 47, 116, 21, 165, 182, 211, 94, 73, 230, 6, 125, 49, 25, 164, 139, 117, 237, 207, 176, 98, 120, 142, 24, 34, 22, 113, 133, 67, 80, 127, 105, 64, 149, 213, 69, 146, 217, 143, 15, 15, 51, 105, 98, 244, 79, 229, 186, 114, 186, 164, 65, 143, 42, 75, 227, 17, 117, 50, 200, 122, 88, 235, 211, 2, 100, 112, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:53.955044Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:53.955089Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:54.029534Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:54.063391Z DEBUG sp1_core_executor_runner::native: CHILD sp1_igf7t3oKQxSPspOd4eXp2g==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:54.066217Z DEBUG sp1_core_executor_runner::native: CHILD sp1_igf7t3oKQxSPspOd4eXp2g==: stderr: -2026-04-20T11:38:54.066230Z DEBUG sp1_core_executor_runner::native: CHILD sp1_igf7t3oKQxSPspOd4eXp2g==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:54.066239Z DEBUG sp1_core_executor_runner::native: CHILD sp1_igf7t3oKQxSPspOd4eXp2g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:54.066259Z DEBUG sp1_core_executor_runner::native: CHILD sp1_igf7t3oKQxSPspOd4eXp2g==: stderr: stack backtrace: -2026-04-20T11:38:54.066266Z DEBUG sp1_core_executor_runner::native: CHILD sp1_igf7t3oKQxSPspOd4eXp2g==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:54.066272Z DEBUG sp1_core_executor_runner::native: CHILD sp1_igf7t3oKQxSPspOd4eXp2g==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:54.066431Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:54.067342Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:54.067654Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:54.133538Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:54.133584Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:54.133757Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:54.133928Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:54.133986Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:54.134358Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=682 blob_id=2147880531979414270502367386184749253 -2026-04-20T11:38:54.682100Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8yfbG2VYTaend0fWdX90hA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:54.689544Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:54.699974Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1118124 cycles -2026-04-20T11:38:54.702739Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [67, 79, 215, 201, 15, 66, 221, 77, 68, 243, 123, 67, 81, 82, 130, 195, 56, 234, 178, 37, 211, 185, 225, 238, 67, 16, 208, 41, 225, 29, 47, 116, 41, 102, 119, 190, 59, 43, 238, 51, 255, 55, 49, 232, 126, 38, 43, 37, 141, 227, 89, 185, 153, 90, 12, 101, 22, 38, 73, 113, 183, 47, 191, 171, 67, 79, 215, 201, 15, 66, 221, 77, 68, 243, 123, 67, 81, 82, 130, 195, 56, 234, 178, 37, 211, 185, 225, 238, 67, 16, 208, 41, 225, 29, 47, 116, 21, 74, 46, 107, 187, 34, 96, 204, 70, 90, 169, 22, 168, 11, 24, 233, 23, 25, 193, 38, 131, 142, 133, 223, 76, 69, 203, 15, 232, 27, 10, 201, 205, 49, 140, 125, 251, 147, 37, 237, 51, 114, 214, 56, 225, 238, 175, 83, 19, 212, 41, 2, 17, 182, 13, 215, 104, 1, 112, 136, 83, 32, 125, 101, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:54.764246Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:54.764300Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:54.840644Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:54.874899Z DEBUG sp1_core_executor_runner::native: CHILD sp1_--qYuI7ITj6YK85Xqm_zNw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:54.877717Z DEBUG sp1_core_executor_runner::native: CHILD sp1_--qYuI7ITj6YK85Xqm_zNw==: stderr: -2026-04-20T11:38:54.877730Z DEBUG sp1_core_executor_runner::native: CHILD sp1_--qYuI7ITj6YK85Xqm_zNw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:54.877742Z DEBUG sp1_core_executor_runner::native: CHILD sp1_--qYuI7ITj6YK85Xqm_zNw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:54.877749Z DEBUG sp1_core_executor_runner::native: CHILD sp1_--qYuI7ITj6YK85Xqm_zNw==: stderr: stack backtrace: -2026-04-20T11:38:54.877756Z DEBUG sp1_core_executor_runner::native: CHILD sp1_--qYuI7ITj6YK85Xqm_zNw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:54.877762Z DEBUG sp1_core_executor_runner::native: CHILD sp1_--qYuI7ITj6YK85Xqm_zNw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:54.877935Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:54.878671Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:54.878980Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:54.945425Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:54.945469Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:54.945640Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:54.945807Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:54.945875Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:54.946252Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=683 blob_id=2147880532961090405765529650917937338 -2026-04-20T11:38:55.494501Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wSZQDWRFQFa_s8RE4hWXHg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:55.501974Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:55.512510Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1119080 cycles -2026-04-20T11:38:55.515226Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [67, 79, 215, 201, 15, 66, 221, 77, 68, 243, 123, 67, 81, 82, 130, 195, 56, 234, 178, 37, 211, 185, 225, 238, 67, 16, 208, 41, 225, 29, 47, 116, 26, 67, 47, 219, 86, 72, 189, 65, 202, 124, 233, 236, 123, 188, 204, 10, 134, 232, 255, 82, 26, 154, 85, 100, 244, 16, 58, 95, 246, 26, 121, 157, 67, 79, 215, 201, 15, 66, 221, 77, 68, 243, 123, 67, 81, 82, 130, 195, 56, 234, 178, 37, 211, 185, 225, 238, 67, 16, 208, 41, 225, 29, 47, 116, 69, 4, 73, 13, 62, 114, 204, 237, 105, 84, 13, 237, 56, 147, 202, 121, 247, 234, 85, 4, 197, 195, 195, 134, 119, 150, 110, 120, 63, 68, 12, 13, 104, 196, 67, 140, 115, 214, 196, 116, 159, 226, 253, 229, 166, 139, 188, 76, 200, 222, 233, 239, 171, 91, 247, 71, 211, 25, 87, 105, 43, 157, 27, 167, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:55.577191Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:55.577237Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:55.655666Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:55.689456Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0fXbnlfuQH2L4sh-F6qjeQ==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:55.692282Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0fXbnlfuQH2L4sh-F6qjeQ==: stderr: -2026-04-20T11:38:55.692308Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0fXbnlfuQH2L4sh-F6qjeQ==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:55.692332Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0fXbnlfuQH2L4sh-F6qjeQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:55.692339Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0fXbnlfuQH2L4sh-F6qjeQ==: stderr: stack backtrace: -2026-04-20T11:38:55.692347Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0fXbnlfuQH2L4sh-F6qjeQ==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:55.692353Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0fXbnlfuQH2L4sh-F6qjeQ==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:55.692417Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:55.693190Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:55.693480Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:55.760764Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:55.760808Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:55.760987Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:55.761168Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:55.761224Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:55.761598Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=684 blob_id=2147880533947569409007825796963656996 -2026-04-20T11:38:56.320944Z DEBUG sp1_core_executor_runner::native: CHILD sp1__zlvgfO7QOOAO4lSD84BRg==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:56.328719Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:56.338977Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1146465 cycles -2026-04-20T11:38:56.341612Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [67, 79, 215, 201, 15, 66, 221, 77, 68, 243, 123, 67, 81, 82, 130, 195, 56, 234, 178, 37, 211, 185, 225, 238, 67, 16, 208, 41, 225, 29, 47, 116, 46, 87, 156, 5, 241, 66, 5, 163, 67, 33, 127, 243, 193, 32, 245, 30, 172, 133, 139, 230, 122, 96, 158, 134, 223, 181, 131, 112, 38, 69, 190, 166, 67, 79, 215, 201, 15, 66, 221, 77, 68, 243, 123, 67, 81, 82, 130, 195, 56, 234, 178, 37, 211, 185, 225, 238, 67, 16, 208, 41, 225, 29, 47, 116, 74, 1, 117, 44, 238, 138, 167, 186, 25, 25, 46, 52, 111, 172, 216, 48, 111, 196, 253, 47, 159, 253, 207, 54, 31, 51, 161, 117, 152, 73, 32, 187, 0, 90, 59, 157, 135, 59, 181, 26, 26, 66, 220, 165, 172, 240, 44, 215, 72, 34, 98, 27, 55, 243, 79, 210, 241, 76, 185, 110, 97, 134, 149, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:56.404644Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:56.404692Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:56.469098Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:56.503595Z DEBUG sp1_core_executor_runner::native: CHILD sp1_G8Y11ZyVRSC2xyaBYElwNw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:56.506401Z DEBUG sp1_core_executor_runner::native: CHILD sp1_G8Y11ZyVRSC2xyaBYElwNw==: stderr: -2026-04-20T11:38:56.506415Z DEBUG sp1_core_executor_runner::native: CHILD sp1_G8Y11ZyVRSC2xyaBYElwNw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:56.506425Z DEBUG sp1_core_executor_runner::native: CHILD sp1_G8Y11ZyVRSC2xyaBYElwNw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:56.506435Z DEBUG sp1_core_executor_runner::native: CHILD sp1_G8Y11ZyVRSC2xyaBYElwNw==: stderr: stack backtrace: -2026-04-20T11:38:56.506456Z DEBUG sp1_core_executor_runner::native: CHILD sp1_G8Y11ZyVRSC2xyaBYElwNw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:56.506463Z DEBUG sp1_core_executor_runner::native: CHILD sp1_G8Y11ZyVRSC2xyaBYElwNw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:56.506591Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:56.507374Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:56.507665Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:56.573413Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:56.573457Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:56.573600Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:56.573782Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:56.573852Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:56.574249Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=685 blob_id=2147880534929209206458411664830024364 -2026-04-20T11:38:57.125143Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ZoDXmVexRNidmK22ipckBw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:57.132774Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:57.142304Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1124781 cycles -2026-04-20T11:38:57.144914Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [67, 79, 215, 201, 15, 66, 221, 77, 68, 243, 123, 67, 81, 82, 130, 195, 56, 234, 178, 37, 211, 185, 225, 238, 67, 16, 208, 41, 225, 29, 47, 116, 99, 180, 75, 106, 109, 237, 158, 171, 108, 91, 153, 103, 55, 23, 164, 32, 75, 199, 246, 51, 13, 39, 167, 46, 184, 190, 170, 3, 166, 47, 7, 250, 67, 79, 215, 201, 15, 66, 221, 77, 68, 243, 123, 67, 81, 82, 130, 195, 56, 234, 178, 37, 211, 185, 225, 238, 67, 16, 208, 41, 225, 29, 47, 116, 0, 189, 175, 35, 107, 62, 184, 49, 18, 179, 196, 46, 23, 81, 230, 120, 155, 240, 65, 191, 53, 25, 209, 63, 105, 0, 26, 41, 22, 49, 39, 167, 136, 187, 174, 226, 172, 4, 67, 166, 138, 176, 41, 213, 138, 227, 253, 18, 40, 217, 216, 242, 35, 142, 117, 182, 227, 167, 11, 38, 57, 51, 201, 7, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:57.207888Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:57.207946Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:57.281530Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:57.315946Z DEBUG sp1_core_executor_runner::native: CHILD sp1_a8s-ps1MSr2LM4mpSq7nCw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:57.318778Z DEBUG sp1_core_executor_runner::native: CHILD sp1_a8s-ps1MSr2LM4mpSq7nCw==: stderr: -2026-04-20T11:38:57.318794Z DEBUG sp1_core_executor_runner::native: CHILD sp1_a8s-ps1MSr2LM4mpSq7nCw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:57.318804Z DEBUG sp1_core_executor_runner::native: CHILD sp1_a8s-ps1MSr2LM4mpSq7nCw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:57.318812Z DEBUG sp1_core_executor_runner::native: CHILD sp1_a8s-ps1MSr2LM4mpSq7nCw==: stderr: stack backtrace: -2026-04-20T11:38:57.318818Z DEBUG sp1_core_executor_runner::native: CHILD sp1_a8s-ps1MSr2LM4mpSq7nCw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:57.318824Z DEBUG sp1_core_executor_runner::native: CHILD sp1_a8s-ps1MSr2LM4mpSq7nCw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:57.318996Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:57.319752Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:57.320078Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:57.385793Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:57.385837Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:57.385994Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:57.386170Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:57.386231Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:57.386795Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=686 blob_id=2147880535912075696048903066011190664 -2026-04-20T11:38:57.935037Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hTnYEyveRduoHN5b2IKSJw==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:57.943056Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:57.952370Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1177361 cycles -2026-04-20T11:38:57.955078Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [67, 79, 215, 201, 15, 66, 221, 77, 68, 243, 123, 67, 81, 82, 130, 195, 56, 234, 178, 37, 211, 185, 225, 238, 67, 16, 208, 41, 225, 29, 47, 116, 86, 211, 85, 96, 33, 19, 31, 8, 77, 79, 42, 207, 97, 52, 118, 191, 5, 171, 165, 55, 177, 57, 88, 154, 199, 81, 123, 118, 90, 166, 98, 91, 67, 79, 215, 201, 15, 66, 221, 77, 68, 243, 123, 67, 81, 82, 130, 195, 56, 234, 178, 37, 211, 185, 225, 238, 67, 16, 208, 41, 225, 29, 47, 116, 89, 112, 124, 124, 111, 207, 89, 64, 109, 206, 218, 28, 104, 244, 100, 172, 206, 159, 128, 160, 1, 84, 154, 116, 57, 30, 196, 217, 142, 106, 142, 0, 31, 221, 40, 94, 190, 20, 63, 39, 13, 89, 54, 102, 94, 250, 121, 83, 94, 229, 203, 215, 90, 243, 156, 95, 38, 149, 236, 37, 61, 240, 54, 108, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:58.019793Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:58.019838Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:58.094073Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:58.125217Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5p0PY7yTTIKDIE6TQ9rTWg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:58.128049Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5p0PY7yTTIKDIE6TQ9rTWg==: stderr: -2026-04-20T11:38:58.128073Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5p0PY7yTTIKDIE6TQ9rTWg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:58.128083Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5p0PY7yTTIKDIE6TQ9rTWg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:58.128090Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5p0PY7yTTIKDIE6TQ9rTWg==: stderr: stack backtrace: -2026-04-20T11:38:58.128096Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5p0PY7yTTIKDIE6TQ9rTWg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:58.128102Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5p0PY7yTTIKDIE6TQ9rTWg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:58.128203Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:58.128872Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:58.129159Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:58.195116Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:58.195161Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:58.195294Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:58.195484Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:58.195537Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:58.195956Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=687 blob_id=2147880536890068921596560548973266794 -2026-04-20T11:38:58.690965Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fPFZGkq6Tsy-Lmqe56nlqA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:58.698394Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:58.708454Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1116308 cycles -2026-04-20T11:38:58.711025Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [67, 79, 215, 201, 15, 66, 221, 77, 68, 243, 123, 67, 81, 82, 130, 195, 56, 234, 178, 37, 211, 185, 225, 238, 67, 16, 208, 41, 225, 29, 47, 116, 34, 61, 113, 47, 32, 185, 25, 233, 243, 222, 245, 89, 237, 212, 12, 244, 244, 243, 148, 49, 237, 53, 186, 247, 188, 219, 226, 179, 177, 202, 21, 20, 67, 79, 215, 201, 15, 66, 221, 77, 68, 243, 123, 67, 81, 82, 130, 195, 56, 234, 178, 37, 211, 185, 225, 238, 67, 16, 208, 41, 225, 29, 47, 116, 20, 244, 16, 26, 154, 123, 253, 35, 94, 142, 94, 189, 171, 230, 119, 213, 130, 41, 105, 116, 75, 114, 205, 92, 190, 38, 229, 136, 116, 235, 41, 14, 37, 108, 6, 207, 166, 135, 26, 131, 195, 168, 224, 99, 44, 70, 192, 232, 6, 192, 152, 151, 237, 110, 50, 90, 223, 27, 107, 46, 159, 220, 159, 135, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:58.774773Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:58.774819Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:58.802670Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:58.836723Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wXLfvqseRB-QFEtvvwDkgA==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:58.839590Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wXLfvqseRB-QFEtvvwDkgA==: stderr: -2026-04-20T11:38:58.839614Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wXLfvqseRB-QFEtvvwDkgA==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:58.839624Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wXLfvqseRB-QFEtvvwDkgA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:58.839631Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wXLfvqseRB-QFEtvvwDkgA==: stderr: stack backtrace: -2026-04-20T11:38:58.839638Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wXLfvqseRB-QFEtvvwDkgA==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:58.839658Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wXLfvqseRB-QFEtvvwDkgA==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:58.839745Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:58.840560Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:58.840845Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:58.906624Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:58.906665Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:58.906843Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:58.907005Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:58.907076Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:58.907485Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=688 blob_id=2147880537749629309843757282086289089 -2026-04-20T11:38:59.436997Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AlKhC_XaQOijBgOWeDVMEA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:38:59.438394Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=7 height=589 prev_hash=0x505ac55675137e1a8ae4d814219720e58d9a238b66d67fc708922949f33a6dc6 hash=0xbc2e03b461de2e5733061511753d501174e97c52fac5e45b7f14aeb881378197 producing_time=1.117433ms -2026-04-20T11:38:59.444628Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:59.446258Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=589 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a5e5b42903919309f7fd45f95fc143fdd907beeefdb14b32b94b89378ed40d998" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x20056e50de3427eecb6ceccf334e49201136f3f965f22eb97dc2a0e3538ef1fa, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa89673d3ce81669df6d1c866b791e0cc2176186c51f64b928897d169fe7646e7, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1c2f5ee319b8276af0145fbafc1069725419d5eee974e96633c4c9638edfbc4e, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x30feeef3d47abc694c92930c2cdaa2f62d8cd0eb97cfc0918f80ddabb70553ce, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x81aa63136a354d24b826c5f6e6b5d8d36e8853e02c5016cb001db521254b64c4, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x7df4c02d5542878f8fd3ebca0f826d47a6e59d19e376dda9622a980185201e9a, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x12e45cd9b044cc78eb838db4171d6841d6ca3172065dff4a527bcb7f26f8ef40, len=625"] -2026-04-20T11:38:59.446643Z DEBUG StfBlueprint::apply_slot{context=Node da_height=589}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a5e5b42903919309f7fd45f95fc143fdd907beeefdb14b32b94b89378ed40d998 next_version=589 sesssion_starting_time=45.98µs -2026-04-20T11:38:59.447515Z DEBUG StfBlueprint::apply_slot{context=Node da_height=589}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a188c5fb12b7a8e65df01b04618f6084bbda286540c414966fe620cc02fb31b5e next_version=589 time=947.654µs accesses_build_time=28.53µs finishing_session_time=838.824µs -2026-04-20T11:38:59.447589Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a329f78079cda70f0195abe9e1e76b605cc9dd31b13806db0a33b5b5f1bfa9319" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a188c5fb12b7a8e65df01b04618f6084bbda286540c414966fe620cc02fb31b5e" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:38:59.448182Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 589, latest_finalized_slot_number: 588, sync_status: Syncing { synced_da_height: 588, target_da_height: 589 }, .. } -2026-04-20T11:38:59.448280Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 589, latest_finalized_slot_number: 588, sync_status: Syncing { synced_da_height: 588, target_da_height: 589 }, .. } -2026-04-20T11:38:59.448387Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:38:59.454141Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1138340 cycles -2026-04-20T11:38:59.455344Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000557641s -2026-04-20T11:38:59.455371Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:38:59.456604Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [67, 79, 215, 201, 15, 66, 221, 77, 68, 243, 123, 67, 81, 82, 130, 195, 56, 234, 178, 37, 211, 185, 225, 238, 67, 16, 208, 41, 225, 29, 47, 116, 25, 49, 76, 84, 55, 139, 97, 12, 159, 159, 160, 40, 144, 99, 166, 19, 97, 201, 41, 105, 231, 210, 142, 225, 77, 234, 127, 27, 138, 192, 5, 109, 67, 79, 215, 201, 15, 66, 221, 77, 68, 243, 123, 67, 81, 82, 130, 195, 56, 234, 178, 37, 211, 185, 225, 238, 67, 16, 208, 41, 225, 29, 47, 116, 117, 233, 245, 204, 187, 176, 173, 251, 31, 42, 192, 174, 89, 228, 3, 131, 208, 124, 98, 122, 27, 187, 57, 115, 199, 129, 172, 250, 91, 50, 171, 144, 96, 175, 211, 197, 64, 190, 24, 25, 106, 186, 144, 211, 170, 93, 157, 101, 232, 21, 2, 194, 32, 34, 241, 28, 124, 74, 28, 50, 118, 42, 169, 130, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:38:59.520335Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:59.520381Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:59.614680Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:59.648964Z DEBUG sp1_core_executor_runner::native: CHILD sp1__OSfPkM_QlKHIXofzJp8Rw==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:38:59.651864Z DEBUG sp1_core_executor_runner::native: CHILD sp1__OSfPkM_QlKHIXofzJp8Rw==: stderr: -2026-04-20T11:38:59.651889Z DEBUG sp1_core_executor_runner::native: CHILD sp1__OSfPkM_QlKHIXofzJp8Rw==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:38:59.651901Z DEBUG sp1_core_executor_runner::native: CHILD sp1__OSfPkM_QlKHIXofzJp8Rw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:59.651908Z DEBUG sp1_core_executor_runner::native: CHILD sp1__OSfPkM_QlKHIXofzJp8Rw==: stderr: stack backtrace: -2026-04-20T11:38:59.651915Z DEBUG sp1_core_executor_runner::native: CHILD sp1__OSfPkM_QlKHIXofzJp8Rw==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:38:59.651922Z DEBUG sp1_core_executor_runner::native: CHILD sp1__OSfPkM_QlKHIXofzJp8Rw==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:38:59.652016Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:38:59.652766Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:38:59.653087Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:38:59.718873Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:38:59.718913Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:38:59.719135Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:38:59.719326Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 -2026-04-20T11:38:59.719430Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:38:59.719799Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=689 blob_id=2147880538732497253554444184263389431 -2026-04-20T11:39:00.276122Z DEBUG sp1_core_executor_runner::native: CHILD sp1_L-kf_BHaS7qRSzYZT8-FNA==: stderr: WARNING: Using insecure random number generator. -2026-04-20T11:39:00.283813Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:39:00.293433Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1148192 cycles -2026-04-20T11:39:00.295943Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [67, 79, 215, 201, 15, 66, 221, 77, 68, 243, 123, 67, 81, 82, 130, 195, 56, 234, 178, 37, 211, 185, 225, 238, 67, 16, 208, 41, 225, 29, 47, 116, 123, 253, 57, 104, 40, 207, 237, 135, 0, 122, 48, 39, 44, 4, 175, 128, 204, 76, 179, 115, 181, 44, 56, 119, 238, 32, 140, 140, 223, 213, 173, 97, 67, 79, 215, 201, 15, 66, 221, 77, 68, 243, 123, 67, 81, 82, 130, 195, 56, 234, 178, 37, 211, 185, 225, 238, 67, 16, 208, 41, 225, 29, 47, 116, 6, 24, 186, 26, 125, 12, 210, 180, 61, 55, 195, 216, 52, 7, 92, 116, 83, 213, 218, 14, 100, 133, 225, 71, 211, 239, 5, 85, 87, 224, 199, 6, 241, 123, 61, 149, 141, 105, 159, 161, 74, 58, 83, 114, 105, 142, 212, 93, 111, 20, 204, 144, 250, 141, 54, 236, 228, 169, 185, 214, 118, 194, 56, 180, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] -2026-04-20T11:39:00.358666Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:39:00.358710Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:39:00.426131Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed -2026-04-20T11:39:00.460017Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4Mb6mRa5RP-baV4v9MMOqg==: stdout: VVVV SP1Verifier 2 -2026-04-20T11:39:00.462886Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4Mb6mRa5RP-baV4v9MMOqg==: stderr: -2026-04-20T11:39:00.462910Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4Mb6mRa5RP-baV4v9MMOqg==: stderr: thread '' (1) panicked at /home/blazej/workspace/sovereign/sovereign-sdk/crates/rollup-interface/src/state_machine/zk/aggregated_proof/circuit.rs:54:33: -2026-04-20T11:39:00.462920Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4Mb6mRa5RP-baV4v9MMOqg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:39:00.462927Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4Mb6mRa5RP-baV4v9MMOqg==: stderr: stack backtrace: -2026-04-20T11:39:00.462933Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4Mb6mRa5RP-baV4v9MMOqg==: stderr: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. -2026-04-20T11:39:00.462940Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4Mb6mRa5RP-baV4v9MMOqg==: stderr: Failed to verify aggregated proof: io error: unexpected end of file -2026-04-20T11:39:00.463052Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 -2026-04-20T11:39:00.463801Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1141281 cycles -2026-04-20T11:39:00.464102Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [] -2026-04-20T11:39:00.530546Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 -2026-04-20T11:39:00.530591Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive -2026-04-20T11:39:00.530779Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=575 -2026-04-20T11:39:00.531375Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=690 blob_id=2147880539712965014041127652529684246 -2026-04-20T11:39:05.440775Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=590 prev_hash=0xbc2e03b461de2e5733061511753d501174e97c52fac5e45b7f14aeb881378197 hash=0x37485050c85e87e0ffa951fedd317dda2a24dbd70571d4b87b90c6625730cc46 producing_time=1.236812ms -2026-04-20T11:39:05.446536Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=590 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a188c5fb12b7a8e65df01b04618f6084bbda286540c414966fe620cc02fb31b5e" batch_blobs=[] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x379942f0a561b8281a0a1c5339a0e5df3820cbdadc4bfd46959508a7ee37ccf2, len=625", "sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x11d312ab0d9e3f9afd2e32ffc1219f91b7ad58c9da5b5e88867d14f9f21df0fe, len=625"] -2026-04-20T11:39:05.446882Z DEBUG StfBlueprint::apply_slot{context=Node da_height=590}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a188c5fb12b7a8e65df01b04618f6084bbda286540c414966fe620cc02fb31b5e next_version=590 sesssion_starting_time=47.71µs -2026-04-20T11:39:05.447700Z DEBUG StfBlueprint::apply_slot{context=Node da_height=590}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a5d34b9b345f772def3ae094baedb5e00ab71ab4d1830346490db3a49876a640f next_version=590 time=887.664µs accesses_build_time=20.81µs finishing_session_time=784.294µs -2026-04-20T11:39:05.447774Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a5e5b42903919309f7fd45f95fc143fdd907beeefdb14b32b94b89378ed40d998" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a5d34b9b345f772def3ae094baedb5e00ab71ab4d1830346490db3a49876a640f" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:39:05.448399Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 590, latest_finalized_slot_number: 589, sync_status: Syncing { synced_da_height: 589, target_da_height: 590 }, .. } -2026-04-20T11:39:05.448520Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 590, latest_finalized_slot_number: 589, sync_status: Syncing { synced_da_height: 589, target_da_height: 590 }, .. } -2026-04-20T11:39:05.448592Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:39:05.458975Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003605511s -2026-04-20T11:39:05.459003Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:39:11.443422Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=591 prev_hash=0x37485050c85e87e0ffa951fedd317dda2a24dbd70571d4b87b90c6625730cc46 hash=0xc3fcba318d362212dad5d9ec6e3adf306e4281f3ded108dd6151c25ea7407aff producing_time=1.185332ms -2026-04-20T11:39:11.450358Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=591 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a5d34b9b345f772def3ae094baedb5e00ab71ab4d1830346490db3a49876a640f" batch_blobs=[] proof_blobs=[] -2026-04-20T11:39:11.450697Z DEBUG StfBlueprint::apply_slot{context=Node da_height=591}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a5d34b9b345f772def3ae094baedb5e00ab71ab4d1830346490db3a49876a640f next_version=591 sesssion_starting_time=50.959µs -2026-04-20T11:39:11.451438Z DEBUG StfBlueprint::apply_slot{context=Node da_height=591}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a5d58d005d34d4eaa57bdfbc8e752c09ac1820cc013bcf3d91eb8f77af7935af2 next_version=591 time=810.355µs accesses_build_time=17.65µs finishing_session_time=706.236µs -2026-04-20T11:39:11.451508Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a188c5fb12b7a8e65df01b04618f6084bbda286540c414966fe620cc02fb31b5e" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a5d58d005d34d4eaa57bdfbc8e752c09ac1820cc013bcf3d91eb8f77af7935af2" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:39:11.452070Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 591, latest_finalized_slot_number: 590, sync_status: Synced { synced_da_height: 590 }, .. } -2026-04-20T11:39:11.452175Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 591, latest_finalized_slot_number: 590, sync_status: Synced { synced_da_height: 590 }, .. } -2026-04-20T11:39:11.452238Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:39:11.459258Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000256442s -2026-04-20T11:39:11.459285Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:39:17.446264Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=592 prev_hash=0xc3fcba318d362212dad5d9ec6e3adf306e4281f3ded108dd6151c25ea7407aff hash=0xcf8eaa52cf5eea2a237f5e766c58c559a2264187a214287e20d9492be17845a5 producing_time=1.277172ms -2026-04-20T11:39:17.451056Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=592 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a5d58d005d34d4eaa57bdfbc8e752c09ac1820cc013bcf3d91eb8f77af7935af2" batch_blobs=[] proof_blobs=[] -2026-04-20T11:39:17.451433Z DEBUG StfBlueprint::apply_slot{context=Node da_height=592}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a5d58d005d34d4eaa57bdfbc8e752c09ac1820cc013bcf3d91eb8f77af7935af2 next_version=592 sesssion_starting_time=50.709µs -2026-04-20T11:39:17.452201Z DEBUG StfBlueprint::apply_slot{context=Node da_height=592}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a1a075ac326274d02c75a5b2d70923b9140bd55b236ecf141f36a2124c8d6b48f next_version=592 time=836.184µs accesses_build_time=15.79µs finishing_session_time=730.455µs -2026-04-20T11:39:17.452265Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a5d34b9b345f772def3ae094baedb5e00ab71ab4d1830346490db3a49876a640f" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a1a075ac326274d02c75a5b2d70923b9140bd55b236ecf141f36a2124c8d6b48f" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:39:17.452838Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 592, latest_finalized_slot_number: 591, sync_status: Synced { synced_da_height: 591 }, .. } -2026-04-20T11:39:17.452952Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 592, latest_finalized_slot_number: 591, sync_status: Synced { synced_da_height: 591 }, .. } -2026-04-20T11:39:17.453016Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:39:17.463702Z DEBUG sov_stf_runner::runner: Block execution complete time=6.004418266s -2026-04-20T11:39:17.463729Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:39:23.448452Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=593 prev_hash=0xcf8eaa52cf5eea2a237f5e766c58c559a2264187a214287e20d9492be17845a5 hash=0x3fe95eecf786bf4df4ddcedf9d4a4b853802ed7ccc9b20ebbb040faaa3f60935 producing_time=1.254892ms -2026-04-20T11:39:23.455226Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=593 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a1a075ac326274d02c75a5b2d70923b9140bd55b236ecf141f36a2124c8d6b48f" batch_blobs=[] proof_blobs=[] -2026-04-20T11:39:23.455621Z DEBUG StfBlueprint::apply_slot{context=Node da_height=593}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a1a075ac326274d02c75a5b2d70923b9140bd55b236ecf141f36a2124c8d6b48f next_version=593 sesssion_starting_time=53.76µs -2026-04-20T11:39:23.456358Z DEBUG StfBlueprint::apply_slot{context=Node da_height=593}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a5ce40268e65c9cac4a66a2f2997aaf702a271f9adae181a917cbe280c5497821 next_version=593 time=807.994µs accesses_build_time=16.249µs finishing_session_time=694.285µs -2026-04-20T11:39:23.456444Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a5d58d005d34d4eaa57bdfbc8e752c09ac1820cc013bcf3d91eb8f77af7935af2" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a5ce40268e65c9cac4a66a2f2997aaf702a271f9adae181a917cbe280c5497821" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:39:23.456974Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 593, latest_finalized_slot_number: 592, sync_status: Synced { synced_da_height: 592 }, .. } -2026-04-20T11:39:23.457072Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 593, latest_finalized_slot_number: 592, sync_status: Synced { synced_da_height: 592 }, .. } -2026-04-20T11:39:23.457131Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:39:23.467489Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003760631s -2026-04-20T11:39:23.467523Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:39:29.450803Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=594 prev_hash=0x3fe95eecf786bf4df4ddcedf9d4a4b853802ed7ccc9b20ebbb040faaa3f60935 hash=0xe705e5e5280c2045b083d2de36103df4e4f896f09e9bbda12f315df1fabd3bca producing_time=1.146533ms -2026-04-20T11:39:29.459538Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=594 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a5ce40268e65c9cac4a66a2f2997aaf702a271f9adae181a917cbe280c5497821" batch_blobs=[] proof_blobs=[] -2026-04-20T11:39:29.459893Z DEBUG StfBlueprint::apply_slot{context=Node da_height=594}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a5ce40268e65c9cac4a66a2f2997aaf702a271f9adae181a917cbe280c5497821 next_version=594 sesssion_starting_time=49.999µs -2026-04-20T11:39:29.460610Z DEBUG StfBlueprint::apply_slot{context=Node da_height=594}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a6ec50b34ed6a3cb12564c67204abd1cd5d29ed57b207ee95caca14d46fc97568 next_version=594 time=786.195µs accesses_build_time=17.631µs finishing_session_time=679.326µs -2026-04-20T11:39:29.460679Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a1a075ac326274d02c75a5b2d70923b9140bd55b236ecf141f36a2124c8d6b48f" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a6ec50b34ed6a3cb12564c67204abd1cd5d29ed57b207ee95caca14d46fc97568" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:39:29.461253Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 594, latest_finalized_slot_number: 593, sync_status: Synced { synced_da_height: 593 }, .. } -2026-04-20T11:39:29.461354Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 594, latest_finalized_slot_number: 593, sync_status: Synced { synced_da_height: 593 }, .. } -2026-04-20T11:39:29.461423Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:39:29.468080Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00055962s -2026-04-20T11:39:29.468115Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:39:35.453341Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=595 prev_hash=0xe705e5e5280c2045b083d2de36103df4e4f896f09e9bbda12f315df1fabd3bca hash=0xd647dce145083ea3986db7a8eed3c54283555e65752c119d1d43527ad22d9c2d producing_time=1.260722ms -2026-04-20T11:39:35.459205Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=595 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a6ec50b34ed6a3cb12564c67204abd1cd5d29ed57b207ee95caca14d46fc97568" batch_blobs=[] proof_blobs=[] -2026-04-20T11:39:35.459564Z DEBUG StfBlueprint::apply_slot{context=Node da_height=595}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a6ec50b34ed6a3cb12564c67204abd1cd5d29ed57b207ee95caca14d46fc97568 next_version=595 sesssion_starting_time=48.51µs -2026-04-20T11:39:35.460301Z DEBUG StfBlueprint::apply_slot{context=Node da_height=595}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a11884a3f8d9cfd564e76b78239cf6e018f5efc55b8c9dedb0cbbb2836701cb19 next_version=595 time=805.195µs accesses_build_time=17.56µs finishing_session_time=694.585µs -2026-04-20T11:39:35.460393Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a5ce40268e65c9cac4a66a2f2997aaf702a271f9adae181a917cbe280c5497821" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a11884a3f8d9cfd564e76b78239cf6e018f5efc55b8c9dedb0cbbb2836701cb19" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:39:35.460991Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 595, latest_finalized_slot_number: 594, sync_status: Synced { synced_da_height: 594 }, .. } -2026-04-20T11:39:35.461098Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 595, latest_finalized_slot_number: 594, sync_status: Synced { synced_da_height: 594 }, .. } -2026-04-20T11:39:35.461164Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:39:35.468132Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000018335s -2026-04-20T11:39:35.468176Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:39:41.456211Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=596 prev_hash=0xd647dce145083ea3986db7a8eed3c54283555e65752c119d1d43527ad22d9c2d hash=0xf8144c5f2040b176223871357023914d2013e31f0c56731fe1cc578b465483c6 producing_time=1.204152ms -2026-04-20T11:39:41.459887Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=596 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a11884a3f8d9cfd564e76b78239cf6e018f5efc55b8c9dedb0cbbb2836701cb19" batch_blobs=[] proof_blobs=[] -2026-04-20T11:39:41.460231Z DEBUG StfBlueprint::apply_slot{context=Node da_height=596}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a11884a3f8d9cfd564e76b78239cf6e018f5efc55b8c9dedb0cbbb2836701cb19 next_version=596 sesssion_starting_time=48.42µs -2026-04-20T11:39:41.460983Z DEBUG StfBlueprint::apply_slot{context=Node da_height=596}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a754f60df7e83823cb556ad160b5421df2f124bb7ac2064eaff1953b3bc99a640 next_version=596 time=820.214µs accesses_build_time=18.279µs finishing_session_time=718.005µs -2026-04-20T11:39:41.461064Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a6ec50b34ed6a3cb12564c67204abd1cd5d29ed57b207ee95caca14d46fc97568" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a754f60df7e83823cb556ad160b5421df2f124bb7ac2064eaff1953b3bc99a640" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:39:41.461696Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 596, latest_finalized_slot_number: 595, sync_status: Synced { synced_da_height: 595 }, .. } -2026-04-20T11:39:41.461815Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 596, latest_finalized_slot_number: 595, sync_status: Synced { synced_da_height: 595 }, .. } -2026-04-20T11:39:41.461884Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:39:41.471499Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003325943s -2026-04-20T11:39:41.471526Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:39:47.457748Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=597 prev_hash=0xf8144c5f2040b176223871357023914d2013e31f0c56731fe1cc578b465483c6 hash=0x40e954b249f1c8512e721f57397ecdd9bcbd12a892f11bdf6e23547b9e60cfba producing_time=1.214372ms -2026-04-20T11:39:47.463427Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=597 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a754f60df7e83823cb556ad160b5421df2f124bb7ac2064eaff1953b3bc99a640" batch_blobs=[] proof_blobs=[] -2026-04-20T11:39:47.463788Z DEBUG StfBlueprint::apply_slot{context=Node da_height=597}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a754f60df7e83823cb556ad160b5421df2f124bb7ac2064eaff1953b3bc99a640 next_version=597 sesssion_starting_time=51.38µs -2026-04-20T11:39:47.464628Z DEBUG StfBlueprint::apply_slot{context=Node da_height=597}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a6a151001166faf4aa0bdf0e1b96aa21bf362adff1b609526379ef587428273f3 next_version=597 time=908.945µs accesses_build_time=16.6µs finishing_session_time=805.805µs -2026-04-20T11:39:47.464697Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a11884a3f8d9cfd564e76b78239cf6e018f5efc55b8c9dedb0cbbb2836701cb19" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a6a151001166faf4aa0bdf0e1b96aa21bf362adff1b609526379ef587428273f3" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:39:47.465233Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 597, latest_finalized_slot_number: 596, sync_status: Synced { synced_da_height: 596 }, .. } -2026-04-20T11:39:47.465355Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 597, latest_finalized_slot_number: 596, sync_status: Synced { synced_da_height: 596 }, .. } -2026-04-20T11:39:47.465439Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:39:47.472125Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00060057s -2026-04-20T11:39:47.472150Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:39:53.459825Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=598 prev_hash=0x40e954b249f1c8512e721f57397ecdd9bcbd12a892f11bdf6e23547b9e60cfba hash=0x2d53211dbfd65be5c26beccd54e2cafa30381c0049a4b78d90ebb82c38d02643 producing_time=1.243632ms -2026-04-20T11:39:53.463641Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=598 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a6a151001166faf4aa0bdf0e1b96aa21bf362adff1b609526379ef587428273f3" batch_blobs=[] proof_blobs=[] -2026-04-20T11:39:53.463987Z DEBUG StfBlueprint::apply_slot{context=Node da_height=598}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a6a151001166faf4aa0bdf0e1b96aa21bf362adff1b609526379ef587428273f3 next_version=598 sesssion_starting_time=48.19µs -2026-04-20T11:39:53.464708Z DEBUG StfBlueprint::apply_slot{context=Node da_height=598}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a4609983e754036108bdc5d356c3b5907c690edda355028b38caac8e28a094b35 next_version=598 time=785.535µs accesses_build_time=16.29µs finishing_session_time=685.346µs -2026-04-20T11:39:53.464775Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a754f60df7e83823cb556ad160b5421df2f124bb7ac2064eaff1953b3bc99a640" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a4609983e754036108bdc5d356c3b5907c690edda355028b38caac8e28a094b35" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:39:53.465351Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 598, latest_finalized_slot_number: 597, sync_status: Synced { synced_da_height: 597 }, .. } -2026-04-20T11:39:53.465451Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 598, latest_finalized_slot_number: 597, sync_status: Synced { synced_da_height: 597 }, .. } -2026-04-20T11:39:53.465509Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:39:53.475537Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003387913s -2026-04-20T11:39:53.475568Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:39:59.462679Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=599 prev_hash=0x2d53211dbfd65be5c26beccd54e2cafa30381c0049a4b78d90ebb82c38d02643 hash=0x64b0dee108d36c140f0efbb5d46a5ed6be9541ff83862b68cb91bbe9b708f0cd producing_time=1.221453ms -2026-04-20T11:39:59.467486Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=599 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a4609983e754036108bdc5d356c3b5907c690edda355028b38caac8e28a094b35" batch_blobs=[] proof_blobs=[] -2026-04-20T11:39:59.467824Z DEBUG StfBlueprint::apply_slot{context=Node da_height=599}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a4609983e754036108bdc5d356c3b5907c690edda355028b38caac8e28a094b35 next_version=599 sesssion_starting_time=49.58µs -2026-04-20T11:39:59.468610Z DEBUG StfBlueprint::apply_slot{context=Node da_height=599}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a28a1892833ba54a4652f9dcd8c8a1b37b54b5ad4aa8256de51b57248aca13ab3 next_version=599 time=853.065µs accesses_build_time=16.19µs finishing_session_time=753.195µs -2026-04-20T11:39:59.468683Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a6a151001166faf4aa0bdf0e1b96aa21bf362adff1b609526379ef587428273f3" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a28a1892833ba54a4652f9dcd8c8a1b37b54b5ad4aa8256de51b57248aca13ab3" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:39:59.469274Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 599, latest_finalized_slot_number: 598, sync_status: Synced { synced_da_height: 598 }, .. } -2026-04-20T11:39:59.469387Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 599, latest_finalized_slot_number: 598, sync_status: Synced { synced_da_height: 598 }, .. } -2026-04-20T11:39:59.469459Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:39:59.475998Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000432262s -2026-04-20T11:39:59.476023Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:40:05.465149Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=600 prev_hash=0x64b0dee108d36c140f0efbb5d46a5ed6be9541ff83862b68cb91bbe9b708f0cd hash=0xd29b82de16536bc926dcf1d5b427df4685756b5cc4e7a3f93adee93021ac874c producing_time=1.261232ms -2026-04-20T11:40:05.467773Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=600 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a28a1892833ba54a4652f9dcd8c8a1b37b54b5ad4aa8256de51b57248aca13ab3" batch_blobs=[] proof_blobs=[] -2026-04-20T11:40:05.468105Z DEBUG StfBlueprint::apply_slot{context=Node da_height=600}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a28a1892833ba54a4652f9dcd8c8a1b37b54b5ad4aa8256de51b57248aca13ab3 next_version=600 sesssion_starting_time=53.8µs -2026-04-20T11:40:05.468876Z DEBUG StfBlueprint::apply_slot{context=Node da_height=600}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a380a9dfa5e3cb3a2ca916becc78c35cf106109d91471ee7f53e2cb536c6907c6 next_version=600 time=841.185µs accesses_build_time=15.39µs finishing_session_time=739.145µs -2026-04-20T11:40:05.468942Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a4609983e754036108bdc5d356c3b5907c690edda355028b38caac8e28a094b35" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a380a9dfa5e3cb3a2ca916becc78c35cf106109d91471ee7f53e2cb536c6907c6" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:40:05.469554Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 600, latest_finalized_slot_number: 599, sync_status: Synced { synced_da_height: 599 }, .. } -2026-04-20T11:40:05.469665Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 600, latest_finalized_slot_number: 599, sync_status: Synced { synced_da_height: 599 }, .. } -2026-04-20T11:40:05.469724Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:40:05.479699Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003676721s -2026-04-20T11:40:05.479727Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:40:11.466504Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=601 prev_hash=0xd29b82de16536bc926dcf1d5b427df4685756b5cc4e7a3f93adee93021ac874c hash=0xac2b0f76ebce3538e73f07178a1e251c11876dd99b9f8ee592a50fdecda3568c producing_time=807.125µs -2026-04-20T11:40:11.470941Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=601 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a380a9dfa5e3cb3a2ca916becc78c35cf106109d91471ee7f53e2cb536c6907c6" batch_blobs=[] proof_blobs=[] -2026-04-20T11:40:11.471126Z DEBUG StfBlueprint::apply_slot{context=Node da_height=601}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a380a9dfa5e3cb3a2ca916becc78c35cf106109d91471ee7f53e2cb536c6907c6 next_version=601 sesssion_starting_time=27.41µs -2026-04-20T11:40:11.471705Z DEBUG StfBlueprint::apply_slot{context=Node da_height=601}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a766d0dd3bce959f11fa989cedc7b615ea8508109ade9403c05bab49cdccdf942 next_version=601 time=614.906µs accesses_build_time=8.03µs finishing_session_time=560.296µs -2026-04-20T11:40:11.471789Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a28a1892833ba54a4652f9dcd8c8a1b37b54b5ad4aa8256de51b57248aca13ab3" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a766d0dd3bce959f11fa989cedc7b615ea8508109ade9403c05bab49cdccdf942" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:40:11.472208Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 601, latest_finalized_slot_number: 600, sync_status: Synced { synced_da_height: 600 }, .. } -2026-04-20T11:40:11.472250Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 601, latest_finalized_slot_number: 600, sync_status: Synced { synced_da_height: 600 }, .. } -2026-04-20T11:40:11.472278Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:40:11.478862Z DEBUG sov_stf_runner::runner: Block execution complete time=5.99913598s -2026-04-20T11:40:11.478888Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:40:17.468641Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=602 prev_hash=0xac2b0f76ebce3538e73f07178a1e251c11876dd99b9f8ee592a50fdecda3568c hash=0x22121b6e4b7c41d7ddd517953e07d7978acd3d623a3d1be3cd2704565f2e72ea producing_time=1.091433ms -2026-04-20T11:40:17.470296Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=602 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a766d0dd3bce959f11fa989cedc7b615ea8508109ade9403c05bab49cdccdf942" batch_blobs=[] proof_blobs=[] -2026-04-20T11:40:17.470649Z DEBUG StfBlueprint::apply_slot{context=Node da_height=602}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a766d0dd3bce959f11fa989cedc7b615ea8508109ade9403c05bab49cdccdf942 next_version=602 sesssion_starting_time=52.92µs -2026-04-20T11:40:17.471390Z DEBUG StfBlueprint::apply_slot{context=Node da_height=602}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a5f56a9f5152544516d305eee6d36ee41df884f2f0a6366224d9169d1d88db407 next_version=602 time=809.884µs accesses_build_time=14.649µs finishing_session_time=708.175µs -2026-04-20T11:40:17.471456Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a380a9dfa5e3cb3a2ca916becc78c35cf106109d91471ee7f53e2cb536c6907c6" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a5f56a9f5152544516d305eee6d36ee41df884f2f0a6366224d9169d1d88db407" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:40:17.471949Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 602, latest_finalized_slot_number: 601, sync_status: Synced { synced_da_height: 601 }, .. } -2026-04-20T11:40:17.472038Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 602, latest_finalized_slot_number: 601, sync_status: Synced { synced_da_height: 601 }, .. } -2026-04-20T11:40:17.472116Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:40:17.478654Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999767367s -2026-04-20T11:40:17.478682Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:40:23.471555Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=603 prev_hash=0x22121b6e4b7c41d7ddd517953e07d7978acd3d623a3d1be3cd2704565f2e72ea hash=0x373ab38abf2b796ba75bc49cd459c61657550fb213d3c86971c3840da9869507 producing_time=1.145352ms -2026-04-20T11:40:23.480359Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=603 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a5f56a9f5152544516d305eee6d36ee41df884f2f0a6366224d9169d1d88db407" batch_blobs=[] proof_blobs=[] -2026-04-20T11:40:23.480687Z DEBUG StfBlueprint::apply_slot{context=Node da_height=603}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a5f56a9f5152544516d305eee6d36ee41df884f2f0a6366224d9169d1d88db407 next_version=603 sesssion_starting_time=47.299µs -2026-04-20T11:40:23.481431Z DEBUG StfBlueprint::apply_slot{context=Node da_height=603}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a39f31578575d68179ca9d77b96d4743e8649af51f87a18310dc3f0c9ddbbb4bb next_version=603 time=806.725µs accesses_build_time=14.67µs finishing_session_time=711.726µs -2026-04-20T11:40:23.481500Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a766d0dd3bce959f11fa989cedc7b615ea8508109ade9403c05bab49cdccdf942" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a39f31578575d68179ca9d77b96d4743e8649af51f87a18310dc3f0c9ddbbb4bb" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:40:23.482003Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 603, latest_finalized_slot_number: 602, sync_status: Synced { synced_da_height: 602 }, .. } -2026-04-20T11:40:23.482093Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 603, latest_finalized_slot_number: 602, sync_status: Synced { synced_da_height: 602 }, .. } -2026-04-20T11:40:23.482165Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:40:23.489042Z DEBUG sov_stf_runner::runner: Block execution complete time=6.010360948s -2026-04-20T11:40:23.489073Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:40:29.474228Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=604 prev_hash=0x373ab38abf2b796ba75bc49cd459c61657550fb213d3c86971c3840da9869507 hash=0x1ef19fc6b6397647e816e40218a6932d200a8248dc9a0c5a22ea7b25eb93e8cc producing_time=1.344331ms -2026-04-20T11:40:29.480858Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=604 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a39f31578575d68179ca9d77b96d4743e8649af51f87a18310dc3f0c9ddbbb4bb" batch_blobs=[] proof_blobs=[] -2026-04-20T11:40:29.481194Z DEBUG StfBlueprint::apply_slot{context=Node da_height=604}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a39f31578575d68179ca9d77b96d4743e8649af51f87a18310dc3f0c9ddbbb4bb next_version=604 sesssion_starting_time=47.65µs -2026-04-20T11:40:29.482015Z DEBUG StfBlueprint::apply_slot{context=Node da_height=604}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a070660e85ea8c5bd7cd7f0d7beba988d096f3fd9800ff70029fc678690387493 next_version=604 time=884.234µs accesses_build_time=14.579µs finishing_session_time=786.475µs -2026-04-20T11:40:29.482082Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a5f56a9f5152544516d305eee6d36ee41df884f2f0a6366224d9169d1d88db407" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a070660e85ea8c5bd7cd7f0d7beba988d096f3fd9800ff70029fc678690387493" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:40:29.482559Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 604, latest_finalized_slot_number: 603, sync_status: Synced { synced_da_height: 603 }, .. } -2026-04-20T11:40:29.482648Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 604, latest_finalized_slot_number: 603, sync_status: Synced { synced_da_height: 603 }, .. } -2026-04-20T11:40:29.482709Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:40:29.492776Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003703981s -2026-04-20T11:40:29.492801Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:40:35.476550Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=605 prev_hash=0x1ef19fc6b6397647e816e40218a6932d200a8248dc9a0c5a22ea7b25eb93e8cc hash=0xe6a6929100e9c9d04547256649da8b8114f65462506ba1694ccea9e179eca884 producing_time=1.185142ms -2026-04-20T11:40:35.484471Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=605 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a070660e85ea8c5bd7cd7f0d7beba988d096f3fd9800ff70029fc678690387493" batch_blobs=[] proof_blobs=[] -2026-04-20T11:40:35.484789Z DEBUG StfBlueprint::apply_slot{context=Node da_height=605}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a070660e85ea8c5bd7cd7f0d7beba988d096f3fd9800ff70029fc678690387493 next_version=605 sesssion_starting_time=49.38µs -2026-04-20T11:40:35.485550Z DEBUG StfBlueprint::apply_slot{context=Node da_height=605}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a2406262752324452f378c341376881d3ec8afe96384bc6522d7c3cf048d1d781 next_version=605 time=826.035µs accesses_build_time=14.74µs finishing_session_time=728.915µs -2026-04-20T11:40:35.485615Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a39f31578575d68179ca9d77b96d4743e8649af51f87a18310dc3f0c9ddbbb4bb" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a2406262752324452f378c341376881d3ec8afe96384bc6522d7c3cf048d1d781" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:40:35.486100Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 605, latest_finalized_slot_number: 605, sync_status: Synced { synced_da_height: 604 }, .. } -2026-04-20T11:40:35.486186Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 605, latest_finalized_slot_number: 605, sync_status: Synced { synced_da_height: 604 }, .. } -2026-04-20T11:40:35.486246Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:40:35.498687Z DEBUG sov_stf_runner::runner: Block execution complete time=6.005887317s -2026-04-20T11:40:35.498705Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:40:41.478589Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=606 prev_hash=0xe6a6929100e9c9d04547256649da8b8114f65462506ba1694ccea9e179eca884 hash=0x6a1c43f05b110cf336f9d92cd105596b1bc6217a5a14fac6e0cb1fd5245dccbe producing_time=1.087823ms -2026-04-20T11:40:41.480171Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=606 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a2406262752324452f378c341376881d3ec8afe96384bc6522d7c3cf048d1d781" batch_blobs=[] proof_blobs=[] -2026-04-20T11:40:41.480519Z DEBUG StfBlueprint::apply_slot{context=Node da_height=606}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a2406262752324452f378c341376881d3ec8afe96384bc6522d7c3cf048d1d781 next_version=606 sesssion_starting_time=44.069µs -2026-04-20T11:40:41.481349Z DEBUG StfBlueprint::apply_slot{context=Node da_height=606}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a4bad723ff2a51b9d814b083b24c24836529f5b400930d6e627a7d66cd70b8ba9 next_version=606 time=892.774µs accesses_build_time=17.13µs finishing_session_time=793.575µs -2026-04-20T11:40:41.481419Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a2406262752324452f378c341376881d3ec8afe96384bc6522d7c3cf048d1d781" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a4bad723ff2a51b9d814b083b24c24836529f5b400930d6e627a7d66cd70b8ba9" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:40:41.481895Z DEBUG sov_stf_runner::runner: Block execution complete time=5.983190204s -2026-04-20T11:40:41.481922Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:40:41.481982Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 606, latest_finalized_slot_number: 605, sync_status: Synced { synced_da_height: 605 }, .. } -2026-04-20T11:40:41.482069Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 606, latest_finalized_slot_number: 605, sync_status: Synced { synced_da_height: 605 }, .. } -2026-04-20T11:40:41.482137Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:40:47.480926Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=607 prev_hash=0x6a1c43f05b110cf336f9d92cd105596b1bc6217a5a14fac6e0cb1fd5245dccbe hash=0xda2763e4894c8d554d88cbb1284344403cf96447c37f6050ef282f18568c68bf producing_time=1.189552ms -2026-04-20T11:40:47.483744Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=607 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a4bad723ff2a51b9d814b083b24c24836529f5b400930d6e627a7d66cd70b8ba9" batch_blobs=[] proof_blobs=[] -2026-04-20T11:40:47.484069Z DEBUG StfBlueprint::apply_slot{context=Node da_height=607}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a4bad723ff2a51b9d814b083b24c24836529f5b400930d6e627a7d66cd70b8ba9 next_version=607 sesssion_starting_time=52.29µs -2026-04-20T11:40:47.484864Z DEBUG StfBlueprint::apply_slot{context=Node da_height=607}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a31aff02b133e29ca38d8629384ebfecd1cec7f5ad384acf3aa48da219b9cd02a next_version=607 time=864.524µs accesses_build_time=15.68µs finishing_session_time=754.676µs -2026-04-20T11:40:47.484942Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a2406262752324452f378c341376881d3ec8afe96384bc6522d7c3cf048d1d781" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a31aff02b133e29ca38d8629384ebfecd1cec7f5ad384acf3aa48da219b9cd02a" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:40:47.485477Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 607, latest_finalized_slot_number: 607, sync_status: Synced { synced_da_height: 606 }, .. } -2026-04-20T11:40:47.485585Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 607, latest_finalized_slot_number: 607, sync_status: Synced { synced_da_height: 606 }, .. } -2026-04-20T11:40:47.485650Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:40:47.493379Z DEBUG sov_stf_runner::runner: Block execution complete time=6.011459062s -2026-04-20T11:40:47.493395Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:40:53.482997Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=608 prev_hash=0xda2763e4894c8d554d88cbb1284344403cf96447c37f6050ef282f18568c68bf hash=0x678cff27efa34b0b76533c19b4bf7126babe5eda17e662848a6ae099b2aa1280 producing_time=1.060813ms -2026-04-20T11:40:53.485572Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=608 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a31aff02b133e29ca38d8629384ebfecd1cec7f5ad384acf3aa48da219b9cd02a" batch_blobs=[] proof_blobs=[] -2026-04-20T11:40:53.485896Z DEBUG StfBlueprint::apply_slot{context=Node da_height=608}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a31aff02b133e29ca38d8629384ebfecd1cec7f5ad384acf3aa48da219b9cd02a next_version=608 sesssion_starting_time=47.26µs -2026-04-20T11:40:53.486576Z DEBUG StfBlueprint::apply_slot{context=Node da_height=608}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a3652895bb9a6be77c9a4baeddf346f5ba7b4c592b221ac0e663e3b3eaf56dea6 next_version=608 time=745.865µs accesses_build_time=16.58µs finishing_session_time=642.776µs -2026-04-20T11:40:53.486644Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a31aff02b133e29ca38d8629384ebfecd1cec7f5ad384acf3aa48da219b9cd02a" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a3652895bb9a6be77c9a4baeddf346f5ba7b4c592b221ac0e663e3b3eaf56dea6" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:40:53.487152Z DEBUG sov_stf_runner::runner: Block execution complete time=5.993756826s -2026-04-20T11:40:53.487190Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:40:53.487218Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 608, latest_finalized_slot_number: 607, sync_status: Synced { synced_da_height: 607 }, .. } -2026-04-20T11:40:53.487310Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 608, latest_finalized_slot_number: 607, sync_status: Synced { synced_da_height: 607 }, .. } -2026-04-20T11:40:53.487391Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:40:59.485331Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=609 prev_hash=0x678cff27efa34b0b76533c19b4bf7126babe5eda17e662848a6ae099b2aa1280 hash=0x4251013be6868a869fe14ad5ced236f97a97cf989f7b5593e848e9b8129887f5 producing_time=1.126173ms -2026-04-20T11:40:59.487996Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=609 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a3652895bb9a6be77c9a4baeddf346f5ba7b4c592b221ac0e663e3b3eaf56dea6" batch_blobs=[] proof_blobs=[] -2026-04-20T11:40:59.488344Z DEBUG StfBlueprint::apply_slot{context=Node da_height=609}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a3652895bb9a6be77c9a4baeddf346f5ba7b4c592b221ac0e663e3b3eaf56dea6 next_version=609 sesssion_starting_time=76.549µs -2026-04-20T11:40:59.489120Z DEBUG StfBlueprint::apply_slot{context=Node da_height=609}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a065a8b4a15c25012a67e49efc18cf0c36004ecd8ef232785bbebe93c2a6f4935 next_version=609 time=868.204µs accesses_build_time=14.79µs finishing_session_time=740.975µs -2026-04-20T11:40:59.489181Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a31aff02b133e29ca38d8629384ebfecd1cec7f5ad384acf3aa48da219b9cd02a" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a065a8b4a15c25012a67e49efc18cf0c36004ecd8ef232785bbebe93c2a6f4935" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:40:59.489648Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 609, latest_finalized_slot_number: 608, sync_status: Synced { synced_da_height: 608 }, .. } -2026-04-20T11:40:59.489744Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 609, latest_finalized_slot_number: 608, sync_status: Synced { synced_da_height: 608 }, .. } -2026-04-20T11:40:59.489806Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:40:59.499642Z DEBUG sov_stf_runner::runner: Block execution complete time=6.012453885s -2026-04-20T11:40:59.499666Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:41:05.488745Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=610 prev_hash=0x4251013be6868a869fe14ad5ced236f97a97cf989f7b5593e848e9b8129887f5 hash=0x17751823449dad62798774ebfa1f9e19602b26fccbad928a76ee46d4d6f78df3 producing_time=1.289882ms -2026-04-20T11:41:05.491348Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=610 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a065a8b4a15c25012a67e49efc18cf0c36004ecd8ef232785bbebe93c2a6f4935" batch_blobs=[] proof_blobs=[] -2026-04-20T11:41:05.491675Z DEBUG StfBlueprint::apply_slot{context=Node da_height=610}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a065a8b4a15c25012a67e49efc18cf0c36004ecd8ef232785bbebe93c2a6f4935 next_version=610 sesssion_starting_time=49.52µs -2026-04-20T11:41:05.492407Z DEBUG StfBlueprint::apply_slot{context=Node da_height=610}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a6141e1a2b1dd1dc45c09a88eb3e5ba561eb8e1141d91f658abb3a51ccf6ebc66 next_version=610 time=797.594µs accesses_build_time=14.769µs finishing_session_time=698.975µs -2026-04-20T11:41:05.492474Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a3652895bb9a6be77c9a4baeddf346f5ba7b4c592b221ac0e663e3b3eaf56dea6" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a6141e1a2b1dd1dc45c09a88eb3e5ba561eb8e1141d91f658abb3a51ccf6ebc66" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:41:05.492955Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 610, latest_finalized_slot_number: 609, sync_status: Syncing { synced_da_height: 609, target_da_height: 610 }, .. } -2026-04-20T11:41:05.493049Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 610, latest_finalized_slot_number: 609, sync_status: Syncing { synced_da_height: 609, target_da_height: 610 }, .. } -2026-04-20T11:41:05.493110Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:41:05.500013Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000348523s -2026-04-20T11:41:05.500041Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:41:11.490970Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=611 prev_hash=0x17751823449dad62798774ebfa1f9e19602b26fccbad928a76ee46d4d6f78df3 hash=0x7d6d49a8248fe2fed2df6b3324fd2e5ad55498e0e997840d94443e1b83b4f43e producing_time=1.117773ms -2026-04-20T11:41:11.501547Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=611 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a6141e1a2b1dd1dc45c09a88eb3e5ba561eb8e1141d91f658abb3a51ccf6ebc66" batch_blobs=[] proof_blobs=[] -2026-04-20T11:41:11.501879Z DEBUG StfBlueprint::apply_slot{context=Node da_height=611}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a6141e1a2b1dd1dc45c09a88eb3e5ba561eb8e1141d91f658abb3a51ccf6ebc66 next_version=611 sesssion_starting_time=53.34µs -2026-04-20T11:41:11.502611Z DEBUG StfBlueprint::apply_slot{context=Node da_height=611}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a1e39c5f7bcd1026880c96a7a790efd7830b411281f35c35603e88213e5fe2fde next_version=611 time=801.295µs accesses_build_time=13.99µs finishing_session_time=691.236µs -2026-04-20T11:41:11.502687Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a065a8b4a15c25012a67e49efc18cf0c36004ecd8ef232785bbebe93c2a6f4935" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a1e39c5f7bcd1026880c96a7a790efd7830b411281f35c35603e88213e5fe2fde" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:41:11.503197Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 611, latest_finalized_slot_number: 610, sync_status: Synced { synced_da_height: 610 }, .. } -2026-04-20T11:41:11.503289Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 611, latest_finalized_slot_number: 610, sync_status: Synced { synced_da_height: 610 }, .. } -2026-04-20T11:41:11.503369Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:41:11.513444Z DEBUG sov_stf_runner::runner: Block execution complete time=6.013404519s -2026-04-20T11:41:11.513470Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:41:17.493218Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=612 prev_hash=0x7d6d49a8248fe2fed2df6b3324fd2e5ad55498e0e997840d94443e1b83b4f43e hash=0x930c9e7db974229ec8d44a602ac00d49f7fbd661cbdfb728662deb2d204b6ad4 producing_time=1.037864ms -2026-04-20T11:41:17.495707Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=612 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a1e39c5f7bcd1026880c96a7a790efd7830b411281f35c35603e88213e5fe2fde" batch_blobs=[] proof_blobs=[] -2026-04-20T11:41:17.496009Z DEBUG StfBlueprint::apply_slot{context=Node da_height=612}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a1e39c5f7bcd1026880c96a7a790efd7830b411281f35c35603e88213e5fe2fde next_version=612 sesssion_starting_time=46.66µs -2026-04-20T11:41:17.496727Z DEBUG StfBlueprint::apply_slot{context=Node da_height=612}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a1c42aaa381fef189ef6dcea18a9bde06e296a4345ab448da5e2dc254b5a62b87 next_version=612 time=778.755µs accesses_build_time=13.46µs finishing_session_time=687.506µs -2026-04-20T11:41:17.496794Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a6141e1a2b1dd1dc45c09a88eb3e5ba561eb8e1141d91f658abb3a51ccf6ebc66" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a1c42aaa381fef189ef6dcea18a9bde06e296a4345ab448da5e2dc254b5a62b87" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:41:17.497270Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 612, latest_finalized_slot_number: 611, sync_status: Synced { synced_da_height: 611 }, .. } -2026-04-20T11:41:17.497368Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 612, latest_finalized_slot_number: 611, sync_status: Synced { synced_da_height: 611 }, .. } -2026-04-20T11:41:17.497438Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:41:17.503859Z DEBUG sov_stf_runner::runner: Block execution complete time=5.990390207s -2026-04-20T11:41:17.503886Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:41:23.494743Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=613 prev_hash=0x930c9e7db974229ec8d44a602ac00d49f7fbd661cbdfb728662deb2d204b6ad4 hash=0xe35e816e01ae8125e58ff4fd21f719665717eea4b4d75de1628f19a9e75d0e55 producing_time=840.014µs -2026-04-20T11:41:23.495171Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=613 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a1c42aaa381fef189ef6dcea18a9bde06e296a4345ab448da5e2dc254b5a62b87" batch_blobs=[] proof_blobs=[] -2026-04-20T11:41:23.495507Z DEBUG StfBlueprint::apply_slot{context=Node da_height=613}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a1c42aaa381fef189ef6dcea18a9bde06e296a4345ab448da5e2dc254b5a62b87 next_version=613 sesssion_starting_time=51.249µs -2026-04-20T11:41:23.496032Z DEBUG StfBlueprint::apply_slot{context=Node da_height=613}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a6a44a893563235993a467e7b4cbb810344fc222fc4c65781bf32057ea8678f39 next_version=613 time=592.876µs accesses_build_time=15.2µs finishing_session_time=487.007µs -2026-04-20T11:41:23.496095Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a1e39c5f7bcd1026880c96a7a790efd7830b411281f35c35603e88213e5fe2fde" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a6a44a893563235993a467e7b4cbb810344fc222fc4c65781bf32057ea8678f39" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:41:23.496525Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 613, latest_finalized_slot_number: 612, sync_status: Synced { synced_da_height: 612 }, .. } -2026-04-20T11:41:23.496571Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 613, latest_finalized_slot_number: 612, sync_status: Synced { synced_da_height: 612 }, .. } -2026-04-20T11:41:23.496598Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:41:23.506149Z  INFO sov_db::storage_manager::nomt_based::groups: Starting pruner task iteration versions_to_keep=20 -2026-04-20T11:41:23.506266Z  WARN sov_db::storage_manager::nomt_based::groups: Pruning temporarily disabled -2026-04-20T11:41:23.506308Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00242368s -2026-04-20T11:41:23.506345Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:41:29.497133Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=614 prev_hash=0xe35e816e01ae8125e58ff4fd21f719665717eea4b4d75de1628f19a9e75d0e55 hash=0x7235ddeaf8a3f9f1bf19d0f1fd2053cc549f12b061e64ef079f14392d0c6ad84 producing_time=1.199652ms -2026-04-20T11:41:29.507972Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=614 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a6a44a893563235993a467e7b4cbb810344fc222fc4c65781bf32057ea8678f39" batch_blobs=[] proof_blobs=[] -2026-04-20T11:41:29.508301Z DEBUG StfBlueprint::apply_slot{context=Node da_height=614}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a6a44a893563235993a467e7b4cbb810344fc222fc4c65781bf32057ea8678f39 next_version=614 sesssion_starting_time=49.63µs -2026-04-20T11:41:29.509041Z DEBUG StfBlueprint::apply_slot{context=Node da_height=614}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a56865221bd4813666beb8123cdddab1a0da7d0dc4836a87a47904fe32323945a next_version=614 time=806.754µs accesses_build_time=15.92µs finishing_session_time=680.485µs -2026-04-20T11:41:29.509118Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a1c42aaa381fef189ef6dcea18a9bde06e296a4345ab448da5e2dc254b5a62b87" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a56865221bd4813666beb8123cdddab1a0da7d0dc4836a87a47904fe32323945a" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:41:29.509656Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 614, latest_finalized_slot_number: 613, sync_status: Synced { synced_da_height: 613 }, .. } -2026-04-20T11:41:29.509756Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 614, latest_finalized_slot_number: 613, sync_status: Synced { synced_da_height: 613 }, .. } -2026-04-20T11:41:29.509819Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:41:29.519517Z  INFO sov_db::storage_manager::nomt_based::groups: Pruner task has completed historical_state.hit_size_limit=false accessory_state.hit_size_limit=false -2026-04-20T11:41:29.519905Z DEBUG sov_stf_runner::runner: Block execution complete time=6.013561859s -2026-04-20T11:41:29.519921Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:41:35.498796Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=615 prev_hash=0x7235ddeaf8a3f9f1bf19d0f1fd2053cc549f12b061e64ef079f14392d0c6ad84 hash=0x8c87e13e453281abec1e52c1839050ae8cae33975b713b47110cd61c6a80eaf1 producing_time=1.177393ms -2026-04-20T11:41:35.501480Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=615 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a56865221bd4813666beb8123cdddab1a0da7d0dc4836a87a47904fe32323945a" batch_blobs=[] proof_blobs=[] -2026-04-20T11:41:35.501801Z DEBUG StfBlueprint::apply_slot{context=Node da_height=615}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a56865221bd4813666beb8123cdddab1a0da7d0dc4836a87a47904fe32323945a next_version=615 sesssion_starting_time=47.849µs -2026-04-20T11:41:35.502591Z DEBUG StfBlueprint::apply_slot{context=Node da_height=615}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a47ba8dba38cabc7afcd0da2c0ecba23386c42ad37c0e905d6a24f54e1717a3c9 next_version=615 time=853.274µs accesses_build_time=14.47µs finishing_session_time=757.675µs -2026-04-20T11:41:35.502676Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a6a44a893563235993a467e7b4cbb810344fc222fc4c65781bf32057ea8678f39" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a47ba8dba38cabc7afcd0da2c0ecba23386c42ad37c0e905d6a24f54e1717a3c9" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:41:35.503163Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 615, latest_finalized_slot_number: 614, sync_status: Synced { synced_da_height: 614 }, .. } -2026-04-20T11:41:35.503252Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 615, latest_finalized_slot_number: 614, sync_status: Synced { synced_da_height: 614 }, .. } -2026-04-20T11:41:35.503310Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:41:35.513641Z DEBUG sov_stf_runner::runner: Block execution complete time=5.993720996s -2026-04-20T11:41:35.513672Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:41:41.501302Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=616 prev_hash=0x8c87e13e453281abec1e52c1839050ae8cae33975b713b47110cd61c6a80eaf1 hash=0x13c5845a5fee168408c3cb3072126ea8222649066203ba17a3c815dde168b4f5 producing_time=1.172492ms -2026-04-20T11:41:41.505926Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=616 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a47ba8dba38cabc7afcd0da2c0ecba23386c42ad37c0e905d6a24f54e1717a3c9" batch_blobs=[] proof_blobs=[] -2026-04-20T11:41:41.506266Z DEBUG StfBlueprint::apply_slot{context=Node da_height=616}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a47ba8dba38cabc7afcd0da2c0ecba23386c42ad37c0e905d6a24f54e1717a3c9 next_version=616 sesssion_starting_time=45.32µs -2026-04-20T11:41:41.506950Z DEBUG StfBlueprint::apply_slot{context=Node da_height=616}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a5728ed73cd0d0a5a2ef05bca953e61574ef06e485fcd7b59cedf87c899c5089e next_version=616 time=745.396µs accesses_build_time=14.7µs finishing_session_time=649.556µs -2026-04-20T11:41:41.507051Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a56865221bd4813666beb8123cdddab1a0da7d0dc4836a87a47904fe32323945a" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a5728ed73cd0d0a5a2ef05bca953e61574ef06e485fcd7b59cedf87c899c5089e" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:41:41.507555Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 616, latest_finalized_slot_number: 615, sync_status: Synced { synced_da_height: 615 }, .. } -2026-04-20T11:41:41.507646Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 616, latest_finalized_slot_number: 615, sync_status: Synced { synced_da_height: 615 }, .. } -2026-04-20T11:41:41.507705Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:41:41.517583Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00391342s -2026-04-20T11:41:41.517612Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:41:47.503400Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=617 prev_hash=0x13c5845a5fee168408c3cb3072126ea8222649066203ba17a3c815dde168b4f5 hash=0xebca06525e4f6112e3de659da9494dbf7d6a5bc4d598cafed65510504ae1b443 producing_time=1.141963ms -2026-04-20T11:41:47.509110Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=617 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a5728ed73cd0d0a5a2ef05bca953e61574ef06e485fcd7b59cedf87c899c5089e" batch_blobs=[] proof_blobs=[] -2026-04-20T11:41:47.509453Z DEBUG StfBlueprint::apply_slot{context=Node da_height=617}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a5728ed73cd0d0a5a2ef05bca953e61574ef06e485fcd7b59cedf87c899c5089e next_version=617 sesssion_starting_time=46.62µs -2026-04-20T11:41:47.510206Z DEBUG StfBlueprint::apply_slot{context=Node da_height=617}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a6e83da9499a6817a7fb56b710c106e83c172180fba0c03ad9406f1df51fd6e8c next_version=617 time=814.425µs accesses_build_time=14.22µs finishing_session_time=717.805µs -2026-04-20T11:41:47.510286Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a47ba8dba38cabc7afcd0da2c0ecba23386c42ad37c0e905d6a24f54e1717a3c9" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a6e83da9499a6817a7fb56b710c106e83c172180fba0c03ad9406f1df51fd6e8c" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:41:47.510796Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 617, latest_finalized_slot_number: 616, sync_status: Synced { synced_da_height: 616 }, .. } -2026-04-20T11:41:47.510908Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 617, latest_finalized_slot_number: 616, sync_status: Synced { synced_da_height: 616 }, .. } -2026-04-20T11:41:47.510979Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:41:47.520699Z DEBUG sov_stf_runner::runner: Block execution complete time=6.003088705s -2026-04-20T11:41:47.520731Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:41:53.505780Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=618 prev_hash=0xebca06525e4f6112e3de659da9494dbf7d6a5bc4d598cafed65510504ae1b443 hash=0x14aeb7cbc266eeb7601141b8dbf8b9c255d25d7f51ca0b3551b723e246a9c825 producing_time=1.228712ms -2026-04-20T11:41:53.512489Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=618 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a6e83da9499a6817a7fb56b710c106e83c172180fba0c03ad9406f1df51fd6e8c" batch_blobs=[] proof_blobs=[] -2026-04-20T11:41:53.512822Z DEBUG StfBlueprint::apply_slot{context=Node da_height=618}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a6e83da9499a6817a7fb56b710c106e83c172180fba0c03ad9406f1df51fd6e8c next_version=618 sesssion_starting_time=53.37µs -2026-04-20T11:41:53.513524Z DEBUG StfBlueprint::apply_slot{context=Node da_height=618}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a53c6281fc6f35f957531a24d50de89a9a5f2d7f0d615495cabd768aac5bb121c next_version=618 time=773.346µs accesses_build_time=16.44µs finishing_session_time=660.216µs -2026-04-20T11:41:53.513626Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a5728ed73cd0d0a5a2ef05bca953e61574ef06e485fcd7b59cedf87c899c5089e" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a53c6281fc6f35f957531a24d50de89a9a5f2d7f0d615495cabd768aac5bb121c" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:41:53.514133Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 618, latest_finalized_slot_number: 617, sync_status: Synced { synced_da_height: 617 }, .. } -2026-04-20T11:41:53.514219Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 618, latest_finalized_slot_number: 617, sync_status: Synced { synced_da_height: 617 }, .. } -2026-04-20T11:41:53.514277Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:41:53.521120Z DEBUG sov_stf_runner::runner: Block execution complete time=6.000390344s -2026-04-20T11:41:53.521150Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:41:59.508249Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=619 prev_hash=0x14aeb7cbc266eeb7601141b8dbf8b9c255d25d7f51ca0b3551b723e246a9c825 hash=0x7860236f484cf853507164ae844351229b83ae8d03882cb1e6ebbb2c05e4427b producing_time=1.247522ms -2026-04-20T11:41:59.512875Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=619 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a53c6281fc6f35f957531a24d50de89a9a5f2d7f0d615495cabd768aac5bb121c" batch_blobs=[] proof_blobs=[] -2026-04-20T11:41:59.513202Z DEBUG StfBlueprint::apply_slot{context=Node da_height=619}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a53c6281fc6f35f957531a24d50de89a9a5f2d7f0d615495cabd768aac5bb121c next_version=619 sesssion_starting_time=46.88µs -2026-04-20T11:41:59.513895Z DEBUG StfBlueprint::apply_slot{context=Node da_height=619}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a70676e73eb091ce17c4d9e5f2a7329065d4c0eafba9e56dbdf124de74bfeb2f2 next_version=619 time=754.576µs accesses_build_time=13.69µs finishing_session_time=662.336µs -2026-04-20T11:41:59.513984Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a6e83da9499a6817a7fb56b710c106e83c172180fba0c03ad9406f1df51fd6e8c" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a70676e73eb091ce17c4d9e5f2a7329065d4c0eafba9e56dbdf124de74bfeb2f2" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:41:59.514517Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 619, latest_finalized_slot_number: 618, sync_status: Synced { synced_da_height: 618 }, .. } -2026-04-20T11:41:59.514611Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 619, latest_finalized_slot_number: 618, sync_status: Synced { synced_da_height: 618 }, .. } -2026-04-20T11:41:59.514668Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:41:59.521076Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999926806s -2026-04-20T11:41:59.521104Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:42:05.510049Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=620 prev_hash=0x7860236f484cf853507164ae844351229b83ae8d03882cb1e6ebbb2c05e4427b hash=0x0971bf77d9d1800ee2f7e5f10db6e332281ce261a4d23921471e153e96bcc97e producing_time=1.182302ms -2026-04-20T11:42:05.512620Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=620 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a70676e73eb091ce17c4d9e5f2a7329065d4c0eafba9e56dbdf124de74bfeb2f2" batch_blobs=[] proof_blobs=[] -2026-04-20T11:42:05.512942Z DEBUG StfBlueprint::apply_slot{context=Node da_height=620}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a70676e73eb091ce17c4d9e5f2a7329065d4c0eafba9e56dbdf124de74bfeb2f2 next_version=620 sesssion_starting_time=54.17µs -2026-04-20T11:42:05.513681Z DEBUG StfBlueprint::apply_slot{context=Node da_height=620}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a1a5255fa794b5e224bbb3d4ce771d058e8fb94bdd3cb4de40b07e45432a7efe1 next_version=620 time=809.084µs accesses_build_time=14.22µs finishing_session_time=706.276µs -2026-04-20T11:42:05.513765Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a53c6281fc6f35f957531a24d50de89a9a5f2d7f0d615495cabd768aac5bb121c" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a1a5255fa794b5e224bbb3d4ce771d058e8fb94bdd3cb4de40b07e45432a7efe1" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:42:05.514338Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 620, latest_finalized_slot_number: 619, sync_status: Synced { synced_da_height: 619 }, .. } -2026-04-20T11:42:05.514435Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 620, latest_finalized_slot_number: 619, sync_status: Synced { synced_da_height: 619 }, .. } -2026-04-20T11:42:05.514497Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:42:05.520794Z DEBUG sov_stf_runner::runner: Block execution complete time=5.999691268s -2026-04-20T11:42:05.520824Z DEBUG sov_stf_runner::runner: Requesting DA block -2026-04-20T11:42:11.511737Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=621 prev_hash=0x0971bf77d9d1800ee2f7e5f10db6e332281ce261a4d23921471e153e96bcc97e hash=0x292afb8b7046c05e36d365adb823236330eb780cb85f62756c121187df22e9b0 producing_time=1.166422ms -2026-04-20T11:42:11.512287Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=621 current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a1a5255fa794b5e224bbb3d4ce771d058e8fb94bdd3cb4de40b07e45432a7efe1" batch_blobs=[] proof_blobs=[] -2026-04-20T11:42:11.512622Z DEBUG StfBlueprint::apply_slot{context=Node da_height=621}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a1a5255fa794b5e224bbb3d4ce771d058e8fb94bdd3cb4de40b07e45432a7efe1 next_version=621 sesssion_starting_time=47.09µs -2026-04-20T11:42:11.513266Z DEBUG StfBlueprint::apply_slot{context=Node da_height=621}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a7833c9770772d9fe68bfcc31630e5e24cb9fe9a329bfe62e1289b8ec12a2e06a next_version=621 time=706.186µs accesses_build_time=14.17µs finishing_session_time=606.627µs -2026-04-20T11:42:11.513361Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a70676e73eb091ce17c4d9e5f2a7329065d4c0eafba9e56dbdf124de74bfeb2f2" next_state_root="77f2ad73776d39f755ce10a382b07bc8f0b452da9a2f9e479cc6a6167ae75d7a7833c9770772d9fe68bfcc31630e5e24cb9fe9a329bfe62e1289b8ec12a2e06a" aggregated_proofs=0 proof_receipts=0 -2026-04-20T11:42:11.513877Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 621, latest_finalized_slot_number: 620, sync_status: Synced { synced_da_height: 620 }, .. } -2026-04-20T11:42:11.513973Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 621, latest_finalized_slot_number: 620, sync_status: Synced { synced_da_height: 620 }, .. } -2026-04-20T11:42:11.514033Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 -2026-04-20T11:42:11.524727Z DEBUG sov_stf_runner::runner: Block execution complete time=6.00390426s -2026-04-20T11:42:11.524753Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:28:11.774162Z  INFO sov_modules_rollup_blueprint::native_only::logging: Logging initialized; you can restart the node with a custom `RUST_LOG` env. var. to customize log filtering RUST_LOG="debug,sov_paymaster=info,h2=info,tower=info,tower_http=info,reqwest=info,tungstenite=info,hyper=info,jmt=info,rustls=info,jsonrpsee-server=info,jsonrpsee-client=info,risc0_circuit_rv32im=info,risc0_zkp::verify=info,risc0_zkvm=warn,sqlx=warn,tiny_http=warn" commit="86b5162738ebc9d838b8eff087d76b8b1d8afbcd" +2026-04-20T15:28:11.774241Z  INFO sov_modules_rollup_blueprint::native_only::logging: The Tokio debugging console will not be available; must compile with `cfg(tokio_unstable)` to enable it tokio_console_info_url="https://github.com/tokio-rs/console" +2026-04-20T15:28:11.774280Z  INFO sov_modules_rollup_blueprint::native_only::logging: Open Telemetry exporter is not enabled +2026-04-20T15:28:11.775629Z  WARN sov_demo_rollup: Given RollupProverConfig might cause slow rollup progression if not compiled in release mode. prover_config=prove +2026-04-20T15:28:11.775690Z  INFO sov_demo_rollup: Running demo rollup with prover config prover_config=prove +2026-04-20T15:28:11.775764Z DEBUG sov_demo_rollup: Starting rollup on mock DA with SP1 zkVM config_path="configs/mock_rollup_config.toml" +2026-04-20T15:28:11.775939Z  INFO sov_full_node_configs::runner: Parsing rollup configuration file path="configs/mock_rollup_config.toml" size_in_bytes=8798 line_count=141 +2026-04-20T15:28:11.780918Z DEBUG init_blueprint: sov_metrics::influxdb::tracker: Metrics tracker initialized config=MonitoringConfig { telegraf_address: TelegrafSocketConfig { transport: Udp, addr: 127.0.0.1:8094 }, max_datagram_size: None, max_pending_metrics: None, tokio_runtime_metrics_interval_millis: 500 } +2026-04-20T15:28:11.781003Z  INFO init_blueprint: sov_modules_rollup_blueprint::native_only: Instantiating a new rollup operating_mode=Zk +2026-04-20T15:28:11.782968Z DEBUG init_blueprint: sov_mock_da::storable::entity: Setting up database +2026-04-20T15:28:11.790284Z DEBUG init_blueprint: sov_mock_da::storable::layer: Initializing `StorableMockDaLayer` last_finalized_height=0 blocks_to_finality=0 +2026-04-20T15:28:11.790462Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::local_service: Spawning a task for periodic producing interval=3s +2026-04-20T15:28:11.790733Z DEBUG init_blueprint: sov_db::state_db_nomt: Opening NOMT options=RollupDbConfig { path: "demo_data", ledger_db_path: None, state_cache_size: Some(4294967296), user_commit_concurrency: Some(4), user_hashtable_buckets: Some(15000000), user_preallocate_ht: Some(false), user_page_cache_size: None, user_leaf_cache_size: None, user_page_cache_upper_levels: None, kernel_commit_concurrency: Some(2), kernel_hashtable_buckets: None, kernel_preallocate_ht: None, kernel_page_cache_size: None, kernel_leaf_cache_size: None, kernel_page_cache_upper_levels: None, pruner_block_interval: Some(100), pruner_versions_to_keep: Some(20), pruner_max_batch_size: None } +2026-04-20T15:28:11.790776Z  INFO sov_stf_runner::da::finalized_headers_cache: Starting background fetcher task interval=Interval { delay: Sleep { inner: Inner, entry: Traditional(TimerEntry { driver: MultiThread(multi_thread::Handle { ... }), inner: None, deadline: Instant { tv_sec: 7859664, tv_nsec: 415453572 }, registered: false }) }, period: 50ms, missed_tick_behavior: Burst } +2026-04-20T15:28:11.980590Z  INFO init_blueprint:open_with_cfds: rockbound: Opened RocksDB rocksdb_name="state" path=demo_data/state-db +2026-04-20T15:28:11.999102Z  INFO init_blueprint:open_with_cfds: rockbound: Opened RocksDB rocksdb_name="state" path=demo_data/archival-state-db/state-db +2026-04-20T15:28:12.025538Z  INFO init_blueprint:open_with_default_cfs:open_with_cfds: rockbound: Opened RocksDB rocksdb_name="ledger-db" path=demo_data/ledger +2026-04-20T15:28:12.034425Z  INFO init_blueprint:open_with_default_cfs:open_with_cfds: rockbound: Opened RocksDB rocksdb_name="accessory-db" path=demo_data/accessory +2026-04-20T15:28:12.034597Z  INFO init_blueprint: sov_db::storage_manager::nomt_based::groups: State roots on startup before validation root_hash_from_live_db="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" root_hash_from_archival_db="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" root_hash_from_ledger_db="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" root_hash_nomt_user="0000000000000000000000000000000000000000000000000000000000000000" root_hash_nomt_kernel="0000000000000000000000000000000000000000000000000000000000000000" +2026-04-20T15:28:12.034652Z  INFO init_blueprint: sov_db::storage_manager::nomt_based::groups: State roots on startup after validation root_hash_from_live_db="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" root_hash_from_archival_db="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" root_hash_from_ledger_db="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" root_hash_nomt_user="0000000000000000000000000000000000000000000000000000000000000000" root_hash_nomt_kernel="0000000000000000000000000000000000000000000000000000000000000000" +2026-04-20T15:28:12.034829Z DEBUG init_blueprint: sov_db::storage_manager::nomt_based: Creating new storage from finalized data as block header is not in the saved chain block_header=sov_mock_da::types::MockBlockHeader prev_hash=0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff hash=0x0000000000000001000000000000000000000000000000000000000000000000 height=0 +2026-04-20T15:28:12.034950Z  INFO init_blueprint: sov_modules_rollup_blueprint::native_only: Recovering the state root prev_root=None is_genesis=true +2026-04-20T15:28:12.035347Z  INFO init_blueprint: sov_modules_rollup_blueprint::native_only: Rollup state is empty, performing genesis initialization. Requesting genesis DA block rollup_genesis_height=0 +2026-04-20T15:28:12.036573Z  INFO init_blueprint: sov_stf_runner::runner: No history detected. Initializing chain on the block header... header=sov_mock_da::types::MockBlockHeader prev_hash=0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff hash=0x0000000000000001000000000000000000000000000000000000000000000000 height=0 +2026-04-20T15:28:12.037324Z DEBUG init_blueprint: sov_bank::genesis: Gas token token_id=token_1nyl0e0yweragfsatygt24zmd8jrr2vqtvdfptzjhxkguz2xxx3vs0y07u7 token_name=Some("sov-token") +2026-04-20T15:28:12.037398Z DEBUG init_blueprint: sov_bank::genesis: Genesis of the token token_config=TokenConfig { token_name: "sov-token", token_decimals: Some(6), token_id: TokenIdBech32("token_1nyl0e0yweragfsatygt24zmd8jrr2vqtvdfptzjhxkguz2xxx3vs0y07u7"), address_and_balances: [(Standard(AddressBech32("sov1lzkjgdaz08su3yevqu6ceywufl35se9f33kztu5cu2spja5hyyf")), 5000000000000), (Standard(AddressBech32("sov1x3jtvq0zwhj2ucsc4hqugskvralrulxvf53vwtkred93s85ar2a")), 5000000000000000), (Standard(AddressBech32("sov10d6chuh8vu86ltmt7qq4ec8lt25qyvr0cl3lg4mzs5llcfnx69m")), 5000000000000), (Standard(AddressBech32("sov1v870parxhssv5wyz634wqlt9yflrrnawlwzjhj8409q4yevcj3s")), 5000000000000), (Evm(EthereumAddress(0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266)), 5000000000000000), (Evm(EthereumAddress(0x3fe0233e6cf3c9753fcb7449987ec49c88adde71)), 5000000000000), (Evm(EthereumAddress(0x4fa6c577ee74b4f3c5309af1b6313dd6d525e694)), 5000000000000), (Evm(EthereumAddress(0xa80749ad39a047603cbc5d0f46a03a1c6b2db6c9)), 5000000000000), (Evm(EthereumAddress(0x70997970c51812dc3a010c7d01b50e0d17dc79c8)), 5000000000000000), (Evm(EthereumAddress(0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc)), 5000000000000000), (Evm(EthereumAddress(0x90f79bf6eb2c4f870365e785982e1f101e93b906)), 5000000000000000)], admins: [Standard(AddressBech32("sov1lzkjgdaz08su3yevqu6ceywufl35se9f33kztu5cu2spja5hyyf"))], supply_cap: None } token_id=token_1nyl0e0yweragfsatygt24zmd8jrr2vqtvdfptzjhxkguz2xxx3vs0y07u7 +2026-04-20T15:28:12.037777Z DEBUG init_blueprint: sov_bank::genesis: Token has been created token_name=sov-token token_id=token_1nyl0e0yweragfsatygt24zmd8jrr2vqtvdfptzjhxkguz2xxx3vs0y07u7 +2026-04-20T15:28:12.037832Z  INFO init_blueprint: sov_sequencer_registry::genesis: Starting sequencer registry genesis... sequencer_rollup_address=sov1lzkjgdaz08su3yevqu6ceywufl35se9f33kztu5cu2spja5hyyf sequencer_da_address=0x0000000000000000000000000000000000000000000000000000000000000000 sequencer_bond=2000000000000 is_preferred_sequencer=true +2026-04-20T15:28:12.038011Z  INFO init_blueprint: sov_chain_state::genesis: Starting chain state genesis... current_time=Time { millis: 0 } operating_mode=Zk genesis_da_height=0 inner_code_commitment=SP1MethodId([0, 0, 0, 0, 0, 0, 0, 0]) outer_code_commitment=SP1MethodId([0, 0, 0, 0, 0, 0, 0, 0]) admin=None +2026-04-20T15:28:12.052126Z DEBUG init_blueprint:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 next_version=0 sesssion_starting_time=249.758µs +2026-04-20T15:28:12.132685Z DEBUG init_blueprint:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de5fca783863c0d6daa77dbef2931fcbb3cf062a37617fa408eeaedb193497140f next_version=0 time=90.550973ms accesses_build_time=9.723197ms finishing_session_time=80.468658ms +2026-04-20T15:28:12.187923Z  INFO init_blueprint: sov_db::storage_manager::nomt_based::groups: Starting pruner task iteration versions_to_keep=20 +2026-04-20T15:28:12.188180Z DEBUG init_blueprint: sov_db::storage_manager::nomt_based: Creating new storage from finalized data as block header is not in the saved chain block_header=sov_mock_da::types::MockBlockHeader prev_hash=0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff hash=0x0000000000000001000000000000000000000000000000000000000000000000 height=0 +2026-04-20T15:28:12.188294Z  WARN sov_db::storage_manager::nomt_based::groups: Pruning temporarily disabled +2026-04-20T15:28:12.188625Z DEBUG init_blueprint: sov_stf_runner::runner: last_slot_processed_before_shutdown=0 +2026-04-20T15:28:12.188696Z DEBUG init_blueprint: sov_stf_runner::runner: Initializing new instance of DaSyncState da_height_processed=0 genesis_da_height=0 target_da_height=0 stop_at_rollup_height=None initial_sync_status=Syncing { synced_da_height: 0, target_da_height: 0 } +2026-04-20T15:28:12.190436Z DEBUG init_blueprint: sov_modules_rollup_blueprint::native_only: Rollup state initialization is completed prev_root_hash="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de5fca783863c0d6daa77dbef2931fcbb3cf062a37617fa408eeaedb193497140f" raw_genesis_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de5fca783863c0d6daa77dbef2931fcbb3cf062a37617fa408eeaedb193497140f" state_update_info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 0, latest_finalized_slot_number: 0, sync_status: Synced { synced_da_height: 0 }, .. } +2026-04-20T15:28:12.191182Z  INFO init_blueprint: sov_stf_runner::runner: Initializing StateTransitionRunner config=RunnerConfig { da_polling_interval_ms: 50, http_config: HttpServerConfig { bind_host: "127.0.0.1", bind_port: 12346, public_address: None, cors: Permissive }, concurrent_sync_tasks: 5, pre_fetched_blocks_capacity: 20, save_tx_bodies: false } +2026-04-20T15:28:12.191286Z DEBUG init_blueprint: sov_stf_runner::runner: Initializing StfRunner last_processed_da_header=sov_mock_da::types::MockBlockHeader prev_hash=0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff hash=0x0000000000000001000000000000000000000000000000000000000000000000 height=0 first_unprocessed_height_at_startup=1 proof_manager_config=Some(ProofManagerConfig { aggregated_proof_block_jump: 10, prover_address: Standard(AddressBech32("sov1lzkjgdaz08su3yevqu6ceywufl35se9f33kztu5cu2spja5hyyf")), max_number_of_transitions_in_db: 100, max_number_of_transitions_in_memory: 30, eager_proof_submission: true }) +2026-04-20T15:28:12.191728Z  INFO init_blueprint: sov_stf_runner::da::bulk_finalized_blocks_fetcher: Initializing FinalizedBlocksBulkFetcher start_height=1 bulk_size=5 channel_capacity=20 +2026-04-20T15:28:12.191823Z  INFO init_blueprint: sov_stf_runner::da::bulk_finalized_blocks_fetcher: Initializing BlockFetcher start_height=1 last_height=0 bulk_size=5 +2026-04-20T15:28:12.192055Z  INFO sov_stf_runner::da::bulk_finalized_blocks_fetcher: BlockFetcher synced all finalized headers start=1 last_finalized_at_start=0 first_fetched_height=None last_fetched_height=None completion_time=6.451µs +2026-04-20T15:28:12.192129Z DEBUG sov_stf_runner::da::bulk_finalized_blocks_fetcher: BlockFetcher task has completed +2026-04-20T15:28:12.192858Z DEBUG init_blueprint: sov_sequencer::preferred::initialization: Instantiating the preferred sequencer latest_state_update=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 0, latest_finalized_slot_number: 0, sync_status: Synced { synced_da_height: 0 }, .. } da_address=0x0000000000000000000000000000000000000000000000000000000000000000 +2026-04-20T15:28:12.219849Z  INFO init_blueprint:open:open_with_cfds: rockbound: Opened RocksDB rocksdb_name="preferred_sequencer" path=demo_data/preferred_sequencer +2026-04-20T15:28:12.238487Z  INFO init_blueprint:open:open_with_cfds: rockbound: Opened RocksDB rocksdb_name="blob_sender" path=demo_data/blob_sender +2026-04-20T15:28:12.239045Z  INFO init_blueprint:state_root_compute_background_task: sov_sequencer::preferred::state_root_compute: Starting sequencer state root computation background task +2026-04-20T15:28:12.283365Z  INFO sp1_sdk::blocking::mock: initializing mock prover +2026-04-20T15:28:14.799626Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=1 prev_hash=0x0000000000000001000000000000000000000000000000000000000000000000 hash=0xf7148387ded4fdc186377d30f98da5333c8214439c4d76858ecab607881669c9 producing_time=8.639924ms +2026-04-20T15:28:14.982326Z DEBUG acquire setup: sp1_hypercube::prover::permits: permit acquired for 1.096216199s +2026-04-20T15:28:15.053399Z  INFO sp1_sdk::blocking::mock: initializing mock prover +2026-04-20T15:28:16.472707Z DEBUG acquire setup: sp1_hypercube::prover::permits: permit acquired for 838.457521ms +2026-04-20T15:28:16.523357Z  INFO sov_stf_runner::processes::zk_manager: Spawning an aggregated proof posting background task +2026-04-20T15:28:16.622233Z  INFO sov_stf_runner::http: Starting HTTP server rest_address=127.0.0.1:12346 +2026-04-20T15:28:16.622768Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:28:16.622767Z DEBUG sov_stf_runner::runner: Interval for polling sync DA height interval_ms=50 +2026-04-20T15:28:16.625217Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=1 current_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de5fca783863c0d6daa77dbef2931fcbb3cf062a37617fa408eeaedb193497140f" batch_blobs=[] proof_blobs=[] +2026-04-20T15:28:16.626489Z DEBUG StfBlueprint::apply_slot{context=Node da_height=1}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de5fca783863c0d6daa77dbef2931fcbb3cf062a37617fa408eeaedb193497140f next_version=1 sesssion_starting_time=138.499µs +2026-04-20T15:28:16.629085Z DEBUG StfBlueprint::apply_slot{context=Node da_height=1}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de029a68f43e3db2cbbbb50e9e4ba572b03e49fb366a44e6747a2cae44b98d45b0 next_version=1 time=2.865092ms accesses_build_time=126.2µs finishing_session_time=2.525904ms +2026-04-20T15:28:16.629331Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de5fca783863c0d6daa77dbef2931fcbb3cf062a37617fa408eeaedb193497140f" next_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de029a68f43e3db2cbbbb50e9e4ba572b03e49fb366a44e6747a2cae44b98d45b0" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:28:16.632257Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 1, latest_finalized_slot_number: 1, sync_status: Syncing { synced_da_height: 0, target_da_height: 1 }, .. } +2026-04-20T15:28:16.633170Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Proceeding with `replay_soft_confirmations_on_top_of_node_state` initial_status=InitialStatus { is_startup: true, is_resync: false, is_recover: false } +2026-04-20T15:28:16.633485Z DEBUG sov_sequencer::preferred::transaction_subscriptions: Cleaning and overwriting transaction cache up to 0 +2026-04-20T15:28:16.633656Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Populating pinned cache for replay. This may take a few moments. inner_status=InitialStatus { is_startup: true, is_resync: false, is_recover: false } +2026-04-20T15:28:16.633709Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Pinned cache populated. Starting transaction replay. +2026-04-20T15:28:16.636046Z DEBUG sov_sequencer::preferred::block_executor: Replacing state for block executor old=019dab81-9fd7-7df1-a7dc-9e0b540fb97f new=019dab81-b0fa-7aa0-9c9c-82b7ef0d1ed4 +2026-04-20T15:28:16.637235Z  INFO sov_db::storage_manager::nomt_based::groups: Pruner task has completed historical_state.hit_size_limit=false accessory_state.hit_size_limit=false +2026-04-20T15:28:16.637917Z DEBUG sov_stf_runner::runner: Block execution complete time=15.173092ms +2026-04-20T15:28:16.637960Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:28:17.804294Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=2 prev_hash=0xf7148387ded4fdc186377d30f98da5333c8214439c4d76858ecab607881669c9 hash=0xa01e3ddb38244782f3fd8c8df725c121dd3fe5d6d7afc03541f6aae84d196f39 producing_time=3.04509ms +2026-04-20T15:28:17.810823Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=2 current_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de029a68f43e3db2cbbbb50e9e4ba572b03e49fb366a44e6747a2cae44b98d45b0" batch_blobs=[] proof_blobs=[] +2026-04-20T15:28:17.818642Z DEBUG StfBlueprint::apply_slot{context=Node da_height=2}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de029a68f43e3db2cbbbb50e9e4ba572b03e49fb366a44e6747a2cae44b98d45b0 next_version=2 sesssion_starting_time=317.878µs +2026-04-20T15:28:17.823350Z DEBUG StfBlueprint::apply_slot{context=Node da_height=2}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de59a89dfcb8cae4a4ad8683536e2bdeed9ffa23bbba54584ab4a1be0d4f99ad40 next_version=2 time=5.316315ms accesses_build_time=279.908µs finishing_session_time=4.5584ms +2026-04-20T15:28:17.823884Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de029a68f43e3db2cbbbb50e9e4ba572b03e49fb366a44e6747a2cae44b98d45b0" next_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de59a89dfcb8cae4a4ad8683536e2bdeed9ffa23bbba54584ab4a1be0d4f99ad40" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:28:17.826558Z DEBUG sov_stf_runner::runner: Block execution complete time=1.18860234s +2026-04-20T15:28:17.826657Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:28:17.827672Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 2, latest_finalized_slot_number: 1, sync_status: Syncing { synced_da_height: 1, target_da_height: 2 }, .. } +2026-04-20T15:28:17.829136Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=0 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 2, latest_finalized_slot_number: 1, sync_status: Syncing { synced_da_height: 1, target_da_height: 2 }, .. } +2026-04-20T15:28:17.830057Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=0 +2026-04-20T15:28:20.809250Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=3 prev_hash=0xa01e3ddb38244782f3fd8c8df725c121dd3fe5d6d7afc03541f6aae84d196f39 hash=0x2db0c2500c7df469e48a2e531485f3da076649af68cf75ab2af4ed7bbf770392 producing_time=4.119553ms +2026-04-20T15:28:20.819739Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=3 current_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de59a89dfcb8cae4a4ad8683536e2bdeed9ffa23bbba54584ab4a1be0d4f99ad40" batch_blobs=[] proof_blobs=[] +2026-04-20T15:28:20.827765Z DEBUG StfBlueprint::apply_slot{context=Node da_height=3}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de59a89dfcb8cae4a4ad8683536e2bdeed9ffa23bbba54584ab4a1be0d4f99ad40 next_version=3 sesssion_starting_time=321.678µs +2026-04-20T15:28:20.832696Z DEBUG StfBlueprint::apply_slot{context=Node da_height=3}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de64bd5a900329f0c6167e6a97493ffa0d07557af89fb55815df1fbaa947b33fde next_version=3 time=5.561364ms accesses_build_time=298.448µs finishing_session_time=4.796239ms +2026-04-20T15:28:20.833255Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de029a68f43e3db2cbbbb50e9e4ba572b03e49fb366a44e6747a2cae44b98d45b0" next_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de64bd5a900329f0c6167e6a97493ffa0d07557af89fb55815df1fbaa947b33fde" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:28:20.836929Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 3, latest_finalized_slot_number: 2, sync_status: Syncing { synced_da_height: 2, target_da_height: 3 }, .. } +2026-04-20T15:28:20.838369Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=0 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 3, latest_finalized_slot_number: 2, sync_status: Syncing { synced_da_height: 2, target_da_height: 3 }, .. } +2026-04-20T15:28:20.839345Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=0 +2026-04-20T15:28:20.848180Z DEBUG sov_stf_runner::runner: Block execution complete time=3.02154152s +2026-04-20T15:28:20.848235Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:28:23.812901Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=0 height=4 prev_hash=0x2db0c2500c7df469e48a2e531485f3da076649af68cf75ab2af4ed7bbf770392 hash=0xb7eb4f83e0b895e8d10166a5fb0673dd826069a7e3989fd04e1ba7f4df4deb73 producing_time=2.912331ms +2026-04-20T15:28:23.820777Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=0 next_da_height=4 current_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de64bd5a900329f0c6167e6a97493ffa0d07557af89fb55815df1fbaa947b33fde" batch_blobs=[] proof_blobs=[] +2026-04-20T15:28:23.827515Z DEBUG StfBlueprint::apply_slot{context=Node da_height=4}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de64bd5a900329f0c6167e6a97493ffa0d07557af89fb55815df1fbaa947b33fde next_version=4 sesssion_starting_time=255.559µs +2026-04-20T15:28:23.832171Z DEBUG StfBlueprint::apply_slot{context=Node da_height=4}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de285aed34be643fb5ed1070de902b5b2c4edba223e3db238039cf75786905c2da next_version=4 time=5.195286ms accesses_build_time=273.708µs finishing_session_time=4.533561ms +2026-04-20T15:28:23.832690Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de59a89dfcb8cae4a4ad8683536e2bdeed9ffa23bbba54584ab4a1be0d4f99ad40" next_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de285aed34be643fb5ed1070de902b5b2c4edba223e3db238039cf75786905c2da" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:28:23.836279Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 4, latest_finalized_slot_number: 3, sync_status: Syncing { synced_da_height: 3, target_da_height: 4 }, .. } +2026-04-20T15:28:23.837759Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=0 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 4, latest_finalized_slot_number: 3, sync_status: Syncing { synced_da_height: 3, target_da_height: 4 }, .. } +2026-04-20T15:28:23.838714Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=0 +2026-04-20T15:28:23.841287Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:28:23.842430Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=0 +2026-04-20T15:28:23.844350Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=1 +2026-04-20T15:28:23.845434Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:28:23.847172Z DEBUG sov_stf_runner::runner: Block execution complete time=2.998945047s +2026-04-20T15:28:23.847222Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:28:23.847233Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=1 sequence_number=0 +2026-04-20T15:28:23.847577Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[10, 10], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:28:23.847726Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=0 blob_id=2147897178542225026538855685716639209 visible_slot_number_after_increase=1 visible_slots_to_advance=1 +2026-04-20T15:28:23.852022Z DEBUG compute_state_update{scope="sequencer" rollup_height=1 slot_number=1}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:28:23.852448Z DEBUG compute_state_update{scope="sequencer" rollup_height=1 slot_number=1}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de285aed34be643fb5ed1070de902b5b2c4edba223e3db238039cf75786905c2da next_version=5 sesssion_starting_time=441.987µs +2026-04-20T15:28:23.855770Z DEBUG manage_blob_submission_inside_task{blob_id=2147897178542225026538855685716639209 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x9ce6c494fe82468ce25c30c30ad97a6db11e5d22bcac40b97df0a7237f7c6eac sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=5 include_at=5 bytes=13 time=2.014076ms +2026-04-20T15:28:23.857517Z DEBUG compute_state_update{scope="sequencer" rollup_height=1 slot_number=1}: sov_state::nomt::prover_storage: computed next state root state_root=6c85f7dbffc944f6cc6a7368234fc3c5077e61aae73b859141336b77b3317d540caa0011dc856b9916f22f4137080c8e8e49d7950129c4d26549f391c8bbd21e next_version=5 time=5.899312ms accesses_build_time=377.418µs finishing_session_time=4.968158ms +2026-04-20T15:28:26.817420Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=5 prev_hash=0xb7eb4f83e0b895e8d10166a5fb0673dd826069a7e3989fd04e1ba7f4df4deb73 hash=0x0bb6869d1686cd4f83a3d71d1f81c262d2ed1889e31add51d211e6bed293b0fc producing_time=3.487368ms +2026-04-20T15:28:26.819618Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=5 current_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de285aed34be643fb5ed1070de902b5b2c4edba223e3db238039cf75786905c2da" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9ce6c494fe82468ce25c30c30ad97a6db11e5d22bcac40b97df0a7237f7c6eac"] proof_blobs=[] +2026-04-20T15:28:26.826791Z DEBUG StfBlueprint::apply_slot{context=Node da_height=5}: sov_chain_state: Setting next visible slot number next_visible_slot_number=1 +2026-04-20T15:28:26.831447Z DEBUG StfBlueprint::apply_slot{context=Node da_height=5}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x9ce6c494fe82468ce25c30c30ad97a6db11e5d22bcac40b97df0a7237f7c6eac}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[10, 10], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:28:26.833715Z DEBUG StfBlueprint::apply_slot{context=Node da_height=5}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de285aed34be643fb5ed1070de902b5b2c4edba223e3db238039cf75786905c2da next_version=5 sesssion_starting_time=264.458µs +2026-04-20T15:28:26.840293Z DEBUG StfBlueprint::apply_slot{context=Node da_height=5}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6c85f7dbffc944f6cc6a7368234fc3c5077e61aae73b859141336b77b3317d544c8c2c8a8001c9972a6dd247b43d338c4caad3071f9b3e901b3eacc74c3352a0 next_version=5 time=7.620101ms accesses_build_time=765.866µs finishing_session_time=6.444768ms +2026-04-20T15:28:26.841188Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de64bd5a900329f0c6167e6a97493ffa0d07557af89fb55815df1fbaa947b33fde" next_state_root="6c85f7dbffc944f6cc6a7368234fc3c5077e61aae73b859141336b77b3317d544c8c2c8a8001c9972a6dd247b43d338c4caad3071f9b3e901b3eacc74c3352a0" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:28:26.845495Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 5, latest_finalized_slot_number: 4, sync_status: Syncing { synced_da_height: 4, target_da_height: 5 }, .. } +2026-04-20T15:28:26.847060Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=1 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 5, latest_finalized_slot_number: 4, sync_status: Syncing { synced_da_height: 4, target_da_height: 5 }, .. } +2026-04-20T15:28:26.848054Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=1 +2026-04-20T15:28:26.850640Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:28:26.851702Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=0 +2026-04-20T15:28:26.853673Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=2 +2026-04-20T15:28:26.854724Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:28:26.856244Z DEBUG sov_stf_runner::runner: Block execution complete time=3.009030142s +2026-04-20T15:28:26.856293Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:28:26.856385Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=2 sequence_number=1 +2026-04-20T15:28:26.856697Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[9, 9], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:28:26.856828Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=1 blob_id=2147897182179888742007323517221103046 visible_slot_number_after_increase=2 visible_slots_to_advance=1 +2026-04-20T15:28:26.860907Z DEBUG compute_state_update{scope="sequencer" rollup_height=2 slot_number=2}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:28:26.861369Z DEBUG compute_state_update{scope="sequencer" rollup_height=2 slot_number=2}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6c85f7dbffc944f6cc6a7368234fc3c5077e61aae73b859141336b77b3317d544c8c2c8a8001c9972a6dd247b43d338c4caad3071f9b3e901b3eacc74c3352a0 next_version=6 sesssion_starting_time=471.956µs +2026-04-20T15:28:26.864660Z DEBUG manage_blob_submission_inside_task{blob_id=2147897182179888742007323517221103046 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x849cacf44ed69c96f5f28a1b31f13a8e7b2499539b4471650f5f792bd38a3b68 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=6 include_at=6 bytes=13 time=2.194536ms +2026-04-20T15:28:26.866348Z DEBUG compute_state_update{scope="sequencer" rollup_height=2 slot_number=2}: sov_state::nomt::prover_storage: computed next state root state_root=23ff9484e58eb85e12f7bb9ecec2fd610a265df27d6d7f72280a2911bf45acb71a7e7f198f5127382c64068d2d174722a3a3c1586a50553bc92e2095c2c967a8 next_version=6 time=5.851412ms accesses_build_time=386.507µs finishing_session_time=4.859389ms +2026-04-20T15:28:29.822787Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=6 prev_hash=0x0bb6869d1686cd4f83a3d71d1f81c262d2ed1889e31add51d211e6bed293b0fc hash=0x372f67e3818fdf0afafcb4c95d95904041820779beaff92dbc850804501da3a9 producing_time=3.399928ms +2026-04-20T15:28:29.829406Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=6 current_state_root="6c85f7dbffc944f6cc6a7368234fc3c5077e61aae73b859141336b77b3317d544c8c2c8a8001c9972a6dd247b43d338c4caad3071f9b3e901b3eacc74c3352a0" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x849cacf44ed69c96f5f28a1b31f13a8e7b2499539b4471650f5f792bd38a3b68"] proof_blobs=[] +2026-04-20T15:28:29.837026Z DEBUG StfBlueprint::apply_slot{context=Node da_height=6}: sov_chain_state: Setting next visible slot number next_visible_slot_number=2 +2026-04-20T15:28:29.841676Z DEBUG StfBlueprint::apply_slot{context=Node da_height=6}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x849cacf44ed69c96f5f28a1b31f13a8e7b2499539b4471650f5f792bd38a3b68}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[9, 9], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:28:29.843843Z DEBUG StfBlueprint::apply_slot{context=Node da_height=6}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6c85f7dbffc944f6cc6a7368234fc3c5077e61aae73b859141336b77b3317d544c8c2c8a8001c9972a6dd247b43d338c4caad3071f9b3e901b3eacc74c3352a0 next_version=6 sesssion_starting_time=266.029µs +2026-04-20T15:28:29.850332Z DEBUG StfBlueprint::apply_slot{context=Node da_height=6}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=23ff9484e58eb85e12f7bb9ecec2fd610a265df27d6d7f72280a2911bf45acb767a212adc23f8e831b7356b9a3e7570299b9a5dba3ef7c88944fe586a6d0589b next_version=6 time=7.503991ms accesses_build_time=747.945µs finishing_session_time=6.346819ms +2026-04-20T15:28:29.851234Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6f0d43920d16de9e5be675b5b76d09e1a41daecea4100f8be0d71952595eb4de285aed34be643fb5ed1070de902b5b2c4edba223e3db238039cf75786905c2da" next_state_root="23ff9484e58eb85e12f7bb9ecec2fd610a265df27d6d7f72280a2911bf45acb767a212adc23f8e831b7356b9a3e7570299b9a5dba3ef7c88944fe586a6d0589b" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:28:29.855530Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 6, latest_finalized_slot_number: 6, sync_status: Syncing { synced_da_height: 5, target_da_height: 6 }, .. } +2026-04-20T15:28:29.856956Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=2 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 6, latest_finalized_slot_number: 6, sync_status: Syncing { synced_da_height: 5, target_da_height: 6 }, .. } +2026-04-20T15:28:29.857907Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=2 +2026-04-20T15:28:29.860446Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:28:29.861493Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=0 +2026-04-20T15:28:29.863357Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=3 +2026-04-20T15:28:29.864298Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:28:29.866119Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=3 sequence_number=2 +2026-04-20T15:28:29.866424Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=2 blob_id=2147897185818728895014807992870739609 visible_slot_number_after_increase=3 visible_slots_to_advance=1 +2026-04-20T15:28:29.866510Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[8, 8], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:28:29.870947Z DEBUG compute_state_update{scope="sequencer" rollup_height=3 slot_number=3}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:28:29.871331Z DEBUG compute_state_update{scope="sequencer" rollup_height=3 slot_number=3}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=23ff9484e58eb85e12f7bb9ecec2fd610a265df27d6d7f72280a2911bf45acb767a212adc23f8e831b7356b9a3e7570299b9a5dba3ef7c88944fe586a6d0589b next_version=7 sesssion_starting_time=745.135µs +2026-04-20T15:28:29.873815Z DEBUG manage_blob_submission_inside_task{blob_id=2147897185818728895014807992870739609 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x1bbd12b296d882cd66e508a2aea64790a7919adec58725020ae0eece56468c53 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=7 include_at=7 bytes=13 time=1.739639ms +2026-04-20T15:28:29.876535Z DEBUG compute_state_update{scope="sequencer" rollup_height=3 slot_number=3}: sov_state::nomt::prover_storage: computed next state root state_root=2ca29b08f43b7dc40ef4e978143dfae9a97ba14fbe0dd0db95c356262f5c5f6e1a4361e0fd426b621c80749e9ce89336eacfcaec242e1e3a412b8749369d8eac next_version=7 time=6.368808ms accesses_build_time=396.787µs finishing_session_time=5.099957ms +2026-04-20T15:28:29.892860Z DEBUG sov_stf_runner::runner: Block execution complete time=3.036571674s +2026-04-20T15:28:29.892957Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:28:29.894115Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:28:29.894426Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:28:32.827406Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=7 prev_hash=0x372f67e3818fdf0afafcb4c95d95904041820779beaff92dbc850804501da3a9 hash=0x3c53456e96c571c15b3e21c8948a63a84783beca29898403a33a2c46bc8f2af9 producing_time=3.299909ms +2026-04-20T15:28:32.835638Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=7 current_state_root="23ff9484e58eb85e12f7bb9ecec2fd610a265df27d6d7f72280a2911bf45acb767a212adc23f8e831b7356b9a3e7570299b9a5dba3ef7c88944fe586a6d0589b" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1bbd12b296d882cd66e508a2aea64790a7919adec58725020ae0eece56468c53"] proof_blobs=[] +2026-04-20T15:28:32.842964Z DEBUG StfBlueprint::apply_slot{context=Node da_height=7}: sov_chain_state: Setting next visible slot number next_visible_slot_number=3 +2026-04-20T15:28:32.847782Z DEBUG StfBlueprint::apply_slot{context=Node da_height=7}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x1bbd12b296d882cd66e508a2aea64790a7919adec58725020ae0eece56468c53}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[8, 8], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:28:32.849900Z DEBUG StfBlueprint::apply_slot{context=Node da_height=7}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=23ff9484e58eb85e12f7bb9ecec2fd610a265df27d6d7f72280a2911bf45acb767a212adc23f8e831b7356b9a3e7570299b9a5dba3ef7c88944fe586a6d0589b next_version=7 sesssion_starting_time=238.889µs +2026-04-20T15:28:32.856770Z DEBUG StfBlueprint::apply_slot{context=Node da_height=7}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2ca29b08f43b7dc40ef4e978143dfae9a97ba14fbe0dd0db95c356262f5c5f6e418daf5e69c996a1ff418297fb6f93cc072d4cd1a1012d1992b2ad8d4dc0ba99 next_version=7 time=7.875529ms accesses_build_time=755.305µs finishing_session_time=6.748396ms +2026-04-20T15:28:32.857589Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="23ff9484e58eb85e12f7bb9ecec2fd610a265df27d6d7f72280a2911bf45acb767a212adc23f8e831b7356b9a3e7570299b9a5dba3ef7c88944fe586a6d0589b" next_state_root="2ca29b08f43b7dc40ef4e978143dfae9a97ba14fbe0dd0db95c356262f5c5f6e418daf5e69c996a1ff418297fb6f93cc072d4cd1a1012d1992b2ad8d4dc0ba99" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:28:32.861683Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 7, latest_finalized_slot_number: 7, sync_status: Synced { synced_da_height: 6 }, .. } +2026-04-20T15:28:32.863096Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=3 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 7, latest_finalized_slot_number: 7, sync_status: Synced { synced_da_height: 6 }, .. } +2026-04-20T15:28:32.864041Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=3 +2026-04-20T15:28:32.866622Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:28:32.867634Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=0 +2026-04-20T15:28:32.869512Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=4 +2026-04-20T15:28:32.870517Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:28:32.872097Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=4 sequence_number=3 +2026-04-20T15:28:32.872381Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:28:32.872621Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=3 blob_id=2147897189452780551079670177297768630 visible_slot_number_after_increase=4 visible_slots_to_advance=1 +2026-04-20T15:28:32.876930Z DEBUG compute_state_update{scope="sequencer" rollup_height=4 slot_number=4}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:28:32.877223Z DEBUG sov_stf_runner::runner: Block execution complete time=2.984282622s +2026-04-20T15:28:32.877272Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:28:32.877243Z DEBUG compute_state_update{scope="sequencer" rollup_height=4 slot_number=4}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2ca29b08f43b7dc40ef4e978143dfae9a97ba14fbe0dd0db95c356262f5c5f6e418daf5e69c996a1ff418297fb6f93cc072d4cd1a1012d1992b2ad8d4dc0ba99 next_version=8 sesssion_starting_time=321.828µs +2026-04-20T15:28:32.878594Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:28:32.878903Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:28:32.880597Z DEBUG manage_blob_submission_inside_task{blob_id=2147897189452780551079670177297768630 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xa16ec812fbdde0040f91d6610b13acda19cea67eb2b5233f4cd88dda492c97d9 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=8 include_at=8 bytes=13 time=1.987637ms +2026-04-20T15:28:32.882401Z DEBUG compute_state_update{scope="sequencer" rollup_height=4 slot_number=4}: sov_state::nomt::prover_storage: computed next state root state_root=2ed9a195e498bfdff01a42369a4fad4308329d1f1fa42a8073a24feadf772cee7aac3f2adb09d7d5db2d4b9bc78cca3f878b4ad136035791576875a871224cca next_version=8 time=5.866082ms accesses_build_time=380.677µs finishing_session_time=5.063807ms +2026-04-20T15:28:33.400362Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ruV4TjuiQ_Sj6ozkYrifcw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:28:33.407649Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:28:33.418733Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 513706 cycles +2026-04-20T15:28:33.421400Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 34, 225, 33, 75, 146, 229, 187, 175, 253, 34, 169, 49, 24, 149, 82, 78, 33, 120, 120, 241, 9, 178, 210, 126, 156, 2, 4, 13, 39, 215, 29, 60, 247, 20, 131, 135, 222, 212, 253, 193, 134, 55, 125, 48, 249, 141, 165, 51, 60, 130, 20, 67, 156, 77, 118, 133, 142, 202, 182, 7, 136, 22, 105, 201, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:28:33.644409Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:28:33.644493Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:28:35.832599Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=8 prev_hash=0x3c53456e96c571c15b3e21c8948a63a84783beca29898403a33a2c46bc8f2af9 hash=0x50946d9b1c164223bb5a7eac266764e700a9a0944ec75375ecf537643f6a97c0 producing_time=3.372588ms +2026-04-20T15:28:35.839534Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=8 current_state_root="2ca29b08f43b7dc40ef4e978143dfae9a97ba14fbe0dd0db95c356262f5c5f6e418daf5e69c996a1ff418297fb6f93cc072d4cd1a1012d1992b2ad8d4dc0ba99" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa16ec812fbdde0040f91d6610b13acda19cea67eb2b5233f4cd88dda492c97d9"] proof_blobs=[] +2026-04-20T15:28:35.847148Z DEBUG StfBlueprint::apply_slot{context=Node da_height=8}: sov_chain_state: Setting next visible slot number next_visible_slot_number=4 +2026-04-20T15:28:35.851994Z DEBUG StfBlueprint::apply_slot{context=Node da_height=8}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xa16ec812fbdde0040f91d6610b13acda19cea67eb2b5233f4cd88dda492c97d9}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:28:35.854149Z DEBUG StfBlueprint::apply_slot{context=Node da_height=8}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2ca29b08f43b7dc40ef4e978143dfae9a97ba14fbe0dd0db95c356262f5c5f6e418daf5e69c996a1ff418297fb6f93cc072d4cd1a1012d1992b2ad8d4dc0ba99 next_version=8 sesssion_starting_time=241.989µs +2026-04-20T15:28:35.861304Z DEBUG StfBlueprint::apply_slot{context=Node da_height=8}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2ed9a195e498bfdff01a42369a4fad4308329d1f1fa42a8073a24feadf772cee6d0ee7acf1c25aab58ecfd53a601803ecc7d5d6824f5e5a4a2a1895f57f082b8 next_version=8 time=8.178927ms accesses_build_time=767.745µs finishing_session_time=7.033464ms +2026-04-20T15:28:35.862123Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2ca29b08f43b7dc40ef4e978143dfae9a97ba14fbe0dd0db95c356262f5c5f6e418daf5e69c996a1ff418297fb6f93cc072d4cd1a1012d1992b2ad8d4dc0ba99" next_state_root="2ed9a195e498bfdff01a42369a4fad4308329d1f1fa42a8073a24feadf772cee6d0ee7acf1c25aab58ecfd53a601803ecc7d5d6824f5e5a4a2a1895f57f082b8" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:28:35.866392Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 8, latest_finalized_slot_number: 8, sync_status: Synced { synced_da_height: 7 }, .. } +2026-04-20T15:28:35.867893Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=4 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 8, latest_finalized_slot_number: 8, sync_status: Synced { synced_da_height: 7 }, .. } +2026-04-20T15:28:35.868865Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=4 +2026-04-20T15:28:35.871811Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:28:35.872838Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=0 +2026-04-20T15:28:35.874832Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=5 +2026-04-20T15:28:35.875874Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:28:35.877596Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=5 sequence_number=4 +2026-04-20T15:28:35.877943Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=4 blob_id=2147897193085606529226410688048063954 visible_slot_number_after_increase=5 visible_slots_to_advance=1 +2026-04-20T15:28:35.877928Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:28:35.881453Z DEBUG sov_stf_runner::runner: Block execution complete time=3.004187603s +2026-04-20T15:28:35.881507Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:28:35.881963Z DEBUG compute_state_update{scope="sequencer" rollup_height=5 slot_number=5}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:28:35.882401Z DEBUG compute_state_update{scope="sequencer" rollup_height=5 slot_number=5}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2ed9a195e498bfdff01a42369a4fad4308329d1f1fa42a8073a24feadf772cee6d0ee7acf1c25aab58ecfd53a601803ecc7d5d6824f5e5a4a2a1895f57f082b8 next_version=9 sesssion_starting_time=441.427µs +2026-04-20T15:28:35.882666Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:28:35.883008Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:28:35.885280Z DEBUG manage_blob_submission_inside_task{blob_id=2147897193085606529226410688048063954 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xe110e5634891f9c3c151bc165b9129ea72ea6dd0531c7cc484912ea8d7fbd1bc sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=9 include_at=9 bytes=13 time=1.832998ms +2026-04-20T15:28:35.887762Z DEBUG compute_state_update{scope="sequencer" rollup_height=5 slot_number=5}: sov_state::nomt::prover_storage: computed next state root state_root=3df31662fa2acb5baf0ac2c3a7210ee8d16fa7e4550939cb17f04cea227a16b33174533d4c79588fec77bc95943e251942722e14b3ad6d848b0966c7263c282c next_version=9 time=6.195ms accesses_build_time=380.397µs finishing_session_time=5.254206ms +2026-04-20T15:28:36.360074Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EqQpe5PTQ3GfKO-rBtdaCw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:28:36.368692Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:28:36.379744Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 575676 cycles +2026-04-20T15:28:36.382419Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 2, 154, 104, 244, 62, 61, 178, 203, 187, 181, 14, 158, 75, 165, 114, 176, 62, 73, 251, 54, 106, 68, 230, 116, 122, 44, 174, 68, 185, 141, 69, 176, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 89, 168, 157, 252, 184, 202, 228, 164, 173, 134, 131, 83, 110, 43, 222, 237, 159, 250, 35, 187, 186, 84, 88, 74, 180, 161, 190, 13, 79, 153, 173, 64, 160, 30, 61, 219, 56, 36, 71, 130, 243, 253, 140, 141, 247, 37, 193, 33, 221, 63, 229, 214, 215, 175, 192, 53, 65, 246, 170, 232, 77, 25, 111, 57, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:28:36.575322Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:28:36.575399Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:28:38.837149Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=9 prev_hash=0x50946d9b1c164223bb5a7eac266764e700a9a0944ec75375ecf537643f6a97c0 hash=0x7f928ea73513d72f058c13f202a70e33ee0704bbfc494e975433011480165729 producing_time=3.08098ms +2026-04-20T15:28:38.844374Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=9 current_state_root="2ed9a195e498bfdff01a42369a4fad4308329d1f1fa42a8073a24feadf772cee6d0ee7acf1c25aab58ecfd53a601803ecc7d5d6824f5e5a4a2a1895f57f082b8" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe110e5634891f9c3c151bc165b9129ea72ea6dd0531c7cc484912ea8d7fbd1bc"] proof_blobs=[] +2026-04-20T15:28:38.851920Z DEBUG StfBlueprint::apply_slot{context=Node da_height=9}: sov_chain_state: Setting next visible slot number next_visible_slot_number=5 +2026-04-20T15:28:38.856759Z DEBUG StfBlueprint::apply_slot{context=Node da_height=9}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xe110e5634891f9c3c151bc165b9129ea72ea6dd0531c7cc484912ea8d7fbd1bc}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:28:38.858852Z DEBUG StfBlueprint::apply_slot{context=Node da_height=9}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2ed9a195e498bfdff01a42369a4fad4308329d1f1fa42a8073a24feadf772cee6d0ee7acf1c25aab58ecfd53a601803ecc7d5d6824f5e5a4a2a1895f57f082b8 next_version=9 sesssion_starting_time=238.739µs +2026-04-20T15:28:38.865883Z DEBUG StfBlueprint::apply_slot{context=Node da_height=9}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3df31662fa2acb5baf0ac2c3a7210ee8d16fa7e4550939cb17f04cea227a16b34e43121a38ec77a7fa38d114a5abc7012cd3947c75ca86804b6dcad666cfeea6 next_version=9 time=8.029878ms accesses_build_time=750.615µs finishing_session_time=6.893275ms +2026-04-20T15:28:38.866696Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2ed9a195e498bfdff01a42369a4fad4308329d1f1fa42a8073a24feadf772cee6d0ee7acf1c25aab58ecfd53a601803ecc7d5d6824f5e5a4a2a1895f57f082b8" next_state_root="3df31662fa2acb5baf0ac2c3a7210ee8d16fa7e4550939cb17f04cea227a16b34e43121a38ec77a7fa38d114a5abc7012cd3947c75ca86804b6dcad666cfeea6" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:28:38.870876Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 9, latest_finalized_slot_number: 9, sync_status: Synced { synced_da_height: 8 }, .. } +2026-04-20T15:28:38.872306Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=5 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 9, latest_finalized_slot_number: 9, sync_status: Synced { synced_da_height: 8 }, .. } +2026-04-20T15:28:38.873245Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=5 +2026-04-20T15:28:38.875837Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:28:38.876855Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=1 +2026-04-20T15:28:38.878794Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=6 +2026-04-20T15:28:38.879847Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:28:38.881447Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=6 sequence_number=5 +2026-04-20T15:28:38.881751Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=5 blob_id=2147897196717169459804025617387207788 visible_slot_number_after_increase=6 visible_slots_to_advance=1 +2026-04-20T15:28:38.881720Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:28:38.886217Z DEBUG compute_state_update{scope="sequencer" rollup_height=6 slot_number=6}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:28:38.886560Z DEBUG compute_state_update{scope="sequencer" rollup_height=6 slot_number=6}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3df31662fa2acb5baf0ac2c3a7210ee8d16fa7e4550939cb17f04cea227a16b34e43121a38ec77a7fa38d114a5abc7012cd3947c75ca86804b6dcad666cfeea6 next_version=10 sesssion_starting_time=449.777µs +2026-04-20T15:28:38.886607Z DEBUG sov_stf_runner::runner: Block execution complete time=3.005107498s +2026-04-20T15:28:38.886656Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:28:38.887790Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:28:38.888094Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:28:38.889214Z DEBUG manage_blob_submission_inside_task{blob_id=2147897196717169459804025617387207788 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x7bf17e3dcf48e4e5e9cc9e29f59344663af50b2377ac96091313344b13d5d892 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=10 include_at=10 bytes=13 time=1.649239ms +2026-04-20T15:28:38.891977Z DEBUG compute_state_update{scope="sequencer" rollup_height=6 slot_number=6}: sov_state::nomt::prover_storage: computed next state root state_root=7ac41d96b18afe3ed069efebafa5865103fa6823333868e8f8e7451520df65c0079f932ed2dde0caeecf7667b93c73e3fdf2c64103aeabeb0ac90d4db150fb26 next_version=10 time=6.259139ms accesses_build_time=383.907µs finishing_session_time=5.318955ms +2026-04-20T15:28:39.361671Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IZxgd1E2QkSGSdB266EBAw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:28:39.370743Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:28:39.382139Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 590298 cycles +2026-04-20T15:28:39.384921Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 89, 168, 157, 252, 184, 202, 228, 164, 173, 134, 131, 83, 110, 43, 222, 237, 159, 250, 35, 187, 186, 84, 88, 74, 180, 161, 190, 13, 79, 153, 173, 64, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 66, 229, 0, 125, 16, 219, 89, 18, 204, 59, 197, 99, 30, 192, 209, 63, 246, 241, 169, 147, 133, 1, 55, 114, 53, 253, 78, 97, 105, 9, 201, 251, 45, 176, 194, 80, 12, 125, 244, 105, 228, 138, 46, 83, 20, 133, 243, 218, 7, 102, 73, 175, 104, 207, 117, 171, 42, 244, 237, 123, 191, 119, 3, 146, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:28:39.635760Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:28:39.635836Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:28:41.841884Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=10 prev_hash=0x7f928ea73513d72f058c13f202a70e33ee0704bbfc494e975433011480165729 hash=0xde8f34bef010f55ab27ec347b6cc2eb775583f13015af8ba718ac331f9455f12 producing_time=3.247959ms +2026-04-20T15:28:41.849865Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=10 current_state_root="3df31662fa2acb5baf0ac2c3a7210ee8d16fa7e4550939cb17f04cea227a16b34e43121a38ec77a7fa38d114a5abc7012cd3947c75ca86804b6dcad666cfeea6" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x7bf17e3dcf48e4e5e9cc9e29f59344663af50b2377ac96091313344b13d5d892"] proof_blobs=[] +2026-04-20T15:28:41.857508Z DEBUG StfBlueprint::apply_slot{context=Node da_height=10}: sov_chain_state: Setting next visible slot number next_visible_slot_number=6 +2026-04-20T15:28:41.862457Z DEBUG StfBlueprint::apply_slot{context=Node da_height=10}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x7bf17e3dcf48e4e5e9cc9e29f59344663af50b2377ac96091313344b13d5d892}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:28:41.864589Z DEBUG StfBlueprint::apply_slot{context=Node da_height=10}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3df31662fa2acb5baf0ac2c3a7210ee8d16fa7e4550939cb17f04cea227a16b34e43121a38ec77a7fa38d114a5abc7012cd3947c75ca86804b6dcad666cfeea6 next_version=10 sesssion_starting_time=237.788µs +2026-04-20T15:28:41.872473Z DEBUG StfBlueprint::apply_slot{context=Node da_height=10}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=7ac41d96b18afe3ed069efebafa5865103fa6823333868e8f8e7451520df65c0105c96da381384c2855abe0658493231d75e48764c520e89bd848acf9141121c next_version=10 time=8.896002ms accesses_build_time=762.205µs finishing_session_time=7.73439ms +2026-04-20T15:28:41.873450Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3df31662fa2acb5baf0ac2c3a7210ee8d16fa7e4550939cb17f04cea227a16b34e43121a38ec77a7fa38d114a5abc7012cd3947c75ca86804b6dcad666cfeea6" next_state_root="7ac41d96b18afe3ed069efebafa5865103fa6823333868e8f8e7451520df65c0105c96da381384c2855abe0658493231d75e48764c520e89bd848acf9141121c" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:28:41.877686Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 10, latest_finalized_slot_number: 10, sync_status: Syncing { synced_da_height: 9, target_da_height: 10 }, .. } +2026-04-20T15:28:41.879085Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=6 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 10, latest_finalized_slot_number: 10, sync_status: Syncing { synced_da_height: 9, target_da_height: 10 }, .. } +2026-04-20T15:28:41.880028Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=6 +2026-04-20T15:28:41.882620Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:28:41.883596Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=2 +2026-04-20T15:28:41.885434Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=7 +2026-04-20T15:28:41.886410Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:28:41.887974Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=7 sequence_number=6 +2026-04-20T15:28:41.888345Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=6 blob_id=2147897200351220542921292221473725567 visible_slot_number_after_increase=7 visible_slots_to_advance=1 +2026-04-20T15:28:41.888293Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:28:41.892891Z DEBUG sov_stf_runner::runner: Block execution complete time=3.00623986s +2026-04-20T15:28:41.892969Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:28:41.893116Z DEBUG compute_state_update{scope="sequencer" rollup_height=7 slot_number=7}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:28:41.893491Z DEBUG compute_state_update{scope="sequencer" rollup_height=7 slot_number=7}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7ac41d96b18afe3ed069efebafa5865103fa6823333868e8f8e7451520df65c0105c96da381384c2855abe0658493231d75e48764c520e89bd848acf9141121c next_version=11 sesssion_starting_time=386.468µs +2026-04-20T15:28:41.894706Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:28:41.895134Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:28:41.896302Z DEBUG manage_blob_submission_inside_task{blob_id=2147897200351220542921292221473725567 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x414da74fe19fd4f16b946d9131275fb080fe8660f0529de5027939b93abbf3fc sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=11 include_at=11 bytes=13 time=1.62912ms +2026-04-20T15:28:41.898732Z DEBUG compute_state_update{scope="sequencer" rollup_height=7 slot_number=7}: sov_state::nomt::prover_storage: computed next state root state_root=60b19a3ea51294fe6c301041abb1cbf80e6105699aa1cbae7682356c1e09821e63aa42d5bad6beb922dbc2e57922625aef7fa24484e7834ade8a48375d45a358 next_version=11 time=6.038641ms accesses_build_time=400.877µs finishing_session_time=5.127987ms +2026-04-20T15:28:42.344093Z DEBUG sp1_core_executor_runner::native: CHILD sp1_22rX-8_PSE2rPomuZQPNbQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:28:42.353966Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:28:42.364379Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 618542 cycles +2026-04-20T15:28:42.366959Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 100, 189, 90, 144, 3, 41, 240, 198, 22, 126, 106, 151, 73, 63, 250, 13, 7, 85, 122, 248, 159, 181, 88, 21, 223, 31, 186, 169, 71, 179, 63, 222, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 72, 57, 89, 92, 80, 254, 133, 106, 10, 20, 144, 146, 136, 172, 238, 144, 26, 254, 94, 7, 7, 123, 169, 150, 198, 56, 32, 218, 246, 242, 78, 144, 183, 235, 79, 131, 224, 184, 149, 232, 209, 1, 102, 165, 251, 6, 115, 221, 130, 96, 105, 167, 227, 152, 159, 208, 78, 27, 167, 244, 223, 77, 235, 115, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:28:42.576837Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:28:42.576920Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:28:44.846445Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=11 prev_hash=0xde8f34bef010f55ab27ec347b6cc2eb775583f13015af8ba718ac331f9455f12 hash=0x536e41631d0349b7ca925a07d79930d8439d4e0791b622fb02716d1abfc5dc2c producing_time=2.861062ms +2026-04-20T15:28:44.855566Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=11 current_state_root="7ac41d96b18afe3ed069efebafa5865103fa6823333868e8f8e7451520df65c0105c96da381384c2855abe0658493231d75e48764c520e89bd848acf9141121c" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x414da74fe19fd4f16b946d9131275fb080fe8660f0529de5027939b93abbf3fc"] proof_blobs=[] +2026-04-20T15:28:44.862999Z DEBUG StfBlueprint::apply_slot{context=Node da_height=11}: sov_chain_state: Setting next visible slot number next_visible_slot_number=7 +2026-04-20T15:28:44.868239Z DEBUG StfBlueprint::apply_slot{context=Node da_height=11}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x414da74fe19fd4f16b946d9131275fb080fe8660f0529de5027939b93abbf3fc}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:28:44.870377Z DEBUG StfBlueprint::apply_slot{context=Node da_height=11}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7ac41d96b18afe3ed069efebafa5865103fa6823333868e8f8e7451520df65c0105c96da381384c2855abe0658493231d75e48764c520e89bd848acf9141121c next_version=11 sesssion_starting_time=253.028µs +2026-04-20T15:28:44.877919Z DEBUG StfBlueprint::apply_slot{context=Node da_height=11}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60b19a3ea51294fe6c301041abb1cbf80e6105699aa1cbae7682356c1e09821e26218f8975010143d73f32f11ccd71ebdf4899dabae9785965d6598e255b6378 next_version=11 time=8.573984ms accesses_build_time=768.985µs finishing_session_time=7.410992ms +2026-04-20T15:28:44.878925Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="7ac41d96b18afe3ed069efebafa5865103fa6823333868e8f8e7451520df65c0105c96da381384c2855abe0658493231d75e48764c520e89bd848acf9141121c" next_state_root="60b19a3ea51294fe6c301041abb1cbf80e6105699aa1cbae7682356c1e09821e26218f8975010143d73f32f11ccd71ebdf4899dabae9785965d6598e255b6378" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:28:44.882230Z DEBUG sov_stf_runner::runner: Block execution complete time=2.98927191s +2026-04-20T15:28:44.882336Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:28:44.883294Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 11, latest_finalized_slot_number: 10, sync_status: Syncing { synced_da_height: 10, target_da_height: 11 }, .. } +2026-04-20T15:28:44.884445Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:28:44.884757Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=7 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 11, latest_finalized_slot_number: 10, sync_status: Syncing { synced_da_height: 10, target_da_height: 11 }, .. } +2026-04-20T15:28:44.885039Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:28:44.885733Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=7 +2026-04-20T15:28:44.888580Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:28:44.889624Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=3 +2026-04-20T15:28:44.891622Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=8 +2026-04-20T15:28:44.892735Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:28:44.894724Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=8 sequence_number=7 +2026-04-20T15:28:44.895006Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:28:44.895037Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=7 blob_id=2147897203986497693824268198674820311 visible_slot_number_after_increase=8 visible_slots_to_advance=1 +2026-04-20T15:28:44.900069Z DEBUG compute_state_update{scope="sequencer" rollup_height=8 slot_number=8}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60b19a3ea51294fe6c301041abb1cbf80e6105699aa1cbae7682356c1e09821e26218f8975010143d73f32f11ccd71ebdf4899dabae9785965d6598e255b6378 next_version=12 sesssion_starting_time=329.048µs +2026-04-20T15:28:44.903167Z DEBUG manage_blob_submission_inside_task{blob_id=2147897203986497693824268198674820311 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x1adc2d4359cc296afb56c03272228fed482f3a993c51fa7ec240fa19fc3ab135 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=12 include_at=12 bytes=13 time=1.812199ms +2026-04-20T15:28:44.905924Z DEBUG compute_state_update{scope="sequencer" rollup_height=8 slot_number=8}: sov_state::nomt::prover_storage: computed next state root state_root=40a49761eb5cf37084d7481d4184ed2a4528924c03bae4545fab3ea3574c5adc3b280b1683d32cb7e982e65607ad9723bcecc226e2aad92771a629b77aeb6de1 next_version=12 time=6.780296ms accesses_build_time=560.916µs finishing_session_time=5.697703ms +2026-04-20T15:28:45.356722Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5AacdTltQR6dMHNftuHLNA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:28:45.385844Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:28:45.398236Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1441073 cycles +2026-04-20T15:28:45.400947Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 40, 90, 237, 52, 190, 100, 63, 181, 237, 16, 112, 222, 144, 43, 91, 44, 78, 219, 162, 35, 227, 219, 35, 128, 57, 207, 117, 120, 105, 5, 194, 218, 46, 89, 111, 202, 195, 211, 232, 160, 62, 119, 87, 181, 33, 203, 106, 101, 187, 170, 29, 236, 153, 161, 90, 147, 152, 203, 83, 247, 191, 39, 1, 125, 84, 112, 193, 59, 104, 63, 116, 113, 31, 46, 134, 117, 62, 168, 43, 219, 116, 108, 133, 0, 32, 182, 221, 248, 125, 89, 250, 12, 121, 183, 253, 37, 11, 182, 134, 157, 22, 134, 205, 79, 131, 163, 215, 29, 31, 129, 194, 98, 210, 237, 24, 137, 227, 26, 221, 81, 210, 17, 230, 190, 210, 147, 176, 252, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:28:45.952863Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:28:45.952941Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:28:47.851061Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=12 prev_hash=0x536e41631d0349b7ca925a07d79930d8439d4e0791b622fb02716d1abfc5dc2c hash=0x8efda7db70c6dc27f0975f1d3ff90d5831439ce1a786edf3c2e653062ea681bf producing_time=3.239409ms +2026-04-20T15:28:47.855068Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=12 current_state_root="60b19a3ea51294fe6c301041abb1cbf80e6105699aa1cbae7682356c1e09821e26218f8975010143d73f32f11ccd71ebdf4899dabae9785965d6598e255b6378" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1adc2d4359cc296afb56c03272228fed482f3a993c51fa7ec240fa19fc3ab135"] proof_blobs=[] +2026-04-20T15:28:47.863367Z DEBUG StfBlueprint::apply_slot{context=Node da_height=12}: sov_chain_state: Setting next visible slot number next_visible_slot_number=8 +2026-04-20T15:28:47.869776Z DEBUG StfBlueprint::apply_slot{context=Node da_height=12}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x1adc2d4359cc296afb56c03272228fed482f3a993c51fa7ec240fa19fc3ab135}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:28:47.872123Z DEBUG StfBlueprint::apply_slot{context=Node da_height=12}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60b19a3ea51294fe6c301041abb1cbf80e6105699aa1cbae7682356c1e09821e26218f8975010143d73f32f11ccd71ebdf4899dabae9785965d6598e255b6378 next_version=12 sesssion_starting_time=323.298µs +2026-04-20T15:28:47.879484Z DEBUG StfBlueprint::apply_slot{context=Node da_height=12}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=40a49761eb5cf37084d7481d4184ed2a4528924c03bae4545fab3ea3574c5adc3bb2ccd83dc67c0b2a694aad16fec90dc16953656bee4ba2b2def5b3acd2df24 next_version=12 time=8.503945ms accesses_build_time=803.175µs finishing_session_time=7.220113ms +2026-04-20T15:28:47.880636Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="7ac41d96b18afe3ed069efebafa5865103fa6823333868e8f8e7451520df65c0105c96da381384c2855abe0658493231d75e48764c520e89bd848acf9141121c" next_state_root="40a49761eb5cf37084d7481d4184ed2a4528924c03bae4545fab3ea3574c5adc3bb2ccd83dc67c0b2a694aad16fec90dc16953656bee4ba2b2def5b3acd2df24" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:28:47.885025Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 12, latest_finalized_slot_number: 11, sync_status: Syncing { synced_da_height: 11, target_da_height: 12 }, .. } +2026-04-20T15:28:47.886455Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=8 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 12, latest_finalized_slot_number: 11, sync_status: Syncing { synced_da_height: 11, target_da_height: 12 }, .. } +2026-04-20T15:28:47.887389Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=8 +2026-04-20T15:28:47.889854Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:28:47.890837Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=4 +2026-04-20T15:28:47.892850Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=9 +2026-04-20T15:28:47.894023Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:28:47.896049Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=9 sequence_number=8 +2026-04-20T15:28:47.896379Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=8 blob_id=2147897207614437131458872854146778208 visible_slot_number_after_increase=9 visible_slots_to_advance=1 +2026-04-20T15:28:47.896394Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:28:47.903167Z DEBUG compute_state_update{scope="sequencer" rollup_height=9 slot_number=9}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:28:47.903511Z DEBUG compute_state_update{scope="sequencer" rollup_height=9 slot_number=9}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=40a49761eb5cf37084d7481d4184ed2a4528924c03bae4545fab3ea3574c5adc3bb2ccd83dc67c0b2a694aad16fec90dc16953656bee4ba2b2def5b3acd2df24 next_version=13 sesssion_starting_time=2.859241ms +2026-04-20T15:28:47.903793Z DEBUG sov_stf_runner::runner: Block execution complete time=3.021489842s +2026-04-20T15:28:47.903865Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:28:47.903880Z DEBUG manage_blob_submission_inside_task{blob_id=2147897207614437131458872854146778208 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xe3083447c64ada9d7dd5ee314db56240e5f75f627c72ece843e12d39fcf66a8d sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=13 include_at=13 bytes=13 time=1.64405ms +2026-04-20T15:28:47.906056Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:28:47.906621Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:28:47.909214Z DEBUG compute_state_update{scope="sequencer" rollup_height=9 slot_number=9}: sov_state::nomt::prover_storage: computed next state root state_root=44c389dd914f901a2187a95357175d37f6c2217bde367a4ed6c39cc6827c750b56416ab1807690e2da419a4ecf0acc0860cfca87a29ab0149bff93db7d8e0e68 next_version=13 time=8.964261ms accesses_build_time=392.617µs finishing_session_time=5.562903ms +2026-04-20T15:28:48.347741Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8imFyvkmQ8W83JgsFXRN7g==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:28:48.377282Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:28:48.387963Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1485033 cycles +2026-04-20T15:28:48.390750Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [108, 133, 247, 219, 255, 201, 68, 246, 204, 106, 115, 104, 35, 79, 195, 197, 7, 126, 97, 170, 231, 59, 133, 145, 65, 51, 107, 119, 179, 49, 125, 84, 76, 140, 44, 138, 128, 1, 201, 151, 42, 109, 210, 71, 180, 61, 51, 140, 76, 170, 211, 7, 31, 155, 62, 144, 27, 62, 172, 199, 76, 51, 82, 160, 106, 25, 27, 82, 154, 64, 175, 3, 211, 226, 62, 223, 15, 58, 86, 245, 18, 108, 245, 15, 191, 253, 103, 145, 161, 148, 137, 224, 82, 141, 237, 34, 17, 14, 22, 94, 102, 83, 120, 24, 70, 118, 45, 3, 90, 168, 247, 59, 125, 55, 38, 120, 242, 32, 177, 156, 69, 4, 57, 247, 236, 108, 135, 99, 55, 47, 103, 227, 129, 143, 223, 10, 250, 252, 180, 201, 93, 149, 144, 64, 65, 130, 7, 121, 190, 175, 249, 45, 188, 133, 8, 4, 80, 29, 163, 169, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:28:48.908166Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:28:48.908258Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:28:50.855470Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=13 prev_hash=0x8efda7db70c6dc27f0975f1d3ff90d5831439ce1a786edf3c2e653062ea681bf hash=0x3693aadc2fbdf61fa06f7ee5165c8245b7c4df4757cb8bf595c308cb42aaf675 producing_time=3.265619ms +2026-04-20T15:28:50.857277Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=13 current_state_root="40a49761eb5cf37084d7481d4184ed2a4528924c03bae4545fab3ea3574c5adc3bb2ccd83dc67c0b2a694aad16fec90dc16953656bee4ba2b2def5b3acd2df24" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe3083447c64ada9d7dd5ee314db56240e5f75f627c72ece843e12d39fcf66a8d"] proof_blobs=[] +2026-04-20T15:28:50.864985Z DEBUG StfBlueprint::apply_slot{context=Node da_height=13}: sov_chain_state: Setting next visible slot number next_visible_slot_number=9 +2026-04-20T15:28:50.870901Z DEBUG StfBlueprint::apply_slot{context=Node da_height=13}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xe3083447c64ada9d7dd5ee314db56240e5f75f627c72ece843e12d39fcf66a8d}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:28:50.873084Z DEBUG StfBlueprint::apply_slot{context=Node da_height=13}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=40a49761eb5cf37084d7481d4184ed2a4528924c03bae4545fab3ea3574c5adc3bb2ccd83dc67c0b2a694aad16fec90dc16953656bee4ba2b2def5b3acd2df24 next_version=13 sesssion_starting_time=307.247µs +2026-04-20T15:28:50.880226Z DEBUG StfBlueprint::apply_slot{context=Node da_height=13}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=44c389dd914f901a2187a95357175d37f6c2217bde367a4ed6c39cc6827c750b54bb2680be39181bb372d31d99b5ffefbc12d6382e4f596d4119b80802dc60ea next_version=13 time=8.241166ms accesses_build_time=779.985µs finishing_session_time=7.004165ms +2026-04-20T15:28:50.881346Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60b19a3ea51294fe6c301041abb1cbf80e6105699aa1cbae7682356c1e09821e26218f8975010143d73f32f11ccd71ebdf4899dabae9785965d6598e255b6378" next_state_root="44c389dd914f901a2187a95357175d37f6c2217bde367a4ed6c39cc6827c750b54bb2680be39181bb372d31d99b5ffefbc12d6382e4f596d4119b80802dc60ea" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:28:50.885928Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 13, latest_finalized_slot_number: 12, sync_status: Syncing { synced_da_height: 12, target_da_height: 13 }, .. } +2026-04-20T15:28:50.887381Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=9 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 13, latest_finalized_slot_number: 12, sync_status: Syncing { synced_da_height: 12, target_da_height: 13 }, .. } +2026-04-20T15:28:50.888303Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=9 +2026-04-20T15:28:50.890781Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:28:50.891768Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=5 +2026-04-20T15:28:50.893591Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=10 +2026-04-20T15:28:50.894605Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:28:50.896566Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=10 sequence_number=9 +2026-04-20T15:28:50.896848Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=9 blob_id=2147897211242426170937389240011500890 visible_slot_number_after_increase=10 visible_slots_to_advance=1 +2026-04-20T15:28:50.896856Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:28:50.897351Z DEBUG sov_stf_runner::runner: Block execution complete time=2.993498103s +2026-04-20T15:28:50.897432Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:28:50.899521Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:28:50.900112Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:28:50.900799Z DEBUG compute_state_update{scope="sequencer" rollup_height=10 slot_number=10}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:28:50.901185Z DEBUG compute_state_update{scope="sequencer" rollup_height=10 slot_number=10}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=44c389dd914f901a2187a95357175d37f6c2217bde367a4ed6c39cc6827c750b54bb2680be39181bb372d31d99b5ffefbc12d6382e4f596d4119b80802dc60ea next_version=14 sesssion_starting_time=400.897µs +2026-04-20T15:28:50.903948Z DEBUG manage_blob_submission_inside_task{blob_id=2147897211242426170937389240011500890 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xc97078b78dcaf3e27828be1d86326e0d3d8a0ea0adaed3b1525e73b2e7201175 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=14 include_at=14 bytes=13 time=1.867077ms +2026-04-20T15:28:50.906429Z DEBUG compute_state_update{scope="sequencer" rollup_height=10 slot_number=10}: sov_state::nomt::prover_storage: computed next state root state_root=47b940c0b06b2d1d4b9285f60b1e1bcbf687a6cc6b0287105e833d31bffec7212cebe296c7898a504f1d507332b01c6418a1d765e8fc003f61b172f65579587c next_version=14 time=6.05956ms accesses_build_time=406.287µs finishing_session_time=5.146177ms +2026-04-20T15:28:51.378394Z DEBUG sp1_core_executor_runner::native: CHILD sp1_F1TqvWBrRlOPICjx8ua4vg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:28:51.408943Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:28:51.420660Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1524601 cycles +2026-04-20T15:28:51.423356Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [35, 255, 148, 132, 229, 142, 184, 94, 18, 247, 187, 158, 206, 194, 253, 97, 10, 38, 93, 242, 125, 109, 127, 114, 40, 10, 41, 17, 191, 69, 172, 183, 103, 162, 18, 173, 194, 63, 142, 131, 27, 115, 86, 185, 163, 231, 87, 2, 153, 185, 165, 219, 163, 239, 124, 136, 148, 79, 229, 134, 166, 208, 88, 155, 108, 81, 178, 183, 131, 88, 72, 252, 153, 72, 14, 127, 199, 172, 93, 33, 87, 112, 32, 160, 102, 153, 118, 95, 83, 210, 146, 230, 16, 158, 26, 184, 110, 87, 37, 104, 100, 85, 197, 126, 231, 179, 195, 248, 78, 211, 245, 211, 0, 143, 185, 74, 251, 172, 215, 10, 133, 80, 225, 27, 216, 164, 44, 231, 60, 83, 69, 110, 150, 197, 113, 193, 91, 62, 33, 200, 148, 138, 99, 168, 71, 131, 190, 202, 41, 137, 132, 3, 163, 58, 44, 70, 188, 143, 42, 249, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:28:51.955176Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:28:51.955256Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:28:53.859700Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=14 prev_hash=0x3693aadc2fbdf61fa06f7ee5165c8245b7c4df4757cb8bf595c308cb42aaf675 hash=0x34d9dfdfa7bf1fd1ce7cc38e26eadb4b2ff7736a1dc2833896277bedac6a7393 producing_time=2.289665ms +2026-04-20T15:28:53.869625Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=14 current_state_root="44c389dd914f901a2187a95357175d37f6c2217bde367a4ed6c39cc6827c750b54bb2680be39181bb372d31d99b5ffefbc12d6382e4f596d4119b80802dc60ea" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc97078b78dcaf3e27828be1d86326e0d3d8a0ea0adaed3b1525e73b2e7201175"] proof_blobs=[] +2026-04-20T15:28:53.876893Z DEBUG StfBlueprint::apply_slot{context=Node da_height=14}: sov_chain_state: Setting next visible slot number next_visible_slot_number=10 +2026-04-20T15:28:53.882370Z DEBUG StfBlueprint::apply_slot{context=Node da_height=14}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xc97078b78dcaf3e27828be1d86326e0d3d8a0ea0adaed3b1525e73b2e7201175}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:28:53.884447Z DEBUG StfBlueprint::apply_slot{context=Node da_height=14}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=44c389dd914f901a2187a95357175d37f6c2217bde367a4ed6c39cc6827c750b54bb2680be39181bb372d31d99b5ffefbc12d6382e4f596d4119b80802dc60ea next_version=14 sesssion_starting_time=299.418µs +2026-04-20T15:28:53.891556Z DEBUG StfBlueprint::apply_slot{context=Node da_height=14}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=47b940c0b06b2d1d4b9285f60b1e1bcbf687a6cc6b0287105e833d31bffec72159029cf978bb067cf14dcbb82e53027f2a471aa828fec3bd87e0f2310cd8ae88 next_version=14 time=8.160997ms accesses_build_time=741.865µs finishing_session_time=6.990485ms +2026-04-20T15:28:53.892569Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="40a49761eb5cf37084d7481d4184ed2a4528924c03bae4545fab3ea3574c5adc3bb2ccd83dc67c0b2a694aad16fec90dc16953656bee4ba2b2def5b3acd2df24" next_state_root="47b940c0b06b2d1d4b9285f60b1e1bcbf687a6cc6b0287105e833d31bffec72159029cf978bb067cf14dcbb82e53027f2a471aa828fec3bd87e0f2310cd8ae88" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:28:53.896732Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 14, latest_finalized_slot_number: 14, sync_status: Syncing { synced_da_height: 13, target_da_height: 14 }, .. } +2026-04-20T15:28:53.898100Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=10 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 14, latest_finalized_slot_number: 14, sync_status: Syncing { synced_da_height: 13, target_da_height: 14 }, .. } +2026-04-20T15:28:53.898989Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=10 +2026-04-20T15:28:53.901405Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:28:53.902328Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=6 +2026-04-20T15:28:53.903618Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=11 +2026-04-20T15:28:53.904180Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:28:53.905114Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=11 sequence_number=10 +2026-04-20T15:28:53.905300Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:28:53.905578Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=10 blob_id=2147897214880073374122662824282443738 visible_slot_number_after_increase=11 visible_slots_to_advance=1 +2026-04-20T15:28:53.911326Z DEBUG compute_state_update{scope="sequencer" rollup_height=11 slot_number=11}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:28:53.911691Z DEBUG compute_state_update{scope="sequencer" rollup_height=11 slot_number=11}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=47b940c0b06b2d1d4b9285f60b1e1bcbf687a6cc6b0287105e833d31bffec72159029cf978bb067cf14dcbb82e53027f2a471aa828fec3bd87e0f2310cd8ae88 next_version=15 sesssion_starting_time=2.897031ms +2026-04-20T15:28:53.911678Z DEBUG manage_blob_submission_inside_task{blob_id=2147897214880073374122662824282443738 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xac0e829061f92a39670452b18a921866723c50358a8d5c76f00ed0a3c811fdd2 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=15 include_at=15 bytes=13 time=1.783208ms +2026-04-20T15:28:53.916969Z DEBUG compute_state_update{scope="sequencer" rollup_height=11 slot_number=11}: sov_state::nomt::prover_storage: computed next state root state_root=27c325b2471c6282660d570e05679c54796e8c660bb22a809bd35114eeed66a64f492c1d868222205869c4a6c05aecc8a229d71fb7089d0b59e941fc6f2dba87 next_version=15 time=8.603234ms accesses_build_time=420.237µs finishing_session_time=5.178986ms +2026-04-20T15:28:53.930861Z DEBUG sov_stf_runner::runner: Block execution complete time=3.033441044s +2026-04-20T15:28:53.930961Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:28:53.932091Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:28:53.932574Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:28:54.374709Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eBF0IIxQQX6kTIzBqwSKBw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:28:54.407404Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:28:54.418568Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1595954 cycles +2026-04-20T15:28:54.421175Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [44, 162, 155, 8, 244, 59, 125, 196, 14, 244, 233, 120, 20, 61, 250, 233, 169, 123, 161, 79, 190, 13, 208, 219, 149, 195, 86, 38, 47, 92, 95, 110, 65, 141, 175, 94, 105, 201, 150, 161, 255, 65, 130, 151, 251, 111, 147, 204, 7, 45, 76, 209, 161, 1, 45, 25, 146, 178, 173, 141, 77, 192, 186, 153, 55, 147, 34, 191, 70, 217, 216, 83, 160, 169, 148, 58, 68, 102, 56, 74, 97, 45, 101, 102, 68, 207, 244, 190, 127, 103, 245, 172, 89, 129, 135, 216, 12, 211, 3, 191, 100, 21, 186, 157, 49, 37, 2, 209, 103, 17, 114, 104, 163, 167, 69, 213, 144, 235, 102, 63, 178, 6, 191, 206, 134, 15, 97, 247, 80, 148, 109, 155, 28, 22, 66, 35, 187, 90, 126, 172, 38, 103, 100, 231, 0, 169, 160, 148, 78, 199, 83, 117, 236, 245, 55, 100, 63, 106, 151, 192, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:28:54.979216Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:28:54.979297Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:28:56.864939Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=15 prev_hash=0x34d9dfdfa7bf1fd1ce7cc38e26eadb4b2ff7736a1dc2833896277bedac6a7393 hash=0x5b4feeec188c5a79ce2d1bb277c9a5be63a7a3fa672d437bd7a7fada804aff18 producing_time=3.284399ms +2026-04-20T15:28:56.874189Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=15 current_state_root="47b940c0b06b2d1d4b9285f60b1e1bcbf687a6cc6b0287105e833d31bffec72159029cf978bb067cf14dcbb82e53027f2a471aa828fec3bd87e0f2310cd8ae88" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xac0e829061f92a39670452b18a921866723c50358a8d5c76f00ed0a3c811fdd2"] proof_blobs=[] +2026-04-20T15:28:56.882452Z DEBUG StfBlueprint::apply_slot{context=Node da_height=15}: sov_chain_state: Setting next visible slot number next_visible_slot_number=11 +2026-04-20T15:28:56.888529Z DEBUG StfBlueprint::apply_slot{context=Node da_height=15}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xac0e829061f92a39670452b18a921866723c50358a8d5c76f00ed0a3c811fdd2}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:28:56.890805Z DEBUG StfBlueprint::apply_slot{context=Node da_height=15}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=47b940c0b06b2d1d4b9285f60b1e1bcbf687a6cc6b0287105e833d31bffec72159029cf978bb067cf14dcbb82e53027f2a471aa828fec3bd87e0f2310cd8ae88 next_version=15 sesssion_starting_time=298.608µs +2026-04-20T15:28:56.898139Z DEBUG StfBlueprint::apply_slot{context=Node da_height=15}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=27c325b2471c6282660d570e05679c54796e8c660bb22a809bd35114eeed66a61765c83670a0a2714d21639d2effc6cb43681e7a8f9e20c41160c87a6b53703e next_version=15 time=8.431605ms accesses_build_time=787.265µs finishing_session_time=7.203643ms +2026-04-20T15:28:56.899198Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="47b940c0b06b2d1d4b9285f60b1e1bcbf687a6cc6b0287105e833d31bffec72159029cf978bb067cf14dcbb82e53027f2a471aa828fec3bd87e0f2310cd8ae88" next_state_root="27c325b2471c6282660d570e05679c54796e8c660bb22a809bd35114eeed66a61765c83670a0a2714d21639d2effc6cb43681e7a8f9e20c41160c87a6b53703e" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:28:56.903416Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 15, latest_finalized_slot_number: 15, sync_status: Syncing { synced_da_height: 14, target_da_height: 15 }, .. } +2026-04-20T15:28:56.904829Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=11 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 15, latest_finalized_slot_number: 15, sync_status: Syncing { synced_da_height: 14, target_da_height: 15 }, .. } +2026-04-20T15:28:56.905770Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=11 +2026-04-20T15:28:56.908368Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:28:56.909358Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=7 +2026-04-20T15:28:56.911244Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=12 +2026-04-20T15:28:56.912284Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:28:56.913873Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=12 sequence_number=11 +2026-04-20T15:28:56.914142Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:28:56.914249Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=11 blob_id=2147897218516563280971852126988433894 visible_slot_number_after_increase=12 visible_slots_to_advance=1 +2026-04-20T15:28:56.915946Z DEBUG sov_stf_runner::runner: Block execution complete time=2.985004698s +2026-04-20T15:28:56.916024Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:28:56.918046Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:28:56.918376Z DEBUG compute_state_update{scope="sequencer" rollup_height=12 slot_number=12}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:28:56.918562Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:28:56.918740Z DEBUG compute_state_update{scope="sequencer" rollup_height=12 slot_number=12}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=27c325b2471c6282660d570e05679c54796e8c660bb22a809bd35114eeed66a61765c83670a0a2714d21639d2effc6cb43681e7a8f9e20c41160c87a6b53703e next_version=16 sesssion_starting_time=369.907µs +2026-04-20T15:28:56.921465Z DEBUG manage_blob_submission_inside_task{blob_id=2147897218516563280971852126988433894 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x737d34b3f224a2d3c94ffc50ad27cbc8b8a26ec05226447f615f4ef43a4bd954 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=16 include_at=16 bytes=13 time=1.726419ms +2026-04-20T15:28:56.923929Z DEBUG compute_state_update{scope="sequencer" rollup_height=12 slot_number=12}: sov_state::nomt::prover_storage: computed next state root state_root=6d1d6cf324f96ca5ec2ed1805cf54c4536138b94dcce51a828a267224be81acc63a95664cccd5c18c0cb0ad2641021c52630e4a3815b1d9ef80b41d80c5e5435 next_version=16 time=5.961772ms accesses_build_time=395.668µs finishing_session_time=5.081437ms +2026-04-20T15:28:57.410202Z DEBUG sp1_core_executor_runner::native: CHILD sp1_aAGS6wJIT5KMUdaX6HSUQQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:28:57.441662Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:28:57.453607Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1554115 cycles +2026-04-20T15:28:57.456365Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 217, 161, 149, 228, 152, 191, 223, 240, 26, 66, 54, 154, 79, 173, 67, 8, 50, 157, 31, 31, 164, 42, 128, 115, 162, 79, 234, 223, 119, 44, 238, 109, 14, 231, 172, 241, 194, 90, 171, 88, 236, 253, 83, 166, 1, 128, 62, 204, 125, 93, 104, 36, 245, 229, 164, 162, 161, 137, 95, 87, 240, 130, 184, 109, 55, 64, 1, 189, 112, 221, 184, 220, 247, 125, 181, 160, 227, 245, 59, 32, 97, 91, 149, 117, 12, 199, 59, 216, 134, 249, 193, 12, 161, 79, 109, 86, 248, 74, 197, 184, 135, 248, 156, 223, 210, 214, 189, 145, 10, 194, 46, 54, 56, 82, 172, 245, 189, 172, 70, 7, 145, 158, 22, 205, 196, 214, 150, 127, 146, 142, 167, 53, 19, 215, 47, 5, 140, 19, 242, 2, 167, 14, 51, 238, 7, 4, 187, 252, 73, 78, 151, 84, 51, 1, 20, 128, 22, 87, 41, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:28:58.003146Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:28:58.003225Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:28:59.869230Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=16 prev_hash=0x5b4feeec188c5a79ce2d1bb277c9a5be63a7a3fa672d437bd7a7fada804aff18 hash=0x237ca3082d02491739f26a03d131a839e775789ce3c1325c29004cbfd5e15298 producing_time=3.006381ms +2026-04-20T15:28:59.878347Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=16 current_state_root="27c325b2471c6282660d570e05679c54796e8c660bb22a809bd35114eeed66a61765c83670a0a2714d21639d2effc6cb43681e7a8f9e20c41160c87a6b53703e" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x737d34b3f224a2d3c94ffc50ad27cbc8b8a26ec05226447f615f4ef43a4bd954"] proof_blobs=[] +2026-04-20T15:28:59.886207Z DEBUG StfBlueprint::apply_slot{context=Node da_height=16}: sov_chain_state: Setting next visible slot number next_visible_slot_number=12 +2026-04-20T15:28:59.891836Z DEBUG StfBlueprint::apply_slot{context=Node da_height=16}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x737d34b3f224a2d3c94ffc50ad27cbc8b8a26ec05226447f615f4ef43a4bd954}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:28:59.893986Z DEBUG StfBlueprint::apply_slot{context=Node da_height=16}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=27c325b2471c6282660d570e05679c54796e8c660bb22a809bd35114eeed66a61765c83670a0a2714d21639d2effc6cb43681e7a8f9e20c41160c87a6b53703e next_version=16 sesssion_starting_time=289.988µs +2026-04-20T15:28:59.901430Z DEBUG StfBlueprint::apply_slot{context=Node da_height=16}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6d1d6cf324f96ca5ec2ed1805cf54c4536138b94dcce51a828a267224be81acc7f950cef167c91331655877ce9e951bd5c20ef801f0ce3aeab1398c2ba15aade next_version=16 time=8.507535ms accesses_build_time=762.555µs finishing_session_time=7.324722ms +2026-04-20T15:28:59.902413Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="27c325b2471c6282660d570e05679c54796e8c660bb22a809bd35114eeed66a61765c83670a0a2714d21639d2effc6cb43681e7a8f9e20c41160c87a6b53703e" next_state_root="6d1d6cf324f96ca5ec2ed1805cf54c4536138b94dcce51a828a267224be81acc7f950cef167c91331655877ce9e951bd5c20ef801f0ce3aeab1398c2ba15aade" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:28:59.906371Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 16, latest_finalized_slot_number: 16, sync_status: Syncing { synced_da_height: 15, target_da_height: 16 }, .. } +2026-04-20T15:28:59.907729Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=12 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 16, latest_finalized_slot_number: 16, sync_status: Syncing { synced_da_height: 15, target_da_height: 16 }, .. } +2026-04-20T15:28:59.908641Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=12 +2026-04-20T15:28:59.911026Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:28:59.911990Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=8 +2026-04-20T15:28:59.913751Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=13 +2026-04-20T15:28:59.914638Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:28:59.916138Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=13 sequence_number=12 +2026-04-20T15:28:59.916432Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=12 blob_id=2147897222146942119152169967670599071 visible_slot_number_after_increase=13 visible_slots_to_advance=1 +2026-04-20T15:28:59.916416Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:28:59.921210Z DEBUG compute_state_update{scope="sequencer" rollup_height=13 slot_number=13}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:28:59.921586Z DEBUG compute_state_update{scope="sequencer" rollup_height=13 slot_number=13}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6d1d6cf324f96ca5ec2ed1805cf54c4536138b94dcce51a828a267224be81acc7f950cef167c91331655877ce9e951bd5c20ef801f0ce3aeab1398c2ba15aade next_version=17 sesssion_starting_time=1.043383ms +2026-04-20T15:28:59.921852Z DEBUG sov_stf_runner::runner: Block execution complete time=3.005842093s +2026-04-20T15:28:59.921923Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:28:59.922913Z DEBUG manage_blob_submission_inside_task{blob_id=2147897222146942119152169967670599071 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xb2870581c764004063d21ff8142d3254f247cb830035d9866f5bd4b7d24f1b26 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=17 include_at=17 bytes=13 time=1.45389ms +2026-04-20T15:28:59.927035Z DEBUG compute_state_update{scope="sequencer" rollup_height=13 slot_number=13}: sov_state::nomt::prover_storage: computed next state root state_root=0aebf81e2c9b0ac218926cb34373f00ca05e50ab1395db3dae6bbb19ff7a0e8471acb690e5340cab85e345636bd5891b7a6f131347359bba73fcbab08dfe555a next_version=17 time=6.910685ms accesses_build_time=406.617µs finishing_session_time=5.340335ms +2026-04-20T15:29:00.391754Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0MvjXA2QQV2qMxJow1kO6g==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:29:00.425258Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:29:00.437738Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1627907 cycles +2026-04-20T15:29:00.440433Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [61, 243, 22, 98, 250, 42, 203, 91, 175, 10, 194, 195, 167, 33, 14, 232, 209, 111, 167, 228, 85, 9, 57, 203, 23, 240, 76, 234, 34, 122, 22, 179, 78, 67, 18, 26, 56, 236, 119, 167, 250, 56, 209, 20, 165, 171, 199, 1, 44, 211, 148, 124, 117, 202, 134, 128, 75, 109, 202, 214, 102, 207, 238, 166, 87, 76, 5, 138, 33, 217, 33, 41, 243, 186, 38, 142, 209, 14, 219, 158, 160, 205, 173, 158, 151, 168, 51, 145, 185, 200, 182, 51, 204, 73, 93, 80, 50, 224, 48, 108, 86, 45, 13, 77, 79, 215, 87, 93, 113, 242, 70, 206, 241, 177, 218, 207, 81, 130, 118, 88, 98, 24, 152, 49, 216, 12, 107, 183, 222, 143, 52, 190, 240, 16, 245, 90, 178, 126, 195, 71, 182, 204, 46, 183, 117, 88, 63, 19, 1, 90, 248, 186, 113, 138, 195, 49, 249, 69, 95, 18, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:29:01.008696Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:29:01.008773Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:29:01.066236Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:29:01.307808Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:29:01.309802Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2428180 cycles +2026-04-20T15:29:01.310182Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [1, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 87, 76, 5, 138, 33, 217, 33, 41, 243, 186, 38, 142, 209, 14, 219, 158, 160, 205, 173, 158, 151, 168, 51, 145, 185, 200, 182, 51, 204, 73, 93, 80, 50, 224, 48, 108, 86, 45, 13, 77, 79, 215, 87, 93, 113, 242, 70, 206, 241, 177, 218, 207, 81, 130, 118, 88, 98, 24, 152, 49, 216, 12, 107, 183, 247, 20, 131, 135, 222, 212, 253, 193, 134, 55, 125, 48, 249, 141, 165, 51, 60, 130, 20, 67, 156, 77, 118, 133, 142, 202, 182, 7, 136, 22, 105, 201, 222, 143, 52, 190, 240, 16, 245, 90, 178, 126, 195, 71, 182, 204, 46, 183, 117, 88, 63, 19, 1, 90, 248, 186, 113, 138, 195, 49, 249, 69, 95, 18, 32, 0, 0, 0, 0, 0, 0, 0, 33, 87, 226, 242, 39, 49, 250, 210, 41, 143, 26, 188, 101, 19, 12, 136, 43, 105, 121, 236, 80, 118, 108, 155, 63, 154, 215, 73, 15, 107, 27, 67, 32, 0, 0, 0, 0, 0, 0, 0, 54, 246, 123, 188, 67, 61, 237, 103, 16, 229, 5, 146, 113, 8, 178, 215, 95, 95, 151, 239, 106, 28, 10, 135, 55, 55, 208, 95, 86, 190, 27, 9, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:29:02.160582Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:29:02.160655Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:29:02.161518Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=1951 +2026-04-20T15:29:02.163718Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:29:02.164170Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:29:02.164759Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=13 blob_id=2147897224861017144262024940783525947 +2026-04-20T15:29:02.873043Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=17 prev_hash=0x237ca3082d02491739f26a03d131a839e775789ce3c1325c29004cbfd5e15298 hash=0xc0f000bb600b2219b6ccb747b48e369f7a3d857503b7b98637afbc73ba510b26 producing_time=3.02534ms +2026-04-20T15:29:02.875086Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=17 current_state_root="6d1d6cf324f96ca5ec2ed1805cf54c4536138b94dcce51a828a267224be81acc7f950cef167c91331655877ce9e951bd5c20ef801f0ce3aeab1398c2ba15aade" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xb2870581c764004063d21ff8142d3254f247cb830035d9866f5bd4b7d24f1b26"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x982ef6b80850ddf933b6bc28c54fc57bd41f7036221afd1efe9d361f895c973e, len=2001"] +2026-04-20T15:29:02.884452Z DEBUG StfBlueprint::apply_slot{context=Node da_height=17}: sov_chain_state: Setting next visible slot number next_visible_slot_number=13 +2026-04-20T15:29:02.891144Z DEBUG StfBlueprint::apply_slot{context=Node da_height=17}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xb2870581c764004063d21ff8142d3254f247cb830035d9866f5bd4b7d24f1b26}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:02.893871Z DEBUG StfBlueprint::apply_slot{context=Node da_height=17}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6d1d6cf324f96ca5ec2ed1805cf54c4536138b94dcce51a828a267224be81acc7f950cef167c91331655877ce9e951bd5c20ef801f0ce3aeab1398c2ba15aade next_version=17 sesssion_starting_time=312.768µs +2026-04-20T15:29:02.901653Z DEBUG StfBlueprint::apply_slot{context=Node da_height=17}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=0aebf81e2c9b0ac218926cb34373f00ca05e50ab1395db3dae6bbb19ff7a0e8442ab6c977d72583b4411caf689b653f3d654f36d047bf96c8b4096144669389b next_version=17 time=9.16056ms accesses_build_time=1.033113ms finishing_session_time=7.618011ms +2026-04-20T15:29:02.902732Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6d1d6cf324f96ca5ec2ed1805cf54c4536138b94dcce51a828a267224be81acc7f950cef167c91331655877ce9e951bd5c20ef801f0ce3aeab1398c2ba15aade" next_state_root="0aebf81e2c9b0ac218926cb34373f00ca05e50ab1395db3dae6bbb19ff7a0e8442ab6c977d72583b4411caf689b653f3d654f36d047bf96c8b4096144669389b" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:29:02.907162Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 17, latest_finalized_slot_number: 17, sync_status: Syncing { synced_da_height: 16, target_da_height: 17 }, .. } +2026-04-20T15:29:02.908630Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=13 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 17, latest_finalized_slot_number: 17, sync_status: Syncing { synced_da_height: 16, target_da_height: 17 }, .. } +2026-04-20T15:29:02.909574Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=13 +2026-04-20T15:29:02.912094Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:29:02.913073Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=9 +2026-04-20T15:29:02.914886Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=14 +2026-04-20T15:29:02.915811Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:29:02.920359Z DEBUG sov_stf_runner::runner: Block execution complete time=2.998450261s +2026-04-20T15:29:02.920410Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:29:02.920650Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 1. Final slot number 10 +2026-04-20T15:29:02.921718Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=14 sequence_number=14 +2026-04-20T15:29:02.921833Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=14 blob_id=2147897225779755018027209002498227197 visible_slot_number_after_increase=14 visible_slots_to_advance=1 +2026-04-20T15:29:02.921993Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:02.922934Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:29:02.923500Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:29:02.926025Z DEBUG compute_state_update{scope="sequencer" rollup_height=14 slot_number=14}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:29:02.926336Z DEBUG compute_state_update{scope="sequencer" rollup_height=14 slot_number=14}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0aebf81e2c9b0ac218926cb34373f00ca05e50ab1395db3dae6bbb19ff7a0e8442ab6c977d72583b4411caf689b653f3d654f36d047bf96c8b4096144669389b next_version=18 sesssion_starting_time=301.388µs +2026-04-20T15:29:02.928959Z DEBUG manage_blob_submission_inside_task{blob_id=2147897225779755018027209002498227197 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x95656b58edf1085b635f1f7ef742b49b06fe22f0ec9b25edf08340ecc3f0afa6 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=18 include_at=18 bytes=13 time=1.695038ms +2026-04-20T15:29:02.932178Z DEBUG compute_state_update{scope="sequencer" rollup_height=14 slot_number=14}: sov_state::nomt::prover_storage: computed next state root state_root=572f6a8455fee6056508c23937924984873ff585a8f637f0ab4ec8aa3f0fe45c257985c92bcf0688b1efad6acd96ca8d129a7420241b08531897e9b20a154a79 next_version=18 time=6.609026ms accesses_build_time=446.237µs finishing_session_time=5.736253ms +2026-04-20T15:29:05.656202Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2mx4_0LLSLKhCXhfe3Nbzw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:29:05.687856Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:29:05.698999Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1567677 cycles +2026-04-20T15:29:05.701699Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [122, 196, 29, 150, 177, 138, 254, 62, 208, 105, 239, 235, 175, 165, 134, 81, 3, 250, 104, 35, 51, 56, 104, 232, 248, 231, 69, 21, 32, 223, 101, 192, 16, 92, 150, 218, 56, 19, 132, 194, 133, 90, 190, 6, 88, 73, 50, 49, 215, 94, 72, 118, 76, 82, 14, 137, 189, 132, 138, 207, 145, 65, 18, 28, 1, 33, 67, 249, 188, 127, 150, 30, 7, 153, 28, 214, 101, 164, 152, 135, 164, 93, 142, 239, 131, 235, 144, 61, 59, 152, 16, 59, 80, 51, 38, 99, 82, 35, 166, 148, 43, 225, 40, 135, 11, 2, 107, 213, 14, 18, 177, 172, 248, 14, 73, 173, 119, 220, 114, 177, 147, 11, 215, 65, 24, 84, 242, 67, 83, 110, 65, 99, 29, 3, 73, 183, 202, 146, 90, 7, 215, 153, 48, 216, 67, 157, 78, 7, 145, 182, 34, 251, 2, 113, 109, 26, 191, 197, 220, 44, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:29:05.877479Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=18 prev_hash=0xc0f000bb600b2219b6ccb747b48e369f7a3d857503b7b98637afbc73ba510b26 hash=0xa227702fc86f41a8b48e679a38e4456b3ec32ddbec54516160841b27679884db producing_time=3.712136ms +2026-04-20T15:29:05.882401Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=18 current_state_root="0aebf81e2c9b0ac218926cb34373f00ca05e50ab1395db3dae6bbb19ff7a0e8442ab6c977d72583b4411caf689b653f3d654f36d047bf96c8b4096144669389b" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x95656b58edf1085b635f1f7ef742b49b06fe22f0ec9b25edf08340ecc3f0afa6"] proof_blobs=[] +2026-04-20T15:29:05.891653Z DEBUG StfBlueprint::apply_slot{context=Node da_height=18}: sov_chain_state: Setting next visible slot number next_visible_slot_number=14 +2026-04-20T15:29:05.908240Z DEBUG StfBlueprint::apply_slot{context=Node da_height=18}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 1. Final slot number 10 +2026-04-20T15:29:05.909415Z DEBUG StfBlueprint::apply_slot{context=Node da_height=18}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x95656b58edf1085b635f1f7ef742b49b06fe22f0ec9b25edf08340ecc3f0afa6}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:05.911953Z DEBUG StfBlueprint::apply_slot{context=Node da_height=18}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0aebf81e2c9b0ac218926cb34373f00ca05e50ab1395db3dae6bbb19ff7a0e8442ab6c977d72583b4411caf689b653f3d654f36d047bf96c8b4096144669389b next_version=18 sesssion_starting_time=308.268µs +2026-04-20T15:29:05.920793Z DEBUG StfBlueprint::apply_slot{context=Node da_height=18}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=572f6a8455fee6056508c23937924984873ff585a8f637f0ab4ec8aa3f0fe45c4b945c1445ba1ce6c92e3e0f2227bc886a0a472a6f112f7b60b3fe30727562bb next_version=18 time=10.230684ms accesses_build_time=1.070023ms finishing_session_time=8.709434ms +2026-04-20T15:29:05.921908Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="0aebf81e2c9b0ac218926cb34373f00ca05e50ab1395db3dae6bbb19ff7a0e8442ab6c977d72583b4411caf689b653f3d654f36d047bf96c8b4096144669389b" next_state_root="572f6a8455fee6056508c23937924984873ff585a8f637f0ab4ec8aa3f0fe45c4b945c1445ba1ce6c92e3e0f2227bc886a0a472a6f112f7b60b3fe30727562bb" aggregated_proofs=1 proof_receipts=1 +2026-04-20T15:29:05.927142Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 18, latest_finalized_slot_number: 18, sync_status: Syncing { synced_da_height: 17, target_da_height: 18 }, .. } +2026-04-20T15:29:05.928721Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=14 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 18, latest_finalized_slot_number: 18, sync_status: Syncing { synced_da_height: 17, target_da_height: 18 }, .. } +2026-04-20T15:29:05.929797Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=14 +2026-04-20T15:29:05.932612Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:29:05.933645Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=10 +2026-04-20T15:29:05.935653Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=15 +2026-04-20T15:29:05.936600Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:29:05.938166Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=15 sequence_number=15 +2026-04-20T15:29:05.938443Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=15 blob_id=2147897229427122310454374145478099509 visible_slot_number_after_increase=15 visible_slots_to_advance=1 +2026-04-20T15:29:05.938454Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:05.943037Z DEBUG compute_state_update{scope="sequencer" rollup_height=15 slot_number=15}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:29:05.943420Z DEBUG compute_state_update{scope="sequencer" rollup_height=15 slot_number=15}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=572f6a8455fee6056508c23937924984873ff585a8f637f0ab4ec8aa3f0fe45c4b945c1445ba1ce6c92e3e0f2227bc886a0a472a6f112f7b60b3fe30727562bb next_version=19 sesssion_starting_time=736.695µs +2026-04-20T15:29:05.943879Z DEBUG sov_stf_runner::runner: Block execution complete time=3.023474089s +2026-04-20T15:29:05.944010Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:29:05.945591Z DEBUG manage_blob_submission_inside_task{blob_id=2147897229427122310454374145478099509 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xe85129d7e42b615c187bf3772f551a92914b9277fdc16698d75752f1b76aecd6 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=19 include_at=19 bytes=13 time=1.59349ms +2026-04-20T15:29:05.946213Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:29:05.946900Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:29:05.949042Z DEBUG compute_state_update{scope="sequencer" rollup_height=15 slot_number=15}: sov_state::nomt::prover_storage: computed next state root state_root=36f13504d86ed416afc00f58bc4f0c7f681811d52b1a6026a8730127aac9c18d58716ff3ca95c23c87f6c5f0c8e47fc42866695d408dc82e45b789f74bd50137 next_version=19 time=6.893165ms accesses_build_time=496.757µs finishing_session_time=5.481555ms +2026-04-20T15:29:06.283754Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:29:06.283834Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:29:06.383772Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pom2lnq0Qn-Ds4kcJJSvrw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:29:06.414878Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:29:06.426258Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1560082 cycles +2026-04-20T15:29:06.428892Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 177, 154, 62, 165, 18, 148, 254, 108, 48, 16, 65, 171, 177, 203, 248, 14, 97, 5, 105, 154, 161, 203, 174, 118, 130, 53, 108, 30, 9, 130, 30, 38, 33, 143, 137, 117, 1, 1, 67, 215, 63, 50, 241, 28, 205, 113, 235, 223, 72, 153, 218, 186, 233, 120, 89, 101, 214, 89, 142, 37, 91, 99, 120, 87, 13, 95, 136, 181, 224, 67, 15, 163, 250, 221, 60, 71, 133, 78, 144, 126, 211, 45, 109, 68, 51, 154, 82, 242, 5, 61, 136, 196, 131, 86, 251, 67, 209, 165, 232, 7, 96, 110, 194, 184, 46, 255, 90, 246, 65, 98, 249, 196, 233, 163, 201, 168, 18, 131, 57, 88, 221, 225, 46, 241, 32, 2, 118, 142, 253, 167, 219, 112, 198, 220, 39, 240, 151, 95, 29, 63, 249, 13, 88, 49, 67, 156, 225, 167, 134, 237, 243, 194, 230, 83, 6, 46, 166, 129, 191, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:29:06.975441Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:29:06.975521Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:29:08.882769Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=19 prev_hash=0xa227702fc86f41a8b48e679a38e4456b3ec32ddbec54516160841b27679884db hash=0xb65e235bf9d70d4a866053f291628575bfe2da5b3299dad2073a23fbe1b232d9 producing_time=3.1612ms +2026-04-20T15:29:08.886699Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=19 current_state_root="572f6a8455fee6056508c23937924984873ff585a8f637f0ab4ec8aa3f0fe45c4b945c1445ba1ce6c92e3e0f2227bc886a0a472a6f112f7b60b3fe30727562bb" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe85129d7e42b615c187bf3772f551a92914b9277fdc16698d75752f1b76aecd6"] proof_blobs=[] +2026-04-20T15:29:08.895421Z DEBUG StfBlueprint::apply_slot{context=Node da_height=19}: sov_chain_state: Setting next visible slot number next_visible_slot_number=15 +2026-04-20T15:29:08.902126Z DEBUG StfBlueprint::apply_slot{context=Node da_height=19}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xe85129d7e42b615c187bf3772f551a92914b9277fdc16698d75752f1b76aecd6}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:08.904494Z DEBUG StfBlueprint::apply_slot{context=Node da_height=19}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=572f6a8455fee6056508c23937924984873ff585a8f637f0ab4ec8aa3f0fe45c4b945c1445ba1ce6c92e3e0f2227bc886a0a472a6f112f7b60b3fe30727562bb next_version=19 sesssion_starting_time=333.698µs +2026-04-20T15:29:08.911857Z DEBUG StfBlueprint::apply_slot{context=Node da_height=19}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=36f13504d86ed416afc00f58bc4f0c7f681811d52b1a6026a8730127aac9c18d55bc4a345d72dd7a1d7b6c7d1cec0b2585354f288cca9c8c38a842699745fad6 next_version=19 time=8.494245ms accesses_build_time=781.645µs finishing_session_time=7.231833ms +2026-04-20T15:29:08.912970Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="572f6a8455fee6056508c23937924984873ff585a8f637f0ab4ec8aa3f0fe45c4b945c1445ba1ce6c92e3e0f2227bc886a0a472a6f112f7b60b3fe30727562bb" next_state_root="36f13504d86ed416afc00f58bc4f0c7f681811d52b1a6026a8730127aac9c18d55bc4a345d72dd7a1d7b6c7d1cec0b2585354f288cca9c8c38a842699745fad6" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:29:08.917231Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 19, latest_finalized_slot_number: 19, sync_status: Synced { synced_da_height: 18 }, .. } +2026-04-20T15:29:08.918689Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=15 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 19, latest_finalized_slot_number: 19, sync_status: Synced { synced_da_height: 18 }, .. } +2026-04-20T15:29:08.919635Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=15 +2026-04-20T15:29:08.922216Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:29:08.923190Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=11 +2026-04-20T15:29:08.925145Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=16 +2026-04-20T15:29:08.926080Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:29:08.927642Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=16 sequence_number=16 +2026-04-20T15:29:08.927934Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:08.928019Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=16 blob_id=2147897233040596882308992770945903124 visible_slot_number_after_increase=16 visible_slots_to_advance=1 +2026-04-20T15:29:08.932495Z DEBUG compute_state_update{scope="sequencer" rollup_height=16 slot_number=16}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:29:08.932856Z DEBUG compute_state_update{scope="sequencer" rollup_height=16 slot_number=16}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=36f13504d86ed416afc00f58bc4f0c7f681811d52b1a6026a8730127aac9c18d55bc4a345d72dd7a1d7b6c7d1cec0b2585354f288cca9c8c38a842699745fad6 next_version=20 sesssion_starting_time=944.994µs +2026-04-20T15:29:08.933022Z DEBUG sov_stf_runner::runner: Block execution complete time=2.989040633s +2026-04-20T15:29:08.933091Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:29:08.934891Z DEBUG manage_blob_submission_inside_task{blob_id=2147897233040596882308992770945903124 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x636badce42bea187f3bc6409c3866b5e0ed5b5979190b879e1d7b93d8c59e4df sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=20 include_at=20 bytes=13 time=1.377651ms +2026-04-20T15:29:08.935183Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:29:08.935840Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:29:08.938512Z DEBUG compute_state_update{scope="sequencer" rollup_height=16 slot_number=16}: sov_state::nomt::prover_storage: computed next state root state_root=5e33ed2bae0efe61beb72e56c42d165c4451b58185fd8614fc239b71cc3109714ec0f1b0b2218479600c27fd7e7d0d039d3bb53487ec5869b43615bb04b3c419 next_version=20 time=7.013094ms accesses_build_time=396.057µs finishing_session_time=5.549674ms +2026-04-20T15:29:09.485011Z DEBUG sp1_core_executor_runner::native: CHILD sp1_p8ivDlTCR0e8SD25W8LVSQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:29:09.517892Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:29:09.528984Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1588087 cycles +2026-04-20T15:29:09.531730Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [64, 164, 151, 97, 235, 92, 243, 112, 132, 215, 72, 29, 65, 132, 237, 42, 69, 40, 146, 76, 3, 186, 228, 84, 95, 171, 62, 163, 87, 76, 90, 220, 59, 178, 204, 216, 61, 198, 124, 11, 42, 105, 74, 173, 22, 254, 201, 13, 193, 105, 83, 101, 107, 238, 75, 162, 178, 222, 245, 179, 172, 210, 223, 36, 101, 175, 146, 78, 63, 2, 220, 163, 154, 192, 53, 117, 118, 130, 151, 89, 116, 135, 66, 133, 204, 8, 141, 248, 181, 252, 210, 185, 213, 238, 201, 85, 15, 48, 227, 188, 194, 12, 125, 179, 227, 119, 119, 152, 169, 23, 113, 100, 206, 189, 145, 6, 218, 169, 111, 185, 206, 76, 254, 252, 6, 233, 179, 191, 54, 147, 170, 220, 47, 189, 246, 31, 160, 111, 126, 229, 22, 92, 130, 69, 183, 196, 223, 71, 87, 203, 139, 245, 149, 195, 8, 203, 66, 170, 246, 117, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:29:10.086738Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:29:10.086817Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:29:11.887530Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=20 prev_hash=0xb65e235bf9d70d4a866053f291628575bfe2da5b3299dad2073a23fbe1b232d9 hash=0xe7a2e01aa59ffb31a7a94cdd7fd43d8bbf6cd8c9b1b6aae74def013fca74f0a9 producing_time=3.05198ms +2026-04-20T15:29:11.895251Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=20 current_state_root="36f13504d86ed416afc00f58bc4f0c7f681811d52b1a6026a8730127aac9c18d55bc4a345d72dd7a1d7b6c7d1cec0b2585354f288cca9c8c38a842699745fad6" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x636badce42bea187f3bc6409c3866b5e0ed5b5979190b879e1d7b93d8c59e4df"] proof_blobs=[] +2026-04-20T15:29:11.903874Z DEBUG StfBlueprint::apply_slot{context=Node da_height=20}: sov_chain_state: Setting next visible slot number next_visible_slot_number=16 +2026-04-20T15:29:11.910249Z DEBUG StfBlueprint::apply_slot{context=Node da_height=20}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x636badce42bea187f3bc6409c3866b5e0ed5b5979190b879e1d7b93d8c59e4df}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:11.912613Z DEBUG StfBlueprint::apply_slot{context=Node da_height=20}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=36f13504d86ed416afc00f58bc4f0c7f681811d52b1a6026a8730127aac9c18d55bc4a345d72dd7a1d7b6c7d1cec0b2585354f288cca9c8c38a842699745fad6 next_version=20 sesssion_starting_time=315.178µs +2026-04-20T15:29:11.919862Z DEBUG StfBlueprint::apply_slot{context=Node da_height=20}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=5e33ed2bae0efe61beb72e56c42d165c4451b58185fd8614fc239b71cc31097171bf2bcf7cd9800bc19f2013affe78e42c259de30b25f163568cf30765413cf7 next_version=20 time=8.332606ms accesses_build_time=754.155µs finishing_session_time=7.099974ms +2026-04-20T15:29:11.920963Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="36f13504d86ed416afc00f58bc4f0c7f681811d52b1a6026a8730127aac9c18d55bc4a345d72dd7a1d7b6c7d1cec0b2585354f288cca9c8c38a842699745fad6" next_state_root="5e33ed2bae0efe61beb72e56c42d165c4451b58185fd8614fc239b71cc31097171bf2bcf7cd9800bc19f2013affe78e42c259de30b25f163568cf30765413cf7" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:29:11.925103Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 20, latest_finalized_slot_number: 20, sync_status: Synced { synced_da_height: 19 }, .. } +2026-04-20T15:29:11.926463Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=16 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 20, latest_finalized_slot_number: 20, sync_status: Synced { synced_da_height: 19 }, .. } +2026-04-20T15:29:11.927419Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=16 +2026-04-20T15:29:11.929838Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:29:11.930752Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=12 +2026-04-20T15:29:11.932514Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=17 +2026-04-20T15:29:11.933368Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:29:11.934804Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=17 sequence_number=17 +2026-04-20T15:29:11.935036Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:11.935161Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=17 blob_id=2147897236675860448675937705239774137 visible_slot_number_after_increase=17 visible_slots_to_advance=1 +2026-04-20T15:29:11.942009Z DEBUG manage_blob_submission_inside_task{blob_id=2147897236675860448675937705239774137 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xf04ab8e69c6d0f6526025ac3ff038acf4397ee2af808a1038ea92c0770cce96c sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=21 include_at=21 bytes=13 time=1.5247ms +2026-04-20T15:29:11.942649Z DEBUG compute_state_update{scope="sequencer" rollup_height=17 slot_number=17}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:29:11.942963Z DEBUG sov_stf_runner::runner: Block execution complete time=3.009886568s +2026-04-20T15:29:11.943019Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:29:11.943004Z DEBUG compute_state_update{scope="sequencer" rollup_height=17 slot_number=17}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5e33ed2bae0efe61beb72e56c42d165c4451b58185fd8614fc239b71cc31097171bf2bcf7cd9800bc19f2013affe78e42c259de30b25f163568cf30765413cf7 next_version=21 sesssion_starting_time=3.944204ms +2026-04-20T15:29:11.945302Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:29:11.945893Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:29:11.949023Z DEBUG compute_state_update{scope="sequencer" rollup_height=17 slot_number=17}: sov_state::nomt::prover_storage: computed next state root state_root=417806c6a395531933974ac793e466bb5a9e426cfb066a43d87be3597ef8d0ac2b82e2f6a3177df13b1fdb539813e22795576ff20649c33276fae86a2a7a3c51 next_version=21 time=10.439762ms accesses_build_time=454.147µs finishing_session_time=5.875711ms +2026-04-20T15:29:12.423298Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PhKRxqvVR2yc2iHRm1_LFg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:29:12.458948Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:29:12.472420Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1609497 cycles +2026-04-20T15:29:12.475160Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [68, 195, 137, 221, 145, 79, 144, 26, 33, 135, 169, 83, 87, 23, 93, 55, 246, 194, 33, 123, 222, 54, 122, 78, 214, 195, 156, 198, 130, 124, 117, 11, 84, 187, 38, 128, 190, 57, 24, 27, 179, 114, 211, 29, 153, 181, 255, 239, 188, 18, 214, 56, 46, 79, 89, 109, 65, 25, 184, 8, 2, 220, 96, 234, 51, 181, 209, 58, 94, 250, 11, 93, 215, 20, 105, 166, 3, 58, 64, 226, 171, 24, 106, 3, 170, 239, 164, 136, 235, 142, 238, 3, 98, 59, 213, 78, 43, 53, 86, 198, 239, 245, 126, 157, 48, 185, 72, 135, 13, 78, 172, 71, 109, 141, 235, 16, 66, 120, 64, 185, 102, 212, 153, 243, 0, 184, 127, 111, 52, 217, 223, 223, 167, 191, 31, 209, 206, 124, 195, 142, 38, 234, 219, 75, 47, 247, 115, 106, 29, 194, 131, 56, 150, 39, 123, 237, 172, 106, 115, 147, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:29:13.036114Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:29:13.036194Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:29:14.892801Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=21 prev_hash=0xe7a2e01aa59ffb31a7a94cdd7fd43d8bbf6cd8c9b1b6aae74def013fca74f0a9 hash=0xde0fb7519b6161281696d23f00c3d8f811acb96871fb6a1fc29033faf0babfb7 producing_time=3.510647ms +2026-04-20T15:29:14.895834Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=21 current_state_root="5e33ed2bae0efe61beb72e56c42d165c4451b58185fd8614fc239b71cc31097171bf2bcf7cd9800bc19f2013affe78e42c259de30b25f163568cf30765413cf7" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf04ab8e69c6d0f6526025ac3ff038acf4397ee2af808a1038ea92c0770cce96c"] proof_blobs=[] +2026-04-20T15:29:14.905306Z DEBUG StfBlueprint::apply_slot{context=Node da_height=21}: sov_chain_state: Setting next visible slot number next_visible_slot_number=17 +2026-04-20T15:29:14.912217Z DEBUG StfBlueprint::apply_slot{context=Node da_height=21}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xf04ab8e69c6d0f6526025ac3ff038acf4397ee2af808a1038ea92c0770cce96c}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:14.914707Z DEBUG StfBlueprint::apply_slot{context=Node da_height=21}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5e33ed2bae0efe61beb72e56c42d165c4451b58185fd8614fc239b71cc31097171bf2bcf7cd9800bc19f2013affe78e42c259de30b25f163568cf30765413cf7 next_version=21 sesssion_starting_time=320.598µs +2026-04-20T15:29:14.922488Z DEBUG StfBlueprint::apply_slot{context=Node da_height=21}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=417806c6a395531933974ac793e466bb5a9e426cfb066a43d87be3597ef8d0ac44b782f1fbf201d0394770238bcdececa7c4ec85ee8d897a910d890a8d3e5908 next_version=21 time=8.898862ms accesses_build_time=782.704µs finishing_session_time=7.6171ms +2026-04-20T15:29:14.923686Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="5e33ed2bae0efe61beb72e56c42d165c4451b58185fd8614fc239b71cc31097171bf2bcf7cd9800bc19f2013affe78e42c259de30b25f163568cf30765413cf7" next_state_root="417806c6a395531933974ac793e466bb5a9e426cfb066a43d87be3597ef8d0ac44b782f1fbf201d0394770238bcdececa7c4ec85ee8d897a910d890a8d3e5908" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:29:14.928213Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 21, latest_finalized_slot_number: 21, sync_status: Syncing { synced_da_height: 20, target_da_height: 21 }, .. } +2026-04-20T15:29:14.929643Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=17 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 21, latest_finalized_slot_number: 21, sync_status: Syncing { synced_da_height: 20, target_da_height: 21 }, .. } +2026-04-20T15:29:14.930641Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=17 +2026-04-20T15:29:14.933694Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:29:14.934671Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=13 +2026-04-20T15:29:14.936502Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=18 +2026-04-20T15:29:14.937423Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:29:14.939139Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=18 sequence_number=18 +2026-04-20T15:29:14.939409Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=18 blob_id=2147897240308626146859475352514808134 visible_slot_number_after_increase=18 visible_slots_to_advance=1 +2026-04-20T15:29:14.939444Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:14.941379Z DEBUG sov_stf_runner::runner: Block execution complete time=2.998372332s +2026-04-20T15:29:14.941483Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:29:14.943592Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:29:14.943941Z DEBUG compute_state_update{scope="sequencer" rollup_height=18 slot_number=18}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:29:14.944228Z DEBUG compute_state_update{scope="sequencer" rollup_height=18 slot_number=18}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=417806c6a395531933974ac793e466bb5a9e426cfb066a43d87be3597ef8d0ac44b782f1fbf201d0394770238bcdececa7c4ec85ee8d897a910d890a8d3e5908 next_version=22 sesssion_starting_time=293.748µs +2026-04-20T15:29:14.944282Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:29:14.946707Z DEBUG manage_blob_submission_inside_task{blob_id=2147897240308626146859475352514808134 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xcd1a215d784d13398a144ebb1c0c13fa51800916aee9673c4bdcb2e76102f24b sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=22 include_at=22 bytes=13 time=1.498881ms +2026-04-20T15:29:14.949664Z DEBUG compute_state_update{scope="sequencer" rollup_height=18 slot_number=18}: sov_state::nomt::prover_storage: computed next state root state_root=4f4634f82d9f51396c993341864e1969ab1032b3f0f895561ca10e315d3c587d1841ee0f4dac4c7e93df45d076e7ab348c4b98af73620ca54526a0cb7e1639b5 next_version=22 time=6.097561ms accesses_build_time=363.578µs finishing_session_time=5.349076ms +2026-04-20T15:29:15.419558Z DEBUG sp1_core_executor_runner::native: CHILD sp1_iNUwwWqpSqqDymInSiGcPQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:29:15.452330Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:29:15.464186Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1610479 cycles +2026-04-20T15:29:15.466894Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [71, 185, 64, 192, 176, 107, 45, 29, 75, 146, 133, 246, 11, 30, 27, 203, 246, 135, 166, 204, 107, 2, 135, 16, 94, 131, 61, 49, 191, 254, 199, 33, 89, 2, 156, 249, 120, 187, 6, 124, 241, 77, 203, 184, 46, 83, 2, 127, 42, 71, 26, 168, 40, 254, 195, 189, 135, 224, 242, 49, 12, 216, 174, 136, 79, 157, 12, 123, 82, 95, 191, 35, 178, 103, 96, 107, 103, 138, 128, 33, 241, 207, 231, 110, 119, 172, 88, 230, 173, 125, 150, 182, 203, 79, 177, 57, 48, 244, 163, 118, 74, 59, 100, 17, 177, 206, 78, 41, 64, 235, 91, 75, 31, 25, 123, 35, 226, 36, 131, 187, 203, 105, 98, 13, 134, 216, 183, 34, 91, 79, 238, 236, 24, 140, 90, 121, 206, 45, 27, 178, 119, 201, 165, 190, 99, 167, 163, 250, 103, 45, 67, 123, 215, 167, 250, 218, 128, 74, 255, 24, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:29:16.028979Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:29:16.029058Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:29:17.897278Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=22 prev_hash=0xde0fb7519b6161281696d23f00c3d8f811acb96871fb6a1fc29033faf0babfb7 hash=0x71f18a4b274e7d9ed48e61444bcf4f5c670b4d1a334d9c2a45f59293ab72668c producing_time=2.911391ms +2026-04-20T15:29:17.905402Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=22 current_state_root="417806c6a395531933974ac793e466bb5a9e426cfb066a43d87be3597ef8d0ac44b782f1fbf201d0394770238bcdececa7c4ec85ee8d897a910d890a8d3e5908" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xcd1a215d784d13398a144ebb1c0c13fa51800916aee9673c4bdcb2e76102f24b"] proof_blobs=[] +2026-04-20T15:29:17.914773Z DEBUG StfBlueprint::apply_slot{context=Node da_height=22}: sov_chain_state: Setting next visible slot number next_visible_slot_number=18 +2026-04-20T15:29:17.921646Z DEBUG StfBlueprint::apply_slot{context=Node da_height=22}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xcd1a215d784d13398a144ebb1c0c13fa51800916aee9673c4bdcb2e76102f24b}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:17.924122Z DEBUG StfBlueprint::apply_slot{context=Node da_height=22}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=417806c6a395531933974ac793e466bb5a9e426cfb066a43d87be3597ef8d0ac44b782f1fbf201d0394770238bcdececa7c4ec85ee8d897a910d890a8d3e5908 next_version=22 sesssion_starting_time=326.988µs +2026-04-20T15:29:17.931658Z DEBUG StfBlueprint::apply_slot{context=Node da_height=22}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4f4634f82d9f51396c993341864e1969ab1032b3f0f895561ca10e315d3c587d709f5b8a719f45802287355b2127d674e5e1123f72b77da9724c936b581e6966 next_version=22 time=8.666644ms accesses_build_time=787.785µs finishing_session_time=7.374362ms +2026-04-20T15:29:17.932840Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="417806c6a395531933974ac793e466bb5a9e426cfb066a43d87be3597ef8d0ac44b782f1fbf201d0394770238bcdececa7c4ec85ee8d897a910d890a8d3e5908" next_state_root="4f4634f82d9f51396c993341864e1969ab1032b3f0f895561ca10e315d3c587d709f5b8a719f45802287355b2127d674e5e1123f72b77da9724c936b581e6966" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:29:17.936586Z DEBUG sov_stf_runner::runner: Block execution complete time=2.995129113s +2026-04-20T15:29:17.936685Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:29:17.937244Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 22, latest_finalized_slot_number: 21, sync_status: Syncing { synced_da_height: 21, target_da_height: 22 }, .. } +2026-04-20T15:29:17.938644Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=18 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 22, latest_finalized_slot_number: 21, sync_status: Syncing { synced_da_height: 21, target_da_height: 22 }, .. } +2026-04-20T15:29:17.939033Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:29:17.939609Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=18 +2026-04-20T15:29:17.939641Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:29:17.942334Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:29:17.943346Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=14 +2026-04-20T15:29:17.945289Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=19 +2026-04-20T15:29:17.946251Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:29:17.947813Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=19 sequence_number=19 +2026-04-20T15:29:17.948077Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:17.948196Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=19 blob_id=2147897243945119597715882449028604956 visible_slot_number_after_increase=19 visible_slots_to_advance=1 +2026-04-20T15:29:17.952409Z DEBUG compute_state_update{scope="sequencer" rollup_height=19 slot_number=19}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4f4634f82d9f51396c993341864e1969ab1032b3f0f895561ca10e315d3c587d709f5b8a719f45802287355b2127d674e5e1123f72b77da9724c936b581e6966 next_version=23 sesssion_starting_time=278.298µs +2026-04-20T15:29:17.955557Z DEBUG manage_blob_submission_inside_task{blob_id=2147897243945119597715882449028604956 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xdc00d216a1d0fffd0f8de2863963b52c4f35c763c244e5d5f08929fb6f8d79f7 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=23 include_at=23 bytes=13 time=1.691759ms +2026-04-20T15:29:17.957783Z DEBUG compute_state_update{scope="sequencer" rollup_height=19 slot_number=19}: sov_state::nomt::prover_storage: computed next state root state_root=2b550c51c0918c475f6267ae62408c13e098b0465d55a104544913326ac6b79b5cb69403953d6372cec36a2c42a747dcec87152269fd86194416b091a28bb0a0 next_version=23 time=6.06236ms accesses_build_time=398.817µs finishing_session_time=5.253276ms +2026-04-20T15:29:18.412058Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8fLSCjVYSHGOTKXSzVhaDA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:29:18.446217Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:29:18.457479Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1650269 cycles +2026-04-20T15:29:18.460221Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [39, 195, 37, 178, 71, 28, 98, 130, 102, 13, 87, 14, 5, 103, 156, 84, 121, 110, 140, 102, 11, 178, 42, 128, 155, 211, 81, 20, 238, 237, 102, 166, 23, 101, 200, 54, 112, 160, 162, 113, 77, 33, 99, 157, 46, 255, 198, 203, 67, 104, 30, 122, 143, 158, 32, 196, 17, 96, 200, 122, 107, 83, 112, 62, 47, 203, 154, 231, 118, 132, 102, 14, 238, 239, 77, 167, 78, 202, 148, 99, 49, 202, 254, 135, 184, 77, 53, 91, 98, 125, 83, 66, 90, 112, 18, 223, 91, 75, 59, 120, 15, 183, 4, 61, 71, 209, 130, 247, 33, 239, 151, 125, 144, 83, 1, 155, 215, 95, 120, 124, 217, 236, 150, 49, 23, 210, 143, 65, 35, 124, 163, 8, 45, 2, 73, 23, 57, 242, 106, 3, 209, 49, 168, 57, 231, 117, 120, 156, 227, 193, 50, 92, 41, 0, 76, 191, 213, 225, 82, 152, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:29:19.038601Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:29:19.038683Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:29:20.901739Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=23 prev_hash=0x71f18a4b274e7d9ed48e61444bcf4f5c670b4d1a334d9c2a45f59293ab72668c hash=0x8c107cbd9e4da3bae9d874be13653a0455b0791ca1d10a224b83499751ab67f9 producing_time=3.054651ms +2026-04-20T15:29:20.910020Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=23 current_state_root="4f4634f82d9f51396c993341864e1969ab1032b3f0f895561ca10e315d3c587d709f5b8a719f45802287355b2127d674e5e1123f72b77da9724c936b581e6966" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xdc00d216a1d0fffd0f8de2863963b52c4f35c763c244e5d5f08929fb6f8d79f7"] proof_blobs=[] +2026-04-20T15:29:20.918291Z DEBUG StfBlueprint::apply_slot{context=Node da_height=23}: sov_chain_state: Setting next visible slot number next_visible_slot_number=19 +2026-04-20T15:29:20.924557Z DEBUG StfBlueprint::apply_slot{context=Node da_height=23}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xdc00d216a1d0fffd0f8de2863963b52c4f35c763c244e5d5f08929fb6f8d79f7}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:20.926949Z DEBUG StfBlueprint::apply_slot{context=Node da_height=23}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4f4634f82d9f51396c993341864e1969ab1032b3f0f895561ca10e315d3c587d709f5b8a719f45802287355b2127d674e5e1123f72b77da9724c936b581e6966 next_version=23 sesssion_starting_time=331.538µs +2026-04-20T15:29:20.934224Z DEBUG StfBlueprint::apply_slot{context=Node da_height=23}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2b550c51c0918c475f6267ae62408c13e098b0465d55a104544913326ac6b79b482579c0cc3dd3c3809b45f091bdb454a910c210baf14aa26e3d0b0141effebe next_version=23 time=8.405286ms accesses_build_time=785.195µs finishing_session_time=7.142914ms +2026-04-20T15:29:20.935350Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="417806c6a395531933974ac793e466bb5a9e426cfb066a43d87be3597ef8d0ac44b782f1fbf201d0394770238bcdececa7c4ec85ee8d897a910d890a8d3e5908" next_state_root="2b550c51c0918c475f6267ae62408c13e098b0465d55a104544913326ac6b79b482579c0cc3dd3c3809b45f091bdb454a910c210baf14aa26e3d0b0141effebe" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:29:20.939911Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 23, latest_finalized_slot_number: 22, sync_status: Syncing { synced_da_height: 22, target_da_height: 23 }, .. } +2026-04-20T15:29:20.941279Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=19 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 23, latest_finalized_slot_number: 22, sync_status: Syncing { synced_da_height: 22, target_da_height: 23 }, .. } +2026-04-20T15:29:20.942174Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=19 +2026-04-20T15:29:20.944889Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:29:20.945875Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=15 +2026-04-20T15:29:20.947686Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=20 +2026-04-20T15:29:20.948652Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:29:20.950146Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=20 sequence_number=20 +2026-04-20T15:29:20.950440Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:20.950494Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=20 blob_id=2147897247575515237227191267989114916 visible_slot_number_after_increase=20 visible_slots_to_advance=1 +2026-04-20T15:29:20.954502Z DEBUG compute_state_update{scope="sequencer" rollup_height=20 slot_number=20}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:29:20.954794Z DEBUG sov_stf_runner::runner: Block execution complete time=3.018127674s +2026-04-20T15:29:20.954825Z DEBUG compute_state_update{scope="sequencer" rollup_height=20 slot_number=20}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2b550c51c0918c475f6267ae62408c13e098b0465d55a104544913326ac6b79b482579c0cc3dd3c3809b45f091bdb454a910c210baf14aa26e3d0b0141effebe next_version=24 sesssion_starting_time=338.088µs +2026-04-20T15:29:20.954864Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:29:20.957533Z DEBUG manage_blob_submission_inside_task{blob_id=2147897247575515237227191267989114916 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xc136d52f1e5b39ee9ce2622fd86eab81c817d33d63aeec36488f0dac4194fa09 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=24 include_at=24 bytes=13 time=1.464061ms +2026-04-20T15:29:20.958469Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:29:20.959546Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:29:20.960283Z DEBUG compute_state_update{scope="sequencer" rollup_height=20 slot_number=20}: sov_state::nomt::prover_storage: computed next state root state_root=4c5014038644c4467d3fdfb82d80442033091c4100a77414e5d9a68680ebb07064566fd9b5dd8828c6de72349139b5f487f4c7f1cbf5a20ba62fa1200a72a5f1 next_version=24 time=6.21208ms accesses_build_time=410.987µs finishing_session_time=5.362125ms +2026-04-20T15:29:21.420238Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BnpP7WEVSKCwhGjKbEo10g==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:29:21.455637Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:29:21.465769Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1719116 cycles +2026-04-20T15:29:21.468600Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [109, 29, 108, 243, 36, 249, 108, 165, 236, 46, 209, 128, 92, 245, 76, 69, 54, 19, 139, 148, 220, 206, 81, 168, 40, 162, 103, 34, 75, 232, 26, 204, 127, 149, 12, 239, 22, 124, 145, 51, 22, 85, 135, 124, 233, 233, 81, 189, 92, 32, 239, 128, 31, 12, 227, 174, 171, 19, 152, 194, 186, 21, 170, 222, 50, 72, 79, 36, 172, 202, 234, 34, 233, 96, 34, 29, 152, 219, 57, 74, 143, 252, 244, 132, 72, 209, 97, 165, 252, 161, 169, 123, 175, 105, 60, 237, 33, 175, 196, 2, 195, 26, 187, 139, 251, 242, 128, 39, 121, 246, 221, 59, 115, 33, 56, 166, 10, 104, 167, 126, 134, 182, 205, 229, 164, 205, 88, 14, 192, 240, 0, 187, 96, 11, 34, 25, 182, 204, 183, 71, 180, 142, 54, 159, 122, 61, 133, 117, 3, 183, 185, 134, 55, 175, 188, 115, 186, 81, 11, 38, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:29:22.075254Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:29:22.075344Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:29:23.905343Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=24 prev_hash=0x8c107cbd9e4da3bae9d874be13653a0455b0791ca1d10a224b83499751ab67f9 hash=0x00987f001404d484d2109671a0196780030b7597ceff91cfc0056b7e1edada04 producing_time=2.451154ms +2026-04-20T15:29:23.907097Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=24 current_state_root="2b550c51c0918c475f6267ae62408c13e098b0465d55a104544913326ac6b79b482579c0cc3dd3c3809b45f091bdb454a910c210baf14aa26e3d0b0141effebe" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc136d52f1e5b39ee9ce2622fd86eab81c817d33d63aeec36488f0dac4194fa09"] proof_blobs=[] +2026-04-20T15:29:23.914125Z DEBUG StfBlueprint::apply_slot{context=Node da_height=24}: sov_chain_state: Setting next visible slot number next_visible_slot_number=20 +2026-04-20T15:29:23.919570Z DEBUG StfBlueprint::apply_slot{context=Node da_height=24}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xc136d52f1e5b39ee9ce2622fd86eab81c817d33d63aeec36488f0dac4194fa09}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:23.921640Z DEBUG StfBlueprint::apply_slot{context=Node da_height=24}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2b550c51c0918c475f6267ae62408c13e098b0465d55a104544913326ac6b79b482579c0cc3dd3c3809b45f091bdb454a910c210baf14aa26e3d0b0141effebe next_version=24 sesssion_starting_time=290.358µs +2026-04-20T15:29:23.928024Z DEBUG StfBlueprint::apply_slot{context=Node da_height=24}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4c5014038644c4467d3fdfb82d80442033091c4100a77414e5d9a68680ebb07072c353c1771b3f887fc3a39641f9b1892650fd2102c4c59ac021045e485f0634 next_version=24 time=7.448782ms accesses_build_time=762.525µs finishing_session_time=6.26201ms +2026-04-20T15:29:23.929053Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4f4634f82d9f51396c993341864e1969ab1032b3f0f895561ca10e315d3c587d709f5b8a719f45802287355b2127d674e5e1123f72b77da9724c936b581e6966" next_state_root="4c5014038644c4467d3fdfb82d80442033091c4100a77414e5d9a68680ebb07072c353c1771b3f887fc3a39641f9b1892650fd2102c4c59ac021045e485f0634" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:29:23.932907Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 24, latest_finalized_slot_number: 23, sync_status: Syncing { synced_da_height: 23, target_da_height: 24 }, .. } +2026-04-20T15:29:23.934010Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=20 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 24, latest_finalized_slot_number: 23, sync_status: Syncing { synced_da_height: 23, target_da_height: 24 }, .. } +2026-04-20T15:29:23.934738Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=20 +2026-04-20T15:29:23.936717Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:29:23.937467Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=16 +2026-04-20T15:29:23.938448Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=21 +2026-04-20T15:29:23.938837Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:29:23.939541Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=21 sequence_number=21 +2026-04-20T15:29:23.939711Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:23.939752Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=21 blob_id=2147897251188995988195852745499812947 visible_slot_number_after_increase=21 visible_slots_to_advance=1 +2026-04-20T15:29:23.944725Z DEBUG manage_blob_submission_inside_task{blob_id=2147897251188995988195852745499812947 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xf44efe9342e8d77d1d5d0c4388a364cb709f580ebf14277365bb998162b340cf sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=25 include_at=25 bytes=13 time=1.208812ms +2026-04-20T15:29:23.950173Z DEBUG compute_state_update{scope="sequencer" rollup_height=21 slot_number=21}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:29:23.950570Z DEBUG compute_state_update{scope="sequencer" rollup_height=21 slot_number=21}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4c5014038644c4467d3fdfb82d80442033091c4100a77414e5d9a68680ebb07072c353c1771b3f887fc3a39641f9b1892650fd2102c4c59ac021045e485f0634 next_version=25 sesssion_starting_time=8.173037ms +2026-04-20T15:29:23.950625Z DEBUG sov_stf_runner::runner: Block execution complete time=2.995772779s +2026-04-20T15:29:23.950695Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:29:23.952725Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:29:23.953330Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:29:23.955383Z DEBUG compute_state_update{scope="sequencer" rollup_height=21 slot_number=21}: sov_state::nomt::prover_storage: computed next state root state_root=2a31b41739eaa68699136d968991d2b0ef832ce8cb3c5c1838661ee0639df2c12f3106dc83c4e5c1ea2c7736aa24541849cce1fb1422750d1fa68b1430fca9df next_version=25 time=13.373393ms accesses_build_time=374.957µs finishing_session_time=4.716719ms +2026-04-20T15:29:24.425998Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NwpBx1UqSS-NHSvGycDYXQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:29:24.480475Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:29:24.492601Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 3760813 cycles +2026-04-20T15:29:24.495364Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [10, 235, 248, 30, 44, 155, 10, 194, 24, 146, 108, 179, 67, 115, 240, 12, 160, 94, 80, 171, 19, 149, 219, 61, 174, 107, 187, 25, 255, 122, 14, 132, 66, 171, 108, 151, 125, 114, 88, 59, 68, 17, 202, 246, 137, 182, 83, 243, 214, 84, 243, 109, 4, 123, 249, 108, 139, 64, 150, 20, 70, 105, 56, 155, 83, 39, 174, 104, 208, 132, 244, 214, 32, 29, 205, 148, 26, 129, 221, 7, 43, 197, 103, 135, 38, 134, 133, 27, 72, 101, 20, 43, 252, 221, 17, 87, 96, 168, 174, 127, 245, 0, 223, 95, 114, 83, 18, 161, 92, 125, 163, 22, 223, 253, 139, 17, 53, 168, 19, 118, 249, 243, 69, 251, 115, 18, 237, 198, 162, 39, 112, 47, 200, 111, 65, 168, 180, 142, 103, 154, 56, 228, 69, 107, 62, 195, 45, 219, 236, 84, 81, 97, 96, 132, 27, 39, 103, 152, 132, 219, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:29:25.810959Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:29:25.811047Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:29:26.909539Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=25 prev_hash=0x00987f001404d484d2109671a0196780030b7597ceff91cfc0056b7e1edada04 hash=0x28349358970445eae651540297ce130fdd81095294228ccd58caee3530e78fc4 producing_time=3.455188ms +2026-04-20T15:29:26.913625Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=25 current_state_root="4c5014038644c4467d3fdfb82d80442033091c4100a77414e5d9a68680ebb07072c353c1771b3f887fc3a39641f9b1892650fd2102c4c59ac021045e485f0634" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf44efe9342e8d77d1d5d0c4388a364cb709f580ebf14277365bb998162b340cf"] proof_blobs=[] +2026-04-20T15:29:26.921942Z DEBUG StfBlueprint::apply_slot{context=Node da_height=25}: sov_chain_state: Setting next visible slot number next_visible_slot_number=21 +2026-04-20T15:29:26.928441Z DEBUG StfBlueprint::apply_slot{context=Node da_height=25}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xf44efe9342e8d77d1d5d0c4388a364cb709f580ebf14277365bb998162b340cf}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:26.930726Z DEBUG StfBlueprint::apply_slot{context=Node da_height=25}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4c5014038644c4467d3fdfb82d80442033091c4100a77414e5d9a68680ebb07072c353c1771b3f887fc3a39641f9b1892650fd2102c4c59ac021045e485f0634 next_version=25 sesssion_starting_time=329.788µs +2026-04-20T15:29:26.938087Z DEBUG StfBlueprint::apply_slot{context=Node da_height=25}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2a31b41739eaa68699136d968991d2b0ef832ce8cb3c5c1838661ee0639df2c140d49bbe0c27afae7e2482a5055f53bc022cc6514eff1825fcc1f2629bac2775 next_version=25 time=8.477855ms accesses_build_time=774.985µs finishing_session_time=7.230483ms +2026-04-20T15:29:26.939195Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2b550c51c0918c475f6267ae62408c13e098b0465d55a104544913326ac6b79b482579c0cc3dd3c3809b45f091bdb454a910c210baf14aa26e3d0b0141effebe" next_state_root="2a31b41739eaa68699136d968991d2b0ef832ce8cb3c5c1838661ee0639df2c140d49bbe0c27afae7e2482a5055f53bc022cc6514eff1825fcc1f2629bac2775" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:29:26.943714Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 25, latest_finalized_slot_number: 24, sync_status: Syncing { synced_da_height: 24, target_da_height: 25 }, .. } +2026-04-20T15:29:26.945115Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=21 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 25, latest_finalized_slot_number: 24, sync_status: Syncing { synced_da_height: 24, target_da_height: 25 }, .. } +2026-04-20T15:29:26.946048Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=21 +2026-04-20T15:29:26.948613Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:29:26.949553Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=17 +2026-04-20T15:29:26.951396Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=22 +2026-04-20T15:29:26.952445Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:29:26.954198Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=22 sequence_number=22 +2026-04-20T15:29:26.954334Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=22 blob_id=2147897254833931536237639856147980559 visible_slot_number_after_increase=22 visible_slots_to_advance=1 +2026-04-20T15:29:26.954501Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:26.954920Z DEBUG sov_stf_runner::runner: Block execution complete time=3.004232705s +2026-04-20T15:29:26.954991Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:29:26.956863Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:29:26.957152Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:29:26.957673Z DEBUG compute_state_update{scope="sequencer" rollup_height=22 slot_number=22}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:29:26.957814Z DEBUG compute_state_update{scope="sequencer" rollup_height=22 slot_number=22}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2a31b41739eaa68699136d968991d2b0ef832ce8cb3c5c1838661ee0639df2c140d49bbe0c27afae7e2482a5055f53bc022cc6514eff1825fcc1f2629bac2775 next_version=26 sesssion_starting_time=149.309µs +2026-04-20T15:29:26.961620Z DEBUG manage_blob_submission_inside_task{blob_id=2147897254833931536237639856147980559 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x413bd2d84f8d0c74bc9d2ffb64d4035f3cd2c7e45fd04b0a02c93a1cb5a00d49 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=26 include_at=26 bytes=13 time=1.656459ms +2026-04-20T15:29:26.962541Z DEBUG compute_state_update{scope="sequencer" rollup_height=22 slot_number=22}: sov_state::nomt::prover_storage: computed next state root state_root=6a605a69a2a9b5a38280121d6c6a40922c3a026cc499bab36d885d5005bb8ef00e098adb5f862a67b538b56d5d1708648f6a39de655e87d8653e4db81aac4581 next_version=26 time=5.039917ms accesses_build_time=160.759µs finishing_session_time=4.688689ms +2026-04-20T15:29:27.432494Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hthrvJEsROiFXDLidOwm3A==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:29:27.466712Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:29:27.478393Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1665859 cycles +2026-04-20T15:29:27.481123Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [87, 47, 106, 132, 85, 254, 230, 5, 101, 8, 194, 57, 55, 146, 73, 132, 135, 63, 245, 133, 168, 246, 55, 240, 171, 78, 200, 170, 63, 15, 228, 92, 75, 148, 92, 20, 69, 186, 28, 230, 201, 46, 62, 15, 34, 39, 188, 136, 106, 10, 71, 42, 111, 17, 47, 123, 96, 179, 254, 48, 114, 117, 98, 187, 96, 106, 233, 144, 79, 136, 212, 33, 13, 80, 54, 215, 98, 124, 186, 164, 128, 181, 23, 191, 221, 84, 31, 212, 43, 67, 171, 124, 112, 69, 243, 10, 105, 77, 196, 25, 144, 135, 172, 195, 5, 23, 251, 138, 197, 170, 236, 200, 156, 233, 229, 230, 150, 64, 210, 221, 200, 165, 190, 92, 67, 151, 250, 44, 182, 94, 35, 91, 249, 215, 13, 74, 134, 96, 83, 242, 145, 98, 133, 117, 191, 226, 218, 91, 50, 153, 218, 210, 7, 58, 35, 251, 225, 178, 50, 217, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:29:28.065783Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:29:28.065861Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:29:29.914576Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=26 prev_hash=0x28349358970445eae651540297ce130fdd81095294228ccd58caee3530e78fc4 hash=0x187afd9559e00d7f55419f92c0d937a45e947084fc1b39b758e1ec7b295a4c63 producing_time=3.138389ms +2026-04-20T15:29:29.917630Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=26 current_state_root="2a31b41739eaa68699136d968991d2b0ef832ce8cb3c5c1838661ee0639df2c140d49bbe0c27afae7e2482a5055f53bc022cc6514eff1825fcc1f2629bac2775" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x413bd2d84f8d0c74bc9d2ffb64d4035f3cd2c7e45fd04b0a02c93a1cb5a00d49"] proof_blobs=[] +2026-04-20T15:29:29.925850Z DEBUG StfBlueprint::apply_slot{context=Node da_height=26}: sov_chain_state: Setting next visible slot number next_visible_slot_number=22 +2026-04-20T15:29:29.932224Z DEBUG StfBlueprint::apply_slot{context=Node da_height=26}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x413bd2d84f8d0c74bc9d2ffb64d4035f3cd2c7e45fd04b0a02c93a1cb5a00d49}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:29.934491Z DEBUG StfBlueprint::apply_slot{context=Node da_height=26}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2a31b41739eaa68699136d968991d2b0ef832ce8cb3c5c1838661ee0639df2c140d49bbe0c27afae7e2482a5055f53bc022cc6514eff1825fcc1f2629bac2775 next_version=26 sesssion_starting_time=341.878µs +2026-04-20T15:29:29.941708Z DEBUG StfBlueprint::apply_slot{context=Node da_height=26}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6a605a69a2a9b5a38280121d6c6a40922c3a026cc499bab36d885d5005bb8ef05eae5efdc4e3cb47ac5af9488e253814744e273a8ba127c436b98f3ee53cd76d next_version=26 time=8.354386ms accesses_build_time=777.895µs finishing_session_time=7.071874ms +2026-04-20T15:29:29.942856Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4c5014038644c4467d3fdfb82d80442033091c4100a77414e5d9a68680ebb07072c353c1771b3f887fc3a39641f9b1892650fd2102c4c59ac021045e485f0634" next_state_root="6a605a69a2a9b5a38280121d6c6a40922c3a026cc499bab36d885d5005bb8ef05eae5efdc4e3cb47ac5af9488e253814744e273a8ba127c436b98f3ee53cd76d" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:29:29.947193Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 26, latest_finalized_slot_number: 26, sync_status: Syncing { synced_da_height: 25, target_da_height: 26 }, .. } +2026-04-20T15:29:29.948595Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=22 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 26, latest_finalized_slot_number: 26, sync_status: Syncing { synced_da_height: 25, target_da_height: 26 }, .. } +2026-04-20T15:29:29.949560Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=22 +2026-04-20T15:29:29.952509Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:29:29.953722Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=18 +2026-04-20T15:29:29.955177Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=23 +2026-04-20T15:29:29.955780Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:29:29.956621Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=23 sequence_number=23 +2026-04-20T15:29:29.956811Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:29.956912Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=23 blob_id=2147897258463107662545121121250118480 visible_slot_number_after_increase=23 visible_slots_to_advance=1 +2026-04-20T15:29:29.962966Z DEBUG manage_blob_submission_inside_task{blob_id=2147897258463107662545121121250118480 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xa30ab00551d32f2afe9b789104387a7eac779437d187b38f19aac1c832633ba0 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=27 include_at=27 bytes=13 time=1.613609ms +2026-04-20T15:29:29.968170Z DEBUG compute_state_update{scope="sequencer" rollup_height=23 slot_number=23}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:29:29.968246Z DEBUG compute_state_update{scope="sequencer" rollup_height=23 slot_number=23}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:29:29.968555Z DEBUG compute_state_update{scope="sequencer" rollup_height=23 slot_number=23}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6a605a69a2a9b5a38280121d6c6a40922c3a026cc499bab36d885d5005bb8ef05eae5efdc4e3cb47ac5af9488e253814744e273a8ba127c436b98f3ee53cd76d next_version=27 sesssion_starting_time=8.493345ms +2026-04-20T15:29:29.968658Z DEBUG sov_stf_runner::runner: Block execution complete time=3.013681264s +2026-04-20T15:29:29.968702Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:29:29.973883Z DEBUG compute_state_update{scope="sequencer" rollup_height=23 slot_number=23}: sov_state::nomt::prover_storage: computed next state root state_root=3b04b67944e3b4465113ba0a555be8906259c01709dd6b1694fc193ebf5b5b42573795a2878f17ec93a42ea40dde6d5c4e54282a63de67587f6b3dcc8e853c74 next_version=27 time=14.200738ms accesses_build_time=373.087µs finishing_session_time=5.227466ms +2026-04-20T15:29:30.440866Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tzpZYU9YRYq1-hcuE3_uJw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:29:30.473658Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:29:30.485290Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1603042 cycles +2026-04-20T15:29:30.488050Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [54, 241, 53, 4, 216, 110, 212, 22, 175, 192, 15, 88, 188, 79, 12, 127, 104, 24, 17, 213, 43, 26, 96, 38, 168, 115, 1, 39, 170, 201, 193, 141, 85, 188, 74, 52, 93, 114, 221, 122, 29, 123, 108, 125, 28, 236, 11, 37, 133, 53, 79, 40, 140, 202, 156, 140, 56, 168, 66, 105, 151, 69, 250, 214, 36, 220, 205, 133, 255, 233, 225, 84, 93, 164, 128, 31, 171, 150, 78, 193, 59, 40, 19, 53, 52, 140, 16, 172, 177, 132, 71, 168, 16, 78, 110, 177, 7, 56, 93, 190, 169, 101, 9, 209, 135, 131, 107, 174, 197, 106, 103, 164, 57, 66, 193, 128, 39, 241, 64, 84, 232, 16, 174, 92, 99, 53, 71, 47, 231, 162, 224, 26, 165, 159, 251, 49, 167, 169, 76, 221, 127, 212, 61, 139, 191, 108, 216, 201, 177, 182, 170, 231, 77, 239, 1, 63, 202, 116, 240, 169, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:29:31.052424Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:29:31.052505Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:29:31.109506Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:29:31.350507Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:29:31.352840Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2607482 cycles +2026-04-20T15:29:31.353212Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [11, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 122, 196, 29, 150, 177, 138, 254, 62, 208, 105, 239, 235, 175, 165, 134, 81, 3, 250, 104, 35, 51, 56, 104, 232, 248, 231, 69, 21, 32, 223, 101, 192, 16, 92, 150, 218, 56, 19, 132, 194, 133, 90, 190, 6, 88, 73, 50, 49, 215, 94, 72, 118, 76, 82, 14, 137, 189, 132, 138, 207, 145, 65, 18, 28, 36, 220, 205, 133, 255, 233, 225, 84, 93, 164, 128, 31, 171, 150, 78, 193, 59, 40, 19, 53, 52, 140, 16, 172, 177, 132, 71, 168, 16, 78, 110, 177, 7, 56, 93, 190, 169, 101, 9, 209, 135, 131, 107, 174, 197, 106, 103, 164, 57, 66, 193, 128, 39, 241, 64, 84, 232, 16, 174, 92, 99, 53, 71, 47, 83, 110, 65, 99, 29, 3, 73, 183, 202, 146, 90, 7, 215, 153, 48, 216, 67, 157, 78, 7, 145, 182, 34, 251, 2, 113, 109, 26, 191, 197, 220, 44, 231, 162, 224, 26, 165, 159, 251, 49, 167, 169, 76, 221, 127, 212, 61, 139, 191, 108, 216, 201, 177, 182, 170, 231, 77, 239, 1, 63, 202, 116, 240, 169, 32, 0, 0, 0, 0, 0, 0, 0, 33, 87, 226, 242, 39, 49, 250, 210, 41, 143, 26, 188, 101, 19, 12, 136, 43, 105, 121, 236, 80, 118, 108, 155, 63, 154, 215, 73, 15, 107, 27, 67, 32, 0, 0, 0, 0, 0, 0, 0, 54, 246, 123, 188, 67, 61, 237, 103, 16, 229, 5, 146, 113, 8, 178, 215, 95, 95, 151, 239, 106, 28, 10, 135, 55, 55, 208, 95, 86, 190, 27, 9, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:29:32.264042Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:29:32.264122Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:29:32.264956Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=1951 +2026-04-20T15:29:32.267371Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:29:32.267852Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:29:32.268395Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=24 blob_id=2147897261254498232395009991061218248 +2026-04-20T15:29:32.919502Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=27 prev_hash=0x187afd9559e00d7f55419f92c0d937a45e947084fc1b39b758e1ec7b295a4c63 hash=0xff77f955def6147cc2096c081437b28d9ab51d26b92a8374ba052db0e6149229 producing_time=3.150859ms +2026-04-20T15:29:32.923185Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=27 current_state_root="6a605a69a2a9b5a38280121d6c6a40922c3a026cc499bab36d885d5005bb8ef05eae5efdc4e3cb47ac5af9488e253814744e273a8ba127c436b98f3ee53cd76d" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa30ab00551d32f2afe9b789104387a7eac779437d187b38f19aac1c832633ba0"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1561d154f5a1709965db286e4e3b7eb2b0e976275cedc0f4774800fa5c6ab1bf, len=2001"] +2026-04-20T15:29:32.931916Z DEBUG StfBlueprint::apply_slot{context=Node da_height=27}: sov_chain_state: Setting next visible slot number next_visible_slot_number=23 +2026-04-20T15:29:32.938264Z DEBUG StfBlueprint::apply_slot{context=Node da_height=27}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xa30ab00551d32f2afe9b789104387a7eac779437d187b38f19aac1c832633ba0}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:32.940760Z DEBUG StfBlueprint::apply_slot{context=Node da_height=27}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6a605a69a2a9b5a38280121d6c6a40922c3a026cc499bab36d885d5005bb8ef05eae5efdc4e3cb47ac5af9488e253814744e273a8ba127c436b98f3ee53cd76d next_version=27 sesssion_starting_time=323.728µs +2026-04-20T15:29:32.948915Z DEBUG StfBlueprint::apply_slot{context=Node da_height=27}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3b04b67944e3b4465113ba0a555be8906259c01709dd6b1694fc193ebf5b5b4252ebb5443bfb4edb43a08f7f057a1c9e6b8f1e5601445d6cde5c19d4814f283b next_version=27 time=9.435068ms accesses_build_time=943.713µs finishing_session_time=8.025408ms +2026-04-20T15:29:32.950012Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6a605a69a2a9b5a38280121d6c6a40922c3a026cc499bab36d885d5005bb8ef05eae5efdc4e3cb47ac5af9488e253814744e273a8ba127c436b98f3ee53cd76d" next_state_root="3b04b67944e3b4465113ba0a555be8906259c01709dd6b1694fc193ebf5b5b4252ebb5443bfb4edb43a08f7f057a1c9e6b8f1e5601445d6cde5c19d4814f283b" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:29:32.954768Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 27, latest_finalized_slot_number: 27, sync_status: Syncing { synced_da_height: 26, target_da_height: 27 }, .. } +2026-04-20T15:29:32.956589Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=23 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 27, latest_finalized_slot_number: 27, sync_status: Syncing { synced_da_height: 26, target_da_height: 27 }, .. } +2026-04-20T15:29:32.957725Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=23 +2026-04-20T15:29:32.960286Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:29:32.961267Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=19 +2026-04-20T15:29:32.963346Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=24 +2026-04-20T15:29:32.964419Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:29:32.966648Z DEBUG sov_stf_runner::runner: Block execution complete time=2.997951405s +2026-04-20T15:29:32.966736Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:29:32.968664Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 11. Final slot number 20 +2026-04-20T15:29:32.968945Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:29:32.969294Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=24 sequence_number=25 +2026-04-20T15:29:32.969642Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:32.969669Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=25 blob_id=2147897262105548916031817299089162232 visible_slot_number_after_increase=24 visible_slots_to_advance=1 +2026-04-20T15:29:32.969931Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:29:32.973641Z DEBUG compute_state_update{scope="sequencer" rollup_height=24 slot_number=24}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:29:32.973981Z DEBUG compute_state_update{scope="sequencer" rollup_height=24 slot_number=24}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3b04b67944e3b4465113ba0a555be8906259c01709dd6b1694fc193ebf5b5b4252ebb5443bfb4edb43a08f7f057a1c9e6b8f1e5601445d6cde5c19d4814f283b next_version=28 sesssion_starting_time=347.348µs +2026-04-20T15:29:32.976626Z DEBUG manage_blob_submission_inside_task{blob_id=2147897262105548916031817299089162232 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x983cc216d5501ea18bfa7043668e3f96aa6d6d1329a45e9a3bcab155cebd7fc3 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=28 include_at=28 bytes=13 time=1.64662ms +2026-04-20T15:29:32.979983Z DEBUG compute_state_update{scope="sequencer" rollup_height=24 slot_number=24}: sov_state::nomt::prover_storage: computed next state root state_root=144dd48cd710ee9aaaa7a4bb4546bb2fd3ed306a531b925037996fc61e9102b715b5bfe17f71fbb0e92a43b155dd079b11c489a99ebb18d8c09baa53bf9b2f00 next_version=28 time=6.859966ms accesses_build_time=504.587µs finishing_session_time=5.906262ms +2026-04-20T15:29:35.756584Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NJvRptBOTE2u5qN0jv2U8Q==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:29:35.790486Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:29:35.802971Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1648482 cycles +2026-04-20T15:29:35.805739Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [94, 51, 237, 43, 174, 14, 254, 97, 190, 183, 46, 86, 196, 45, 22, 92, 68, 81, 181, 129, 133, 253, 134, 20, 252, 35, 155, 113, 204, 49, 9, 113, 113, 191, 43, 207, 124, 217, 128, 11, 193, 159, 32, 19, 175, 254, 120, 228, 44, 37, 157, 227, 11, 37, 241, 99, 86, 140, 243, 7, 101, 65, 60, 247, 104, 60, 217, 221, 188, 70, 195, 120, 105, 116, 67, 190, 163, 191, 193, 44, 99, 59, 14, 53, 59, 209, 7, 221, 147, 156, 133, 158, 201, 228, 162, 217, 83, 26, 130, 205, 209, 213, 67, 68, 235, 166, 159, 157, 209, 212, 51, 194, 160, 165, 118, 44, 43, 249, 52, 185, 75, 247, 172, 88, 68, 242, 0, 80, 222, 15, 183, 81, 155, 97, 97, 40, 22, 150, 210, 63, 0, 195, 216, 248, 17, 172, 185, 104, 113, 251, 106, 31, 194, 144, 51, 250, 240, 186, 191, 183, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:29:35.924763Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=28 prev_hash=0xff77f955def6147cc2096c081437b28d9ab51d26b92a8374ba052db0e6149229 hash=0xa09a5d1915891d0c9b7463045000bf6a5c117557ee77e61acc2e725ef6a30dd3 producing_time=3.307569ms +2026-04-20T15:29:35.929711Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=28 current_state_root="3b04b67944e3b4465113ba0a555be8906259c01709dd6b1694fc193ebf5b5b4252ebb5443bfb4edb43a08f7f057a1c9e6b8f1e5601445d6cde5c19d4814f283b" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x983cc216d5501ea18bfa7043668e3f96aa6d6d1329a45e9a3bcab155cebd7fc3"] proof_blobs=[] +2026-04-20T15:29:35.938622Z DEBUG StfBlueprint::apply_slot{context=Node da_height=28}: sov_chain_state: Setting next visible slot number next_visible_slot_number=24 +2026-04-20T15:29:35.956096Z DEBUG StfBlueprint::apply_slot{context=Node da_height=28}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 11. Final slot number 20 +2026-04-20T15:29:35.956589Z DEBUG StfBlueprint::apply_slot{context=Node da_height=28}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x983cc216d5501ea18bfa7043668e3f96aa6d6d1329a45e9a3bcab155cebd7fc3}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:35.959093Z DEBUG StfBlueprint::apply_slot{context=Node da_height=28}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3b04b67944e3b4465113ba0a555be8906259c01709dd6b1694fc193ebf5b5b4252ebb5443bfb4edb43a08f7f057a1c9e6b8f1e5601445d6cde5c19d4814f283b next_version=28 sesssion_starting_time=259.748µs +2026-04-20T15:29:35.967883Z DEBUG StfBlueprint::apply_slot{context=Node da_height=28}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=144dd48cd710ee9aaaa7a4bb4546bb2fd3ed306a531b925037996fc61e9102b71e05754828ecaba10007a9ce7643baeae22d688586f41d851d06e888c80f43b8 next_version=28 time=10.142374ms accesses_build_time=1.078343ms finishing_session_time=8.658234ms +2026-04-20T15:29:35.969011Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3b04b67944e3b4465113ba0a555be8906259c01709dd6b1694fc193ebf5b5b4252ebb5443bfb4edb43a08f7f057a1c9e6b8f1e5601445d6cde5c19d4814f283b" next_state_root="144dd48cd710ee9aaaa7a4bb4546bb2fd3ed306a531b925037996fc61e9102b71e05754828ecaba10007a9ce7643baeae22d688586f41d851d06e888c80f43b8" aggregated_proofs=1 proof_receipts=1 +2026-04-20T15:29:35.974301Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 28, latest_finalized_slot_number: 28, sync_status: Synced { synced_da_height: 27 }, .. } +2026-04-20T15:29:35.975725Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=24 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 28, latest_finalized_slot_number: 28, sync_status: Synced { synced_da_height: 27 }, .. } +2026-04-20T15:29:35.976694Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=24 +2026-04-20T15:29:35.979289Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:29:35.980300Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=20 +2026-04-20T15:29:35.982251Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=25 +2026-04-20T15:29:35.983242Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:29:35.985191Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=25 sequence_number=26 +2026-04-20T15:29:35.985556Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=26 blob_id=2147897265751686915451833871266682279 visible_slot_number_after_increase=25 visible_slots_to_advance=1 +2026-04-20T15:29:35.985548Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:35.989735Z DEBUG compute_state_update{scope="sequencer" rollup_height=25 slot_number=25}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:29:35.989826Z DEBUG sov_stf_runner::runner: Block execution complete time=3.023105672s +2026-04-20T15:29:35.989870Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:29:35.990022Z DEBUG compute_state_update{scope="sequencer" rollup_height=25 slot_number=25}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=144dd48cd710ee9aaaa7a4bb4546bb2fd3ed306a531b925037996fc61e9102b71e05754828ecaba10007a9ce7643baeae22d688586f41d851d06e888c80f43b8 next_version=29 sesssion_starting_time=293.088µs +2026-04-20T15:29:35.992104Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:29:35.992747Z DEBUG manage_blob_submission_inside_task{blob_id=2147897265751686915451833871266682279 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x8f48cf2eb570ef54271c307d164e223b1d0d8f496bf76b796ef0fb1c3d9fc780 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=29 include_at=29 bytes=13 time=1.631749ms +2026-04-20T15:29:35.992821Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:29:35.995550Z DEBUG compute_state_update{scope="sequencer" rollup_height=25 slot_number=25}: sov_state::nomt::prover_storage: computed next state root state_root=618d859c283b18cdc15c910859a5840bdde7bcef318de69882994ca2336025100125fd4c25a42ef58860d707171e70b6c1799ad95185ed0e77662c63651d6813 next_version=29 time=6.20149ms accesses_build_time=377.008µs finishing_session_time=5.442784ms +2026-04-20T15:29:36.417845Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:29:36.417935Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:29:36.454389Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LpaKYdHVT0iycBNWL2b-gA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:29:36.488512Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:29:36.500661Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1659471 cycles +2026-04-20T15:29:36.503396Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [65, 120, 6, 198, 163, 149, 83, 25, 51, 151, 74, 199, 147, 228, 102, 187, 90, 158, 66, 108, 251, 6, 106, 67, 216, 123, 227, 89, 126, 248, 208, 172, 68, 183, 130, 241, 251, 242, 1, 208, 57, 71, 112, 35, 139, 205, 236, 236, 167, 196, 236, 133, 238, 141, 137, 122, 145, 13, 137, 10, 141, 62, 89, 8, 86, 115, 38, 161, 138, 135, 167, 149, 47, 21, 32, 2, 54, 152, 230, 79, 44, 131, 142, 21, 127, 32, 54, 36, 233, 81, 246, 241, 222, 29, 219, 188, 33, 187, 58, 65, 138, 207, 198, 69, 220, 255, 46, 12, 223, 218, 149, 43, 120, 129, 219, 23, 57, 107, 158, 179, 192, 167, 74, 241, 119, 47, 38, 250, 113, 241, 138, 75, 39, 78, 125, 158, 212, 142, 97, 68, 75, 207, 79, 92, 103, 11, 77, 26, 51, 77, 156, 42, 69, 245, 146, 147, 171, 114, 102, 140, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:29:37.087440Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:29:37.087518Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:29:38.929333Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=29 prev_hash=0xa09a5d1915891d0c9b7463045000bf6a5c117557ee77e61acc2e725ef6a30dd3 hash=0x8bc1a279e6dc2b0c698348aad563013075546f2804cf4e5abfc74d45f108f7a0 producing_time=3.340718ms +2026-04-20T15:29:38.932470Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=29 current_state_root="144dd48cd710ee9aaaa7a4bb4546bb2fd3ed306a531b925037996fc61e9102b71e05754828ecaba10007a9ce7643baeae22d688586f41d851d06e888c80f43b8" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x8f48cf2eb570ef54271c307d164e223b1d0d8f496bf76b796ef0fb1c3d9fc780"] proof_blobs=[] +2026-04-20T15:29:38.941536Z DEBUG StfBlueprint::apply_slot{context=Node da_height=29}: sov_chain_state: Setting next visible slot number next_visible_slot_number=25 +2026-04-20T15:29:38.948099Z DEBUG StfBlueprint::apply_slot{context=Node da_height=29}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x8f48cf2eb570ef54271c307d164e223b1d0d8f496bf76b796ef0fb1c3d9fc780}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:38.950408Z DEBUG StfBlueprint::apply_slot{context=Node da_height=29}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=144dd48cd710ee9aaaa7a4bb4546bb2fd3ed306a531b925037996fc61e9102b71e05754828ecaba10007a9ce7643baeae22d688586f41d851d06e888c80f43b8 next_version=29 sesssion_starting_time=273.649µs +2026-04-20T15:29:38.958018Z DEBUG StfBlueprint::apply_slot{context=Node da_height=29}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=618d859c283b18cdc15c910859a5840bdde7bcef318de69882994ca233602510060303bff4d9ae85d865bcd0368f3ffc1f08cc60a2811ce9095046a78b9702a0 next_version=29 time=8.668123ms accesses_build_time=769.404µs finishing_session_time=7.451562ms +2026-04-20T15:29:38.959252Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="144dd48cd710ee9aaaa7a4bb4546bb2fd3ed306a531b925037996fc61e9102b71e05754828ecaba10007a9ce7643baeae22d688586f41d851d06e888c80f43b8" next_state_root="618d859c283b18cdc15c910859a5840bdde7bcef318de69882994ca233602510060303bff4d9ae85d865bcd0368f3ffc1f08cc60a2811ce9095046a78b9702a0" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:29:38.963671Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 29, latest_finalized_slot_number: 29, sync_status: Synced { synced_da_height: 28 }, .. } +2026-04-20T15:29:38.965061Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=25 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 29, latest_finalized_slot_number: 29, sync_status: Synced { synced_da_height: 28 }, .. } +2026-04-20T15:29:38.966005Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=25 +2026-04-20T15:29:38.969004Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:29:38.969983Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=21 +2026-04-20T15:29:38.971806Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=26 +2026-04-20T15:29:38.972792Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:29:38.974528Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=26 sequence_number=27 +2026-04-20T15:29:38.974819Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=27 blob_id=2147897269365149052560780761385049378 visible_slot_number_after_increase=26 visible_slots_to_advance=1 +2026-04-20T15:29:38.974866Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:38.976699Z DEBUG sov_stf_runner::runner: Block execution complete time=2.986833807s +2026-04-20T15:29:38.976819Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:29:38.978875Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:29:38.979360Z DEBUG compute_state_update{scope="sequencer" rollup_height=26 slot_number=26}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:29:38.979700Z DEBUG compute_state_update{scope="sequencer" rollup_height=26 slot_number=26}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=618d859c283b18cdc15c910859a5840bdde7bcef318de69882994ca233602510060303bff4d9ae85d865bcd0368f3ffc1f08cc60a2811ce9095046a78b9702a0 next_version=30 sesssion_starting_time=349.948µs +2026-04-20T15:29:38.979759Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:29:38.982058Z DEBUG manage_blob_submission_inside_task{blob_id=2147897269365149052560780761385049378 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xfcda7a72c883f2c0adfcb12d0fff493b892c88e783648f72965c5c5dc640b2eb sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=30 include_at=30 bytes=13 time=1.589609ms +2026-04-20T15:29:38.985431Z DEBUG compute_state_update{scope="sequencer" rollup_height=26 slot_number=26}: sov_state::nomt::prover_storage: computed next state root state_root=51e2859df577ed2093a8d516c3c6c64ab92c25ea43ba68c65cceb89a049ae83a7faf49ae561e230c7d1c9ca0edcb4cf520be1918461a60f9b1827c3121c83c37 next_version=30 time=6.487858ms accesses_build_time=400.147µs finishing_session_time=5.640564ms +2026-04-20T15:29:39.473231Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mTyrPPeLTGuicFaJLeKzzw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:29:39.507335Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:29:39.519918Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1659267 cycles +2026-04-20T15:29:39.522589Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [79, 70, 52, 248, 45, 159, 81, 57, 108, 153, 51, 65, 134, 78, 25, 105, 171, 16, 50, 179, 240, 248, 149, 86, 28, 161, 14, 49, 93, 60, 88, 125, 112, 159, 91, 138, 113, 159, 69, 128, 34, 135, 53, 91, 33, 39, 214, 116, 229, 225, 18, 63, 114, 183, 125, 169, 114, 76, 147, 107, 88, 30, 105, 102, 57, 135, 124, 188, 37, 134, 255, 70, 153, 54, 2, 108, 236, 73, 180, 23, 166, 57, 105, 24, 175, 224, 88, 135, 65, 232, 8, 159, 15, 160, 220, 74, 84, 43, 24, 138, 120, 104, 247, 156, 193, 208, 47, 187, 241, 249, 28, 92, 121, 27, 219, 193, 244, 138, 64, 83, 81, 194, 65, 195, 9, 197, 115, 74, 140, 16, 124, 189, 158, 77, 163, 186, 233, 216, 116, 190, 19, 101, 58, 4, 85, 176, 121, 28, 161, 209, 10, 34, 75, 131, 73, 151, 81, 171, 103, 249, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:29:40.105975Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:29:40.106061Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:29:41.933158Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=30 prev_hash=0x8bc1a279e6dc2b0c698348aad563013075546f2804cf4e5abfc74d45f108f7a0 hash=0xd31e180f8556a6ec3ac8c15a48754a11a158ddf22e2cebbb970b4b76e8d458b0 producing_time=3.235579ms +2026-04-20T15:29:41.940205Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=30 current_state_root="618d859c283b18cdc15c910859a5840bdde7bcef318de69882994ca233602510060303bff4d9ae85d865bcd0368f3ffc1f08cc60a2811ce9095046a78b9702a0" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xfcda7a72c883f2c0adfcb12d0fff493b892c88e783648f72965c5c5dc640b2eb"] proof_blobs=[] +2026-04-20T15:29:41.948433Z DEBUG StfBlueprint::apply_slot{context=Node da_height=30}: sov_chain_state: Setting next visible slot number next_visible_slot_number=26 +2026-04-20T15:29:41.954278Z DEBUG StfBlueprint::apply_slot{context=Node da_height=30}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xfcda7a72c883f2c0adfcb12d0fff493b892c88e783648f72965c5c5dc640b2eb}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:41.956501Z DEBUG StfBlueprint::apply_slot{context=Node da_height=30}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=618d859c283b18cdc15c910859a5840bdde7bcef318de69882994ca233602510060303bff4d9ae85d865bcd0368f3ffc1f08cc60a2811ce9095046a78b9702a0 next_version=30 sesssion_starting_time=270.268µs +2026-04-20T15:29:41.963845Z DEBUG StfBlueprint::apply_slot{context=Node da_height=30}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=51e2859df577ed2093a8d516c3c6c64ab92c25ea43ba68c65cceb89a049ae83a12cbbc19bb37ebf20430c1f894dcaf61cfe4153a5e313db4d1b56e64577b3b2c next_version=30 time=8.393745ms accesses_build_time=767.275µs finishing_session_time=7.214113ms +2026-04-20T15:29:41.964930Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="618d859c283b18cdc15c910859a5840bdde7bcef318de69882994ca233602510060303bff4d9ae85d865bcd0368f3ffc1f08cc60a2811ce9095046a78b9702a0" next_state_root="51e2859df577ed2093a8d516c3c6c64ab92c25ea43ba68c65cceb89a049ae83a12cbbc19bb37ebf20430c1f894dcaf61cfe4153a5e313db4d1b56e64577b3b2c" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:29:41.969345Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 30, latest_finalized_slot_number: 30, sync_status: Synced { synced_da_height: 29 }, .. } +2026-04-20T15:29:41.970730Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=26 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 30, latest_finalized_slot_number: 30, sync_status: Synced { synced_da_height: 29 }, .. } +2026-04-20T15:29:41.971662Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=26 +2026-04-20T15:29:41.974132Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:29:41.975108Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=22 +2026-04-20T15:29:41.977073Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=27 +2026-04-20T15:29:41.977994Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:29:41.979507Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=27 sequence_number=28 +2026-04-20T15:29:41.979763Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:41.979811Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=28 blob_id=2147897272998013659166175241625336966 visible_slot_number_after_increase=27 visible_slots_to_advance=1 +2026-04-20T15:29:41.984492Z DEBUG compute_state_update{scope="sequencer" rollup_height=27 slot_number=27}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:29:41.984838Z DEBUG compute_state_update{scope="sequencer" rollup_height=27 slot_number=27}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=51e2859df577ed2093a8d516c3c6c64ab92c25ea43ba68c65cceb89a049ae83a12cbbc19bb37ebf20430c1f894dcaf61cfe4153a5e313db4d1b56e64577b3b2c next_version=31 sesssion_starting_time=877.084µs +2026-04-20T15:29:41.985094Z DEBUG sov_stf_runner::runner: Block execution complete time=3.008306318s +2026-04-20T15:29:41.985172Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:29:41.987145Z DEBUG manage_blob_submission_inside_task{blob_id=2147897272998013659166175241625336966 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xd6cb9d33b660f1eebe71b297e617b8e108a14d491e8293134972004d055cce54 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=31 include_at=31 bytes=13 time=1.649069ms +2026-04-20T15:29:41.987603Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:29:41.988261Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:29:41.990952Z DEBUG compute_state_update{scope="sequencer" rollup_height=27 slot_number=27}: sov_state::nomt::prover_storage: computed next state root state_root=281d908502033f6e2e90afee4eef49a54b00dd97cc1a947014f693e9742a51c8470373c41803a75fdce4b00603e4c3e7436d0320c732319228701f94c5855b4f next_version=31 time=7.424652ms accesses_build_time=419.727µs finishing_session_time=5.994481ms +2026-04-20T15:29:42.455394Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kEn3o4L5SVaRvbkyqi8iJw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:29:42.490323Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:29:42.502421Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1672930 cycles +2026-04-20T15:29:42.505224Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [43, 85, 12, 81, 192, 145, 140, 71, 95, 98, 103, 174, 98, 64, 140, 19, 224, 152, 176, 70, 93, 85, 161, 4, 84, 73, 19, 50, 106, 198, 183, 155, 72, 37, 121, 192, 204, 61, 211, 195, 128, 155, 69, 240, 145, 189, 180, 84, 169, 16, 194, 16, 186, 241, 74, 162, 110, 61, 11, 1, 65, 239, 254, 190, 23, 22, 156, 113, 68, 79, 101, 230, 183, 142, 89, 166, 31, 120, 235, 137, 133, 226, 36, 165, 3, 32, 94, 70, 189, 160, 134, 38, 138, 172, 237, 135, 93, 117, 23, 15, 13, 101, 141, 119, 177, 11, 68, 217, 36, 65, 100, 81, 163, 53, 203, 157, 12, 42, 35, 72, 161, 94, 62, 90, 110, 186, 138, 74, 0, 152, 127, 0, 20, 4, 212, 132, 210, 16, 150, 113, 160, 25, 103, 128, 3, 11, 117, 151, 206, 255, 145, 207, 192, 5, 107, 126, 30, 218, 218, 4, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:29:43.094244Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:29:43.094327Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:29:44.937109Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=31 prev_hash=0xd31e180f8556a6ec3ac8c15a48754a11a158ddf22e2cebbb970b4b76e8d458b0 hash=0x8915c46474dba32d69f0dc240cb2d4bf3e32e8469f8754117ec0eeb8f825a302 producing_time=3.339848ms +2026-04-20T15:29:44.947645Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=31 current_state_root="51e2859df577ed2093a8d516c3c6c64ab92c25ea43ba68c65cceb89a049ae83a12cbbc19bb37ebf20430c1f894dcaf61cfe4153a5e313db4d1b56e64577b3b2c" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd6cb9d33b660f1eebe71b297e617b8e108a14d491e8293134972004d055cce54"] proof_blobs=[] +2026-04-20T15:29:44.956657Z DEBUG StfBlueprint::apply_slot{context=Node da_height=31}: sov_chain_state: Setting next visible slot number next_visible_slot_number=27 +2026-04-20T15:29:44.963206Z DEBUG StfBlueprint::apply_slot{context=Node da_height=31}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xd6cb9d33b660f1eebe71b297e617b8e108a14d491e8293134972004d055cce54}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:44.965620Z DEBUG StfBlueprint::apply_slot{context=Node da_height=31}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=51e2859df577ed2093a8d516c3c6c64ab92c25ea43ba68c65cceb89a049ae83a12cbbc19bb37ebf20430c1f894dcaf61cfe4153a5e313db4d1b56e64577b3b2c next_version=31 sesssion_starting_time=327.988µs +2026-04-20T15:29:44.973665Z DEBUG StfBlueprint::apply_slot{context=Node da_height=31}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=281d908502033f6e2e90afee4eef49a54b00dd97cc1a947014f693e9742a51c85146a8e21ac9c4b560c677df023387630792583520a4abb4257c9208331416cf next_version=31 time=9.161151ms accesses_build_time=774.755µs finishing_session_time=7.884639ms +2026-04-20T15:29:44.974752Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="51e2859df577ed2093a8d516c3c6c64ab92c25ea43ba68c65cceb89a049ae83a12cbbc19bb37ebf20430c1f894dcaf61cfe4153a5e313db4d1b56e64577b3b2c" next_state_root="281d908502033f6e2e90afee4eef49a54b00dd97cc1a947014f693e9742a51c85146a8e21ac9c4b560c677df023387630792583520a4abb4257c9208331416cf" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:29:44.979138Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 31, latest_finalized_slot_number: 31, sync_status: Syncing { synced_da_height: 30, target_da_height: 31 }, .. } +2026-04-20T15:29:44.980569Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=27 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 31, latest_finalized_slot_number: 31, sync_status: Syncing { synced_da_height: 30, target_da_height: 31 }, .. } +2026-04-20T15:29:44.981513Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=27 +2026-04-20T15:29:44.984088Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:29:44.985072Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=23 +2026-04-20T15:29:44.986912Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=28 +2026-04-20T15:29:44.987936Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:29:44.989577Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=28 sequence_number=29 +2026-04-20T15:29:44.989862Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:44.989897Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=29 blob_id=2147897276636875323281285060312890175 visible_slot_number_after_increase=28 visible_slots_to_advance=1 +2026-04-20T15:29:44.994776Z DEBUG compute_state_update{scope="sequencer" rollup_height=28 slot_number=28}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:29:44.995120Z DEBUG compute_state_update{scope="sequencer" rollup_height=28 slot_number=28}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=281d908502033f6e2e90afee4eef49a54b00dd97cc1a947014f693e9742a51c85146a8e21ac9c4b560c677df023387630792583520a4abb4257c9208331416cf next_version=32 sesssion_starting_time=897.204µs +2026-04-20T15:29:44.995425Z DEBUG sov_stf_runner::runner: Block execution complete time=3.010272126s +2026-04-20T15:29:44.995523Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:29:44.996984Z DEBUG manage_blob_submission_inside_task{blob_id=2147897276636875323281285060312890175 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xc7f46e9da1c2f4e7f67192fdd5127c795f2a21e4c5c3ed74d6dd872c645c8bbe sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=32 include_at=32 bytes=13 time=1.56275ms +2026-04-20T15:29:44.997788Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:29:44.998469Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:29:45.000738Z DEBUG compute_state_update{scope="sequencer" rollup_height=28 slot_number=28}: sov_state::nomt::prover_storage: computed next state root state_root=3d4e97d9fba90e8d3dbf288bc99ceaa368078008335a679b448b87cc790bf2785aeab4a873cd76f10a6eab1214a3dc9cb368e2a135d650cd0d17c4d988b55753 next_version=32 time=6.912175ms accesses_build_time=380.968µs finishing_session_time=5.494545ms +2026-04-20T15:29:45.453386Z DEBUG sp1_core_executor_runner::native: CHILD sp1_G2friKg5Ssy3KJ7Dhah8Cg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:29:45.485777Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:29:45.497654Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1604096 cycles +2026-04-20T15:29:45.500274Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [76, 80, 20, 3, 134, 68, 196, 70, 125, 63, 223, 184, 45, 128, 68, 32, 51, 9, 28, 65, 0, 167, 116, 20, 229, 217, 166, 134, 128, 235, 176, 112, 114, 195, 83, 193, 119, 27, 63, 136, 127, 195, 163, 150, 65, 249, 177, 137, 38, 80, 253, 33, 2, 196, 197, 154, 192, 33, 4, 94, 72, 95, 6, 52, 85, 137, 220, 180, 80, 68, 198, 47, 236, 49, 147, 40, 236, 206, 99, 86, 154, 129, 197, 235, 67, 154, 96, 47, 116, 74, 16, 0, 59, 213, 193, 194, 28, 190, 77, 161, 205, 9, 119, 165, 9, 178, 131, 29, 80, 72, 180, 196, 233, 99, 28, 138, 212, 11, 64, 98, 101, 149, 110, 241, 166, 147, 90, 83, 40, 52, 147, 88, 151, 4, 69, 234, 230, 81, 84, 2, 151, 206, 19, 15, 221, 129, 9, 82, 148, 34, 140, 205, 88, 202, 238, 53, 48, 231, 143, 196, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:29:46.063738Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:29:46.063822Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:29:47.941008Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=32 prev_hash=0x8915c46474dba32d69f0dc240cb2d4bf3e32e8469f8754117ec0eeb8f825a302 hash=0xe054b650d5317c0a142d8018b766ad63905249ae88d3df04972ead332ae16bc7 producing_time=3.368338ms +2026-04-20T15:29:47.948970Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=32 current_state_root="281d908502033f6e2e90afee4eef49a54b00dd97cc1a947014f693e9742a51c85146a8e21ac9c4b560c677df023387630792583520a4abb4257c9208331416cf" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc7f46e9da1c2f4e7f67192fdd5127c795f2a21e4c5c3ed74d6dd872c645c8bbe"] proof_blobs=[] +2026-04-20T15:29:47.957499Z DEBUG StfBlueprint::apply_slot{context=Node da_height=32}: sov_chain_state: Setting next visible slot number next_visible_slot_number=28 +2026-04-20T15:29:47.963486Z DEBUG StfBlueprint::apply_slot{context=Node da_height=32}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xc7f46e9da1c2f4e7f67192fdd5127c795f2a21e4c5c3ed74d6dd872c645c8bbe}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:47.965647Z DEBUG StfBlueprint::apply_slot{context=Node da_height=32}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=281d908502033f6e2e90afee4eef49a54b00dd97cc1a947014f693e9742a51c85146a8e21ac9c4b560c677df023387630792583520a4abb4257c9208331416cf next_version=32 sesssion_starting_time=256.118µs +2026-04-20T15:29:47.973099Z DEBUG StfBlueprint::apply_slot{context=Node da_height=32}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3d4e97d9fba90e8d3dbf288bc99ceaa368078008335a679b448b87cc790bf2782636dd4dc77aa5cf21978e3c2f8f6425c2396445b401d9fdc203ecfb62edfe79 next_version=32 time=8.495435ms accesses_build_time=775.355µs finishing_session_time=7.302843ms +2026-04-20T15:29:47.974171Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="281d908502033f6e2e90afee4eef49a54b00dd97cc1a947014f693e9742a51c85146a8e21ac9c4b560c677df023387630792583520a4abb4257c9208331416cf" next_state_root="3d4e97d9fba90e8d3dbf288bc99ceaa368078008335a679b448b87cc790bf2782636dd4dc77aa5cf21978e3c2f8f6425c2396445b401d9fdc203ecfb62edfe79" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:29:47.978414Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 32, latest_finalized_slot_number: 32, sync_status: Syncing { synced_da_height: 31, target_da_height: 32 }, .. } +2026-04-20T15:29:47.979798Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=28 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 32, latest_finalized_slot_number: 32, sync_status: Syncing { synced_da_height: 31, target_da_height: 32 }, .. } +2026-04-20T15:29:47.980734Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=28 +2026-04-20T15:29:47.983280Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:29:47.984248Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=24 +2026-04-20T15:29:47.986225Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=29 +2026-04-20T15:29:47.987214Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:29:47.988738Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=29 sequence_number=30 +2026-04-20T15:29:47.988995Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:47.989029Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=30 blob_id=2147897280262461600036995681037009750 visible_slot_number_after_increase=29 visible_slots_to_advance=1 +2026-04-20T15:29:47.993522Z DEBUG compute_state_update{scope="sequencer" rollup_height=29 slot_number=29}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:29:47.993905Z DEBUG compute_state_update{scope="sequencer" rollup_height=29 slot_number=29}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3d4e97d9fba90e8d3dbf288bc99ceaa368078008335a679b448b87cc790bf2782636dd4dc77aa5cf21978e3c2f8f6425c2396445b401d9fdc203ecfb62edfe79 next_version=33 sesssion_starting_time=664.636µs +2026-04-20T15:29:47.994147Z DEBUG sov_stf_runner::runner: Block execution complete time=2.998636981s +2026-04-20T15:29:47.994244Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:29:47.996112Z DEBUG manage_blob_submission_inside_task{blob_id=2147897280262461600036995681037009750 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xf0c11a3063ea0af6c705eac94fdb835cd501da868d34fc0fcfd2fdf185d0a3b9 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=33 include_at=33 bytes=13 time=1.63202ms +2026-04-20T15:29:47.997486Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:29:47.998563Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:29:47.999412Z DEBUG compute_state_update{scope="sequencer" rollup_height=29 slot_number=29}: sov_state::nomt::prover_storage: computed next state root state_root=2bdc6a991a5340696108c9a91e81da4d99b779b315bccd0e4e7db5b14c233bc43061cefffbb7408692717953c4e9e1c078112e00c70c2070acc317a78dd07f71 next_version=33 time=6.700036ms accesses_build_time=488.997µs finishing_session_time=5.384935ms +2026-04-20T15:29:48.468852Z DEBUG sp1_core_executor_runner::native: CHILD sp1_6QSQaxybS22tp-jnEXG5eg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:29:48.502393Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:29:48.514049Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1641973 cycles +2026-04-20T15:29:48.516721Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [42, 49, 180, 23, 57, 234, 166, 134, 153, 19, 109, 150, 137, 145, 210, 176, 239, 131, 44, 232, 203, 60, 92, 24, 56, 102, 30, 224, 99, 157, 242, 193, 64, 212, 155, 190, 12, 39, 175, 174, 126, 36, 130, 165, 5, 95, 83, 188, 2, 44, 198, 81, 78, 255, 24, 37, 252, 193, 242, 98, 155, 172, 39, 117, 23, 129, 122, 170, 24, 238, 150, 255, 68, 54, 131, 8, 31, 144, 156, 218, 37, 22, 162, 35, 31, 227, 112, 226, 55, 55, 33, 31, 222, 90, 240, 44, 100, 184, 214, 131, 89, 66, 66, 34, 42, 20, 47, 50, 72, 252, 177, 19, 6, 27, 108, 93, 21, 180, 50, 207, 45, 231, 190, 157, 143, 131, 136, 154, 24, 122, 253, 149, 89, 224, 13, 127, 85, 65, 159, 146, 192, 217, 55, 164, 94, 148, 112, 132, 252, 27, 57, 183, 88, 225, 236, 123, 41, 90, 76, 99, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:29:49.094140Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:29:49.094219Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:29:50.946150Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=33 prev_hash=0xe054b650d5317c0a142d8018b766ad63905249ae88d3df04972ead332ae16bc7 hash=0x0d3ff39b166c45b55a6e2951e85e2c89116eb0a56a5301d2da28e0b5e95e1784 producing_time=2.710393ms +2026-04-20T15:29:50.957037Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=33 current_state_root="3d4e97d9fba90e8d3dbf288bc99ceaa368078008335a679b448b87cc790bf2782636dd4dc77aa5cf21978e3c2f8f6425c2396445b401d9fdc203ecfb62edfe79" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf0c11a3063ea0af6c705eac94fdb835cd501da868d34fc0fcfd2fdf185d0a3b9"] proof_blobs=[] +2026-04-20T15:29:50.964549Z DEBUG StfBlueprint::apply_slot{context=Node da_height=33}: sov_chain_state: Setting next visible slot number next_visible_slot_number=29 +2026-04-20T15:29:50.969894Z DEBUG StfBlueprint::apply_slot{context=Node da_height=33}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xf0c11a3063ea0af6c705eac94fdb835cd501da868d34fc0fcfd2fdf185d0a3b9}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:50.971935Z DEBUG StfBlueprint::apply_slot{context=Node da_height=33}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3d4e97d9fba90e8d3dbf288bc99ceaa368078008335a679b448b87cc790bf2782636dd4dc77aa5cf21978e3c2f8f6425c2396445b401d9fdc203ecfb62edfe79 next_version=33 sesssion_starting_time=234.209µs +2026-04-20T15:29:50.979204Z DEBUG StfBlueprint::apply_slot{context=Node da_height=33}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2bdc6a991a5340696108c9a91e81da4d99b779b315bccd0e4e7db5b14c233bc45c38656b3c20fbde8b68fb1fe7a3bc4f62e6baf0c19acdc29ebec7b8bb6b7d9a next_version=33 time=8.279056ms accesses_build_time=765.185µs finishing_session_time=7.144204ms +2026-04-20T15:29:50.980212Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3d4e97d9fba90e8d3dbf288bc99ceaa368078008335a679b448b87cc790bf2782636dd4dc77aa5cf21978e3c2f8f6425c2396445b401d9fdc203ecfb62edfe79" next_state_root="2bdc6a991a5340696108c9a91e81da4d99b779b315bccd0e4e7db5b14c233bc45c38656b3c20fbde8b68fb1fe7a3bc4f62e6baf0c19acdc29ebec7b8bb6b7d9a" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:29:50.983531Z DEBUG sov_stf_runner::runner: Block execution complete time=2.989313571s +2026-04-20T15:29:50.983627Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:29:50.984281Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 33, latest_finalized_slot_number: 32, sync_status: Syncing { synced_da_height: 32, target_da_height: 33 }, .. } +2026-04-20T15:29:50.985639Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=29 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 33, latest_finalized_slot_number: 32, sync_status: Syncing { synced_da_height: 32, target_da_height: 33 }, .. } +2026-04-20T15:29:50.986531Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=29 +2026-04-20T15:29:50.987055Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:29:50.987989Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:29:50.988969Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:29:50.989887Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=25 +2026-04-20T15:29:50.991640Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=30 +2026-04-20T15:29:50.992501Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:29:50.993943Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=30 sequence_number=31 +2026-04-20T15:29:50.994210Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=31 blob_id=2147897283895250945646814828058698416 visible_slot_number_after_increase=30 visible_slots_to_advance=1 +2026-04-20T15:29:50.994224Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:50.998171Z DEBUG compute_state_update{scope="sequencer" rollup_height=30 slot_number=30}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2bdc6a991a5340696108c9a91e81da4d99b779b315bccd0e4e7db5b14c233bc45c38656b3c20fbde8b68fb1fe7a3bc4f62e6baf0c19acdc29ebec7b8bb6b7d9a next_version=34 sesssion_starting_time=240.719µs +2026-04-20T15:29:51.000921Z DEBUG manage_blob_submission_inside_task{blob_id=2147897283895250945646814828058698416 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x06fbe542074537beabb8f5b6306ca8c307e2bde0c57f03ae1797abbee1e9bb17 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=34 include_at=34 bytes=13 time=1.491771ms +2026-04-20T15:29:51.003481Z DEBUG compute_state_update{scope="sequencer" rollup_height=30 slot_number=30}: sov_state::nomt::prover_storage: computed next state root state_root=3cfd38a2def5105f585473dd118f54cbd6e579cb08a201c5389a4703412a666423d4b9aa48096fdce63aa9ee95ae4c07b9a3ef34f1a476fcb6430f9e284da667 next_version=34 time=5.921562ms accesses_build_time=363.938µs finishing_session_time=5.192146ms +2026-04-20T15:29:51.487110Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eUTkMSEGROuOflvGW9Dsow==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:29:51.524230Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:29:51.537470Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1775927 cycles +2026-04-20T15:29:51.540156Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [106, 96, 90, 105, 162, 169, 181, 163, 130, 128, 18, 29, 108, 106, 64, 146, 44, 58, 2, 108, 196, 153, 186, 179, 109, 136, 93, 80, 5, 187, 142, 240, 94, 174, 94, 253, 196, 227, 203, 71, 172, 90, 249, 72, 142, 37, 56, 20, 116, 78, 39, 58, 139, 161, 39, 196, 54, 185, 143, 62, 229, 60, 215, 109, 72, 109, 255, 39, 24, 234, 169, 211, 243, 132, 94, 40, 7, 83, 223, 243, 69, 252, 188, 173, 181, 228, 12, 70, 117, 90, 127, 200, 209, 23, 60, 207, 6, 52, 189, 183, 46, 80, 148, 52, 158, 239, 229, 174, 237, 86, 249, 148, 95, 140, 43, 97, 42, 16, 123, 244, 105, 18, 198, 114, 163, 33, 46, 147, 255, 119, 249, 85, 222, 246, 20, 124, 194, 9, 108, 8, 20, 55, 178, 141, 154, 181, 29, 38, 185, 42, 131, 116, 186, 5, 45, 176, 230, 20, 146, 41, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:29:52.163187Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:29:52.163266Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:29:53.950464Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=34 prev_hash=0x0d3ff39b166c45b55a6e2951e85e2c89116eb0a56a5301d2da28e0b5e95e1784 hash=0xe45e92cbf6d2ceb7748f04821b6b9dd8db876a38195455bd158d078ce32b6fe1 producing_time=3.746406ms +2026-04-20T15:29:53.956649Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=34 current_state_root="2bdc6a991a5340696108c9a91e81da4d99b779b315bccd0e4e7db5b14c233bc45c38656b3c20fbde8b68fb1fe7a3bc4f62e6baf0c19acdc29ebec7b8bb6b7d9a" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x06fbe542074537beabb8f5b6306ca8c307e2bde0c57f03ae1797abbee1e9bb17"] proof_blobs=[] +2026-04-20T15:29:53.965196Z DEBUG StfBlueprint::apply_slot{context=Node da_height=34}: sov_chain_state: Setting next visible slot number next_visible_slot_number=30 +2026-04-20T15:29:53.971663Z DEBUG StfBlueprint::apply_slot{context=Node da_height=34}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x06fbe542074537beabb8f5b6306ca8c307e2bde0c57f03ae1797abbee1e9bb17}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:53.973958Z DEBUG StfBlueprint::apply_slot{context=Node da_height=34}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2bdc6a991a5340696108c9a91e81da4d99b779b315bccd0e4e7db5b14c233bc45c38656b3c20fbde8b68fb1fe7a3bc4f62e6baf0c19acdc29ebec7b8bb6b7d9a next_version=34 sesssion_starting_time=270.738µs +2026-04-20T15:29:53.981898Z DEBUG StfBlueprint::apply_slot{context=Node da_height=34}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3cfd38a2def5105f585473dd118f54cbd6e579cb08a201c5389a4703412a6664110e0e6b147d283754f05b287a170b34d2e775c083871452c66f8ebb0046757a next_version=34 time=9.018481ms accesses_build_time=790.955µs finishing_session_time=7.77798ms +2026-04-20T15:29:53.983027Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3d4e97d9fba90e8d3dbf288bc99ceaa368078008335a679b448b87cc790bf2782636dd4dc77aa5cf21978e3c2f8f6425c2396445b401d9fdc203ecfb62edfe79" next_state_root="3cfd38a2def5105f585473dd118f54cbd6e579cb08a201c5389a4703412a6664110e0e6b147d283754f05b287a170b34d2e775c083871452c66f8ebb0046757a" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:29:53.987702Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 34, latest_finalized_slot_number: 33, sync_status: Syncing { synced_da_height: 33, target_da_height: 34 }, .. } +2026-04-20T15:29:53.989168Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=30 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 34, latest_finalized_slot_number: 33, sync_status: Syncing { synced_da_height: 33, target_da_height: 34 }, .. } +2026-04-20T15:29:53.990121Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=30 +2026-04-20T15:29:53.992634Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:29:53.993690Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=26 +2026-04-20T15:29:53.995551Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=31 +2026-04-20T15:29:53.996467Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:29:53.998003Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=31 sequence_number=32 +2026-04-20T15:29:53.998258Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:53.998405Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=32 blob_id=2147897287526884730944186081479313519 visible_slot_number_after_increase=31 visible_slots_to_advance=1 +2026-04-20T15:29:54.000927Z DEBUG sov_stf_runner::runner: Block execution complete time=3.01731527s +2026-04-20T15:29:54.001080Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:29:54.002199Z DEBUG compute_state_update{scope="sequencer" rollup_height=31 slot_number=31}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:29:54.002546Z DEBUG compute_state_update{scope="sequencer" rollup_height=31 slot_number=31}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3cfd38a2def5105f585473dd118f54cbd6e579cb08a201c5389a4703412a6664110e0e6b147d283754f05b287a170b34d2e775c083871452c66f8ebb0046757a next_version=35 sesssion_starting_time=356.787µs +2026-04-20T15:29:54.003118Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:29:54.003764Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:29:54.005220Z DEBUG manage_blob_submission_inside_task{blob_id=2147897287526884730944186081479313519 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x6ca4ee84ba00b6cf0c225fa0bbd01a48af21fd4102b3b4411728cf44c0c9ce68 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=35 include_at=35 bytes=13 time=1.59307ms +2026-04-20T15:29:54.007880Z DEBUG compute_state_update{scope="sequencer" rollup_height=31 slot_number=31}: sov_state::nomt::prover_storage: computed next state root state_root=3f9a7361725845dc6d81de95385da73ee2d17a39a9222438e08d1cc20011af22483fc977507a993127281415dad7aeeaf713778ff282d0ce8244a9918cfedad4 next_version=35 time=6.070671ms accesses_build_time=370.798µs finishing_session_time=5.234656ms +2026-04-20T15:29:54.450273Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sS7-TtuGQfiLPtuxzJtzvw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:29:54.505547Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:29:54.517859Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 3832283 cycles +2026-04-20T15:29:54.520695Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [59, 4, 182, 121, 68, 227, 180, 70, 81, 19, 186, 10, 85, 91, 232, 144, 98, 89, 192, 23, 9, 221, 107, 22, 148, 252, 25, 62, 191, 91, 91, 66, 82, 235, 181, 68, 59, 251, 78, 219, 67, 160, 143, 127, 5, 122, 28, 158, 107, 143, 30, 86, 1, 68, 93, 108, 222, 92, 25, 212, 129, 79, 40, 59, 35, 112, 38, 207, 113, 246, 91, 92, 110, 80, 167, 3, 228, 208, 85, 164, 0, 33, 149, 202, 202, 148, 163, 106, 34, 254, 241, 83, 245, 154, 171, 10, 63, 152, 133, 246, 72, 193, 101, 166, 254, 218, 165, 170, 91, 19, 90, 244, 191, 150, 203, 192, 194, 30, 141, 163, 150, 240, 70, 53, 94, 135, 69, 140, 160, 154, 93, 25, 21, 137, 29, 12, 155, 116, 99, 4, 80, 0, 191, 106, 92, 17, 117, 87, 238, 119, 230, 26, 204, 46, 114, 94, 246, 163, 13, 211, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:29:55.852144Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:29:55.852234Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:29:56.955106Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=35 prev_hash=0xe45e92cbf6d2ceb7748f04821b6b9dd8db876a38195455bd158d078ce32b6fe1 hash=0x5d6987cdcf012f7fbeecff936b2054efb1138dbf89500cb508a3081430ded4db producing_time=2.955301ms +2026-04-20T15:29:56.963908Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=35 current_state_root="3cfd38a2def5105f585473dd118f54cbd6e579cb08a201c5389a4703412a6664110e0e6b147d283754f05b287a170b34d2e775c083871452c66f8ebb0046757a" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x6ca4ee84ba00b6cf0c225fa0bbd01a48af21fd4102b3b4411728cf44c0c9ce68"] proof_blobs=[] +2026-04-20T15:29:56.971408Z DEBUG StfBlueprint::apply_slot{context=Node da_height=35}: sov_chain_state: Setting next visible slot number next_visible_slot_number=31 +2026-04-20T15:29:56.976799Z DEBUG StfBlueprint::apply_slot{context=Node da_height=35}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x6ca4ee84ba00b6cf0c225fa0bbd01a48af21fd4102b3b4411728cf44c0c9ce68}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:56.978796Z DEBUG StfBlueprint::apply_slot{context=Node da_height=35}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3cfd38a2def5105f585473dd118f54cbd6e579cb08a201c5389a4703412a6664110e0e6b147d283754f05b287a170b34d2e775c083871452c66f8ebb0046757a next_version=35 sesssion_starting_time=243.579µs +2026-04-20T15:29:56.986209Z DEBUG StfBlueprint::apply_slot{context=Node da_height=35}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3f9a7361725845dc6d81de95385da73ee2d17a39a9222438e08d1cc20011af2266c0813499446297e12a4270edd14ad5c3250ccc53a18eaa8ae7a23252a98a18 next_version=35 time=8.429225ms accesses_build_time=761.995µs finishing_session_time=7.289773ms +2026-04-20T15:29:56.987243Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2bdc6a991a5340696108c9a91e81da4d99b779b315bccd0e4e7db5b14c233bc45c38656b3c20fbde8b68fb1fe7a3bc4f62e6baf0c19acdc29ebec7b8bb6b7d9a" next_state_root="3f9a7361725845dc6d81de95385da73ee2d17a39a9222438e08d1cc20011af2266c0813499446297e12a4270edd14ad5c3250ccc53a18eaa8ae7a23252a98a18" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:29:56.991472Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 35, latest_finalized_slot_number: 34, sync_status: Syncing { synced_da_height: 34, target_da_height: 35 }, .. } +2026-04-20T15:29:56.993176Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=31 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 35, latest_finalized_slot_number: 34, sync_status: Syncing { synced_da_height: 34, target_da_height: 35 }, .. } +2026-04-20T15:29:56.994130Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=31 +2026-04-20T15:29:56.996639Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:29:56.997622Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=27 +2026-04-20T15:29:56.999381Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=32 +2026-04-20T15:29:57.000240Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:29:57.001682Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=32 sequence_number=33 +2026-04-20T15:29:57.001949Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:57.002027Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=33 blob_id=2147897291158509090470466330896253800 visible_slot_number_after_increase=32 visible_slots_to_advance=1 +2026-04-20T15:29:57.007068Z DEBUG compute_state_update{scope="sequencer" rollup_height=32 slot_number=32}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:29:57.007382Z DEBUG compute_state_update{scope="sequencer" rollup_height=32 slot_number=32}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3f9a7361725845dc6d81de95385da73ee2d17a39a9222438e08d1cc20011af2266c0813499446297e12a4270edd14ad5c3250ccc53a18eaa8ae7a23252a98a18 next_version=36 sesssion_starting_time=1.783499ms +2026-04-20T15:29:57.007595Z DEBUG sov_stf_runner::runner: Block execution complete time=3.00655568s +2026-04-20T15:29:57.007636Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:29:57.008244Z DEBUG manage_blob_submission_inside_task{blob_id=2147897291158509090470466330896253800 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x63e5623618aefcff55cda271acca2e8ea4a87334f71d171126f6a820c26fe99d sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=36 include_at=36 bytes=13 time=1.307982ms +2026-04-20T15:29:57.010019Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:29:57.010642Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:29:57.012563Z DEBUG compute_state_update{scope="sequencer" rollup_height=32 slot_number=32}: sov_state::nomt::prover_storage: computed next state root state_root=505c8c2d6ef9b55ab21b032ddc68a136c682ab7556268aa0fb51abc96256f1d53e1476d4ff9b4d808816664d8b9c3ffd303864710b1810c08f0ef69ef182a03d next_version=36 time=7.357602ms accesses_build_time=381.367µs finishing_session_time=5.063077ms +2026-04-20T15:29:57.487473Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-ZZNRVlnQwGXwP5OU3s1Ug==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:29:57.522669Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:29:57.533714Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1675925 cycles +2026-04-20T15:29:57.536353Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [20, 77, 212, 140, 215, 16, 238, 154, 170, 167, 164, 187, 69, 70, 187, 47, 211, 237, 48, 106, 83, 27, 146, 80, 55, 153, 111, 198, 30, 145, 2, 183, 30, 5, 117, 72, 40, 236, 171, 161, 0, 7, 169, 206, 118, 67, 186, 234, 226, 45, 104, 133, 134, 244, 29, 133, 29, 6, 232, 136, 200, 15, 67, 184, 50, 132, 210, 209, 127, 141, 162, 28, 174, 211, 52, 217, 199, 192, 17, 11, 94, 147, 12, 230, 249, 175, 235, 96, 106, 108, 9, 81, 163, 171, 165, 16, 105, 81, 5, 190, 133, 61, 156, 62, 96, 169, 150, 119, 88, 163, 57, 1, 116, 90, 221, 48, 42, 10, 14, 68, 214, 253, 213, 2, 145, 69, 182, 109, 139, 193, 162, 121, 230, 220, 43, 12, 105, 131, 72, 170, 213, 99, 1, 48, 117, 84, 111, 40, 4, 207, 78, 90, 191, 199, 77, 69, 241, 8, 247, 160, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:29:58.124303Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:29:58.124389Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:29:59.959026Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=36 prev_hash=0x5d6987cdcf012f7fbeecff936b2054efb1138dbf89500cb508a3081430ded4db hash=0x926efbbfb77b0270003f30743ec6d97b2b3fbc943c73d12b27b691eed1444c82 producing_time=3.006001ms +2026-04-20T15:29:59.960766Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=36 current_state_root="3f9a7361725845dc6d81de95385da73ee2d17a39a9222438e08d1cc20011af2266c0813499446297e12a4270edd14ad5c3250ccc53a18eaa8ae7a23252a98a18" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x63e5623618aefcff55cda271acca2e8ea4a87334f71d171126f6a820c26fe99d"] proof_blobs=[] +2026-04-20T15:29:59.968043Z DEBUG StfBlueprint::apply_slot{context=Node da_height=36}: sov_chain_state: Setting next visible slot number next_visible_slot_number=32 +2026-04-20T15:29:59.973421Z DEBUG StfBlueprint::apply_slot{context=Node da_height=36}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x63e5623618aefcff55cda271acca2e8ea4a87334f71d171126f6a820c26fe99d}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:59.975428Z DEBUG StfBlueprint::apply_slot{context=Node da_height=36}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3f9a7361725845dc6d81de95385da73ee2d17a39a9222438e08d1cc20011af2266c0813499446297e12a4270edd14ad5c3250ccc53a18eaa8ae7a23252a98a18 next_version=36 sesssion_starting_time=256.718µs +2026-04-20T15:29:59.982826Z DEBUG StfBlueprint::apply_slot{context=Node da_height=36}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=505c8c2d6ef9b55ab21b032ddc68a136c682ab7556268aa0fb51abc96256f1d50ee0c6a5947aeca6486ffdcaa5049d209c1f4079ead51c9cf7a34f17318fb414 next_version=36 time=8.421325ms accesses_build_time=751.365µs finishing_session_time=7.274093ms +2026-04-20T15:29:59.983864Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3cfd38a2def5105f585473dd118f54cbd6e579cb08a201c5389a4703412a6664110e0e6b147d283754f05b287a170b34d2e775c083871452c66f8ebb0046757a" next_state_root="505c8c2d6ef9b55ab21b032ddc68a136c682ab7556268aa0fb51abc96256f1d50ee0c6a5947aeca6486ffdcaa5049d209c1f4079ead51c9cf7a34f17318fb414" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:29:59.988054Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 36, latest_finalized_slot_number: 35, sync_status: Syncing { synced_da_height: 35, target_da_height: 36 }, .. } +2026-04-20T15:29:59.989431Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=32 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 36, latest_finalized_slot_number: 35, sync_status: Syncing { synced_da_height: 35, target_da_height: 36 }, .. } +2026-04-20T15:29:59.990305Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=32 +2026-04-20T15:29:59.992664Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:29:59.993587Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=28 +2026-04-20T15:29:59.995340Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=33 +2026-04-20T15:29:59.996206Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:29:59.997640Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=33 sequence_number=34 +2026-04-20T15:29:59.997883Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:29:59.997933Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=34 blob_id=2147897294780410155804549924503754406 visible_slot_number_after_increase=33 visible_slots_to_advance=1 +2026-04-20T15:30:00.003471Z DEBUG compute_state_update{scope="sequencer" rollup_height=33 slot_number=33}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:30:00.003777Z DEBUG compute_state_update{scope="sequencer" rollup_height=33 slot_number=33}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=505c8c2d6ef9b55ab21b032ddc68a136c682ab7556268aa0fb51abc96256f1d50ee0c6a5947aeca6486ffdcaa5049d209c1f4079ead51c9cf7a34f17318fb414 next_version=37 sesssion_starting_time=1.932097ms +2026-04-20T15:30:00.004261Z DEBUG sov_stf_runner::runner: Block execution complete time=2.996629624s +2026-04-20T15:30:00.004366Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:30:00.004397Z DEBUG manage_blob_submission_inside_task{blob_id=2147897294780410155804549924503754406 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xf3ca64e49098c060cf8a6c81ac7e0c06dbbfe6cad64d23523ec679a224d4d23d sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=37 include_at=37 bytes=13 time=1.50939ms +2026-04-20T15:30:00.008865Z DEBUG compute_state_update{scope="sequencer" rollup_height=33 slot_number=33}: sov_state::nomt::prover_storage: computed next state root state_root=16bf9142d099d3d0504f743974657b840279421a1810f55054a34f226f3a8d6f563a2fdb52809a57e6980ec38cfeb3617567db18a79c9f4fcbe4650efb0e863f next_version=37 time=7.475651ms accesses_build_time=432.757µs finishing_session_time=5.003847ms +2026-04-20T15:30:00.502553Z DEBUG sp1_core_executor_runner::native: CHILD sp1_WsmW9NC9QB-xaA9for8ucw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:30:00.537715Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:30:00.548651Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1680446 cycles +2026-04-20T15:30:00.551257Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [97, 141, 133, 156, 40, 59, 24, 205, 193, 92, 145, 8, 89, 165, 132, 11, 221, 231, 188, 239, 49, 141, 230, 152, 130, 153, 76, 162, 51, 96, 37, 16, 6, 3, 3, 191, 244, 217, 174, 133, 216, 101, 188, 208, 54, 143, 63, 252, 31, 8, 204, 96, 162, 129, 28, 233, 9, 80, 70, 167, 139, 151, 2, 160, 53, 107, 100, 137, 255, 98, 188, 7, 205, 187, 216, 176, 54, 92, 148, 148, 245, 37, 165, 6, 213, 7, 128, 91, 62, 229, 227, 192, 224, 153, 89, 104, 47, 33, 38, 109, 63, 232, 9, 214, 124, 196, 151, 155, 12, 214, 199, 90, 201, 238, 221, 63, 133, 60, 212, 55, 13, 117, 31, 171, 47, 50, 4, 250, 211, 30, 24, 15, 133, 86, 166, 236, 58, 200, 193, 90, 72, 117, 74, 17, 161, 88, 221, 242, 46, 44, 235, 187, 151, 11, 75, 118, 232, 212, 88, 176, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:30:01.141410Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:30:01.141489Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:30:01.158420Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:30:01.399038Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:30:01.401273Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2607482 cycles +2026-04-20T15:30:01.401649Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [21, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 94, 51, 237, 43, 174, 14, 254, 97, 190, 183, 46, 86, 196, 45, 22, 92, 68, 81, 181, 129, 133, 253, 134, 20, 252, 35, 155, 113, 204, 49, 9, 113, 113, 191, 43, 207, 124, 217, 128, 11, 193, 159, 32, 19, 175, 254, 120, 228, 44, 37, 157, 227, 11, 37, 241, 99, 86, 140, 243, 7, 101, 65, 60, 247, 53, 107, 100, 137, 255, 98, 188, 7, 205, 187, 216, 176, 54, 92, 148, 148, 245, 37, 165, 6, 213, 7, 128, 91, 62, 229, 227, 192, 224, 153, 89, 104, 47, 33, 38, 109, 63, 232, 9, 214, 124, 196, 151, 155, 12, 214, 199, 90, 201, 238, 221, 63, 133, 60, 212, 55, 13, 117, 31, 171, 47, 50, 4, 250, 222, 15, 183, 81, 155, 97, 97, 40, 22, 150, 210, 63, 0, 195, 216, 248, 17, 172, 185, 104, 113, 251, 106, 31, 194, 144, 51, 250, 240, 186, 191, 183, 211, 30, 24, 15, 133, 86, 166, 236, 58, 200, 193, 90, 72, 117, 74, 17, 161, 88, 221, 242, 46, 44, 235, 187, 151, 11, 75, 118, 232, 212, 88, 176, 32, 0, 0, 0, 0, 0, 0, 0, 33, 87, 226, 242, 39, 49, 250, 210, 41, 143, 26, 188, 101, 19, 12, 136, 43, 105, 121, 236, 80, 118, 108, 155, 63, 154, 215, 73, 15, 107, 27, 67, 32, 0, 0, 0, 0, 0, 0, 0, 54, 246, 123, 188, 67, 61, 237, 103, 16, 229, 5, 146, 113, 8, 178, 215, 95, 95, 151, 239, 106, 28, 10, 135, 55, 55, 208, 95, 86, 190, 27, 9, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:30:02.366177Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:30:02.366256Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:30:02.367084Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=1951 +2026-04-20T15:30:02.369500Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:30:02.370029Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:30:02.370411Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=35 blob_id=2147897297645564918068517443869428291 +2026-04-20T15:30:02.963698Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=37 prev_hash=0x926efbbfb77b0270003f30743ec6d97b2b3fbc943c73d12b27b691eed1444c82 hash=0xf09f36454c149fd65e71fe0831ea0c2ef9c7ba07a895aa803c2a2b0e311e8aa3 producing_time=3.179079ms +2026-04-20T15:30:02.966789Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=37 current_state_root="505c8c2d6ef9b55ab21b032ddc68a136c682ab7556268aa0fb51abc96256f1d50ee0c6a5947aeca6486ffdcaa5049d209c1f4079ead51c9cf7a34f17318fb414" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf3ca64e49098c060cf8a6c81ac7e0c06dbbfe6cad64d23523ec679a224d4d23d"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf3f094fa39d7cd5f4b5004a65a27d4138eb0e6252bbad73b9e4686c61c084a6b, len=2001"] +2026-04-20T15:30:02.975358Z DEBUG StfBlueprint::apply_slot{context=Node da_height=37}: sov_chain_state: Setting next visible slot number next_visible_slot_number=33 +2026-04-20T15:30:02.981743Z DEBUG StfBlueprint::apply_slot{context=Node da_height=37}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xf3ca64e49098c060cf8a6c81ac7e0c06dbbfe6cad64d23523ec679a224d4d23d}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:02.984193Z DEBUG StfBlueprint::apply_slot{context=Node da_height=37}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=505c8c2d6ef9b55ab21b032ddc68a136c682ab7556268aa0fb51abc96256f1d50ee0c6a5947aeca6486ffdcaa5049d209c1f4079ead51c9cf7a34f17318fb414 next_version=37 sesssion_starting_time=265.058µs +2026-04-20T15:30:02.991732Z DEBUG StfBlueprint::apply_slot{context=Node da_height=37}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=16bf9142d099d3d0504f743974657b840279421a1810f55054a34f226f3a8d6f7dc91085e9ec370e5eb7f3baa791e51e14cccd3d10fa48114fe1d04ac0ccbe2c next_version=37 time=8.760023ms accesses_build_time=938.574µs finishing_session_time=7.374522ms +2026-04-20T15:30:02.993141Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3f9a7361725845dc6d81de95385da73ee2d17a39a9222438e08d1cc20011af2266c0813499446297e12a4270edd14ad5c3250ccc53a18eaa8ae7a23252a98a18" next_state_root="16bf9142d099d3d0504f743974657b840279421a1810f55054a34f226f3a8d6f7dc91085e9ec370e5eb7f3baa791e51e14cccd3d10fa48114fe1d04ac0ccbe2c" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:30:02.997934Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 37, latest_finalized_slot_number: 37, sync_status: Syncing { synced_da_height: 36, target_da_height: 37 }, .. } +2026-04-20T15:30:02.999384Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=33 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 37, latest_finalized_slot_number: 37, sync_status: Syncing { synced_da_height: 36, target_da_height: 37 }, .. } +2026-04-20T15:30:03.000337Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=33 +2026-04-20T15:30:03.003039Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:30:03.004024Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=29 +2026-04-20T15:30:03.005907Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=34 +2026-04-20T15:30:03.006828Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:30:03.011073Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 21. Final slot number 30 +2026-04-20T15:30:03.011857Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=34 sequence_number=36 +2026-04-20T15:30:03.012194Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=36 blob_id=2147897298424100770345779354050492104 visible_slot_number_after_increase=34 visible_slots_to_advance=1 +2026-04-20T15:30:03.012244Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:03.018189Z DEBUG compute_state_update{scope="sequencer" rollup_height=34 slot_number=34}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:30:03.018252Z DEBUG compute_state_update{scope="sequencer" rollup_height=34 slot_number=34}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:30:03.018517Z DEBUG sov_stf_runner::runner: Block execution complete time=3.014173721s +2026-04-20T15:30:03.018524Z DEBUG compute_state_update{scope="sequencer" rollup_height=34 slot_number=34}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=16bf9142d099d3d0504f743974657b840279421a1810f55054a34f226f3a8d6f7dc91085e9ec370e5eb7f3baa791e51e14cccd3d10fa48114fe1d04ac0ccbe2c next_version=38 sesssion_starting_time=2.439454ms +2026-04-20T15:30:03.018567Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:30:03.020687Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:30:03.021608Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:30:03.024378Z DEBUG compute_state_update{scope="sequencer" rollup_height=34 slot_number=34}: sov_state::nomt::prover_storage: computed next state root state_root=2fc8634c4b7b3abd5d9de5fae67727f89e190547c1d230739132a44bcddc65d51558d0b0b0ceebd94000ce11ad327bf3c58a44a6c867dc88d526dd95748ff2ae next_version=38 time=8.741303ms accesses_build_time=442.987µs finishing_session_time=5.773302ms +2026-04-20T15:30:03.024380Z DEBUG manage_blob_submission_inside_task{blob_id=2147897298424100770345779354050492104 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x3e6a7aeb7194698d083a9f13d957f737af56c591143d647e0382ff427bd9004e sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=38 include_at=38 bytes=13 time=7.70787ms +2026-04-20T15:30:05.838864Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XllntfBuR3ODftnnSU0OMA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:30:05.874046Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:30:05.887155Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1694312 cycles +2026-04-20T15:30:05.889973Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [81, 226, 133, 157, 245, 119, 237, 32, 147, 168, 213, 22, 195, 198, 198, 74, 185, 44, 37, 234, 67, 186, 104, 198, 92, 206, 184, 154, 4, 154, 232, 58, 18, 203, 188, 25, 187, 55, 235, 242, 4, 48, 193, 248, 148, 220, 175, 97, 207, 228, 21, 58, 94, 49, 61, 180, 209, 181, 110, 100, 87, 123, 59, 44, 120, 12, 53, 79, 160, 135, 189, 33, 6, 133, 102, 48, 128, 228, 79, 216, 37, 173, 204, 96, 215, 42, 22, 69, 22, 174, 222, 121, 199, 138, 111, 4, 84, 204, 33, 80, 150, 237, 197, 111, 112, 7, 224, 255, 198, 226, 2, 44, 120, 103, 24, 246, 230, 191, 27, 156, 236, 252, 169, 249, 164, 40, 89, 244, 137, 21, 196, 100, 116, 219, 163, 45, 105, 240, 220, 36, 12, 178, 212, 191, 62, 50, 232, 70, 159, 135, 84, 17, 126, 192, 238, 184, 248, 37, 163, 2, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:30:05.968272Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=38 prev_hash=0xf09f36454c149fd65e71fe0831ea0c2ef9c7ba07a895aa803c2a2b0e311e8aa3 hash=0x6ee90c44c61d21e63f9d3a10ef4568156bb76cd74ba06664e04aa7e07fa186cc producing_time=2.895251ms +2026-04-20T15:30:05.972116Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=38 current_state_root="16bf9142d099d3d0504f743974657b840279421a1810f55054a34f226f3a8d6f7dc91085e9ec370e5eb7f3baa791e51e14cccd3d10fa48114fe1d04ac0ccbe2c" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x3e6a7aeb7194698d083a9f13d957f737af56c591143d647e0382ff427bd9004e"] proof_blobs=[] +2026-04-20T15:30:05.981390Z DEBUG StfBlueprint::apply_slot{context=Node da_height=38}: sov_chain_state: Setting next visible slot number next_visible_slot_number=34 +2026-04-20T15:30:05.999532Z DEBUG StfBlueprint::apply_slot{context=Node da_height=38}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 21. Final slot number 30 +2026-04-20T15:30:05.999969Z DEBUG StfBlueprint::apply_slot{context=Node da_height=38}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x3e6a7aeb7194698d083a9f13d957f737af56c591143d647e0382ff427bd9004e}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:06.002445Z DEBUG StfBlueprint::apply_slot{context=Node da_height=38}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=16bf9142d099d3d0504f743974657b840279421a1810f55054a34f226f3a8d6f7dc91085e9ec370e5eb7f3baa791e51e14cccd3d10fa48114fe1d04ac0ccbe2c next_version=38 sesssion_starting_time=249.548µs +2026-04-20T15:30:06.011226Z DEBUG StfBlueprint::apply_slot{context=Node da_height=38}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2fc8634c4b7b3abd5d9de5fae67727f89e190547c1d230739132a44bcddc65d527951507693e2e96599aee7f8b775a8e4f72a6f4114fda81b890812ed9e08819 next_version=38 time=10.102284ms accesses_build_time=1.056373ms finishing_session_time=8.629414ms +2026-04-20T15:30:06.012403Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="16bf9142d099d3d0504f743974657b840279421a1810f55054a34f226f3a8d6f7dc91085e9ec370e5eb7f3baa791e51e14cccd3d10fa48114fe1d04ac0ccbe2c" next_state_root="2fc8634c4b7b3abd5d9de5fae67727f89e190547c1d230739132a44bcddc65d527951507693e2e96599aee7f8b775a8e4f72a6f4114fda81b890812ed9e08819" aggregated_proofs=1 proof_receipts=1 +2026-04-20T15:30:06.017533Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 38, latest_finalized_slot_number: 38, sync_status: Syncing { synced_da_height: 37, target_da_height: 38 }, .. } +2026-04-20T15:30:06.018884Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=34 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 38, latest_finalized_slot_number: 38, sync_status: Syncing { synced_da_height: 37, target_da_height: 38 }, .. } +2026-04-20T15:30:06.019808Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=34 +2026-04-20T15:30:06.022255Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:30:06.023223Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=30 +2026-04-20T15:30:06.025068Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=35 +2026-04-20T15:30:06.025951Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:30:06.027434Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=35 sequence_number=37 +2026-04-20T15:30:06.027724Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:06.027771Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=37 blob_id=2147897302070231038681546305283941899 visible_slot_number_after_increase=35 visible_slots_to_advance=1 +2026-04-20T15:30:06.032438Z DEBUG compute_state_update{scope="sequencer" rollup_height=35 slot_number=35}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:30:06.032575Z DEBUG compute_state_update{scope="sequencer" rollup_height=35 slot_number=35}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2fc8634c4b7b3abd5d9de5fae67727f89e190547c1d230739132a44bcddc65d527951507693e2e96599aee7f8b775a8e4f72a6f4114fda81b890812ed9e08819 next_version=39 sesssion_starting_time=1.56507ms +2026-04-20T15:30:06.032808Z DEBUG sov_stf_runner::runner: Block execution complete time=3.01425009s +2026-04-20T15:30:06.032849Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:30:06.034617Z DEBUG manage_blob_submission_inside_task{blob_id=2147897302070231038681546305283941899 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x44125aeeee884ba30633a429a8e76bbb73c9ab059c9f48580127008ffdab1bf0 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=39 include_at=39 bytes=13 time=1.581709ms +2026-04-20T15:30:06.035004Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:30:06.035656Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:30:06.036792Z DEBUG compute_state_update{scope="sequencer" rollup_height=35 slot_number=35}: sov_state::nomt::prover_storage: computed next state root state_root=547c42dbed93991c59e2bb1ace137d56916b81fea892ba9f4a406265ffec58e95086f937cb7fe359ce05aa3cd12bd8c9e67fcbe912fa8d8f7b9c0accd0168930 next_version=39 time=5.933351ms accesses_build_time=148.469µs finishing_session_time=4.173562ms +2026-04-20T15:30:06.496029Z DEBUG sp1_core_executor_runner::native: CHILD sp1_t2wjJNL2Rk6aAkhUM7m3YA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:30:06.515461Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:30:06.515539Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:30:06.529776Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:30:06.543014Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1643440 cycles +2026-04-20T15:30:06.545802Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [40, 29, 144, 133, 2, 3, 63, 110, 46, 144, 175, 238, 78, 239, 73, 165, 75, 0, 221, 151, 204, 26, 148, 112, 20, 246, 147, 233, 116, 42, 81, 200, 81, 70, 168, 226, 26, 201, 196, 181, 96, 198, 119, 223, 2, 51, 135, 99, 7, 146, 88, 53, 32, 164, 171, 180, 37, 124, 146, 8, 51, 20, 22, 207, 108, 150, 185, 124, 146, 141, 219, 108, 129, 174, 174, 253, 12, 253, 141, 130, 46, 139, 166, 253, 166, 6, 168, 118, 213, 37, 158, 240, 211, 251, 189, 126, 84, 78, 235, 26, 72, 5, 44, 98, 81, 187, 128, 203, 35, 30, 179, 30, 74, 10, 107, 185, 95, 35, 61, 50, 173, 93, 208, 63, 52, 253, 189, 218, 224, 84, 182, 80, 213, 49, 124, 10, 20, 45, 128, 24, 183, 102, 173, 99, 144, 82, 73, 174, 136, 211, 223, 4, 151, 46, 173, 51, 42, 225, 107, 199, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:30:07.119546Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:30:07.119621Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:30:08.972428Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=39 prev_hash=0x6ee90c44c61d21e63f9d3a10ef4568156bb76cd74ba06664e04aa7e07fa186cc hash=0x2f3c3381a0154a422fc2a266851c39867fd357e1f5cdb0abbcb21166041653ab producing_time=3.269118ms +2026-04-20T15:30:08.975568Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=39 current_state_root="2fc8634c4b7b3abd5d9de5fae67727f89e190547c1d230739132a44bcddc65d527951507693e2e96599aee7f8b775a8e4f72a6f4114fda81b890812ed9e08819" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x44125aeeee884ba30633a429a8e76bbb73c9ab059c9f48580127008ffdab1bf0"] proof_blobs=[] +2026-04-20T15:30:08.984558Z DEBUG StfBlueprint::apply_slot{context=Node da_height=39}: sov_chain_state: Setting next visible slot number next_visible_slot_number=35 +2026-04-20T15:30:08.991013Z DEBUG StfBlueprint::apply_slot{context=Node da_height=39}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x44125aeeee884ba30633a429a8e76bbb73c9ab059c9f48580127008ffdab1bf0}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:08.993548Z DEBUG StfBlueprint::apply_slot{context=Node da_height=39}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2fc8634c4b7b3abd5d9de5fae67727f89e190547c1d230739132a44bcddc65d527951507693e2e96599aee7f8b775a8e4f72a6f4114fda81b890812ed9e08819 next_version=39 sesssion_starting_time=274.789µs +2026-04-20T15:30:09.001241Z DEBUG StfBlueprint::apply_slot{context=Node da_height=39}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=547c42dbed93991c59e2bb1ace137d56916b81fea892ba9f4a406265ffec58e9207c0eb8e4f87047d09f15c553145e766b4dfbf555e74236827bb65727593507 next_version=39 time=8.827723ms accesses_build_time=830.595µs finishing_session_time=7.526321ms +2026-04-20T15:30:09.002466Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2fc8634c4b7b3abd5d9de5fae67727f89e190547c1d230739132a44bcddc65d527951507693e2e96599aee7f8b775a8e4f72a6f4114fda81b890812ed9e08819" next_state_root="547c42dbed93991c59e2bb1ace137d56916b81fea892ba9f4a406265ffec58e9207c0eb8e4f87047d09f15c553145e766b4dfbf555e74236827bb65727593507" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:30:09.006938Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 39, latest_finalized_slot_number: 39, sync_status: Syncing { synced_da_height: 38, target_da_height: 39 }, .. } +2026-04-20T15:30:09.008355Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=35 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 39, latest_finalized_slot_number: 39, sync_status: Syncing { synced_da_height: 38, target_da_height: 39 }, .. } +2026-04-20T15:30:09.009280Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=35 +2026-04-20T15:30:09.011774Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:30:09.012745Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=31 +2026-04-20T15:30:09.014728Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=36 +2026-04-20T15:30:09.015678Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:30:09.017191Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=36 sequence_number=38 +2026-04-20T15:30:09.017481Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:09.017514Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=38 blob_id=2147897305684910383142784619085745022 visible_slot_number_after_increase=36 visible_slots_to_advance=1 +2026-04-20T15:30:09.022048Z DEBUG compute_state_update{scope="sequencer" rollup_height=36 slot_number=36}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:30:09.022396Z DEBUG compute_state_update{scope="sequencer" rollup_height=36 slot_number=36}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=547c42dbed93991c59e2bb1ace137d56916b81fea892ba9f4a406265ffec58e9207c0eb8e4f87047d09f15c553145e766b4dfbf555e74236827bb65727593507 next_version=40 sesssion_starting_time=780.434µs +2026-04-20T15:30:09.022671Z DEBUG sov_stf_runner::runner: Block execution complete time=2.989829739s +2026-04-20T15:30:09.022727Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:30:09.024296Z DEBUG manage_blob_submission_inside_task{blob_id=2147897305684910383142784619085745022 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x9eea7e2815801b0ae84ce5327e77b9ced669b24de9d2100f743816e518b72c09 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=40 include_at=40 bytes=13 time=1.321182ms +2026-04-20T15:30:09.024930Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:30:09.025778Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:30:09.028006Z DEBUG compute_state_update{scope="sequencer" rollup_height=36 slot_number=36}: sov_state::nomt::prover_storage: computed next state root state_root=7e3dfc81556afcec59fdf7482fa98a825464c79b887e584c959af69ed30161633138bbbb4e692acf73f354b8940c6123511f4d8e4beda3e3a26a192d40576d40 next_version=40 time=6.788016ms accesses_build_time=388.177µs finishing_session_time=5.514124ms +2026-04-20T15:30:09.526592Z DEBUG sp1_core_executor_runner::native: CHILD sp1_D5w-jLw-TZC9Z4SRlD54PQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:30:09.561382Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:30:09.573189Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1676102 cycles +2026-04-20T15:30:09.575943Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [61, 78, 151, 217, 251, 169, 14, 141, 61, 191, 40, 139, 201, 156, 234, 163, 104, 7, 128, 8, 51, 90, 103, 155, 68, 139, 135, 204, 121, 11, 242, 120, 38, 54, 221, 77, 199, 122, 165, 207, 33, 151, 142, 60, 47, 143, 100, 37, 194, 57, 100, 69, 180, 1, 217, 253, 194, 3, 236, 251, 98, 237, 254, 121, 86, 206, 246, 41, 211, 44, 65, 110, 168, 169, 17, 235, 201, 49, 143, 189, 41, 27, 243, 184, 32, 86, 116, 47, 86, 120, 185, 20, 49, 134, 172, 97, 39, 252, 3, 34, 189, 119, 52, 246, 17, 170, 101, 7, 68, 65, 85, 97, 144, 216, 58, 203, 91, 141, 42, 137, 122, 52, 91, 88, 212, 73, 141, 83, 13, 63, 243, 155, 22, 108, 69, 181, 90, 110, 41, 81, 232, 94, 44, 137, 17, 110, 176, 165, 106, 83, 1, 210, 218, 40, 224, 181, 233, 94, 23, 132, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:30:10.162927Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:30:10.163018Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:30:11.977854Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=40 prev_hash=0x2f3c3381a0154a422fc2a266851c39867fd357e1f5cdb0abbcb21166041653ab hash=0x86cbb2b6e0d12d617f1e72c41193a287d98a2c661e8a13ec928c80791ea1c416 producing_time=3.196309ms +2026-04-20T15:30:11.986013Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=40 current_state_root="547c42dbed93991c59e2bb1ace137d56916b81fea892ba9f4a406265ffec58e9207c0eb8e4f87047d09f15c553145e766b4dfbf555e74236827bb65727593507" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9eea7e2815801b0ae84ce5327e77b9ced669b24de9d2100f743816e518b72c09"] proof_blobs=[] +2026-04-20T15:30:11.994370Z DEBUG StfBlueprint::apply_slot{context=Node da_height=40}: sov_chain_state: Setting next visible slot number next_visible_slot_number=36 +2026-04-20T15:30:12.000237Z DEBUG StfBlueprint::apply_slot{context=Node da_height=40}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x9eea7e2815801b0ae84ce5327e77b9ced669b24de9d2100f743816e518b72c09}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:12.002408Z DEBUG StfBlueprint::apply_slot{context=Node da_height=40}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=547c42dbed93991c59e2bb1ace137d56916b81fea892ba9f4a406265ffec58e9207c0eb8e4f87047d09f15c553145e766b4dfbf555e74236827bb65727593507 next_version=40 sesssion_starting_time=266.358µs +2026-04-20T15:30:12.009644Z DEBUG StfBlueprint::apply_slot{context=Node da_height=40}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=7e3dfc81556afcec59fdf7482fa98a825464c79b887e584c959af69ed30161633ef8b9437a29feb67772d252ab1143e218deaf1a19f3363b7844d3f740eae28b next_version=40 time=8.281426ms accesses_build_time=766.775µs finishing_session_time=7.104743ms +2026-04-20T15:30:12.010721Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="547c42dbed93991c59e2bb1ace137d56916b81fea892ba9f4a406265ffec58e9207c0eb8e4f87047d09f15c553145e766b4dfbf555e74236827bb65727593507" next_state_root="7e3dfc81556afcec59fdf7482fa98a825464c79b887e584c959af69ed30161633ef8b9437a29feb67772d252ab1143e218deaf1a19f3363b7844d3f740eae28b" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:30:12.015113Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 40, latest_finalized_slot_number: 40, sync_status: Synced { synced_da_height: 39 }, .. } +2026-04-20T15:30:12.016558Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=36 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 40, latest_finalized_slot_number: 40, sync_status: Synced { synced_da_height: 39 }, .. } +2026-04-20T15:30:12.017501Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=36 +2026-04-20T15:30:12.020060Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:30:12.021037Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=32 +2026-04-20T15:30:12.022928Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=37 +2026-04-20T15:30:12.023842Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:30:12.025482Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=37 sequence_number=39 +2026-04-20T15:30:12.025765Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=39 blob_id=2147897309321410644390268707148140138 visible_slot_number_after_increase=37 visible_slots_to_advance=1 +2026-04-20T15:30:12.025776Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:12.028701Z DEBUG sov_stf_runner::runner: Block execution complete time=3.005988264s +2026-04-20T15:30:12.028764Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:30:12.029937Z DEBUG compute_state_update{scope="sequencer" rollup_height=37 slot_number=37}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:30:12.030299Z DEBUG compute_state_update{scope="sequencer" rollup_height=37 slot_number=37}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7e3dfc81556afcec59fdf7482fa98a825464c79b887e584c959af69ed30161633ef8b9437a29feb67772d252ab1143e218deaf1a19f3363b7844d3f740eae28b next_version=41 sesssion_starting_time=368.057µs +2026-04-20T15:30:12.031818Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:30:12.032065Z DEBUG manage_blob_submission_inside_task{blob_id=2147897309321410644390268707148140138 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x35e8c7beabcba8fdbcebe42fa9e7b0d71b92275ed7bab3d4ded3acd162ef1ebd sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=41 include_at=41 bytes=13 time=1.414571ms +2026-04-20T15:30:12.032447Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:30:12.035611Z DEBUG compute_state_update{scope="sequencer" rollup_height=37 slot_number=37}: sov_state::nomt::prover_storage: computed next state root state_root=7ee84fc3dad6385e2fde2a10e3721d7bdef7e9a527eb68113702dba70d41df067935a186f454d5f6217e468d71902302d0a19277c7417b8b4aa1277fd5d14451 next_version=41 time=6.19669ms accesses_build_time=507.017µs finishing_session_time=5.176837ms +2026-04-20T15:30:12.483069Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sgh8FZMzRz-8LwZrAZegmA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:30:12.518403Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:30:12.529629Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1691747 cycles +2026-04-20T15:30:12.532448Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [43, 220, 106, 153, 26, 83, 64, 105, 97, 8, 201, 169, 30, 129, 218, 77, 153, 183, 121, 179, 21, 188, 205, 14, 78, 125, 181, 177, 76, 35, 59, 196, 92, 56, 101, 107, 60, 32, 251, 222, 139, 104, 251, 31, 231, 163, 188, 79, 98, 230, 186, 240, 193, 154, 205, 194, 158, 190, 199, 184, 187, 107, 125, 154, 18, 245, 123, 42, 223, 130, 208, 167, 237, 118, 219, 246, 13, 114, 139, 130, 61, 237, 13, 83, 83, 91, 217, 166, 46, 131, 46, 150, 82, 184, 199, 24, 7, 77, 234, 120, 123, 0, 69, 161, 58, 252, 64, 106, 51, 141, 59, 182, 201, 225, 39, 219, 230, 222, 210, 114, 133, 19, 75, 47, 13, 80, 205, 65, 228, 94, 146, 203, 246, 210, 206, 183, 116, 143, 4, 130, 27, 107, 157, 216, 219, 135, 106, 56, 25, 84, 85, 189, 21, 141, 7, 140, 227, 43, 111, 225, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:30:13.126206Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:30:13.126286Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:30:14.982291Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=41 prev_hash=0x86cbb2b6e0d12d617f1e72c41193a287d98a2c661e8a13ec928c80791ea1c416 hash=0x30325f22187aa33ad47a6233d5e187de04b42c4d25f54519791d41c1821f6f38 producing_time=2.850652ms +2026-04-20T15:30:14.992271Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=41 current_state_root="7e3dfc81556afcec59fdf7482fa98a825464c79b887e584c959af69ed30161633ef8b9437a29feb67772d252ab1143e218deaf1a19f3363b7844d3f740eae28b" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x35e8c7beabcba8fdbcebe42fa9e7b0d71b92275ed7bab3d4ded3acd162ef1ebd"] proof_blobs=[] +2026-04-20T15:30:14.999993Z DEBUG StfBlueprint::apply_slot{context=Node da_height=41}: sov_chain_state: Setting next visible slot number next_visible_slot_number=37 +2026-04-20T15:30:15.005547Z DEBUG StfBlueprint::apply_slot{context=Node da_height=41}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x35e8c7beabcba8fdbcebe42fa9e7b0d71b92275ed7bab3d4ded3acd162ef1ebd}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:15.007594Z DEBUG StfBlueprint::apply_slot{context=Node da_height=41}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7e3dfc81556afcec59fdf7482fa98a825464c79b887e584c959af69ed30161633ef8b9437a29feb67772d252ab1143e218deaf1a19f3363b7844d3f740eae28b next_version=41 sesssion_starting_time=221.898µs +2026-04-20T15:30:15.015547Z DEBUG StfBlueprint::apply_slot{context=Node da_height=41}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=7ee84fc3dad6385e2fde2a10e3721d7bdef7e9a527eb68113702dba70d41df0626d4d0c8051dd7f335fc79f48d4957aa2e47d7fd27cc4f5656f6162f8797eaab next_version=41 time=8.946972ms accesses_build_time=761.055µs finishing_session_time=7.833549ms +2026-04-20T15:30:15.016545Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="7e3dfc81556afcec59fdf7482fa98a825464c79b887e584c959af69ed30161633ef8b9437a29feb67772d252ab1143e218deaf1a19f3363b7844d3f740eae28b" next_state_root="7ee84fc3dad6385e2fde2a10e3721d7bdef7e9a527eb68113702dba70d41df0626d4d0c8051dd7f335fc79f48d4957aa2e47d7fd27cc4f5656f6162f8797eaab" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:30:15.020694Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 41, latest_finalized_slot_number: 41, sync_status: Synced { synced_da_height: 40 }, .. } +2026-04-20T15:30:15.022048Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=37 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 41, latest_finalized_slot_number: 41, sync_status: Synced { synced_da_height: 40 }, .. } +2026-04-20T15:30:15.022951Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=37 +2026-04-20T15:30:15.025416Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:30:15.026344Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=33 +2026-04-20T15:30:15.028117Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=38 +2026-04-20T15:30:15.029000Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:30:15.030465Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=38 sequence_number=40 +2026-04-20T15:30:15.030704Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:15.030734Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=40 blob_id=2147897312954179624710477250976974282 visible_slot_number_after_increase=38 visible_slots_to_advance=1 +2026-04-20T15:30:15.035392Z DEBUG compute_state_update{scope="sequencer" rollup_height=38 slot_number=38}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:30:15.035720Z DEBUG compute_state_update{scope="sequencer" rollup_height=38 slot_number=38}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7ee84fc3dad6385e2fde2a10e3721d7bdef7e9a527eb68113702dba70d41df0626d4d0c8051dd7f335fc79f48d4957aa2e47d7fd27cc4f5656f6162f8797eaab next_version=42 sesssion_starting_time=983.434µs +2026-04-20T15:30:15.035798Z DEBUG sov_stf_runner::runner: Block execution complete time=3.007046607s +2026-04-20T15:30:15.035846Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:30:15.037556Z DEBUG manage_blob_submission_inside_task{blob_id=2147897312954179624710477250976974282 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x52054b54514fe0cc7f733f9327ea59b8e2783c156cf1f58ad1e669d6e87cb59e sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=42 include_at=42 bytes=13 time=1.53824ms +2026-04-20T15:30:15.037641Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:30:15.038125Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:30:15.041285Z DEBUG compute_state_update{scope="sequencer" rollup_height=38 slot_number=38}: sov_state::nomt::prover_storage: computed next state root state_root=2fb85ec206c1e69da9d27163e20a5a5dffd4df7b66288c2a03964bade87ca09308146e005dc07a8ed7c4e56e403322cb86c8ed5eb850119f98821093af0c18cd next_version=42 time=7.082894ms accesses_build_time=506.836µs finishing_session_time=5.451725ms +2026-04-20T15:30:15.496834Z DEBUG sp1_core_executor_runner::native: CHILD sp1_32ePv264RoSsrG3nzpsyKQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:30:15.532094Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:30:15.544379Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1676995 cycles +2026-04-20T15:30:15.547126Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [60, 253, 56, 162, 222, 245, 16, 95, 88, 84, 115, 221, 17, 143, 84, 203, 214, 229, 121, 203, 8, 162, 1, 197, 56, 154, 71, 3, 65, 42, 102, 100, 17, 14, 14, 107, 20, 125, 40, 55, 84, 240, 91, 40, 122, 23, 11, 52, 210, 231, 117, 192, 131, 135, 20, 82, 198, 111, 142, 187, 0, 70, 117, 122, 39, 216, 20, 153, 86, 21, 13, 56, 113, 161, 221, 144, 37, 32, 250, 35, 137, 126, 9, 208, 216, 40, 77, 91, 241, 91, 224, 27, 247, 162, 38, 113, 115, 164, 25, 47, 192, 123, 111, 86, 113, 122, 52, 9, 71, 225, 0, 186, 137, 50, 121, 79, 2, 19, 45, 127, 61, 204, 179, 9, 248, 140, 211, 159, 93, 105, 135, 205, 207, 1, 47, 127, 190, 236, 255, 147, 107, 32, 84, 239, 177, 19, 141, 191, 137, 80, 12, 181, 8, 163, 8, 20, 48, 222, 212, 219, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:30:16.135247Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:30:16.135332Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:30:17.986222Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=42 prev_hash=0x30325f22187aa33ad47a6233d5e187de04b42c4d25f54519791d41c1821f6f38 hash=0xc99e4a9dfda200725877354bd690055184e155cbe7be027897cddf4e9b7a76c0 producing_time=3.14179ms +2026-04-20T15:30:17.989260Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=42 current_state_root="7ee84fc3dad6385e2fde2a10e3721d7bdef7e9a527eb68113702dba70d41df0626d4d0c8051dd7f335fc79f48d4957aa2e47d7fd27cc4f5656f6162f8797eaab" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x52054b54514fe0cc7f733f9327ea59b8e2783c156cf1f58ad1e669d6e87cb59e"] proof_blobs=[] +2026-04-20T15:30:17.997519Z DEBUG StfBlueprint::apply_slot{context=Node da_height=42}: sov_chain_state: Setting next visible slot number next_visible_slot_number=38 +2026-04-20T15:30:18.003425Z DEBUG StfBlueprint::apply_slot{context=Node da_height=42}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x52054b54514fe0cc7f733f9327ea59b8e2783c156cf1f58ad1e669d6e87cb59e}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:18.005593Z DEBUG StfBlueprint::apply_slot{context=Node da_height=42}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7ee84fc3dad6385e2fde2a10e3721d7bdef7e9a527eb68113702dba70d41df0626d4d0c8051dd7f335fc79f48d4957aa2e47d7fd27cc4f5656f6162f8797eaab next_version=42 sesssion_starting_time=270.818µs +2026-04-20T15:30:18.013297Z DEBUG StfBlueprint::apply_slot{context=Node da_height=42}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2fb85ec206c1e69da9d27163e20a5a5dffd4df7b66288c2a03964bade87ca0936a704716a14375f11be548ef81f9360d761e7da8a17f9f91d2785fbe642072f4 next_version=42 time=8.758493ms accesses_build_time=770.385µs finishing_session_time=7.573931ms +2026-04-20T15:30:18.014368Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="7ee84fc3dad6385e2fde2a10e3721d7bdef7e9a527eb68113702dba70d41df0626d4d0c8051dd7f335fc79f48d4957aa2e47d7fd27cc4f5656f6162f8797eaab" next_state_root="2fb85ec206c1e69da9d27163e20a5a5dffd4df7b66288c2a03964bade87ca0936a704716a14375f11be548ef81f9360d761e7da8a17f9f91d2785fbe642072f4" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:30:18.018590Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 42, latest_finalized_slot_number: 42, sync_status: Synced { synced_da_height: 41 }, .. } +2026-04-20T15:30:18.020001Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=38 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 42, latest_finalized_slot_number: 42, sync_status: Synced { synced_da_height: 41 }, .. } +2026-04-20T15:30:18.021017Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=38 +2026-04-20T15:30:18.023683Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:30:18.024706Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=34 +2026-04-20T15:30:18.026544Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=39 +2026-04-20T15:30:18.027522Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:30:18.029033Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=39 sequence_number=41 +2026-04-20T15:30:18.029327Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=41 blob_id=2147897316578573465674371659456624272 visible_slot_number_after_increase=39 visible_slots_to_advance=1 +2026-04-20T15:30:18.029367Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:18.031104Z DEBUG sov_stf_runner::runner: Block execution complete time=2.995261733s +2026-04-20T15:30:18.031226Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:30:18.033386Z DEBUG compute_state_update{scope="sequencer" rollup_height=39 slot_number=39}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:30:18.033697Z DEBUG compute_state_update{scope="sequencer" rollup_height=39 slot_number=39}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2fb85ec206c1e69da9d27163e20a5a5dffd4df7b66288c2a03964bade87ca0936a704716a14375f11be548ef81f9360d761e7da8a17f9f91d2785fbe642072f4 next_version=43 sesssion_starting_time=317.148µs +2026-04-20T15:30:18.033869Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:30:18.034627Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:30:18.036610Z DEBUG manage_blob_submission_inside_task{blob_id=2147897316578573465674371659456624272 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x8a1c07705335cd9be6f7ddbd75605c150f360187462f8c69b971bf3f236e41cb sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=43 include_at=43 bytes=13 time=1.712649ms +2026-04-20T15:30:18.039191Z DEBUG compute_state_update{scope="sequencer" rollup_height=39 slot_number=39}: sov_state::nomt::prover_storage: computed next state root state_root=5f8380de33fb69188b471aba68f8d6b618385b093703ab3c2acfe6f6b75913986ab856295484e47d7a34e00ebf3e056a355b2efde8b345adf2e72c419945d47b next_version=43 time=6.19844ms accesses_build_time=382.968µs finishing_session_time=5.402875ms +2026-04-20T15:30:18.519125Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mwIt2cVvRNmAoXRG5Nw77A==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:30:18.552837Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:30:18.564290Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1640690 cycles +2026-04-20T15:30:18.566849Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [63, 154, 115, 97, 114, 88, 69, 220, 109, 129, 222, 149, 56, 93, 167, 62, 226, 209, 122, 57, 169, 34, 36, 56, 224, 141, 28, 194, 0, 17, 175, 34, 102, 192, 129, 52, 153, 68, 98, 151, 225, 42, 66, 112, 237, 209, 74, 213, 195, 37, 12, 204, 83, 161, 142, 170, 138, 231, 162, 50, 82, 169, 138, 24, 70, 205, 189, 164, 34, 103, 15, 124, 232, 198, 182, 153, 232, 119, 80, 61, 11, 231, 92, 96, 32, 69, 74, 153, 151, 17, 38, 39, 192, 243, 151, 108, 77, 153, 14, 175, 55, 223, 47, 232, 41, 54, 156, 40, 204, 180, 82, 0, 160, 96, 228, 242, 10, 23, 185, 113, 120, 137, 51, 209, 253, 185, 241, 228, 146, 110, 251, 191, 183, 123, 2, 112, 0, 63, 48, 116, 62, 198, 217, 123, 43, 63, 188, 148, 60, 115, 209, 43, 39, 182, 145, 238, 209, 68, 76, 130, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:30:19.142324Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:30:19.142403Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:30:20.990821Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=43 prev_hash=0xc99e4a9dfda200725877354bd690055184e155cbe7be027897cddf4e9b7a76c0 hash=0xe7009aabee50595a5128ab28f8fc1173e99ffb24f1a1d79ce301f55932f8acd1 producing_time=3.231369ms +2026-04-20T15:30:20.993794Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=43 current_state_root="2fb85ec206c1e69da9d27163e20a5a5dffd4df7b66288c2a03964bade87ca0936a704716a14375f11be548ef81f9360d761e7da8a17f9f91d2785fbe642072f4" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x8a1c07705335cd9be6f7ddbd75605c150f360187462f8c69b971bf3f236e41cb"] proof_blobs=[] +2026-04-20T15:30:21.002283Z DEBUG StfBlueprint::apply_slot{context=Node da_height=43}: sov_chain_state: Setting next visible slot number next_visible_slot_number=39 +2026-04-20T15:30:21.008390Z DEBUG StfBlueprint::apply_slot{context=Node da_height=43}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x8a1c07705335cd9be6f7ddbd75605c150f360187462f8c69b971bf3f236e41cb}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:21.010575Z DEBUG StfBlueprint::apply_slot{context=Node da_height=43}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2fb85ec206c1e69da9d27163e20a5a5dffd4df7b66288c2a03964bade87ca0936a704716a14375f11be548ef81f9360d761e7da8a17f9f91d2785fbe642072f4 next_version=43 sesssion_starting_time=271.909µs +2026-04-20T15:30:21.017930Z DEBUG StfBlueprint::apply_slot{context=Node da_height=43}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=5f8380de33fb69188b471aba68f8d6b618385b093703ab3c2acfe6f6b75913983a8b1fa6c6f798c03298588846c0c05870f1695f8bb3ce0635d9a8cedbad703b next_version=43 time=8.410796ms accesses_build_time=769.575µs finishing_session_time=7.210663ms +2026-04-20T15:30:21.019061Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2fb85ec206c1e69da9d27163e20a5a5dffd4df7b66288c2a03964bade87ca0936a704716a14375f11be548ef81f9360d761e7da8a17f9f91d2785fbe642072f4" next_state_root="5f8380de33fb69188b471aba68f8d6b618385b093703ab3c2acfe6f6b75913983a8b1fa6c6f798c03298588846c0c05870f1695f8bb3ce0635d9a8cedbad703b" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:30:21.023246Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 43, latest_finalized_slot_number: 43, sync_status: Synced { synced_da_height: 42 }, .. } +2026-04-20T15:30:21.024680Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=39 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 43, latest_finalized_slot_number: 43, sync_status: Synced { synced_da_height: 42 }, .. } +2026-04-20T15:30:21.025651Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=39 +2026-04-20T15:30:21.028266Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:30:21.029249Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=35 +2026-04-20T15:30:21.031145Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=40 +2026-04-20T15:30:21.032062Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:30:21.033585Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=40 sequence_number=42 +2026-04-20T15:30:21.033847Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=42 blob_id=2147897320211368383909326208276990154 visible_slot_number_after_increase=40 visible_slots_to_advance=1 +2026-04-20T15:30:21.033841Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:21.039083Z DEBUG compute_state_update{scope="sequencer" rollup_height=40 slot_number=40}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:30:21.039419Z DEBUG compute_state_update{scope="sequencer" rollup_height=40 slot_number=40}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5f8380de33fb69188b471aba68f8d6b618385b093703ab3c2acfe6f6b75913983a8b1fa6c6f798c03298588846c0c05870f1695f8bb3ce0635d9a8cedbad703b next_version=44 sesssion_starting_time=1.466851ms +2026-04-20T15:30:21.039826Z DEBUG sov_stf_runner::runner: Block execution complete time=3.008617747s +2026-04-20T15:30:21.039909Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:30:21.041225Z DEBUG manage_blob_submission_inside_task{blob_id=2147897320211368383909326208276990154 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x2fa7beb07d4d9a9ebe926b6e30ef284c34768e28b308694012e4d1678c0dcdd2 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=44 include_at=44 bytes=13 time=1.656739ms +2026-04-20T15:30:21.043836Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:30:21.044600Z DEBUG compute_state_update{scope="sequencer" rollup_height=40 slot_number=40}: sov_state::nomt::prover_storage: computed next state root state_root=35af80f4ce004ea127721e7a9fc6a0cb88c1a7b21d5e64ec45cc104581407bac32bcb981d29fa37d96b4057d9b4c34dbe71fe79efec5acaf49218d7e2428134a next_version=44 time=7.021755ms accesses_build_time=367.488µs finishing_session_time=5.085037ms +2026-04-20T15:30:21.044904Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:30:21.511230Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nFs0XJ7cRiOX5BDW5-tqEw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:30:21.547787Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:30:21.559351Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1756078 cycles +2026-04-20T15:30:21.561975Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [80, 92, 140, 45, 110, 249, 181, 90, 178, 27, 3, 45, 220, 104, 161, 54, 198, 130, 171, 117, 86, 38, 138, 160, 251, 81, 171, 201, 98, 86, 241, 213, 14, 224, 198, 165, 148, 122, 236, 166, 72, 111, 253, 202, 165, 4, 157, 32, 156, 31, 64, 121, 234, 213, 28, 156, 247, 163, 79, 23, 49, 143, 180, 20, 72, 8, 236, 118, 175, 125, 25, 142, 81, 130, 16, 104, 232, 225, 169, 97, 157, 66, 82, 140, 206, 221, 53, 118, 124, 74, 15, 215, 164, 4, 32, 232, 111, 49, 178, 56, 183, 120, 142, 159, 170, 61, 218, 95, 232, 74, 146, 152, 84, 131, 147, 123, 133, 22, 100, 12, 127, 221, 100, 107, 155, 231, 170, 134, 240, 159, 54, 69, 76, 20, 159, 214, 94, 113, 254, 8, 49, 234, 12, 46, 249, 199, 186, 7, 168, 149, 170, 128, 60, 42, 43, 14, 49, 30, 138, 163, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:30:22.203291Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:30:22.203378Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:30:23.995069Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=44 prev_hash=0xe7009aabee50595a5128ab28f8fc1173e99ffb24f1a1d79ce301f55932f8acd1 hash=0xa73d789a043827b38ba091354125ad9c30d1e71cb83083daf10ce84bbcda0a35 producing_time=2.372884ms +2026-04-20T15:30:24.002229Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=44 current_state_root="5f8380de33fb69188b471aba68f8d6b618385b093703ab3c2acfe6f6b75913983a8b1fa6c6f798c03298588846c0c05870f1695f8bb3ce0635d9a8cedbad703b" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x2fa7beb07d4d9a9ebe926b6e30ef284c34768e28b308694012e4d1678c0dcdd2"] proof_blobs=[] +2026-04-20T15:30:24.006135Z DEBUG StfBlueprint::apply_slot{context=Node da_height=44}: sov_chain_state: Setting next visible slot number next_visible_slot_number=40 +2026-04-20T15:30:24.008816Z DEBUG StfBlueprint::apply_slot{context=Node da_height=44}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x2fa7beb07d4d9a9ebe926b6e30ef284c34768e28b308694012e4d1678c0dcdd2}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:24.009737Z DEBUG StfBlueprint::apply_slot{context=Node da_height=44}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5f8380de33fb69188b471aba68f8d6b618385b093703ab3c2acfe6f6b75913983a8b1fa6c6f798c03298588846c0c05870f1695f8bb3ce0635d9a8cedbad703b next_version=44 sesssion_starting_time=107.289µs +2026-04-20T15:30:24.016077Z DEBUG StfBlueprint::apply_slot{context=Node da_height=44}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=35af80f4ce004ea127721e7a9fc6a0cb88c1a7b21d5e64ec45cc104581407bac5ee0e0721c9fae787c6c4b43c72c2007f5b85129eb9ef67a07541fd54656bd79 next_version=44 time=6.766916ms accesses_build_time=314.748µs finishing_session_time=6.283349ms +2026-04-20T15:30:24.016576Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="5f8380de33fb69188b471aba68f8d6b618385b093703ab3c2acfe6f6b75913983a8b1fa6c6f798c03298588846c0c05870f1695f8bb3ce0635d9a8cedbad703b" next_state_root="35af80f4ce004ea127721e7a9fc6a0cb88c1a7b21d5e64ec45cc104581407bac5ee0e0721c9fae787c6c4b43c72c2007f5b85129eb9ef67a07541fd54656bd79" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:30:24.018159Z DEBUG sov_stf_runner::runner: Block execution complete time=2.978269394s +2026-04-20T15:30:24.018204Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:30:24.019830Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 44, latest_finalized_slot_number: 43, sync_status: Synced { synced_da_height: 43 }, .. } +2026-04-20T15:30:24.021387Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:30:24.021656Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=40 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 44, latest_finalized_slot_number: 43, sync_status: Synced { synced_da_height: 43 }, .. } +2026-04-20T15:30:24.021759Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:30:24.022658Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=40 +2026-04-20T15:30:24.025172Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:30:24.026128Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=36 +2026-04-20T15:30:24.027892Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=41 +2026-04-20T15:30:24.028766Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:30:24.030179Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=41 sequence_number=43 +2026-04-20T15:30:24.030384Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:24.030445Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=43 blob_id=2147897323834518768313826250296302608 visible_slot_number_after_increase=41 visible_slots_to_advance=1 +2026-04-20T15:30:24.032596Z DEBUG compute_state_update{scope="sequencer" rollup_height=41 slot_number=41}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=35af80f4ce004ea127721e7a9fc6a0cb88c1a7b21d5e64ec45cc104581407bac5ee0e0721c9fae787c6c4b43c72c2007f5b85129eb9ef67a07541fd54656bd79 next_version=45 sesssion_starting_time=122.099µs +2026-04-20T15:30:24.037040Z DEBUG manage_blob_submission_inside_task{blob_id=2147897323834518768313826250296302608 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xa4ed3b0f4331c669298654d8c27d34845ee0f7d7384d473263157981d76427c5 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=45 include_at=45 bytes=13 time=1.678599ms +2026-04-20T15:30:24.037860Z DEBUG compute_state_update{scope="sequencer" rollup_height=41 slot_number=41}: sov_state::nomt::prover_storage: computed next state root state_root=3e4430440255fc33e60e6bd586fb6ea13b7b6ffcf89b2d3d071be14c5e9607162482b5be6348e9473ec81b165cc929f7415c5587130cc96d1664a9166e887742 next_version=45 time=5.548534ms accesses_build_time=162.589µs finishing_session_time=5.197946ms +2026-04-20T15:30:24.569948Z DEBUG sp1_core_executor_runner::native: CHILD sp1_GPEizhTrQF6kmYO1NUjHQw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:30:24.629924Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:30:24.643661Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 3920881 cycles +2026-04-20T15:30:24.646488Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [22, 191, 145, 66, 208, 153, 211, 208, 80, 79, 116, 57, 116, 101, 123, 132, 2, 121, 66, 26, 24, 16, 245, 80, 84, 163, 79, 34, 111, 58, 141, 111, 125, 201, 16, 133, 233, 236, 55, 14, 94, 183, 243, 186, 167, 145, 229, 30, 20, 204, 205, 61, 16, 250, 72, 17, 79, 225, 208, 74, 192, 204, 190, 44, 22, 170, 229, 82, 234, 160, 29, 251, 54, 17, 148, 168, 244, 23, 8, 197, 211, 226, 5, 166, 184, 104, 136, 193, 101, 101, 223, 234, 219, 117, 119, 75, 17, 54, 90, 163, 112, 141, 4, 98, 210, 154, 224, 228, 198, 247, 84, 122, 19, 27, 99, 254, 47, 213, 229, 102, 80, 74, 233, 188, 6, 208, 178, 243, 110, 233, 12, 68, 198, 29, 33, 230, 63, 157, 58, 16, 239, 69, 104, 21, 107, 183, 108, 215, 75, 160, 102, 100, 224, 74, 167, 224, 127, 161, 134, 204, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:30:26.016907Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:30:26.016979Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:30:26.998906Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=45 prev_hash=0xa73d789a043827b38ba091354125ad9c30d1e71cb83083daf10ce84bbcda0a35 hash=0x18e6f343ec31133da849a798bca2b70c1eaf256cfcd32f33dc5de074154eb768 producing_time=2.862391ms +2026-04-20T15:30:27.000745Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=45 current_state_root="35af80f4ce004ea127721e7a9fc6a0cb88c1a7b21d5e64ec45cc104581407bac5ee0e0721c9fae787c6c4b43c72c2007f5b85129eb9ef67a07541fd54656bd79" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa4ed3b0f4331c669298654d8c27d34845ee0f7d7384d473263157981d76427c5"] proof_blobs=[] +2026-04-20T15:30:27.008796Z DEBUG StfBlueprint::apply_slot{context=Node da_height=45}: sov_chain_state: Setting next visible slot number next_visible_slot_number=41 +2026-04-20T15:30:27.014876Z DEBUG StfBlueprint::apply_slot{context=Node da_height=45}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xa4ed3b0f4331c669298654d8c27d34845ee0f7d7384d473263157981d76427c5}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:27.017028Z DEBUG StfBlueprint::apply_slot{context=Node da_height=45}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=35af80f4ce004ea127721e7a9fc6a0cb88c1a7b21d5e64ec45cc104581407bac5ee0e0721c9fae787c6c4b43c72c2007f5b85129eb9ef67a07541fd54656bd79 next_version=45 sesssion_starting_time=265.258µs +2026-04-20T15:30:27.024273Z DEBUG StfBlueprint::apply_slot{context=Node da_height=45}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3e4430440255fc33e60e6bd586fb6ea13b7b6ffcf89b2d3d071be14c5e9607166a45041d35cf08477602b0ab1144cef664123bd808ecbb4ed178dd5f015df891 next_version=45 time=8.306426ms accesses_build_time=783.975µs finishing_session_time=7.114384ms +2026-04-20T15:30:27.025405Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="5f8380de33fb69188b471aba68f8d6b618385b093703ab3c2acfe6f6b75913983a8b1fa6c6f798c03298588846c0c05870f1695f8bb3ce0635d9a8cedbad703b" next_state_root="3e4430440255fc33e60e6bd586fb6ea13b7b6ffcf89b2d3d071be14c5e9607166a45041d35cf08477602b0ab1144cef664123bd808ecbb4ed178dd5f015df891" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:30:27.029799Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 45, latest_finalized_slot_number: 44, sync_status: Syncing { synced_da_height: 44, target_da_height: 45 }, .. } +2026-04-20T15:30:27.031223Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=41 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 45, latest_finalized_slot_number: 44, sync_status: Syncing { synced_da_height: 44, target_da_height: 45 }, .. } +2026-04-20T15:30:27.032203Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=41 +2026-04-20T15:30:27.034694Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:30:27.035694Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=37 +2026-04-20T15:30:27.037496Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=42 +2026-04-20T15:30:27.038440Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:30:27.040009Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=42 sequence_number=44 +2026-04-20T15:30:27.040304Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=44 blob_id=2147897327472197222545588853167420628 visible_slot_number_after_increase=42 visible_slots_to_advance=1 +2026-04-20T15:30:27.040360Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:27.044627Z DEBUG compute_state_update{scope="sequencer" rollup_height=42 slot_number=42}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:30:27.044946Z DEBUG compute_state_update{scope="sequencer" rollup_height=42 slot_number=42}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3e4430440255fc33e60e6bd586fb6ea13b7b6ffcf89b2d3d071be14c5e9607166a45041d35cf08477602b0ab1144cef664123bd808ecbb4ed178dd5f015df891 next_version=46 sesssion_starting_time=591.946µs +2026-04-20T15:30:27.044998Z DEBUG sov_stf_runner::runner: Block execution complete time=3.026802049s +2026-04-20T15:30:27.045037Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:30:27.046959Z DEBUG manage_blob_submission_inside_task{blob_id=2147897327472197222545588853167420628 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xe7df5c69f0a149b11ea15076c8fe7d87ba0a1e667a3b4f7975f153d302c386e0 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=46 include_at=46 bytes=13 time=1.308062ms +2026-04-20T15:30:27.047173Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:30:27.047777Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:30:27.049803Z DEBUG compute_state_update{scope="sequencer" rollup_height=42 slot_number=42}: sov_state::nomt::prover_storage: computed next state root state_root=396be4ec5e3f4507baa349b11ba6c27c991b9e2a08dfb74dad9c79cd487c3899407ee4385ec390ce0577f9efb20cd2dfed4f45820755f5c4d063904232b76bf5 next_version=46 time=5.869102ms accesses_build_time=408.548µs finishing_session_time=4.768559ms +2026-04-20T15:30:27.465034Z DEBUG sp1_core_executor_runner::native: CHILD sp1_FqS7tTSLTW6LpaehjXi43A==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:30:27.500034Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:30:27.511873Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1683875 cycles +2026-04-20T15:30:27.514588Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [47, 200, 99, 76, 75, 123, 58, 189, 93, 157, 229, 250, 230, 119, 39, 248, 158, 25, 5, 71, 193, 210, 48, 115, 145, 50, 164, 75, 205, 220, 101, 213, 39, 149, 21, 7, 105, 62, 46, 150, 89, 154, 238, 127, 139, 119, 90, 142, 79, 114, 166, 244, 17, 79, 218, 129, 184, 144, 129, 46, 217, 224, 136, 25, 34, 122, 173, 114, 58, 83, 219, 207, 226, 13, 129, 238, 137, 40, 242, 222, 88, 244, 79, 71, 144, 68, 116, 150, 41, 3, 199, 131, 221, 190, 175, 72, 9, 223, 131, 161, 1, 64, 75, 5, 52, 4, 224, 47, 85, 119, 49, 6, 55, 78, 61, 203, 205, 46, 55, 130, 76, 208, 99, 243, 206, 166, 26, 74, 47, 60, 51, 129, 160, 21, 74, 66, 47, 194, 162, 102, 133, 28, 57, 134, 127, 211, 87, 225, 245, 205, 176, 171, 188, 178, 17, 102, 4, 22, 83, 171, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:30:28.103954Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:30:28.104029Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:30:30.003117Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=46 prev_hash=0x18e6f343ec31133da849a798bca2b70c1eaf256cfcd32f33dc5de074154eb768 hash=0xe4dc317b65324cb431404136a890079974173a4d77e123c4516bef35fd2d1fad producing_time=3.281899ms +2026-04-20T15:30:30.007249Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=46 current_state_root="3e4430440255fc33e60e6bd586fb6ea13b7b6ffcf89b2d3d071be14c5e9607166a45041d35cf08477602b0ab1144cef664123bd808ecbb4ed178dd5f015df891" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe7df5c69f0a149b11ea15076c8fe7d87ba0a1e667a3b4f7975f153d302c386e0"] proof_blobs=[] +2026-04-20T15:30:30.015175Z DEBUG StfBlueprint::apply_slot{context=Node da_height=46}: sov_chain_state: Setting next visible slot number next_visible_slot_number=42 +2026-04-20T15:30:30.021046Z DEBUG StfBlueprint::apply_slot{context=Node da_height=46}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xe7df5c69f0a149b11ea15076c8fe7d87ba0a1e667a3b4f7975f153d302c386e0}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:30.023187Z DEBUG StfBlueprint::apply_slot{context=Node da_height=46}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3e4430440255fc33e60e6bd586fb6ea13b7b6ffcf89b2d3d071be14c5e9607166a45041d35cf08477602b0ab1144cef664123bd808ecbb4ed178dd5f015df891 next_version=46 sesssion_starting_time=263.628µs +2026-04-20T15:30:30.031199Z DEBUG StfBlueprint::apply_slot{context=Node da_height=46}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=396be4ec5e3f4507baa349b11ba6c27c991b9e2a08dfb74dad9c79cd487c3899207236080178b2f1ab864c0bd5e3b333f241cd250fce4adefb06c4bec5fba43c next_version=46 time=9.061431ms accesses_build_time=774.035µs finishing_session_time=7.877559ms +2026-04-20T15:30:30.032326Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="35af80f4ce004ea127721e7a9fc6a0cb88c1a7b21d5e64ec45cc104581407bac5ee0e0721c9fae787c6c4b43c72c2007f5b85129eb9ef67a07541fd54656bd79" next_state_root="396be4ec5e3f4507baa349b11ba6c27c991b9e2a08dfb74dad9c79cd487c3899207236080178b2f1ab864c0bd5e3b333f241cd250fce4adefb06c4bec5fba43c" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:30:30.036812Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 46, latest_finalized_slot_number: 45, sync_status: Syncing { synced_da_height: 45, target_da_height: 46 }, .. } +2026-04-20T15:30:30.038191Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=42 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 46, latest_finalized_slot_number: 45, sync_status: Syncing { synced_da_height: 45, target_da_height: 46 }, .. } +2026-04-20T15:30:30.039133Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=42 +2026-04-20T15:30:30.041601Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:30:30.042876Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=38 +2026-04-20T15:30:30.044772Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=43 +2026-04-20T15:30:30.045787Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:30:30.047667Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=43 sequence_number=45 +2026-04-20T15:30:30.047939Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:30.047970Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=45 blob_id=2147897331108619244512583775346242866 visible_slot_number_after_increase=43 visible_slots_to_advance=1 +2026-04-20T15:30:30.048756Z DEBUG sov_stf_runner::runner: Block execution complete time=3.003722399s +2026-04-20T15:30:30.048864Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:30:30.051825Z DEBUG compute_state_update{scope="sequencer" rollup_height=43 slot_number=43}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:30:30.052140Z DEBUG compute_state_update{scope="sequencer" rollup_height=43 slot_number=43}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=396be4ec5e3f4507baa349b11ba6c27c991b9e2a08dfb74dad9c79cd487c3899207236080178b2f1ab864c0bd5e3b333f241cd250fce4adefb06c4bec5fba43c next_version=47 sesssion_starting_time=328.468µs +2026-04-20T15:30:30.054849Z DEBUG manage_blob_submission_inside_task{blob_id=2147897331108619244512583775346242866 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x8527a02f24a4d1d09ae420591ed0a58304b91e82d37ff3285898308a9c461061 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=47 include_at=47 bytes=13 time=1.60137ms +2026-04-20T15:30:30.057890Z DEBUG compute_state_update{scope="sequencer" rollup_height=43 slot_number=43}: sov_state::nomt::prover_storage: computed next state root state_root=5f5afdffcc52da6a09c244d9195010d4a5fcfa56fb2b4be9a16ffc45675df8306c56b2baaa612972177d904338ca304a693c869f56fd9ad56c8b587040547719 next_version=47 time=6.461058ms accesses_build_time=375.567µs finishing_session_time=5.656233ms +2026-04-20T15:30:30.509513Z DEBUG sp1_core_executor_runner::native: CHILD sp1_kbgfxhX-TtaeFwRdB2jSWQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:30:30.543715Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:30:30.555618Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1653459 cycles +2026-04-20T15:30:30.558279Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [84, 124, 66, 219, 237, 147, 153, 28, 89, 226, 187, 26, 206, 19, 125, 86, 145, 107, 129, 254, 168, 146, 186, 159, 74, 64, 98, 101, 255, 236, 88, 233, 32, 124, 14, 184, 228, 248, 112, 71, 208, 159, 21, 197, 83, 20, 94, 118, 107, 77, 251, 245, 85, 231, 66, 54, 130, 123, 182, 87, 39, 89, 53, 7, 10, 79, 32, 239, 142, 246, 86, 124, 181, 70, 200, 209, 46, 58, 78, 182, 189, 23, 17, 161, 160, 242, 167, 177, 27, 17, 105, 54, 188, 25, 233, 234, 89, 243, 79, 26, 228, 243, 127, 190, 173, 163, 130, 85, 218, 174, 145, 19, 67, 253, 222, 218, 88, 120, 24, 192, 69, 138, 128, 44, 225, 64, 241, 49, 134, 203, 178, 182, 224, 209, 45, 97, 127, 30, 114, 196, 17, 147, 162, 135, 217, 138, 44, 102, 30, 138, 19, 236, 146, 140, 128, 121, 30, 161, 196, 22, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:30:31.140036Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:30:31.140113Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:30:31.196617Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:30:31.441543Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:30:31.443823Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2607482 cycles +2026-04-20T15:30:31.444192Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [31, 0, 0, 0, 0, 0, 0, 0, 40, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 81, 226, 133, 157, 245, 119, 237, 32, 147, 168, 213, 22, 195, 198, 198, 74, 185, 44, 37, 234, 67, 186, 104, 198, 92, 206, 184, 154, 4, 154, 232, 58, 18, 203, 188, 25, 187, 55, 235, 242, 4, 48, 193, 248, 148, 220, 175, 97, 207, 228, 21, 58, 94, 49, 61, 180, 209, 181, 110, 100, 87, 123, 59, 44, 10, 79, 32, 239, 142, 246, 86, 124, 181, 70, 200, 209, 46, 58, 78, 182, 189, 23, 17, 161, 160, 242, 167, 177, 27, 17, 105, 54, 188, 25, 233, 234, 89, 243, 79, 26, 228, 243, 127, 190, 173, 163, 130, 85, 218, 174, 145, 19, 67, 253, 222, 218, 88, 120, 24, 192, 69, 138, 128, 44, 225, 64, 241, 49, 137, 21, 196, 100, 116, 219, 163, 45, 105, 240, 220, 36, 12, 178, 212, 191, 62, 50, 232, 70, 159, 135, 84, 17, 126, 192, 238, 184, 248, 37, 163, 2, 134, 203, 178, 182, 224, 209, 45, 97, 127, 30, 114, 196, 17, 147, 162, 135, 217, 138, 44, 102, 30, 138, 19, 236, 146, 140, 128, 121, 30, 161, 196, 22, 32, 0, 0, 0, 0, 0, 0, 0, 33, 87, 226, 242, 39, 49, 250, 210, 41, 143, 26, 188, 101, 19, 12, 136, 43, 105, 121, 236, 80, 118, 108, 155, 63, 154, 215, 73, 15, 107, 27, 67, 32, 0, 0, 0, 0, 0, 0, 0, 54, 246, 123, 188, 67, 61, 237, 103, 16, 229, 5, 146, 113, 8, 178, 215, 95, 95, 151, 239, 106, 28, 10, 135, 55, 55, 208, 95, 86, 190, 27, 9, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:30:32.411016Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:30:32.411094Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:30:32.411970Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=1951 +2026-04-20T15:30:32.414241Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:30:32.414791Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:30:32.415117Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=46 blob_id=2147897333967791066424161091875235433 +2026-04-20T15:30:33.007434Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=47 prev_hash=0xe4dc317b65324cb431404136a890079974173a4d77e123c4516bef35fd2d1fad hash=0x18fb72fd9bf36507b989cf4ada28e5c8a9d2e4f06a7f376517954b97e4d66c14 producing_time=2.870601ms +2026-04-20T15:30:33.011224Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=47 current_state_root="396be4ec5e3f4507baa349b11ba6c27c991b9e2a08dfb74dad9c79cd487c3899207236080178b2f1ab864c0bd5e3b333f241cd250fce4adefb06c4bec5fba43c" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x8527a02f24a4d1d09ae420591ed0a58304b91e82d37ff3285898308a9c461061"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x5da911590a014b7333093a530a00079a2b49f325a16d6830e3b99323ee775776, len=2001"] +2026-04-20T15:30:33.018832Z DEBUG StfBlueprint::apply_slot{context=Node da_height=47}: sov_chain_state: Setting next visible slot number next_visible_slot_number=43 +2026-04-20T15:30:33.024428Z DEBUG StfBlueprint::apply_slot{context=Node da_height=47}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x8527a02f24a4d1d09ae420591ed0a58304b91e82d37ff3285898308a9c461061}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:33.026861Z DEBUG StfBlueprint::apply_slot{context=Node da_height=47}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=396be4ec5e3f4507baa349b11ba6c27c991b9e2a08dfb74dad9c79cd487c3899207236080178b2f1ab864c0bd5e3b333f241cd250fce4adefb06c4bec5fba43c next_version=47 sesssion_starting_time=246.968µs +2026-04-20T15:30:33.034248Z DEBUG StfBlueprint::apply_slot{context=Node da_height=47}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=5f5afdffcc52da6a09c244d9195010d4a5fcfa56fb2b4be9a16ffc45675df8304e9e5e84ccd0da29c8f1abab2c13a01284a0777ffa3b07f5dc3d06eeb997ad6b next_version=47 time=8.582505ms accesses_build_time=935.544µs finishing_session_time=7.235183ms +2026-04-20T15:30:33.035461Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3e4430440255fc33e60e6bd586fb6ea13b7b6ffcf89b2d3d071be14c5e9607166a45041d35cf08477602b0ab1144cef664123bd808ecbb4ed178dd5f015df891" next_state_root="5f5afdffcc52da6a09c244d9195010d4a5fcfa56fb2b4be9a16ffc45675df8304e9e5e84ccd0da29c8f1abab2c13a01284a0777ffa3b07f5dc3d06eeb997ad6b" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:30:33.040126Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 47, latest_finalized_slot_number: 46, sync_status: Syncing { synced_da_height: 46, target_da_height: 47 }, .. } +2026-04-20T15:30:33.041591Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=43 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 47, latest_finalized_slot_number: 46, sync_status: Syncing { synced_da_height: 46, target_da_height: 47 }, .. } +2026-04-20T15:30:33.042546Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=43 +2026-04-20T15:30:33.045077Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:30:33.046054Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=39 +2026-04-20T15:30:33.047871Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=44 +2026-04-20T15:30:33.048807Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:30:33.052932Z DEBUG sov_stf_runner::runner: Block execution complete time=3.004088966s +2026-04-20T15:30:33.052978Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:30:33.053292Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 31. Final slot number 40 +2026-04-20T15:30:33.053883Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=44 sequence_number=47 +2026-04-20T15:30:33.054100Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:33.054146Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=47 blob_id=2147897334742701005130976092975835772 visible_slot_number_after_increase=44 visible_slots_to_advance=1 +2026-04-20T15:30:33.055151Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:30:33.056273Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:30:33.057924Z DEBUG compute_state_update{scope="sequencer" rollup_height=44 slot_number=44}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:30:33.058220Z DEBUG compute_state_update{scope="sequencer" rollup_height=44 slot_number=44}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5f5afdffcc52da6a09c244d9195010d4a5fcfa56fb2b4be9a16ffc45675df8304e9e5e84ccd0da29c8f1abab2c13a01284a0777ffa3b07f5dc3d06eeb997ad6b next_version=48 sesssion_starting_time=308.238µs +2026-04-20T15:30:33.060547Z DEBUG manage_blob_submission_inside_task{blob_id=2147897334742701005130976092975835772 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x04e5a778ce609b7d98712eb3da9a26b7a6a936c50f26faa69230ecb201aa5c07 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=48 include_at=48 bytes=13 time=1.56284ms +2026-04-20T15:30:33.064169Z DEBUG compute_state_update{scope="sequencer" rollup_height=44 slot_number=44}: sov_state::nomt::prover_storage: computed next state root state_root=192605917f3861dc47379b358b1f1ea2173de687447a435a19c7bc05e9547661053f66a6ef8d3c6c17f7263333d7d233c237662ce178b64cd95f7078db4d043f next_version=48 time=6.781096ms accesses_build_time=511.137µs finishing_session_time=5.858932ms +2026-04-20T15:30:35.908220Z DEBUG sp1_core_executor_runner::native: CHILD sp1_avSgmlbXSZO5vy6V_64M0g==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:30:35.941758Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:30:35.953967Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1641042 cycles +2026-04-20T15:30:35.956606Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [126, 61, 252, 129, 85, 106, 252, 236, 89, 253, 247, 72, 47, 169, 138, 130, 84, 100, 199, 155, 136, 126, 88, 76, 149, 154, 246, 158, 211, 1, 97, 99, 62, 248, 185, 67, 122, 41, 254, 182, 119, 114, 210, 82, 171, 17, 67, 226, 24, 222, 175, 26, 25, 243, 54, 59, 120, 68, 211, 247, 64, 234, 226, 139, 93, 22, 141, 115, 78, 70, 244, 95, 120, 43, 141, 172, 125, 178, 30, 215, 215, 44, 240, 203, 92, 104, 133, 86, 214, 141, 49, 119, 205, 147, 170, 162, 72, 117, 62, 158, 53, 87, 230, 174, 16, 1, 212, 157, 108, 142, 105, 30, 88, 232, 226, 113, 17, 176, 73, 197, 142, 171, 132, 176, 213, 200, 99, 29, 48, 50, 95, 34, 24, 122, 163, 58, 212, 122, 98, 51, 213, 225, 135, 222, 4, 180, 44, 77, 37, 245, 69, 25, 121, 29, 65, 193, 130, 31, 111, 56, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:30:36.012027Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=48 prev_hash=0x18fb72fd9bf36507b989cf4ada28e5c8a9d2e4f06a7f376517954b97e4d66c14 hash=0x5c30bd122e9198f22998d09e6a5a788511db2e4603307cfe1593da9140128ad4 producing_time=3.19094ms +2026-04-20T15:30:36.016100Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=48 current_state_root="5f5afdffcc52da6a09c244d9195010d4a5fcfa56fb2b4be9a16ffc45675df8304e9e5e84ccd0da29c8f1abab2c13a01284a0777ffa3b07f5dc3d06eeb997ad6b" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x04e5a778ce609b7d98712eb3da9a26b7a6a936c50f26faa69230ecb201aa5c07"] proof_blobs=[] +2026-04-20T15:30:36.025331Z DEBUG StfBlueprint::apply_slot{context=Node da_height=48}: sov_chain_state: Setting next visible slot number next_visible_slot_number=44 +2026-04-20T15:30:36.044011Z DEBUG StfBlueprint::apply_slot{context=Node da_height=48}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 31. Final slot number 40 +2026-04-20T15:30:36.044502Z DEBUG StfBlueprint::apply_slot{context=Node da_height=48}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x04e5a778ce609b7d98712eb3da9a26b7a6a936c50f26faa69230ecb201aa5c07}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:36.046978Z DEBUG StfBlueprint::apply_slot{context=Node da_height=48}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5f5afdffcc52da6a09c244d9195010d4a5fcfa56fb2b4be9a16ffc45675df8304e9e5e84ccd0da29c8f1abab2c13a01284a0777ffa3b07f5dc3d06eeb997ad6b next_version=48 sesssion_starting_time=269.548µs +2026-04-20T15:30:36.056800Z DEBUG StfBlueprint::apply_slot{context=Node da_height=48}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=192605917f3861dc47379b358b1f1ea2173de687447a435a19c7bc05e95476613cff91410c769f3bdad3b149c409da1ada094496e6ec047810461485a88f1fec next_version=48 time=11.190528ms accesses_build_time=1.081063ms finishing_session_time=9.684688ms +2026-04-20T15:30:36.057970Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="396be4ec5e3f4507baa349b11ba6c27c991b9e2a08dfb74dad9c79cd487c3899207236080178b2f1ab864c0bd5e3b333f241cd250fce4adefb06c4bec5fba43c" next_state_root="192605917f3861dc47379b358b1f1ea2173de687447a435a19c7bc05e95476613cff91410c769f3bdad3b149c409da1ada094496e6ec047810461485a88f1fec" aggregated_proofs=1 proof_receipts=1 +2026-04-20T15:30:36.063425Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 48, latest_finalized_slot_number: 48, sync_status: Syncing { synced_da_height: 47, target_da_height: 48 }, .. } +2026-04-20T15:30:36.064811Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=44 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 48, latest_finalized_slot_number: 48, sync_status: Syncing { synced_da_height: 47, target_da_height: 48 }, .. } +2026-04-20T15:30:36.065763Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=44 +2026-04-20T15:30:36.068347Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:30:36.069328Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=40 +2026-04-20T15:30:36.071144Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=45 +2026-04-20T15:30:36.072109Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:30:36.073652Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=45 sequence_number=48 +2026-04-20T15:30:36.073935Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:36.073970Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=48 blob_id=2147897338393657886734897365139696204 visible_slot_number_after_increase=45 visible_slots_to_advance=1 +2026-04-20T15:30:36.078810Z DEBUG compute_state_update{scope="sequencer" rollup_height=45 slot_number=45}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:30:36.079122Z DEBUG compute_state_update{scope="sequencer" rollup_height=45 slot_number=45}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=192605917f3861dc47379b358b1f1ea2173de687447a435a19c7bc05e95476613cff91410c769f3bdad3b149c409da1ada094496e6ec047810461485a88f1fec next_version=49 sesssion_starting_time=1.200983ms +2026-04-20T15:30:36.080849Z DEBUG manage_blob_submission_inside_task{blob_id=2147897338393657886734897365139696204 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x66f9c40ebc2769c90bf5316dbd96a67b197d1e1541590f4442d9fed4ce733880 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=49 include_at=49 bytes=13 time=1.584419ms +2026-04-20T15:30:36.084668Z DEBUG compute_state_update{scope="sequencer" rollup_height=45 slot_number=45}: sov_state::nomt::prover_storage: computed next state root state_root=5a93fa7676a5efa58f8191d4fd05069d6d421e615e17491bf775f753704b46927afe1adb38c57324d2f67c36bffac2e16fcdba812d432db977eddeee577844c7 next_version=49 time=7.155814ms accesses_build_time=393.897µs finishing_session_time=5.436755ms +2026-04-20T15:30:36.097664Z DEBUG sov_stf_runner::runner: Block execution complete time=3.044692403s +2026-04-20T15:30:36.097716Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:30:36.099931Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:30:36.100647Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:30:36.522802Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fP-xNSKNT1q5yaAg768zFg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:30:36.559110Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:30:36.565318Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:30:36.565365Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:30:36.573110Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1728528 cycles +2026-04-20T15:30:36.575879Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [126, 232, 79, 195, 218, 214, 56, 94, 47, 222, 42, 16, 227, 114, 29, 123, 222, 247, 233, 165, 39, 235, 104, 17, 55, 2, 219, 167, 13, 65, 223, 6, 38, 212, 208, 200, 5, 29, 215, 243, 53, 252, 121, 244, 141, 73, 87, 170, 46, 71, 215, 253, 39, 204, 79, 86, 86, 246, 22, 47, 135, 151, 234, 171, 67, 37, 71, 154, 83, 50, 43, 251, 166, 30, 94, 8, 126, 164, 109, 57, 102, 81, 167, 32, 231, 210, 105, 43, 188, 161, 181, 78, 199, 41, 74, 11, 116, 226, 118, 36, 94, 191, 46, 120, 45, 132, 50, 24, 233, 67, 224, 20, 126, 135, 9, 175, 64, 234, 6, 45, 161, 241, 215, 173, 90, 20, 48, 243, 201, 158, 74, 157, 253, 162, 0, 114, 88, 119, 53, 75, 214, 144, 5, 81, 132, 225, 85, 203, 231, 190, 2, 120, 151, 205, 223, 78, 155, 122, 118, 192, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:30:37.230395Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:30:37.230475Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:30:39.016751Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=49 prev_hash=0x5c30bd122e9198f22998d09e6a5a788511db2e4603307cfe1593da9140128ad4 hash=0xbceb7db3e3c12c0090b28e452a582f8d6c920c6b82875deb40dc2628c19e7d61 producing_time=3.241199ms +2026-04-20T15:30:39.020753Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=49 current_state_root="192605917f3861dc47379b358b1f1ea2173de687447a435a19c7bc05e95476613cff91410c769f3bdad3b149c409da1ada094496e6ec047810461485a88f1fec" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x66f9c40ebc2769c90bf5316dbd96a67b197d1e1541590f4442d9fed4ce733880"] proof_blobs=[] +2026-04-20T15:30:39.029078Z DEBUG StfBlueprint::apply_slot{context=Node da_height=49}: sov_chain_state: Setting next visible slot number next_visible_slot_number=45 +2026-04-20T15:30:39.035041Z DEBUG StfBlueprint::apply_slot{context=Node da_height=49}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x66f9c40ebc2769c90bf5316dbd96a67b197d1e1541590f4442d9fed4ce733880}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:39.037211Z DEBUG StfBlueprint::apply_slot{context=Node da_height=49}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=192605917f3861dc47379b358b1f1ea2173de687447a435a19c7bc05e95476613cff91410c769f3bdad3b149c409da1ada094496e6ec047810461485a88f1fec next_version=49 sesssion_starting_time=259.509µs +2026-04-20T15:30:39.044777Z DEBUG StfBlueprint::apply_slot{context=Node da_height=49}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=5a93fa7676a5efa58f8191d4fd05069d6d421e615e17491bf775f753704b469276bf5deef588cb5de41fa5e9951ff50c192d8c198927745026a25cf44940c84a next_version=49 time=8.617744ms accesses_build_time=780.295µs finishing_session_time=7.436742ms +2026-04-20T15:30:39.045861Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="192605917f3861dc47379b358b1f1ea2173de687447a435a19c7bc05e95476613cff91410c769f3bdad3b149c409da1ada094496e6ec047810461485a88f1fec" next_state_root="5a93fa7676a5efa58f8191d4fd05069d6d421e615e17491bf775f753704b469276bf5deef588cb5de41fa5e9951ff50c192d8c198927745026a25cf44940c84a" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:30:39.050091Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 49, latest_finalized_slot_number: 49, sync_status: Syncing { synced_da_height: 48, target_da_height: 49 }, .. } +2026-04-20T15:30:39.051501Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=45 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 49, latest_finalized_slot_number: 49, sync_status: Syncing { synced_da_height: 48, target_da_height: 49 }, .. } +2026-04-20T15:30:39.052429Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=45 +2026-04-20T15:30:39.054890Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:30:39.055858Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=41 +2026-04-20T15:30:39.057685Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=46 +2026-04-20T15:30:39.058602Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:30:39.060105Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=46 sequence_number=49 +2026-04-20T15:30:39.060377Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=49 blob_id=2147897342004698019853474375864028355 visible_slot_number_after_increase=46 visible_slots_to_advance=1 +2026-04-20T15:30:39.060377Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:39.065679Z DEBUG compute_state_update{scope="sequencer" rollup_height=46 slot_number=46}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:30:39.065997Z DEBUG sov_stf_runner::runner: Block execution complete time=2.968288779s +2026-04-20T15:30:39.065987Z DEBUG compute_state_update{scope="sequencer" rollup_height=46 slot_number=46}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5a93fa7676a5efa58f8191d4fd05069d6d421e615e17491bf775f753704b469276bf5deef588cb5de41fa5e9951ff50c192d8c198927745026a25cf44940c84a next_version=50 sesssion_starting_time=1.806398ms +2026-04-20T15:30:39.066046Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:30:39.067300Z DEBUG manage_blob_submission_inside_task{blob_id=2147897342004698019853474375864028355 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x85e36bc99e275982b9fc4ef3c21c1de104f2daec73321678180e550a1435ef11 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=50 include_at=50 bytes=13 time=1.64842ms +2026-04-20T15:30:39.068576Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:30:39.069104Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:30:39.071800Z DEBUG compute_state_update{scope="sequencer" rollup_height=46 slot_number=46}: sov_state::nomt::prover_storage: computed next state root state_root=53f2435f632fa52ee77806c55427b980b0ecde1e24ca2ae18e9fc107a7e804436d76444f36a14a6c7f942a4386fe222905f086e326e42e158439d44753c6f59a next_version=50 time=7.991899ms accesses_build_time=364.228µs finishing_session_time=5.719743ms +2026-04-20T15:30:39.579932Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eiROmHSqR6eN-Jy0mtnSGA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:30:39.615278Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:30:39.626786Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1693445 cycles +2026-04-20T15:30:39.627980Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [47, 184, 94, 194, 6, 193, 230, 157, 169, 210, 113, 99, 226, 10, 90, 93, 255, 212, 223, 123, 102, 40, 140, 42, 3, 150, 75, 173, 232, 124, 160, 147, 106, 112, 71, 22, 161, 67, 117, 241, 27, 229, 72, 239, 129, 249, 54, 13, 118, 30, 125, 168, 161, 127, 159, 145, 210, 120, 95, 190, 100, 32, 114, 244, 85, 214, 79, 41, 64, 169, 162, 194, 139, 250, 156, 155, 34, 94, 48, 247, 98, 11, 9, 123, 240, 236, 209, 99, 223, 142, 114, 51, 86, 108, 153, 151, 111, 225, 95, 109, 52, 49, 10, 234, 84, 152, 193, 145, 61, 84, 31, 135, 128, 12, 77, 209, 174, 11, 235, 117, 248, 175, 135, 17, 186, 235, 220, 240, 231, 0, 154, 171, 238, 80, 89, 90, 81, 40, 171, 40, 248, 252, 17, 115, 233, 159, 251, 36, 241, 161, 215, 156, 227, 1, 245, 89, 50, 248, 172, 209, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:30:40.224243Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:30:40.224329Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:30:42.021715Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=50 prev_hash=0xbceb7db3e3c12c0090b28e452a582f8d6c920c6b82875deb40dc2628c19e7d61 hash=0xe52d3f6daf4ad0adc4faa66862c4b411d32ec2cedf3970c240dd09aa649f0d1e producing_time=3.09164ms +2026-04-20T15:30:42.029007Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=50 current_state_root="5a93fa7676a5efa58f8191d4fd05069d6d421e615e17491bf775f753704b469276bf5deef588cb5de41fa5e9951ff50c192d8c198927745026a25cf44940c84a" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x85e36bc99e275982b9fc4ef3c21c1de104f2daec73321678180e550a1435ef11"] proof_blobs=[] +2026-04-20T15:30:42.037226Z DEBUG StfBlueprint::apply_slot{context=Node da_height=50}: sov_chain_state: Setting next visible slot number next_visible_slot_number=46 +2026-04-20T15:30:42.043112Z DEBUG StfBlueprint::apply_slot{context=Node da_height=50}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x85e36bc99e275982b9fc4ef3c21c1de104f2daec73321678180e550a1435ef11}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:42.045295Z DEBUG StfBlueprint::apply_slot{context=Node da_height=50}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5a93fa7676a5efa58f8191d4fd05069d6d421e615e17491bf775f753704b469276bf5deef588cb5de41fa5e9951ff50c192d8c198927745026a25cf44940c84a next_version=50 sesssion_starting_time=257.639µs +2026-04-20T15:30:42.052057Z DEBUG StfBlueprint::apply_slot{context=Node da_height=50}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=53f2435f632fa52ee77806c55427b980b0ecde1e24ca2ae18e9fc107a7e804436292be6a68a1148e161711ac92fc93a816dd5eee6a7b0e61f0926c4ac3f5cfd2 next_version=50 time=7.80508ms accesses_build_time=773.115µs finishing_session_time=6.620337ms +2026-04-20T15:30:42.053123Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="5a93fa7676a5efa58f8191d4fd05069d6d421e615e17491bf775f753704b469276bf5deef588cb5de41fa5e9951ff50c192d8c198927745026a25cf44940c84a" next_state_root="53f2435f632fa52ee77806c55427b980b0ecde1e24ca2ae18e9fc107a7e804436292be6a68a1148e161711ac92fc93a816dd5eee6a7b0e61f0926c4ac3f5cfd2" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:30:42.057561Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 50, latest_finalized_slot_number: 50, sync_status: Syncing { synced_da_height: 49, target_da_height: 50 }, .. } +2026-04-20T15:30:42.059033Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=46 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 50, latest_finalized_slot_number: 50, sync_status: Syncing { synced_da_height: 49, target_da_height: 50 }, .. } +2026-04-20T15:30:42.060017Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=46 +2026-04-20T15:30:42.062822Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:30:42.063805Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=42 +2026-04-20T15:30:42.065679Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=47 +2026-04-20T15:30:42.066658Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:30:42.068308Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=47 sequence_number=50 +2026-04-20T15:30:42.068589Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=50 blob_id=2147897345641163690456819352096915143 visible_slot_number_after_increase=47 visible_slots_to_advance=1 +2026-04-20T15:30:42.068590Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:42.072817Z DEBUG compute_state_update{scope="sequencer" rollup_height=47 slot_number=47}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:30:42.073154Z DEBUG compute_state_update{scope="sequencer" rollup_height=47 slot_number=47}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=53f2435f632fa52ee77806c55427b980b0ecde1e24ca2ae18e9fc107a7e804436292be6a68a1148e161711ac92fc93a816dd5eee6a7b0e61f0926c4ac3f5cfd2 next_version=51 sesssion_starting_time=541.496µs +2026-04-20T15:30:42.073224Z DEBUG sov_stf_runner::runner: Block execution complete time=3.007186176s +2026-04-20T15:30:42.073270Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:30:42.074766Z DEBUG manage_blob_submission_inside_task{blob_id=2147897345641163690456819352096915143 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x484877f3e88e8d8d3be980208fa9b255c4acf8b748e792c1e09939d184b6ff51 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=51 include_at=51 bytes=13 time=1.237782ms +2026-04-20T15:30:42.075490Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:30:42.076179Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:30:42.079020Z DEBUG compute_state_update{scope="sequencer" rollup_height=47 slot_number=47}: sov_state::nomt::prover_storage: computed next state root state_root=4131f50ed9158a72e2167f6942c9781e9aabed3088abd4938aa659e5bfa424272f9ccba77289a1ae8bddbf7461f817f09343e015f18317e43fa99a6bbedee485 next_version=51 time=6.851965ms accesses_build_time=421.617µs finishing_session_time=5.743442ms +2026-04-20T15:30:42.534643Z DEBUG sp1_core_executor_runner::native: CHILD sp1_7ZfqI7niQHqDmpkxMXiLtw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:30:42.572486Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:30:42.583716Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1761651 cycles +2026-04-20T15:30:42.586393Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [95, 131, 128, 222, 51, 251, 105, 24, 139, 71, 26, 186, 104, 248, 214, 182, 24, 56, 91, 9, 55, 3, 171, 60, 42, 207, 230, 246, 183, 89, 19, 152, 58, 139, 31, 166, 198, 247, 152, 192, 50, 152, 88, 136, 70, 192, 192, 88, 112, 241, 105, 95, 139, 179, 206, 6, 53, 217, 168, 206, 219, 173, 112, 59, 35, 231, 218, 73, 211, 6, 209, 221, 138, 95, 110, 224, 186, 30, 91, 174, 131, 147, 48, 132, 154, 37, 26, 13, 146, 28, 53, 83, 167, 201, 31, 201, 81, 190, 251, 6, 214, 97, 98, 154, 69, 142, 31, 10, 28, 143, 88, 194, 82, 9, 31, 49, 32, 186, 12, 81, 31, 236, 177, 231, 154, 144, 199, 93, 167, 61, 120, 154, 4, 56, 39, 179, 139, 160, 145, 53, 65, 37, 173, 156, 48, 209, 231, 28, 184, 48, 131, 218, 241, 12, 232, 75, 188, 218, 10, 53, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:30:43.207153Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:30:43.207232Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:30:45.026427Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=51 prev_hash=0xe52d3f6daf4ad0adc4faa66862c4b411d32ec2cedf3970c240dd09aa649f0d1e hash=0x6318a5d9aad74899d2c0aee9e28df499a222ee4bb508be30b1ee2eccac185bb7 producing_time=3.299249ms +2026-04-20T15:30:45.035361Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=51 current_state_root="53f2435f632fa52ee77806c55427b980b0ecde1e24ca2ae18e9fc107a7e804436292be6a68a1148e161711ac92fc93a816dd5eee6a7b0e61f0926c4ac3f5cfd2" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x484877f3e88e8d8d3be980208fa9b255c4acf8b748e792c1e09939d184b6ff51"] proof_blobs=[] +2026-04-20T15:30:45.043799Z DEBUG StfBlueprint::apply_slot{context=Node da_height=51}: sov_chain_state: Setting next visible slot number next_visible_slot_number=47 +2026-04-20T15:30:45.049931Z DEBUG StfBlueprint::apply_slot{context=Node da_height=51}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x484877f3e88e8d8d3be980208fa9b255c4acf8b748e792c1e09939d184b6ff51}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:45.052149Z DEBUG StfBlueprint::apply_slot{context=Node da_height=51}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=53f2435f632fa52ee77806c55427b980b0ecde1e24ca2ae18e9fc107a7e804436292be6a68a1148e161711ac92fc93a816dd5eee6a7b0e61f0926c4ac3f5cfd2 next_version=51 sesssion_starting_time=248.658µs +2026-04-20T15:30:45.059387Z DEBUG StfBlueprint::apply_slot{context=Node da_height=51}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4131f50ed9158a72e2167f6942c9781e9aabed3088abd4938aa659e5bfa4242722b20248b1fe013ad29b4fe748b3da51b3bea0f3331a5469177efb4096ec9496 next_version=51 time=8.288466ms accesses_build_time=783.325µs finishing_session_time=7.107114ms +2026-04-20T15:30:45.060459Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="53f2435f632fa52ee77806c55427b980b0ecde1e24ca2ae18e9fc107a7e804436292be6a68a1148e161711ac92fc93a816dd5eee6a7b0e61f0926c4ac3f5cfd2" next_state_root="4131f50ed9158a72e2167f6942c9781e9aabed3088abd4938aa659e5bfa4242722b20248b1fe013ad29b4fe748b3da51b3bea0f3331a5469177efb4096ec9496" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:30:45.064709Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 51, latest_finalized_slot_number: 51, sync_status: Synced { synced_da_height: 50 }, .. } +2026-04-20T15:30:45.066175Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=47 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 51, latest_finalized_slot_number: 51, sync_status: Synced { synced_da_height: 50 }, .. } +2026-04-20T15:30:45.067199Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=47 +2026-04-20T15:30:45.069880Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:30:45.070893Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=43 +2026-04-20T15:30:45.072726Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=48 +2026-04-20T15:30:45.073646Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:30:45.075246Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=48 sequence_number=51 +2026-04-20T15:30:45.075563Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=51 blob_id=2147897349276365851726292524821492703 visible_slot_number_after_increase=48 visible_slots_to_advance=1 +2026-04-20T15:30:45.075547Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:45.078900Z DEBUG sov_stf_runner::runner: Block execution complete time=3.005639377s +2026-04-20T15:30:45.078947Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:30:45.079470Z DEBUG compute_state_update{scope="sequencer" rollup_height=48 slot_number=48}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:30:45.079766Z DEBUG compute_state_update{scope="sequencer" rollup_height=48 slot_number=48}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4131f50ed9158a72e2167f6942c9781e9aabed3088abd4938aa659e5bfa4242722b20248b1fe013ad29b4fe748b3da51b3bea0f3331a5469177efb4096ec9496 next_version=52 sesssion_starting_time=299.978µs +2026-04-20T15:30:45.081995Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:30:45.082519Z DEBUG manage_blob_submission_inside_task{blob_id=2147897349276365851726292524821492703 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xa247882c4dbb5b6e832ce176fdd36cac23234d68fd301707f06705b509d64177 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=52 include_at=52 bytes=13 time=1.61747ms +2026-04-20T15:30:45.082678Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:30:45.085376Z DEBUG compute_state_update{scope="sequencer" rollup_height=48 slot_number=48}: sov_state::nomt::prover_storage: computed next state root state_root=1db9e3499aae8d16df1d9e498e40335522dc37c17cdaa6b951ddb59c452bf78f19eee1d54c24d3290b0ce1e9c74f98974ec3941c909e882d1a7c9b1034f24342 next_version=52 time=6.290349ms accesses_build_time=374.618µs finishing_session_time=5.522564ms +2026-04-20T15:30:45.566367Z DEBUG sp1_core_executor_runner::native: CHILD sp1_AEgWxGvgThiMPR0KMh1Drg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:30:45.601729Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:30:45.612668Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1683169 cycles +2026-04-20T15:30:45.615336Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [53, 175, 128, 244, 206, 0, 78, 161, 39, 114, 30, 122, 159, 198, 160, 203, 136, 193, 167, 178, 29, 94, 100, 236, 69, 204, 16, 69, 129, 64, 123, 172, 94, 224, 224, 114, 28, 159, 174, 120, 124, 108, 75, 67, 199, 44, 32, 7, 245, 184, 81, 41, 235, 158, 246, 122, 7, 84, 31, 213, 70, 86, 189, 121, 39, 115, 204, 9, 168, 127, 61, 164, 78, 210, 42, 186, 169, 195, 153, 91, 33, 129, 46, 161, 106, 137, 251, 143, 56, 114, 145, 116, 127, 42, 165, 50, 26, 219, 189, 246, 26, 248, 175, 14, 231, 42, 8, 241, 189, 190, 138, 194, 96, 73, 51, 43, 154, 76, 223, 254, 129, 242, 14, 174, 114, 9, 232, 83, 24, 230, 243, 67, 236, 49, 19, 61, 168, 73, 167, 152, 188, 162, 183, 12, 30, 175, 37, 108, 252, 211, 47, 51, 220, 93, 224, 116, 21, 78, 183, 104, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:30:46.207968Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:30:46.208047Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:30:48.031740Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=52 prev_hash=0x6318a5d9aad74899d2c0aee9e28df499a222ee4bb508be30b1ee2eccac185bb7 hash=0x1f3d21690e8c41a39ddaee3373e595849577d414df31ada44a5f20e3778e929e producing_time=3.364098ms +2026-04-20T15:30:48.041966Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=52 current_state_root="4131f50ed9158a72e2167f6942c9781e9aabed3088abd4938aa659e5bfa4242722b20248b1fe013ad29b4fe748b3da51b3bea0f3331a5469177efb4096ec9496" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa247882c4dbb5b6e832ce176fdd36cac23234d68fd301707f06705b509d64177"] proof_blobs=[] +2026-04-20T15:30:48.050621Z DEBUG StfBlueprint::apply_slot{context=Node da_height=52}: sov_chain_state: Setting next visible slot number next_visible_slot_number=48 +2026-04-20T15:30:48.056654Z DEBUG StfBlueprint::apply_slot{context=Node da_height=52}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xa247882c4dbb5b6e832ce176fdd36cac23234d68fd301707f06705b509d64177}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:48.058866Z DEBUG StfBlueprint::apply_slot{context=Node da_height=52}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4131f50ed9158a72e2167f6942c9781e9aabed3088abd4938aa659e5bfa4242722b20248b1fe013ad29b4fe748b3da51b3bea0f3331a5469177efb4096ec9496 next_version=52 sesssion_starting_time=261.279µs +2026-04-20T15:30:48.066688Z DEBUG StfBlueprint::apply_slot{context=Node da_height=52}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=1db9e3499aae8d16df1d9e498e40335522dc37c17cdaa6b951ddb59c452bf78f075e8ddabfffa8e3e108aec92e08e1a5f24ad4a70261573120619fabdf02f9a9 next_version=52 time=8.882813ms accesses_build_time=787.566µs finishing_session_time=7.69003ms +2026-04-20T15:30:48.067766Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4131f50ed9158a72e2167f6942c9781e9aabed3088abd4938aa659e5bfa4242722b20248b1fe013ad29b4fe748b3da51b3bea0f3331a5469177efb4096ec9496" next_state_root="1db9e3499aae8d16df1d9e498e40335522dc37c17cdaa6b951ddb59c452bf78f075e8ddabfffa8e3e108aec92e08e1a5f24ad4a70261573120619fabdf02f9a9" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:30:48.072158Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 52, latest_finalized_slot_number: 52, sync_status: Synced { synced_da_height: 51 }, .. } +2026-04-20T15:30:48.073577Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=48 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 52, latest_finalized_slot_number: 52, sync_status: Synced { synced_da_height: 51 }, .. } +2026-04-20T15:30:48.074532Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=48 +2026-04-20T15:30:48.077224Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:30:48.078225Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=44 +2026-04-20T15:30:48.079670Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=49 +2026-04-20T15:30:48.080078Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:30:48.080883Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=49 sequence_number=52 +2026-04-20T15:30:48.081079Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:48.081154Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=52 blob_id=2147897352909194452590300875745363950 visible_slot_number_after_increase=49 visible_slots_to_advance=1 +2026-04-20T15:30:48.083363Z DEBUG sov_stf_runner::runner: Block execution complete time=3.004422755s +2026-04-20T15:30:48.083410Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:30:48.083779Z DEBUG compute_state_update{scope="sequencer" rollup_height=49 slot_number=49}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:30:48.083902Z DEBUG compute_state_update{scope="sequencer" rollup_height=49 slot_number=49}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1db9e3499aae8d16df1d9e498e40335522dc37c17cdaa6b951ddb59c452bf78f075e8ddabfffa8e3e108aec92e08e1a5f24ad4a70261573120619fabdf02f9a9 next_version=53 sesssion_starting_time=125.929µs +2026-04-20T15:30:48.086081Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:30:48.086846Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:30:48.087425Z DEBUG manage_blob_submission_inside_task{blob_id=2147897352909194452590300875745363950 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x33710c8824b528d92912606fd10fb3f2370494fd21ba40398e4320100c5bb97d sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=53 include_at=53 bytes=13 time=1.742198ms +2026-04-20T15:30:48.089510Z DEBUG compute_state_update{scope="sequencer" rollup_height=49 slot_number=49}: sov_state::nomt::prover_storage: computed next state root state_root=34f52b3a5e739976c878c5b3f948cf97d6fd3ad4116d8a895dc1d340fbed87040c60fae2e41c7b79a9bbb6fe1b948c213d67c3645c76d421e7cb3a43eb6a7da7 next_version=53 time=5.906772ms accesses_build_time=176.259µs finishing_session_time=5.541714ms +2026-04-20T15:30:48.543950Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fEHdV-oqSzaPgp0weAE7xA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:30:48.580039Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:30:48.592053Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1709972 cycles +2026-04-20T15:30:48.594904Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [62, 68, 48, 68, 2, 85, 252, 51, 230, 14, 107, 213, 134, 251, 110, 161, 59, 123, 111, 252, 248, 155, 45, 61, 7, 27, 225, 76, 94, 150, 7, 22, 106, 69, 4, 29, 53, 207, 8, 71, 118, 2, 176, 171, 17, 68, 206, 246, 100, 18, 59, 216, 8, 236, 187, 78, 209, 120, 221, 95, 1, 93, 248, 145, 97, 112, 178, 230, 201, 237, 112, 211, 84, 101, 72, 240, 24, 56, 120, 168, 241, 173, 19, 208, 223, 201, 234, 179, 10, 110, 167, 23, 164, 150, 34, 172, 10, 204, 21, 210, 67, 237, 228, 134, 246, 93, 208, 204, 18, 109, 235, 232, 176, 134, 86, 243, 181, 187, 90, 203, 172, 250, 171, 13, 246, 190, 48, 136, 228, 220, 49, 123, 101, 50, 76, 180, 49, 64, 65, 54, 168, 144, 7, 153, 116, 23, 58, 77, 119, 225, 35, 196, 81, 107, 239, 53, 253, 45, 31, 173, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:30:49.194655Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:30:49.194729Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:30:51.036990Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=53 prev_hash=0x1f3d21690e8c41a39ddaee3373e595849577d414df31ada44a5f20e3778e929e hash=0xaa7251f20761bcf3623ed61aa09841272c4c3b4f053dba256b4b1e1aab48fef2 producing_time=3.251929ms +2026-04-20T15:30:51.045840Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=53 current_state_root="1db9e3499aae8d16df1d9e498e40335522dc37c17cdaa6b951ddb59c452bf78f075e8ddabfffa8e3e108aec92e08e1a5f24ad4a70261573120619fabdf02f9a9" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x33710c8824b528d92912606fd10fb3f2370494fd21ba40398e4320100c5bb97d"] proof_blobs=[] +2026-04-20T15:30:51.054024Z DEBUG StfBlueprint::apply_slot{context=Node da_height=53}: sov_chain_state: Setting next visible slot number next_visible_slot_number=49 +2026-04-20T15:30:51.059902Z DEBUG StfBlueprint::apply_slot{context=Node da_height=53}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x33710c8824b528d92912606fd10fb3f2370494fd21ba40398e4320100c5bb97d}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:51.062069Z DEBUG StfBlueprint::apply_slot{context=Node da_height=53}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1db9e3499aae8d16df1d9e498e40335522dc37c17cdaa6b951ddb59c452bf78f075e8ddabfffa8e3e108aec92e08e1a5f24ad4a70261573120619fabdf02f9a9 next_version=53 sesssion_starting_time=256.709µs +2026-04-20T15:30:51.069753Z DEBUG StfBlueprint::apply_slot{context=Node da_height=53}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=34f52b3a5e739976c878c5b3f948cf97d6fd3ad4116d8a895dc1d340fbed87047d8ce99a59a924d633d51b5c2c73b9362b9d92027d325d0750d13ac5cca5e2d4 next_version=53 time=8.732644ms accesses_build_time=780.345µs finishing_session_time=7.536591ms +2026-04-20T15:30:51.070835Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="1db9e3499aae8d16df1d9e498e40335522dc37c17cdaa6b951ddb59c452bf78f075e8ddabfffa8e3e108aec92e08e1a5f24ad4a70261573120619fabdf02f9a9" next_state_root="34f52b3a5e739976c878c5b3f948cf97d6fd3ad4116d8a895dc1d340fbed87047d8ce99a59a924d633d51b5c2c73b9362b9d92027d325d0750d13ac5cca5e2d4" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:30:51.075356Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 53, latest_finalized_slot_number: 53, sync_status: Synced { synced_da_height: 52 }, .. } +2026-04-20T15:30:51.076761Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=49 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 53, latest_finalized_slot_number: 53, sync_status: Synced { synced_da_height: 52 }, .. } +2026-04-20T15:30:51.077704Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=49 +2026-04-20T15:30:51.080337Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:30:51.081297Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=45 +2026-04-20T15:30:51.082432Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=50 +2026-04-20T15:30:51.082859Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:30:51.083653Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=50 sequence_number=53 +2026-04-20T15:30:51.083826Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:51.083938Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=53 blob_id=2147897356539603981057155652801551644 visible_slot_number_after_increase=50 visible_slots_to_advance=1 +2026-04-20T15:30:51.089790Z DEBUG compute_state_update{scope="sequencer" rollup_height=50 slot_number=50}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:30:51.090037Z DEBUG manage_blob_submission_inside_task{blob_id=2147897356539603981057155652801551644 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x24208f91f38c2b08943bb28df543f93151e0ea303607bad41c8456629b53223e sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=54 include_at=54 bytes=13 time=1.883858ms +2026-04-20T15:30:51.090116Z DEBUG sov_stf_runner::runner: Block execution complete time=3.006714311s +2026-04-20T15:30:51.090100Z DEBUG compute_state_update{scope="sequencer" rollup_height=50 slot_number=50}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=34f52b3a5e739976c878c5b3f948cf97d6fd3ad4116d8a895dc1d340fbed87047d8ce99a59a924d633d51b5c2c73b9362b9d92027d325d0750d13ac5cca5e2d4 next_version=54 sesssion_starting_time=3.224389ms +2026-04-20T15:30:51.090167Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:30:51.091924Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:30:51.093136Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:30:51.095537Z DEBUG compute_state_update{scope="sequencer" rollup_height=50 slot_number=50}: sov_state::nomt::prover_storage: computed next state root state_root=17677bd22fb73d3479b597275950ed932e5fe50318755339ea53177954fc699c34ea2b998b80a2e31b18b7b24e2984e30002bff7719d173d5a687ef311282f35 next_version=54 time=9.051111ms accesses_build_time=376.568µs finishing_session_time=5.343316ms +2026-04-20T15:30:51.581256Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pFMawX4XTua14XascRh7Rg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:30:51.619611Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:30:51.632584Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1804153 cycles +2026-04-20T15:30:51.635283Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [57, 107, 228, 236, 94, 63, 69, 7, 186, 163, 73, 177, 27, 166, 194, 124, 153, 27, 158, 42, 8, 223, 183, 77, 173, 156, 121, 205, 72, 124, 56, 153, 32, 114, 54, 8, 1, 120, 178, 241, 171, 134, 76, 11, 213, 227, 179, 51, 242, 65, 205, 37, 15, 206, 74, 222, 251, 6, 196, 190, 197, 251, 164, 60, 93, 202, 130, 140, 226, 63, 89, 197, 209, 150, 249, 169, 123, 126, 151, 171, 121, 112, 155, 8, 210, 192, 239, 63, 22, 109, 228, 59, 165, 179, 209, 240, 99, 255, 131, 138, 204, 124, 42, 43, 144, 207, 157, 165, 116, 96, 23, 100, 44, 69, 202, 197, 172, 154, 74, 85, 113, 195, 6, 101, 78, 133, 158, 171, 24, 251, 114, 253, 155, 243, 101, 7, 185, 137, 207, 74, 218, 40, 229, 200, 169, 210, 228, 240, 106, 127, 55, 101, 23, 149, 75, 151, 228, 214, 108, 20, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:30:52.271212Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:30:52.271299Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:30:54.041855Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=54 prev_hash=0xaa7251f20761bcf3623ed61aa09841272c4c3b4f053dba256b4b1e1aab48fef2 hash=0x9c2dbd6ee13a60ea272d545b69381faa2c41eb783fa42a4eaba154d2e4f7b75f producing_time=3.476487ms +2026-04-20T15:30:54.053216Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=54 current_state_root="34f52b3a5e739976c878c5b3f948cf97d6fd3ad4116d8a895dc1d340fbed87047d8ce99a59a924d633d51b5c2c73b9362b9d92027d325d0750d13ac5cca5e2d4" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x24208f91f38c2b08943bb28df543f93151e0ea303607bad41c8456629b53223e"] proof_blobs=[] +2026-04-20T15:30:54.061894Z DEBUG StfBlueprint::apply_slot{context=Node da_height=54}: sov_chain_state: Setting next visible slot number next_visible_slot_number=50 +2026-04-20T15:30:54.068330Z DEBUG StfBlueprint::apply_slot{context=Node da_height=54}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x24208f91f38c2b08943bb28df543f93151e0ea303607bad41c8456629b53223e}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:54.070632Z DEBUG StfBlueprint::apply_slot{context=Node da_height=54}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=34f52b3a5e739976c878c5b3f948cf97d6fd3ad4116d8a895dc1d340fbed87047d8ce99a59a924d633d51b5c2c73b9362b9d92027d325d0750d13ac5cca5e2d4 next_version=54 sesssion_starting_time=321.248µs +2026-04-20T15:30:54.078612Z DEBUG StfBlueprint::apply_slot{context=Node da_height=54}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=17677bd22fb73d3479b597275950ed932e5fe50318755339ea53177954fc699c1240529f1af232e9d22da89a1d2face47cbbeba162416e6a4a3ea247ef63c9c2 next_version=54 time=9.069321ms accesses_build_time=756.255µs finishing_session_time=7.822979ms +2026-04-20T15:30:54.079679Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="34f52b3a5e739976c878c5b3f948cf97d6fd3ad4116d8a895dc1d340fbed87047d8ce99a59a924d633d51b5c2c73b9362b9d92027d325d0750d13ac5cca5e2d4" next_state_root="17677bd22fb73d3479b597275950ed932e5fe50318755339ea53177954fc699c1240529f1af232e9d22da89a1d2face47cbbeba162416e6a4a3ea247ef63c9c2" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:30:54.084348Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 54, latest_finalized_slot_number: 54, sync_status: Syncing { synced_da_height: 53, target_da_height: 54 }, .. } +2026-04-20T15:30:54.085776Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=50 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 54, latest_finalized_slot_number: 54, sync_status: Syncing { synced_da_height: 53, target_da_height: 54 }, .. } +2026-04-20T15:30:54.086725Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=50 +2026-04-20T15:30:54.089397Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:30:54.090386Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=46 +2026-04-20T15:30:54.092293Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=51 +2026-04-20T15:30:54.093283Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:30:54.095305Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=51 sequence_number=54 +2026-04-20T15:30:54.095623Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=54 blob_id=2147897360180875602615867470434103568 visible_slot_number_after_increase=51 visible_slots_to_advance=1 +2026-04-20T15:30:54.095642Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:54.098583Z DEBUG sov_stf_runner::runner: Block execution complete time=3.008425759s +2026-04-20T15:30:54.098681Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:30:54.100490Z DEBUG compute_state_update{scope="sequencer" rollup_height=51 slot_number=51}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:30:54.100881Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:30:54.100898Z DEBUG compute_state_update{scope="sequencer" rollup_height=51 slot_number=51}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=17677bd22fb73d3479b597275950ed932e5fe50318755339ea53177954fc699c1240529f1af232e9d22da89a1d2face47cbbeba162416e6a4a3ea247ef63c9c2 next_version=55 sesssion_starting_time=405.887µs +2026-04-20T15:30:54.101409Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:30:54.103593Z DEBUG manage_blob_submission_inside_task{blob_id=2147897360180875602615867470434103568 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x2218f8acb9bcf24f97a40aafe15f241d3d6ef6732763b9b7ae1816a9e27f76f7 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=55 include_at=55 bytes=13 time=1.696449ms +2026-04-20T15:30:54.106881Z DEBUG compute_state_update{scope="sequencer" rollup_height=51 slot_number=51}: sov_state::nomt::prover_storage: computed next state root state_root=1f2acf115551825b9efff8b2dae0065b5f6cc65bd57dc77a30e88b94c613e7fe398ac8214ff47a9790aefbd595cd079bba92138df04ea9744befe7a7fe7a17cd next_version=55 time=6.914766ms accesses_build_time=493.817µs finishing_session_time=5.853782ms +2026-04-20T15:30:54.553448Z DEBUG sp1_core_executor_runner::native: CHILD sp1_HoqCiLCkQ6ym_HCZbZOBPQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:30:54.615091Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:30:54.627421Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4028735 cycles +2026-04-20T15:30:54.630201Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [95, 90, 253, 255, 204, 82, 218, 106, 9, 194, 68, 217, 25, 80, 16, 212, 165, 252, 250, 86, 251, 43, 75, 233, 161, 111, 252, 69, 103, 93, 248, 48, 78, 158, 94, 132, 204, 208, 218, 41, 200, 241, 171, 171, 44, 19, 160, 18, 132, 160, 119, 127, 250, 59, 7, 245, 220, 61, 6, 238, 185, 151, 173, 107, 87, 245, 126, 6, 146, 161, 15, 100, 28, 104, 116, 146, 198, 39, 15, 112, 159, 204, 147, 136, 3, 195, 220, 144, 128, 5, 181, 87, 142, 130, 148, 194, 62, 128, 157, 37, 243, 116, 103, 84, 2, 151, 60, 226, 78, 42, 24, 32, 98, 64, 213, 102, 126, 5, 74, 186, 178, 173, 231, 207, 83, 228, 218, 66, 92, 48, 189, 18, 46, 145, 152, 242, 41, 152, 208, 158, 106, 90, 120, 133, 17, 219, 46, 70, 3, 48, 124, 254, 21, 147, 218, 145, 64, 18, 138, 212, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:30:56.035857Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:30:56.035939Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:30:57.046748Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=55 prev_hash=0x9c2dbd6ee13a60ea272d545b69381faa2c41eb783fa42a4eaba154d2e4f7b75f hash=0xc88011564b17037c51bb1a39acb20a96139a45a7f0b8954f7f3b26450fa81848 producing_time=3.07005ms +2026-04-20T15:30:57.051837Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=55 current_state_root="17677bd22fb73d3479b597275950ed932e5fe50318755339ea53177954fc699c1240529f1af232e9d22da89a1d2face47cbbeba162416e6a4a3ea247ef63c9c2" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x2218f8acb9bcf24f97a40aafe15f241d3d6ef6732763b9b7ae1816a9e27f76f7"] proof_blobs=[] +2026-04-20T15:30:57.061250Z DEBUG StfBlueprint::apply_slot{context=Node da_height=55}: sov_chain_state: Setting next visible slot number next_visible_slot_number=51 +2026-04-20T15:30:57.068157Z DEBUG StfBlueprint::apply_slot{context=Node da_height=55}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x2218f8acb9bcf24f97a40aafe15f241d3d6ef6732763b9b7ae1816a9e27f76f7}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:57.070648Z DEBUG StfBlueprint::apply_slot{context=Node da_height=55}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=17677bd22fb73d3479b597275950ed932e5fe50318755339ea53177954fc699c1240529f1af232e9d22da89a1d2face47cbbeba162416e6a4a3ea247ef63c9c2 next_version=55 sesssion_starting_time=340.298µs +2026-04-20T15:30:57.078507Z DEBUG StfBlueprint::apply_slot{context=Node da_height=55}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=1f2acf115551825b9efff8b2dae0065b5f6cc65bd57dc77a30e88b94c613e7fe0417eeae65012bd31e17a48531775f7a93226c4be2e558f6dad1e9138cd4e426 next_version=55 time=8.986172ms accesses_build_time=770.155µs finishing_session_time=7.70083ms +2026-04-20T15:30:57.079750Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="17677bd22fb73d3479b597275950ed932e5fe50318755339ea53177954fc699c1240529f1af232e9d22da89a1d2face47cbbeba162416e6a4a3ea247ef63c9c2" next_state_root="1f2acf115551825b9efff8b2dae0065b5f6cc65bd57dc77a30e88b94c613e7fe0417eeae65012bd31e17a48531775f7a93226c4be2e558f6dad1e9138cd4e426" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:30:57.083702Z DEBUG sov_stf_runner::runner: Block execution complete time=2.985037861s +2026-04-20T15:30:57.083836Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:30:57.084575Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 55, latest_finalized_slot_number: 54, sync_status: Syncing { synced_da_height: 54, target_da_height: 55 }, .. } +2026-04-20T15:30:57.086037Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=51 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 55, latest_finalized_slot_number: 54, sync_status: Syncing { synced_da_height: 54, target_da_height: 55 }, .. } +2026-04-20T15:30:57.086179Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:30:57.086880Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:30:57.086985Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=51 +2026-04-20T15:30:57.089598Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:30:57.090570Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=47 +2026-04-20T15:30:57.092475Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=52 +2026-04-20T15:30:57.093543Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:30:57.095198Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=52 sequence_number=55 +2026-04-20T15:30:57.095476Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=55 blob_id=2147897363807689327011168694816253667 visible_slot_number_after_increase=52 visible_slots_to_advance=1 +2026-04-20T15:30:57.095491Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:30:57.099908Z DEBUG compute_state_update{scope="sequencer" rollup_height=52 slot_number=52}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1f2acf115551825b9efff8b2dae0065b5f6cc65bd57dc77a30e88b94c613e7fe0417eeae65012bd31e17a48531775f7a93226c4be2e558f6dad1e9138cd4e426 next_version=56 sesssion_starting_time=278.009µs +2026-04-20T15:30:57.103274Z DEBUG manage_blob_submission_inside_task{blob_id=2147897363807689327011168694816253667 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x67ced2fb27d4127c4158d5d32704e029dea05e2095bb24c5fb22e8ba199c6154 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=56 include_at=56 bytes=13 time=1.854407ms +2026-04-20T15:30:57.105492Z DEBUG compute_state_update{scope="sequencer" rollup_height=52 slot_number=52}: sov_state::nomt::prover_storage: computed next state root state_root=491afc0c29ab0151597ab671659e3f24a9e9486d4c53806b380745255786d2a355b49e9e5ca6950d4ebc16a8bd2951a8a49c7a96ed58ea3eb864fcb0557db178 next_version=56 time=6.290019ms accesses_build_time=414.477µs finishing_session_time=5.446205ms +2026-04-20T15:30:57.559731Z DEBUG sp1_core_executor_runner::native: CHILD sp1_KSVnaNFQRLq2TpcfRrEihg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:30:57.596384Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:30:57.608905Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1732081 cycles +2026-04-20T15:30:57.611659Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [25, 38, 5, 145, 127, 56, 97, 220, 71, 55, 155, 53, 139, 31, 30, 162, 23, 61, 230, 135, 68, 122, 67, 90, 25, 199, 188, 5, 233, 84, 118, 97, 60, 255, 145, 65, 12, 118, 159, 59, 218, 211, 177, 73, 196, 9, 218, 26, 218, 9, 68, 150, 230, 236, 4, 120, 16, 70, 20, 133, 168, 143, 31, 236, 55, 152, 93, 240, 253, 93, 88, 154, 102, 222, 231, 189, 137, 241, 8, 47, 153, 227, 51, 76, 201, 12, 131, 91, 118, 41, 137, 168, 224, 114, 213, 19, 78, 69, 154, 4, 12, 225, 87, 71, 62, 19, 136, 70, 180, 55, 89, 66, 252, 243, 64, 143, 252, 0, 16, 89, 168, 46, 87, 216, 66, 239, 77, 29, 188, 235, 125, 179, 227, 193, 44, 0, 144, 178, 142, 69, 42, 88, 47, 141, 108, 146, 12, 107, 130, 135, 93, 235, 64, 220, 38, 40, 193, 158, 125, 97, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:30:58.220644Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:30:58.220732Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:31:00.051363Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=56 prev_hash=0xc88011564b17037c51bb1a39acb20a96139a45a7f0b8954f7f3b26450fa81848 hash=0x527085b293be261aab057a6936a37e2becb3f8293df996ba85c968ed5c564ee7 producing_time=3.187369ms +2026-04-20T15:31:00.056251Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=56 current_state_root="1f2acf115551825b9efff8b2dae0065b5f6cc65bd57dc77a30e88b94c613e7fe0417eeae65012bd31e17a48531775f7a93226c4be2e558f6dad1e9138cd4e426" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x67ced2fb27d4127c4158d5d32704e029dea05e2095bb24c5fb22e8ba199c6154"] proof_blobs=[] +2026-04-20T15:31:00.062611Z DEBUG StfBlueprint::apply_slot{context=Node da_height=56}: sov_chain_state: Setting next visible slot number next_visible_slot_number=52 +2026-04-20T15:31:00.067426Z DEBUG StfBlueprint::apply_slot{context=Node da_height=56}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x67ced2fb27d4127c4158d5d32704e029dea05e2095bb24c5fb22e8ba199c6154}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:00.069123Z DEBUG StfBlueprint::apply_slot{context=Node da_height=56}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1f2acf115551825b9efff8b2dae0065b5f6cc65bd57dc77a30e88b94c613e7fe0417eeae65012bd31e17a48531775f7a93226c4be2e558f6dad1e9138cd4e426 next_version=56 sesssion_starting_time=255.658µs +2026-04-20T15:31:00.075865Z DEBUG StfBlueprint::apply_slot{context=Node da_height=56}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=491afc0c29ab0151597ab671659e3f24a9e9486d4c53806b380745255786d2a33900539e90c89e32bf224252c786c73c9c28b79ea989e1aafbb4d0e04b509d39 next_version=56 time=7.571801ms accesses_build_time=565.217µs finishing_session_time=6.642427ms +2026-04-20T15:31:00.076691Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="17677bd22fb73d3479b597275950ed932e5fe50318755339ea53177954fc699c1240529f1af232e9d22da89a1d2face47cbbeba162416e6a4a3ea247ef63c9c2" next_state_root="491afc0c29ab0151597ab671659e3f24a9e9486d4c53806b380745255786d2a33900539e90c89e32bf224252c786c73c9c28b79ea989e1aafbb4d0e04b509d39" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:31:00.080542Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 56, latest_finalized_slot_number: 55, sync_status: Syncing { synced_da_height: 55, target_da_height: 56 }, .. } +2026-04-20T15:31:00.082015Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=52 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 56, latest_finalized_slot_number: 55, sync_status: Syncing { synced_da_height: 55, target_da_height: 56 }, .. } +2026-04-20T15:31:00.083007Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=52 +2026-04-20T15:31:00.085582Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:31:00.086620Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=48 +2026-04-20T15:31:00.088580Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=53 +2026-04-20T15:31:00.089569Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:31:00.091118Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=53 sequence_number=56 +2026-04-20T15:31:00.091397Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:00.091428Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=56 blob_id=2147897367429583879286119728273711969 visible_slot_number_after_increase=53 visible_slots_to_advance=1 +2026-04-20T15:31:00.095080Z DEBUG sov_stf_runner::runner: Block execution complete time=3.011283261s +2026-04-20T15:31:00.095143Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:31:00.095154Z DEBUG compute_state_update{scope="sequencer" rollup_height=53 slot_number=53}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:31:00.095288Z DEBUG compute_state_update{scope="sequencer" rollup_height=53 slot_number=53}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=491afc0c29ab0151597ab671659e3f24a9e9486d4c53806b380745255786d2a33900539e90c89e32bf224252c786c73c9c28b79ea989e1aafbb4d0e04b509d39 next_version=57 sesssion_starting_time=136.469µs +2026-04-20T15:31:00.098958Z DEBUG manage_blob_submission_inside_task{blob_id=2147897367429583879286119728273711969 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x1b18c24085614e6813efa9cb416a5706f61281d3868f38ed3a5458a95a284c3c sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=57 include_at=57 bytes=13 time=1.41971ms +2026-04-20T15:31:00.099043Z DEBUG compute_state_update{scope="sequencer" rollup_height=53 slot_number=53}: sov_state::nomt::prover_storage: computed next state root state_root=5e054186033ce7f94d05f981f61abc9ff610aa066c2897e37b98569c164987c5590fdcd6f9053fb4397fa95d3fd4b538faf7c1e8b554d1ffef6811855e8b6baf next_version=57 time=4.098513ms accesses_build_time=197.618µs finishing_session_time=3.698396ms +2026-04-20T15:31:00.545975Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NaHatvy5Q9ebYpljXoQhAA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:31:00.582191Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:31:00.594560Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1715945 cycles +2026-04-20T15:31:00.597397Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [90, 147, 250, 118, 118, 165, 239, 165, 143, 129, 145, 212, 253, 5, 6, 157, 109, 66, 30, 97, 94, 23, 73, 27, 247, 117, 247, 83, 112, 75, 70, 146, 118, 191, 93, 238, 245, 136, 203, 93, 228, 31, 165, 233, 149, 31, 245, 12, 25, 45, 140, 25, 137, 39, 116, 80, 38, 162, 92, 244, 73, 64, 200, 74, 61, 178, 141, 20, 80, 59, 181, 241, 74, 34, 40, 244, 236, 224, 107, 75, 240, 45, 210, 49, 32, 193, 80, 65, 9, 20, 92, 41, 113, 165, 223, 128, 1, 125, 40, 86, 185, 50, 9, 100, 74, 170, 36, 53, 3, 80, 78, 79, 241, 234, 166, 103, 111, 136, 146, 105, 162, 201, 238, 101, 108, 19, 208, 226, 229, 45, 63, 109, 175, 74, 208, 173, 196, 250, 166, 104, 98, 196, 180, 17, 211, 46, 194, 206, 223, 57, 112, 194, 64, 221, 9, 170, 100, 159, 13, 30, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:31:01.211390Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:31:01.211470Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:31:01.236344Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:31:01.488985Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:31:01.491263Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2607482 cycles +2026-04-20T15:31:01.491637Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [41, 0, 0, 0, 0, 0, 0, 0, 50, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 126, 61, 252, 129, 85, 106, 252, 236, 89, 253, 247, 72, 47, 169, 138, 130, 84, 100, 199, 155, 136, 126, 88, 76, 149, 154, 246, 158, 211, 1, 97, 99, 62, 248, 185, 67, 122, 41, 254, 182, 119, 114, 210, 82, 171, 17, 67, 226, 24, 222, 175, 26, 25, 243, 54, 59, 120, 68, 211, 247, 64, 234, 226, 139, 61, 178, 141, 20, 80, 59, 181, 241, 74, 34, 40, 244, 236, 224, 107, 75, 240, 45, 210, 49, 32, 193, 80, 65, 9, 20, 92, 41, 113, 165, 223, 128, 1, 125, 40, 86, 185, 50, 9, 100, 74, 170, 36, 53, 3, 80, 78, 79, 241, 234, 166, 103, 111, 136, 146, 105, 162, 201, 238, 101, 108, 19, 208, 226, 48, 50, 95, 34, 24, 122, 163, 58, 212, 122, 98, 51, 213, 225, 135, 222, 4, 180, 44, 77, 37, 245, 69, 25, 121, 29, 65, 193, 130, 31, 111, 56, 229, 45, 63, 109, 175, 74, 208, 173, 196, 250, 166, 104, 98, 196, 180, 17, 211, 46, 194, 206, 223, 57, 112, 194, 64, 221, 9, 170, 100, 159, 13, 30, 32, 0, 0, 0, 0, 0, 0, 0, 33, 87, 226, 242, 39, 49, 250, 210, 41, 143, 26, 188, 101, 19, 12, 136, 43, 105, 121, 236, 80, 118, 108, 155, 63, 154, 215, 73, 15, 107, 27, 67, 32, 0, 0, 0, 0, 0, 0, 0, 54, 246, 123, 188, 67, 61, 237, 103, 16, 229, 5, 146, 113, 8, 178, 215, 95, 95, 151, 239, 106, 28, 10, 135, 55, 55, 208, 95, 86, 190, 27, 9, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:31:02.457595Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:31:02.457672Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:31:02.458570Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=1951 +2026-04-20T15:31:02.461039Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:31:02.461562Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:31:02.461998Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=57 blob_id=2147897370291110129351263850680784999 +2026-04-20T15:31:03.056231Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=57 prev_hash=0x527085b293be261aab057a6936a37e2becb3f8293df996ba85c968ed5c564ee7 hash=0xce63d4bdd0264974acb7bbbc27f3048f30ebe4e7493dec6bf51b47f90f4c6fec producing_time=2.99407ms +2026-04-20T15:31:03.068554Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=57 current_state_root="491afc0c29ab0151597ab671659e3f24a9e9486d4c53806b380745255786d2a33900539e90c89e32bf224252c786c73c9c28b79ea989e1aafbb4d0e04b509d39" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1b18c24085614e6813efa9cb416a5706f61281d3868f38ed3a5458a95a284c3c"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x4d2083d2309744ba95011c5fc3563046a545a801eb53402b9ddda2b04db752e4, len=2001"] +2026-04-20T15:31:03.077288Z DEBUG StfBlueprint::apply_slot{context=Node da_height=57}: sov_chain_state: Setting next visible slot number next_visible_slot_number=53 +2026-04-20T15:31:03.083600Z DEBUG StfBlueprint::apply_slot{context=Node da_height=57}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x1b18c24085614e6813efa9cb416a5706f61281d3868f38ed3a5458a95a284c3c}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:03.086033Z DEBUG StfBlueprint::apply_slot{context=Node da_height=57}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=491afc0c29ab0151597ab671659e3f24a9e9486d4c53806b380745255786d2a33900539e90c89e32bf224252c786c73c9c28b79ea989e1aafbb4d0e04b509d39 next_version=57 sesssion_starting_time=325.438µs +2026-04-20T15:31:03.093602Z DEBUG StfBlueprint::apply_slot{context=Node da_height=57}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=5e054186033ce7f94d05f981f61abc9ff610aa066c2897e37b98569c164987c502a859e916b1599054727ad0e6e6e16151a1d5c65c19aafc33394edfb3cdf85e next_version=57 time=8.854153ms accesses_build_time=944.804µs finishing_session_time=7.437621ms +2026-04-20T15:31:03.094748Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="1f2acf115551825b9efff8b2dae0065b5f6cc65bd57dc77a30e88b94c613e7fe0417eeae65012bd31e17a48531775f7a93226c4be2e558f6dad1e9138cd4e426" next_state_root="5e054186033ce7f94d05f981f61abc9ff610aa066c2897e37b98569c164987c502a859e916b1599054727ad0e6e6e16151a1d5c65c19aafc33394edfb3cdf85e" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:31:03.099580Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 57, latest_finalized_slot_number: 57, sync_status: Syncing { synced_da_height: 56, target_da_height: 57 }, .. } +2026-04-20T15:31:03.100982Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=53 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 57, latest_finalized_slot_number: 57, sync_status: Syncing { synced_da_height: 56, target_da_height: 57 }, .. } +2026-04-20T15:31:03.101921Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=53 +2026-04-20T15:31:03.104655Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:31:03.105681Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=49 +2026-04-20T15:31:03.107533Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=54 +2026-04-20T15:31:03.108512Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:31:03.113023Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 41. Final slot number 50 +2026-04-20T15:31:03.113627Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=54 sequence_number=58 +2026-04-20T15:31:03.113857Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:03.113940Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=58 blob_id=2147897371082994024372051310295657854 visible_slot_number_after_increase=54 visible_slots_to_advance=1 +2026-04-20T15:31:03.120211Z DEBUG manage_blob_submission_inside_task{blob_id=2147897371082994024372051310295657854 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x961119ef606f079478185547abb4286c973d54a69de0f2c9fc7ea3c50de92cf1 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=58 include_at=58 bytes=13 time=1.700619ms +2026-04-20T15:31:03.128518Z DEBUG compute_state_update{scope="sequencer" rollup_height=54 slot_number=54}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:31:03.128574Z DEBUG compute_state_update{scope="sequencer" rollup_height=54 slot_number=54}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:31:03.128809Z DEBUG compute_state_update{scope="sequencer" rollup_height=54 slot_number=54}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5e054186033ce7f94d05f981f61abc9ff610aa066c2897e37b98569c164987c502a859e916b1599054727ad0e6e6e16151a1d5c65c19aafc33394edfb3cdf85e next_version=58 sesssion_starting_time=11.202958ms +2026-04-20T15:31:03.128952Z DEBUG sov_stf_runner::runner: Block execution complete time=3.033821035s +2026-04-20T15:31:03.128996Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:31:03.131266Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:31:03.132033Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:31:03.134547Z DEBUG compute_state_update{scope="sequencer" rollup_height=54 slot_number=54}: sov_state::nomt::prover_storage: computed next state root state_root=68aeadd9dfbd3b296f7aaa8e8e12d411863cd3f2e420d976d349edd47c68cd5a366ee8b339db4b0eb2d1e3940a69da62e33a8f1d38226ad7d699cce18208d185 next_version=58 time=17.378998ms accesses_build_time=426.657µs finishing_session_time=5.649754ms +2026-04-20T15:31:05.962613Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Ko4axKdcT6KXAt8auoI2mA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:31:05.999840Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:31:06.013415Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1745130 cycles +2026-04-20T15:31:06.016047Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [83, 242, 67, 95, 99, 47, 165, 46, 231, 120, 6, 197, 84, 39, 185, 128, 176, 236, 222, 30, 36, 202, 42, 225, 142, 159, 193, 7, 167, 232, 4, 67, 98, 146, 190, 106, 104, 161, 20, 142, 22, 23, 17, 172, 146, 252, 147, 168, 22, 221, 94, 238, 106, 123, 14, 97, 240, 146, 108, 74, 195, 245, 207, 210, 17, 229, 120, 73, 245, 48, 246, 26, 104, 175, 160, 114, 181, 27, 97, 207, 194, 163, 42, 116, 167, 5, 23, 15, 25, 65, 22, 222, 232, 44, 240, 153, 24, 142, 168, 84, 247, 241, 218, 50, 231, 138, 234, 199, 204, 7, 110, 113, 77, 246, 119, 111, 25, 25, 165, 86, 119, 174, 119, 164, 165, 165, 73, 255, 99, 24, 165, 217, 170, 215, 72, 153, 210, 192, 174, 233, 226, 141, 244, 153, 162, 34, 238, 75, 181, 8, 190, 48, 177, 238, 46, 204, 172, 24, 91, 183, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:31:06.059983Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=58 prev_hash=0xce63d4bdd0264974acb7bbbc27f3048f30ebe4e7493dec6bf51b47f90f4c6fec hash=0xd3607daf899062b8d32eea78c9eb56e50ec4a80cf5e42865df0f40311ce00278 producing_time=3.11694ms +2026-04-20T15:31:06.071980Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=58 current_state_root="5e054186033ce7f94d05f981f61abc9ff610aa066c2897e37b98569c164987c502a859e916b1599054727ad0e6e6e16151a1d5c65c19aafc33394edfb3cdf85e" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x961119ef606f079478185547abb4286c973d54a69de0f2c9fc7ea3c50de92cf1"] proof_blobs=[] +2026-04-20T15:31:06.081747Z DEBUG StfBlueprint::apply_slot{context=Node da_height=58}: sov_chain_state: Setting next visible slot number next_visible_slot_number=54 +2026-04-20T15:31:06.101088Z DEBUG StfBlueprint::apply_slot{context=Node da_height=58}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 41. Final slot number 50 +2026-04-20T15:31:06.101574Z DEBUG StfBlueprint::apply_slot{context=Node da_height=58}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x961119ef606f079478185547abb4286c973d54a69de0f2c9fc7ea3c50de92cf1}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:06.104365Z DEBUG StfBlueprint::apply_slot{context=Node da_height=58}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5e054186033ce7f94d05f981f61abc9ff610aa066c2897e37b98569c164987c502a859e916b1599054727ad0e6e6e16151a1d5c65c19aafc33394edfb3cdf85e next_version=58 sesssion_starting_time=336.628µs +2026-04-20T15:31:06.113468Z DEBUG StfBlueprint::apply_slot{context=Node da_height=58}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=68aeadd9dfbd3b296f7aaa8e8e12d411863cd3f2e420d976d349edd47c68cd5a394593ce8f6a0467fbaf64ea8b053fae880bafa5785774b00d5ca46974e723a6 next_version=58 time=10.546581ms accesses_build_time=1.089273ms finishing_session_time=8.943852ms +2026-04-20T15:31:06.114740Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="5e054186033ce7f94d05f981f61abc9ff610aa066c2897e37b98569c164987c502a859e916b1599054727ad0e6e6e16151a1d5c65c19aafc33394edfb3cdf85e" next_state_root="68aeadd9dfbd3b296f7aaa8e8e12d411863cd3f2e420d976d349edd47c68cd5a394593ce8f6a0467fbaf64ea8b053fae880bafa5785774b00d5ca46974e723a6" aggregated_proofs=1 proof_receipts=1 +2026-04-20T15:31:06.120176Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 58, latest_finalized_slot_number: 58, sync_status: Syncing { synced_da_height: 57, target_da_height: 58 }, .. } +2026-04-20T15:31:06.121597Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=54 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 58, latest_finalized_slot_number: 58, sync_status: Syncing { synced_da_height: 57, target_da_height: 58 }, .. } +2026-04-20T15:31:06.122539Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=54 +2026-04-20T15:31:06.125514Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:31:06.126501Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=50 +2026-04-20T15:31:06.128283Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=55 +2026-04-20T15:31:06.129195Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:31:06.130781Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=55 sequence_number=59 +2026-04-20T15:31:06.131124Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=59 blob_id=2147897374730286919767816395298875187 visible_slot_number_after_increase=55 visible_slots_to_advance=1 +2026-04-20T15:31:06.131124Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:06.133953Z DEBUG sov_stf_runner::runner: Block execution complete time=3.004964131s +2026-04-20T15:31:06.134024Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:31:06.135218Z DEBUG compute_state_update{scope="sequencer" rollup_height=55 slot_number=55}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:31:06.135530Z DEBUG compute_state_update{scope="sequencer" rollup_height=55 slot_number=55}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=68aeadd9dfbd3b296f7aaa8e8e12d411863cd3f2e420d976d349edd47c68cd5a394593ce8f6a0467fbaf64ea8b053fae880bafa5785774b00d5ca46974e723a6 next_version=59 sesssion_starting_time=319.448µs +2026-04-20T15:31:06.137073Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:31:06.137825Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:31:06.137830Z DEBUG manage_blob_submission_inside_task{blob_id=2147897374730286919767816395298875187 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x9e35b03f1dcbf43f882866c8cf12cbcee6fd61ec6df1a89c0fb54eaa833ea0dc sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=59 include_at=59 bytes=13 time=1.729359ms +2026-04-20T15:31:06.141113Z DEBUG compute_state_update{scope="sequencer" rollup_height=55 slot_number=55}: sov_state::nomt::prover_storage: computed next state root state_root=3ba59b8abea585f4c56da12456763f7383abbb4f57e0888c4a1b88fb5f58410c4476df2cfb07f44e89e85b9a7c625d946b79efb9635d1485b8ab49050b98a353 next_version=59 time=6.293909ms accesses_build_time=380.447µs finishing_session_time=5.486204ms +2026-04-20T15:31:06.615598Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3vTEsAhUTRuq4kZZXDPG2g==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:31:06.653048Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:31:06.662887Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:31:06.662959Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:31:06.669537Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1755805 cycles +2026-04-20T15:31:06.672220Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [65, 49, 245, 14, 217, 21, 138, 114, 226, 22, 127, 105, 66, 201, 120, 30, 154, 171, 237, 48, 136, 171, 212, 147, 138, 166, 89, 229, 191, 164, 36, 39, 34, 178, 2, 72, 177, 254, 1, 58, 210, 155, 79, 231, 72, 179, 218, 81, 179, 190, 160, 243, 51, 26, 84, 105, 23, 126, 251, 64, 150, 236, 148, 150, 108, 245, 102, 150, 144, 128, 12, 251, 169, 193, 86, 250, 205, 30, 206, 253, 35, 135, 143, 162, 46, 147, 109, 192, 56, 31, 235, 255, 254, 223, 44, 91, 77, 121, 43, 245, 255, 59, 199, 200, 217, 223, 78, 94, 65, 149, 166, 16, 190, 88, 165, 191, 105, 26, 18, 135, 134, 232, 68, 108, 211, 245, 224, 4, 31, 61, 33, 105, 14, 140, 65, 163, 157, 218, 238, 51, 115, 229, 149, 132, 149, 119, 212, 20, 223, 49, 173, 164, 74, 95, 32, 227, 119, 142, 146, 158, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:31:07.347096Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:31:07.347175Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:31:09.065185Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=59 prev_hash=0xd3607daf899062b8d32eea78c9eb56e50ec4a80cf5e42865df0f40311ce00278 hash=0x911aa6c502cfe0f0f5d18d8574a22078637aef1bde2139af1fb176a03d2af9e2 producing_time=3.643216ms +2026-04-20T15:31:09.076201Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=59 current_state_root="68aeadd9dfbd3b296f7aaa8e8e12d411863cd3f2e420d976d349edd47c68cd5a394593ce8f6a0467fbaf64ea8b053fae880bafa5785774b00d5ca46974e723a6" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9e35b03f1dcbf43f882866c8cf12cbcee6fd61ec6df1a89c0fb54eaa833ea0dc"] proof_blobs=[] +2026-04-20T15:31:09.084736Z DEBUG StfBlueprint::apply_slot{context=Node da_height=59}: sov_chain_state: Setting next visible slot number next_visible_slot_number=55 +2026-04-20T15:31:09.090767Z DEBUG StfBlueprint::apply_slot{context=Node da_height=59}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x9e35b03f1dcbf43f882866c8cf12cbcee6fd61ec6df1a89c0fb54eaa833ea0dc}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:09.093013Z DEBUG StfBlueprint::apply_slot{context=Node da_height=59}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=68aeadd9dfbd3b296f7aaa8e8e12d411863cd3f2e420d976d349edd47c68cd5a394593ce8f6a0467fbaf64ea8b053fae880bafa5785774b00d5ca46974e723a6 next_version=59 sesssion_starting_time=295.108µs +2026-04-20T15:31:09.101211Z DEBUG StfBlueprint::apply_slot{context=Node da_height=59}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3ba59b8abea585f4c56da12456763f7383abbb4f57e0888c4a1b88fb5f58410c2ae2306a6cc42f5416978f2aed6bcbea22e7332bbd875779924602446ef0304f next_version=59 time=9.277569ms accesses_build_time=771.245µs finishing_session_time=8.071828ms +2026-04-20T15:31:09.102222Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="68aeadd9dfbd3b296f7aaa8e8e12d411863cd3f2e420d976d349edd47c68cd5a394593ce8f6a0467fbaf64ea8b053fae880bafa5785774b00d5ca46974e723a6" next_state_root="3ba59b8abea585f4c56da12456763f7383abbb4f57e0888c4a1b88fb5f58410c2ae2306a6cc42f5416978f2aed6bcbea22e7332bbd875779924602446ef0304f" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:31:09.106463Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 59, latest_finalized_slot_number: 59, sync_status: Syncing { synced_da_height: 58, target_da_height: 59 }, .. } +2026-04-20T15:31:09.107880Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=55 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 59, latest_finalized_slot_number: 59, sync_status: Syncing { synced_da_height: 58, target_da_height: 59 }, .. } +2026-04-20T15:31:09.108819Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=55 +2026-04-20T15:31:09.111403Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:31:09.112471Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=51 +2026-04-20T15:31:09.114311Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=56 +2026-04-20T15:31:09.115200Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:31:09.116654Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=56 sequence_number=60 +2026-04-20T15:31:09.116909Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:09.116942Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=60 blob_id=2147897378340173025760298354807940208 visible_slot_number_after_increase=56 visible_slots_to_advance=1 +2026-04-20T15:31:09.121653Z DEBUG compute_state_update{scope="sequencer" rollup_height=56 slot_number=56}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:31:09.121950Z DEBUG compute_state_update{scope="sequencer" rollup_height=56 slot_number=56}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3ba59b8abea585f4c56da12456763f7383abbb4f57e0888c4a1b88fb5f58410c2ae2306a6cc42f5416978f2aed6bcbea22e7332bbd875779924602446ef0304f next_version=60 sesssion_starting_time=1.276012ms +2026-04-20T15:31:09.122078Z DEBUG sov_stf_runner::runner: Block execution complete time=2.988067241s +2026-04-20T15:31:09.122124Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:31:09.123596Z DEBUG manage_blob_submission_inside_task{blob_id=2147897378340173025760298354807940208 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x178b7951336f0249719bdd6018d17f2ae4d452e7d57890911b980a8d547d3ff5 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=60 include_at=60 bytes=13 time=1.52514ms +2026-04-20T15:31:09.124773Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:31:09.125281Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:31:09.127634Z DEBUG compute_state_update{scope="sequencer" rollup_height=56 slot_number=56}: sov_state::nomt::prover_storage: computed next state root state_root=153747ba2bfef7442594f2b2ebb5101de01639e1a47b41a1086bb32dcf30831801abeb1180f28392434b36d467d95c914e84411953ef6b09cf3ee7511a56cd1d next_version=60 time=7.354212ms accesses_build_time=388.207µs finishing_session_time=5.601063ms +2026-04-20T15:31:09.643896Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BzAct2Z3SMeiJpnIMR8O7g==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:31:09.681811Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:31:09.694474Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1762618 cycles +2026-04-20T15:31:09.697267Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [29, 185, 227, 73, 154, 174, 141, 22, 223, 29, 158, 73, 142, 64, 51, 85, 34, 220, 55, 193, 124, 218, 166, 185, 81, 221, 181, 156, 69, 43, 247, 143, 7, 94, 141, 218, 191, 255, 168, 227, 225, 8, 174, 201, 46, 8, 225, 165, 242, 74, 212, 167, 2, 97, 87, 49, 32, 97, 159, 171, 223, 2, 249, 169, 126, 15, 63, 70, 9, 36, 183, 126, 41, 194, 67, 149, 208, 225, 22, 16, 44, 245, 137, 188, 65, 163, 44, 50, 22, 107, 48, 64, 79, 38, 229, 184, 7, 99, 132, 193, 147, 224, 164, 221, 220, 93, 0, 196, 169, 134, 201, 24, 36, 40, 130, 120, 193, 139, 47, 100, 124, 47, 37, 219, 64, 167, 167, 13, 170, 114, 81, 242, 7, 97, 188, 243, 98, 62, 214, 26, 160, 152, 65, 39, 44, 76, 59, 79, 5, 61, 186, 37, 107, 75, 30, 26, 171, 72, 254, 242, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:31:10.318677Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:31:10.318755Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:31:12.069148Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=60 prev_hash=0x911aa6c502cfe0f0f5d18d8574a22078637aef1bde2139af1fb176a03d2af9e2 hash=0xf600af71a31605543742f13e69323ed0156f2271887e90cafb3f8655b6dddebe producing_time=3.080331ms +2026-04-20T15:31:12.075554Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=60 current_state_root="3ba59b8abea585f4c56da12456763f7383abbb4f57e0888c4a1b88fb5f58410c2ae2306a6cc42f5416978f2aed6bcbea22e7332bbd875779924602446ef0304f" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x178b7951336f0249719bdd6018d17f2ae4d452e7d57890911b980a8d547d3ff5"] proof_blobs=[] +2026-04-20T15:31:12.084205Z DEBUG StfBlueprint::apply_slot{context=Node da_height=60}: sov_chain_state: Setting next visible slot number next_visible_slot_number=56 +2026-04-20T15:31:12.090545Z DEBUG StfBlueprint::apply_slot{context=Node da_height=60}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x178b7951336f0249719bdd6018d17f2ae4d452e7d57890911b980a8d547d3ff5}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:12.092979Z DEBUG StfBlueprint::apply_slot{context=Node da_height=60}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3ba59b8abea585f4c56da12456763f7383abbb4f57e0888c4a1b88fb5f58410c2ae2306a6cc42f5416978f2aed6bcbea22e7332bbd875779924602446ef0304f next_version=60 sesssion_starting_time=321.248µs +2026-04-20T15:31:12.101156Z DEBUG StfBlueprint::apply_slot{context=Node da_height=60}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=153747ba2bfef7442594f2b2ebb5101de01639e1a47b41a1086bb32dcf3083187c0e37fb87792309f170eab1d50e26146dab6227642139bc1c0730a484d4b703 next_version=60 time=9.415519ms accesses_build_time=894.444µs finishing_session_time=8.043998ms +2026-04-20T15:31:12.102250Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3ba59b8abea585f4c56da12456763f7383abbb4f57e0888c4a1b88fb5f58410c2ae2306a6cc42f5416978f2aed6bcbea22e7332bbd875779924602446ef0304f" next_state_root="153747ba2bfef7442594f2b2ebb5101de01639e1a47b41a1086bb32dcf3083187c0e37fb87792309f170eab1d50e26146dab6227642139bc1c0730a484d4b703" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:31:12.106654Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 60, latest_finalized_slot_number: 60, sync_status: Syncing { synced_da_height: 59, target_da_height: 60 }, .. } +2026-04-20T15:31:12.108122Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=56 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 60, latest_finalized_slot_number: 60, sync_status: Syncing { synced_da_height: 59, target_da_height: 60 }, .. } +2026-04-20T15:31:12.109072Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=56 +2026-04-20T15:31:12.111535Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:31:12.112477Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=52 +2026-04-20T15:31:12.114226Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=57 +2026-04-20T15:31:12.115125Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:31:12.116636Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=57 sequence_number=61 +2026-04-20T15:31:12.116881Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:12.116983Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=61 blob_id=2147897381966981181354681605239964871 visible_slot_number_after_increase=57 visible_slots_to_advance=1 +2026-04-20T15:31:12.118737Z DEBUG sov_stf_runner::runner: Block execution complete time=2.996618896s +2026-04-20T15:31:12.118835Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:31:12.120596Z DEBUG compute_state_update{scope="sequencer" rollup_height=57 slot_number=57}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:31:12.120928Z DEBUG compute_state_update{scope="sequencer" rollup_height=57 slot_number=57}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=153747ba2bfef7442594f2b2ebb5101de01639e1a47b41a1086bb32dcf3083187c0e37fb87792309f170eab1d50e26146dab6227642139bc1c0730a484d4b703 next_version=61 sesssion_starting_time=338.738µs +2026-04-20T15:31:12.121006Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:31:12.121715Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:31:12.123446Z DEBUG manage_blob_submission_inside_task{blob_id=2147897381966981181354681605239964871 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xa3c808110b445ede83393f5548a681f16cdcef93eba9ad3e05d0b1a92a894849 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=61 include_at=61 bytes=13 time=1.420971ms +2026-04-20T15:31:12.126335Z DEBUG compute_state_update{scope="sequencer" rollup_height=57 slot_number=57}: sov_state::nomt::prover_storage: computed next state root state_root=06c2d7ced759711d61b7739f2cb8612a005f439755e544d81503b16d68bf845c4ddf9b4d2f7c266a25af87569ae4dba084136aa01e29d6c4c97c1b66e7e2e2e3 next_version=61 time=6.139701ms accesses_build_time=388.288µs finishing_session_time=5.312266ms +2026-04-20T15:31:12.589068Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hCJO-xsxQWmfFuNS0w9J0w==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:31:12.624508Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:31:12.635835Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1691698 cycles +2026-04-20T15:31:12.637553Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [52, 245, 43, 58, 94, 115, 153, 118, 200, 120, 197, 179, 249, 72, 207, 151, 214, 253, 58, 212, 17, 109, 138, 137, 93, 193, 211, 64, 251, 237, 135, 4, 125, 140, 233, 154, 89, 169, 36, 214, 51, 213, 27, 92, 44, 115, 185, 54, 43, 157, 146, 2, 125, 50, 93, 7, 80, 209, 58, 197, 204, 165, 226, 212, 70, 142, 144, 251, 109, 174, 251, 194, 0, 192, 16, 55, 46, 216, 38, 157, 59, 225, 8, 196, 99, 116, 25, 201, 92, 102, 189, 114, 106, 235, 64, 70, 55, 185, 3, 41, 162, 255, 41, 222, 242, 247, 183, 93, 160, 223, 130, 248, 108, 157, 59, 142, 134, 42, 183, 60, 156, 217, 13, 25, 107, 234, 199, 244, 156, 45, 189, 110, 225, 58, 96, 234, 39, 45, 84, 91, 105, 56, 31, 170, 44, 65, 235, 120, 63, 164, 42, 78, 171, 161, 84, 210, 228, 247, 183, 95, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:31:13.234173Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:31:13.234255Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:31:15.074072Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=61 prev_hash=0xf600af71a31605543742f13e69323ed0156f2271887e90cafb3f8655b6dddebe hash=0xd5b07e2ca0b2fb0b69f01d378b927d25b20108c87a75985841e868a7c76d8290 producing_time=3.347799ms +2026-04-20T15:31:15.082233Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=61 current_state_root="153747ba2bfef7442594f2b2ebb5101de01639e1a47b41a1086bb32dcf3083187c0e37fb87792309f170eab1d50e26146dab6227642139bc1c0730a484d4b703" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa3c808110b445ede83393f5548a681f16cdcef93eba9ad3e05d0b1a92a894849"] proof_blobs=[] +2026-04-20T15:31:15.091030Z DEBUG StfBlueprint::apply_slot{context=Node da_height=61}: sov_chain_state: Setting next visible slot number next_visible_slot_number=57 +2026-04-20T15:31:15.097444Z DEBUG StfBlueprint::apply_slot{context=Node da_height=61}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xa3c808110b445ede83393f5548a681f16cdcef93eba9ad3e05d0b1a92a894849}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:15.099768Z DEBUG StfBlueprint::apply_slot{context=Node da_height=61}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=153747ba2bfef7442594f2b2ebb5101de01639e1a47b41a1086bb32dcf3083187c0e37fb87792309f170eab1d50e26146dab6227642139bc1c0730a484d4b703 next_version=61 sesssion_starting_time=323.588µs +2026-04-20T15:31:15.107005Z DEBUG StfBlueprint::apply_slot{context=Node da_height=61}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=06c2d7ced759711d61b7739f2cb8612a005f439755e544d81503b16d68bf845c71812aa2ae03c8086144fdfef3c60b09225adbb1ede9ea73ec7d4f75eef3fa43 next_version=61 time=8.347076ms accesses_build_time=774.615µs finishing_session_time=7.101554ms +2026-04-20T15:31:15.108246Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="153747ba2bfef7442594f2b2ebb5101de01639e1a47b41a1086bb32dcf3083187c0e37fb87792309f170eab1d50e26146dab6227642139bc1c0730a484d4b703" next_state_root="06c2d7ced759711d61b7739f2cb8612a005f439755e544d81503b16d68bf845c71812aa2ae03c8086144fdfef3c60b09225adbb1ede9ea73ec7d4f75eef3fa43" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:31:15.112648Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 61, latest_finalized_slot_number: 61, sync_status: Syncing { synced_da_height: 60, target_da_height: 61 }, .. } +2026-04-20T15:31:15.114028Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=57 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 61, latest_finalized_slot_number: 61, sync_status: Syncing { synced_da_height: 60, target_da_height: 61 }, .. } +2026-04-20T15:31:15.114962Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=57 +2026-04-20T15:31:15.117456Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:31:15.118422Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=53 +2026-04-20T15:31:15.120222Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=58 +2026-04-20T15:31:15.121137Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:31:15.122679Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=58 sequence_number=62 +2026-04-20T15:31:15.122932Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:15.122992Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=62 blob_id=2147897385600966798314904565943918416 visible_slot_number_after_increase=58 visible_slots_to_advance=1 +2026-04-20T15:31:15.127829Z DEBUG compute_state_update{scope="sequencer" rollup_height=58 slot_number=58}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:31:15.128142Z DEBUG sov_stf_runner::runner: Block execution complete time=3.009327884s +2026-04-20T15:31:15.128146Z DEBUG compute_state_update{scope="sequencer" rollup_height=58 slot_number=58}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=06c2d7ced759711d61b7739f2cb8612a005f439755e544d81503b16d68bf845c71812aa2ae03c8086144fdfef3c60b09225adbb1ede9ea73ec7d4f75eef3fa43 next_version=62 sesssion_starting_time=989.204µs +2026-04-20T15:31:15.128189Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:31:15.129438Z DEBUG manage_blob_submission_inside_task{blob_id=2147897385600966798314904565943918416 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x26c81191941b2b6d5754f03936a04030a74c514b4b0beaef1b7197ba1c7bc15c sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=62 include_at=62 bytes=13 time=1.205753ms +2026-04-20T15:31:15.130563Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:31:15.131139Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:31:15.133383Z DEBUG compute_state_update{scope="sequencer" rollup_height=58 slot_number=58}: sov_state::nomt::prover_storage: computed next state root state_root=4fd28c0dc35832bf2ae2a75c0fb6b8581a1290c37774e02057646c64e28974db7d2e27a29460ddbbdfc7dae172269a5a2557891c66a5c92e4af9410dc7f9bc0b next_version=62 time=6.663207ms accesses_build_time=426.867µs finishing_session_time=5.151366ms +2026-04-20T15:31:15.584344Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PWVTkB3TRrSmaae0dF3iPw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:31:15.621688Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:31:15.633024Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1759696 cycles +2026-04-20T15:31:15.635823Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [23, 103, 123, 210, 47, 183, 61, 52, 121, 181, 151, 39, 89, 80, 237, 147, 46, 95, 229, 3, 24, 117, 83, 57, 234, 83, 23, 121, 84, 252, 105, 156, 18, 64, 82, 159, 26, 242, 50, 233, 210, 45, 168, 154, 29, 47, 172, 228, 124, 187, 235, 161, 98, 65, 110, 106, 74, 62, 162, 71, 239, 99, 201, 194, 44, 91, 214, 100, 88, 35, 169, 88, 76, 228, 120, 3, 208, 71, 2, 194, 230, 175, 115, 251, 71, 31, 242, 197, 109, 92, 106, 10, 59, 126, 36, 11, 30, 158, 71, 155, 64, 71, 14, 68, 54, 186, 49, 22, 166, 176, 153, 85, 202, 78, 224, 223, 80, 193, 103, 105, 157, 161, 176, 149, 69, 240, 126, 250, 200, 128, 17, 86, 75, 23, 3, 124, 81, 187, 26, 57, 172, 178, 10, 150, 19, 154, 69, 167, 240, 184, 149, 79, 127, 59, 38, 69, 15, 168, 24, 72, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:31:16.256084Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:31:16.256173Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:31:18.078574Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=62 prev_hash=0xd5b07e2ca0b2fb0b69f01d378b927d25b20108c87a75985841e868a7c76d8290 hash=0xc42537fb660ae089873da571240ab8cfbee2f0c59220eafbd85a72774ef0dfc5 producing_time=3.12336ms +2026-04-20T15:31:18.080785Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=62 current_state_root="06c2d7ced759711d61b7739f2cb8612a005f439755e544d81503b16d68bf845c71812aa2ae03c8086144fdfef3c60b09225adbb1ede9ea73ec7d4f75eef3fa43" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x26c81191941b2b6d5754f03936a04030a74c514b4b0beaef1b7197ba1c7bc15c"] proof_blobs=[] +2026-04-20T15:31:18.089700Z DEBUG StfBlueprint::apply_slot{context=Node da_height=62}: sov_chain_state: Setting next visible slot number next_visible_slot_number=58 +2026-04-20T15:31:18.095996Z DEBUG StfBlueprint::apply_slot{context=Node da_height=62}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x26c81191941b2b6d5754f03936a04030a74c514b4b0beaef1b7197ba1c7bc15c}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:18.098342Z DEBUG StfBlueprint::apply_slot{context=Node da_height=62}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=06c2d7ced759711d61b7739f2cb8612a005f439755e544d81503b16d68bf845c71812aa2ae03c8086144fdfef3c60b09225adbb1ede9ea73ec7d4f75eef3fa43 next_version=62 sesssion_starting_time=330.568µs +2026-04-20T15:31:18.106038Z DEBUG StfBlueprint::apply_slot{context=Node da_height=62}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4fd28c0dc35832bf2ae2a75c0fb6b8581a1290c37774e02057646c64e28974db77884f047bd83b298b2f699d92f49b05ab0e63739f8d386cd7928c1f87c41d61 next_version=62 time=8.818683ms accesses_build_time=779.995µs finishing_session_time=7.565521ms +2026-04-20T15:31:18.107136Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="06c2d7ced759711d61b7739f2cb8612a005f439755e544d81503b16d68bf845c71812aa2ae03c8086144fdfef3c60b09225adbb1ede9ea73ec7d4f75eef3fa43" next_state_root="4fd28c0dc35832bf2ae2a75c0fb6b8581a1290c37774e02057646c64e28974db77884f047bd83b298b2f699d92f49b05ab0e63739f8d386cd7928c1f87c41d61" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:31:18.111603Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 62, latest_finalized_slot_number: 62, sync_status: Synced { synced_da_height: 61 }, .. } +2026-04-20T15:31:18.113010Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=58 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 62, latest_finalized_slot_number: 62, sync_status: Synced { synced_da_height: 61 }, .. } +2026-04-20T15:31:18.113981Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=58 +2026-04-20T15:31:18.116559Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:31:18.117537Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=54 +2026-04-20T15:31:18.119353Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=59 +2026-04-20T15:31:18.120346Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:31:18.121898Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=59 sequence_number=63 +2026-04-20T15:31:18.122163Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=63 blob_id=2147897389226534096353051956142818098 visible_slot_number_after_increase=59 visible_slots_to_advance=1 +2026-04-20T15:31:18.122159Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:18.126606Z DEBUG compute_state_update{scope="sequencer" rollup_height=59 slot_number=59}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:31:18.126941Z DEBUG compute_state_update{scope="sequencer" rollup_height=59 slot_number=59}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4fd28c0dc35832bf2ae2a75c0fb6b8581a1290c37774e02057646c64e28974db77884f047bd83b298b2f699d92f49b05ab0e63739f8d386cd7928c1f87c41d61 next_version=63 sesssion_starting_time=511.677µs +2026-04-20T15:31:18.127118Z DEBUG sov_stf_runner::runner: Block execution complete time=2.998936671s +2026-04-20T15:31:18.127167Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:31:18.129661Z DEBUG manage_blob_submission_inside_task{blob_id=2147897389226534096353051956142818098 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xe115a6cc81f2a32c9af0d1ea179a92a7408a4b290cd465e369efbcdb0e39c8f7 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=63 include_at=63 bytes=13 time=1.718949ms +2026-04-20T15:31:18.129928Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:31:18.130799Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:31:18.132607Z DEBUG compute_state_update{scope="sequencer" rollup_height=59 slot_number=59}: sov_state::nomt::prover_storage: computed next state root state_root=0d503c3a472a64583d892683d884362655ae022028c81c387284b58cdbae48fe4f008e9f67fe4eed3fdf77e7f6179c0408a8933240e20fc364eea40a227ce49d next_version=63 time=6.580637ms accesses_build_time=395.067µs finishing_session_time=5.559284ms +2026-04-20T15:31:18.605989Z DEBUG sp1_core_executor_runner::native: CHILD sp1_fswHdtAMRq-cXLZp7rCdSg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:31:18.643524Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:31:18.655016Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1757627 cycles +2026-04-20T15:31:18.658331Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [31, 42, 207, 17, 85, 81, 130, 91, 158, 255, 248, 178, 218, 224, 6, 91, 95, 108, 198, 91, 213, 125, 199, 122, 48, 232, 139, 148, 198, 19, 231, 254, 4, 23, 238, 174, 101, 1, 43, 211, 30, 23, 164, 133, 49, 119, 95, 122, 147, 34, 108, 75, 226, 229, 88, 246, 218, 209, 233, 19, 140, 212, 228, 38, 4, 133, 93, 203, 83, 180, 219, 48, 207, 216, 221, 82, 153, 209, 189, 20, 34, 98, 84, 69, 15, 33, 146, 14, 82, 98, 176, 170, 222, 18, 170, 186, 121, 95, 248, 111, 65, 105, 90, 69, 165, 58, 221, 108, 148, 38, 152, 151, 39, 118, 240, 76, 154, 152, 190, 4, 171, 102, 204, 240, 34, 197, 59, 89, 82, 112, 133, 178, 147, 190, 38, 26, 171, 5, 122, 105, 54, 163, 126, 43, 236, 179, 248, 41, 61, 249, 150, 186, 133, 201, 104, 237, 92, 86, 78, 231, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:31:19.276492Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:31:19.276572Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:31:21.083077Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=63 prev_hash=0xc42537fb660ae089873da571240ab8cfbee2f0c59220eafbd85a72774ef0dfc5 hash=0x0419545f5f76773a3b83e7d2f2f6d99648e8c981658f77f7cf6c26548f29789d producing_time=3.14854ms +2026-04-20T15:31:21.089973Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=63 current_state_root="4fd28c0dc35832bf2ae2a75c0fb6b8581a1290c37774e02057646c64e28974db77884f047bd83b298b2f699d92f49b05ab0e63739f8d386cd7928c1f87c41d61" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe115a6cc81f2a32c9af0d1ea179a92a7408a4b290cd465e369efbcdb0e39c8f7"] proof_blobs=[] +2026-04-20T15:31:21.098412Z DEBUG StfBlueprint::apply_slot{context=Node da_height=63}: sov_chain_state: Setting next visible slot number next_visible_slot_number=59 +2026-04-20T15:31:21.104367Z DEBUG StfBlueprint::apply_slot{context=Node da_height=63}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xe115a6cc81f2a32c9af0d1ea179a92a7408a4b290cd465e369efbcdb0e39c8f7}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:21.106545Z DEBUG StfBlueprint::apply_slot{context=Node da_height=63}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4fd28c0dc35832bf2ae2a75c0fb6b8581a1290c37774e02057646c64e28974db77884f047bd83b298b2f699d92f49b05ab0e63739f8d386cd7928c1f87c41d61 next_version=63 sesssion_starting_time=275.269µs +2026-04-20T15:31:21.114271Z DEBUG StfBlueprint::apply_slot{context=Node da_height=63}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=0d503c3a472a64583d892683d884362655ae022028c81c387284b58cdbae48fe254c75cb4b3d702860a9fcf550b165d65e105ff9b112222bb9f5e9f8b974627b next_version=63 time=8.776943ms accesses_build_time=764.055µs finishing_session_time=7.593181ms +2026-04-20T15:31:21.115372Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4fd28c0dc35832bf2ae2a75c0fb6b8581a1290c37774e02057646c64e28974db77884f047bd83b298b2f699d92f49b05ab0e63739f8d386cd7928c1f87c41d61" next_state_root="0d503c3a472a64583d892683d884362655ae022028c81c387284b58cdbae48fe254c75cb4b3d702860a9fcf550b165d65e105ff9b112222bb9f5e9f8b974627b" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:31:21.119947Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 63, latest_finalized_slot_number: 63, sync_status: Synced { synced_da_height: 62 }, .. } +2026-04-20T15:31:21.121528Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=59 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 63, latest_finalized_slot_number: 63, sync_status: Synced { synced_da_height: 62 }, .. } +2026-04-20T15:31:21.122582Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=59 +2026-04-20T15:31:21.125301Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:31:21.126346Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=55 +2026-04-20T15:31:21.128279Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=60 +2026-04-20T15:31:21.129225Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:31:21.130926Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=60 sequence_number=64 +2026-04-20T15:31:21.131192Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:21.131230Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=64 blob_id=2147897392864246506228061477869451518 visible_slot_number_after_increase=60 visible_slots_to_advance=1 +2026-04-20T15:31:21.135219Z DEBUG sov_stf_runner::runner: Block execution complete time=3.008060232s +2026-04-20T15:31:21.135271Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:31:21.135298Z DEBUG compute_state_update{scope="sequencer" rollup_height=60 slot_number=60}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:31:21.135610Z DEBUG compute_state_update{scope="sequencer" rollup_height=60 slot_number=60}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0d503c3a472a64583d892683d884362655ae022028c81c387284b58cdbae48fe254c75cb4b3d702860a9fcf550b165d65e105ff9b112222bb9f5e9f8b974627b next_version=64 sesssion_starting_time=311.818µs +2026-04-20T15:31:21.138419Z DEBUG manage_blob_submission_inside_task{blob_id=2147897392864246506228061477869451518 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xf6e244d05ce8ca644025a35698f32c94f87b64285546f15314616a892af4ea1a sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=64 include_at=64 bytes=13 time=1.479331ms +2026-04-20T15:31:21.139010Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:31:21.140065Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:31:21.141133Z DEBUG compute_state_update{scope="sequencer" rollup_height=60 slot_number=60}: sov_state::nomt::prover_storage: computed next state root state_root=2e60e6d162eaad8f9bb2e8c4c78be3d391685380a5e912402be4a411fd42c6451b0b55363565fe0b8c23fb3908cbbe9ae31131d05b3ccc54a3d96d4769a8e0c1 next_version=64 time=6.206679ms accesses_build_time=361.867µs finishing_session_time=5.414985ms +2026-04-20T15:31:21.609043Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nFtxpS26TdauVc7IoTwYhA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:31:21.648795Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:31:21.661670Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1855440 cycles +2026-04-20T15:31:21.664289Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [73, 26, 252, 12, 41, 171, 1, 81, 89, 122, 182, 113, 101, 158, 63, 36, 169, 233, 72, 109, 76, 83, 128, 107, 56, 7, 69, 37, 87, 134, 210, 163, 57, 0, 83, 158, 144, 200, 158, 50, 191, 34, 66, 82, 199, 134, 199, 60, 156, 40, 183, 158, 169, 137, 225, 170, 251, 180, 208, 224, 75, 80, 157, 57, 51, 207, 174, 207, 188, 123, 128, 127, 34, 246, 233, 69, 207, 82, 84, 78, 202, 173, 173, 182, 48, 214, 157, 212, 150, 42, 47, 241, 139, 67, 7, 217, 102, 176, 167, 19, 84, 82, 83, 32, 222, 144, 129, 85, 233, 227, 138, 88, 21, 184, 15, 14, 56, 1, 57, 120, 188, 39, 215, 27, 109, 130, 41, 25, 206, 99, 212, 189, 208, 38, 73, 116, 172, 183, 187, 188, 39, 243, 4, 143, 48, 235, 228, 231, 73, 61, 236, 107, 245, 27, 71, 249, 15, 76, 111, 236, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:31:22.318007Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:31:22.318087Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:31:24.087535Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=64 prev_hash=0x0419545f5f76773a3b83e7d2f2f6d99648e8c981658f77f7cf6c26548f29789d hash=0x607daaccda08012c9a9a24b259456af13c1e9dbfcbe54d5d7abd71cead3f0032 producing_time=2.973081ms +2026-04-20T15:31:24.097161Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=64 current_state_root="0d503c3a472a64583d892683d884362655ae022028c81c387284b58cdbae48fe254c75cb4b3d702860a9fcf550b165d65e105ff9b112222bb9f5e9f8b974627b" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf6e244d05ce8ca644025a35698f32c94f87b64285546f15314616a892af4ea1a"] proof_blobs=[] +2026-04-20T15:31:24.105064Z DEBUG StfBlueprint::apply_slot{context=Node da_height=64}: sov_chain_state: Setting next visible slot number next_visible_slot_number=60 +2026-04-20T15:31:24.110727Z DEBUG StfBlueprint::apply_slot{context=Node da_height=64}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xf6e244d05ce8ca644025a35698f32c94f87b64285546f15314616a892af4ea1a}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:24.112803Z DEBUG StfBlueprint::apply_slot{context=Node da_height=64}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0d503c3a472a64583d892683d884362655ae022028c81c387284b58cdbae48fe254c75cb4b3d702860a9fcf550b165d65e105ff9b112222bb9f5e9f8b974627b next_version=64 sesssion_starting_time=239.588µs +2026-04-20T15:31:24.120554Z DEBUG StfBlueprint::apply_slot{context=Node da_height=64}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e60e6d162eaad8f9bb2e8c4c78be3d391685380a5e912402be4a411fd42c6452ff2e47aaa5cc5bba7923f6fb9be673712f8c90fc4bdad214a7ca33a2a19a8c2 next_version=64 time=8.783643ms accesses_build_time=778.105µs finishing_session_time=7.628041ms +2026-04-20T15:31:24.121558Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="0d503c3a472a64583d892683d884362655ae022028c81c387284b58cdbae48fe254c75cb4b3d702860a9fcf550b165d65e105ff9b112222bb9f5e9f8b974627b" next_state_root="2e60e6d162eaad8f9bb2e8c4c78be3d391685380a5e912402be4a411fd42c6452ff2e47aaa5cc5bba7923f6fb9be673712f8c90fc4bdad214a7ca33a2a19a8c2" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:31:24.126017Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 64, latest_finalized_slot_number: 64, sync_status: Syncing { synced_da_height: 63, target_da_height: 64 }, .. } +2026-04-20T15:31:24.127781Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=60 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 64, latest_finalized_slot_number: 64, sync_status: Syncing { synced_da_height: 63, target_da_height: 64 }, .. } +2026-04-20T15:31:24.128824Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=60 +2026-04-20T15:31:24.131303Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:31:24.132229Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=56 +2026-04-20T15:31:24.133966Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=61 +2026-04-20T15:31:24.134837Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:31:24.136232Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=61 sequence_number=65 +2026-04-20T15:31:24.136481Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:24.136644Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=65 blob_id=2147897396498273076629204945032709528 visible_slot_number_after_increase=61 visible_slots_to_advance=1 +2026-04-20T15:31:24.140508Z DEBUG compute_state_update{scope="sequencer" rollup_height=61 slot_number=61}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:31:24.140815Z DEBUG compute_state_update{scope="sequencer" rollup_height=61 slot_number=61}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e60e6d162eaad8f9bb2e8c4c78be3d391685380a5e912402be4a411fd42c6452ff2e47aaa5cc5bba7923f6fb9be673712f8c90fc4bdad214a7ca33a2a19a8c2 next_version=65 sesssion_starting_time=651.816µs +2026-04-20T15:31:24.141187Z DEBUG sov_stf_runner::runner: Block execution complete time=3.005923016s +2026-04-20T15:31:24.141257Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:31:24.142881Z DEBUG manage_blob_submission_inside_task{blob_id=2147897396498273076629204945032709528 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xf7d739b1b861213b26974d14fb5bc5380c5c03464ed732d4a1e048128a5f6ca5 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=65 include_at=65 bytes=13 time=1.5071ms +2026-04-20T15:31:24.143424Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:31:24.144107Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:31:24.146214Z DEBUG compute_state_update{scope="sequencer" rollup_height=61 slot_number=61}: sov_state::nomt::prover_storage: computed next state root state_root=21d2498b47e919f0d4130f6741255f0f5be574482f8f4e01ab45116886748aa116a771bf28531ea66fd654f4406e1db40362dbf4476fac902ee801cdf97c10b1 next_version=65 time=6.423788ms accesses_build_time=360.128µs finishing_session_time=5.307186ms +2026-04-20T15:31:24.623872Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9fXdH-SCQqmmitE9yzXz3g==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:31:24.683707Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:31:24.696650Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 3947960 cycles +2026-04-20T15:31:24.698912Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [94, 5, 65, 134, 3, 60, 231, 249, 77, 5, 249, 129, 246, 26, 188, 159, 246, 16, 170, 6, 108, 40, 151, 227, 123, 152, 86, 156, 22, 73, 135, 197, 2, 168, 89, 233, 22, 177, 89, 144, 84, 114, 122, 208, 230, 230, 225, 97, 81, 161, 213, 198, 92, 25, 170, 252, 51, 57, 78, 223, 179, 205, 248, 94, 70, 137, 219, 175, 222, 210, 108, 168, 152, 114, 195, 5, 77, 46, 136, 218, 174, 49, 130, 221, 140, 188, 61, 82, 24, 6, 45, 180, 126, 157, 238, 136, 113, 40, 148, 203, 159, 92, 191, 144, 21, 80, 68, 210, 7, 186, 15, 158, 205, 78, 19, 79, 246, 203, 216, 151, 253, 191, 35, 164, 92, 193, 99, 209, 211, 96, 125, 175, 137, 144, 98, 184, 211, 46, 234, 120, 201, 235, 86, 229, 14, 196, 168, 12, 245, 228, 40, 101, 223, 15, 64, 49, 28, 224, 2, 120, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:31:26.078812Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:31:26.078894Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:31:27.091973Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=65 prev_hash=0x607daaccda08012c9a9a24b259456af13c1e9dbfcbe54d5d7abd71cead3f0032 hash=0x1b275bb4cc3500a21fdf7f43e1bb104718243f20845a5046dec7a9a8eb0b4601 producing_time=3.062781ms +2026-04-20T15:31:27.104131Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=65 current_state_root="2e60e6d162eaad8f9bb2e8c4c78be3d391685380a5e912402be4a411fd42c6452ff2e47aaa5cc5bba7923f6fb9be673712f8c90fc4bdad214a7ca33a2a19a8c2" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf7d739b1b861213b26974d14fb5bc5380c5c03464ed732d4a1e048128a5f6ca5"] proof_blobs=[] +2026-04-20T15:31:27.113122Z DEBUG StfBlueprint::apply_slot{context=Node da_height=65}: sov_chain_state: Setting next visible slot number next_visible_slot_number=61 +2026-04-20T15:31:27.119576Z DEBUG StfBlueprint::apply_slot{context=Node da_height=65}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xf7d739b1b861213b26974d14fb5bc5380c5c03464ed732d4a1e048128a5f6ca5}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:27.121913Z DEBUG StfBlueprint::apply_slot{context=Node da_height=65}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e60e6d162eaad8f9bb2e8c4c78be3d391685380a5e912402be4a411fd42c6452ff2e47aaa5cc5bba7923f6fb9be673712f8c90fc4bdad214a7ca33a2a19a8c2 next_version=65 sesssion_starting_time=327.228µs +2026-04-20T15:31:27.129666Z DEBUG StfBlueprint::apply_slot{context=Node da_height=65}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=21d2498b47e919f0d4130f6741255f0f5be574482f8f4e01ab45116886748aa11b7d828130f3b4eabdf0c8f8e14e1478e9dad796167d74791f75beb0c94ee93a next_version=65 time=8.876412ms accesses_build_time=782.935µs finishing_session_time=7.61658ms +2026-04-20T15:31:27.130760Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e60e6d162eaad8f9bb2e8c4c78be3d391685380a5e912402be4a411fd42c6452ff2e47aaa5cc5bba7923f6fb9be673712f8c90fc4bdad214a7ca33a2a19a8c2" next_state_root="21d2498b47e919f0d4130f6741255f0f5be574482f8f4e01ab45116886748aa11b7d828130f3b4eabdf0c8f8e14e1478e9dad796167d74791f75beb0c94ee93a" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:31:27.135088Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 65, latest_finalized_slot_number: 65, sync_status: Syncing { synced_da_height: 64, target_da_height: 65 }, .. } +2026-04-20T15:31:27.136619Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=61 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 65, latest_finalized_slot_number: 65, sync_status: Syncing { synced_da_height: 64, target_da_height: 65 }, .. } +2026-04-20T15:31:27.137627Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=61 +2026-04-20T15:31:27.140216Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:31:27.141195Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=57 +2026-04-20T15:31:27.143115Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=62 +2026-04-20T15:31:27.144189Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:31:27.145908Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=62 sequence_number=66 +2026-04-20T15:31:27.146213Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=66 blob_id=2147897400135906719099410404344011613 visible_slot_number_after_increase=62 visible_slots_to_advance=1 +2026-04-20T15:31:27.146186Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:27.150791Z DEBUG compute_state_update{scope="sequencer" rollup_height=62 slot_number=62}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:31:27.151077Z DEBUG compute_state_update{scope="sequencer" rollup_height=62 slot_number=62}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=21d2498b47e919f0d4130f6741255f0f5be574482f8f4e01ab45116886748aa11b7d828130f3b4eabdf0c8f8e14e1478e9dad796167d74791f75beb0c94ee93a next_version=66 sesssion_starting_time=904.734µs +2026-04-20T15:31:27.151614Z DEBUG sov_stf_runner::runner: Block execution complete time=3.010369177s +2026-04-20T15:31:27.151714Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:31:27.153180Z DEBUG manage_blob_submission_inside_task{blob_id=2147897400135906719099410404344011613 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x3c4d7799c3dc22bf0c16d493cba852a326b32ede52118d2db629e58de5fc7b56 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=66 include_at=66 bytes=13 time=1.62578ms +2026-04-20T15:31:27.154034Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:31:27.155028Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:31:27.156520Z DEBUG compute_state_update{scope="sequencer" rollup_height=62 slot_number=62}: sov_state::nomt::prover_storage: computed next state root state_root=60e453ce81ae38fa4b0d9a3dcc674684dfa1d865bfe49b407b2c4cccc109ff13561d06a8275c4c7fb19a7b4adaba3c97dc3c4481827991d196cd52deb599a2ea next_version=66 time=6.724646ms accesses_build_time=373.287µs finishing_session_time=5.358045ms +2026-04-20T15:31:27.610723Z DEBUG sp1_core_executor_runner::native: CHILD sp1_MiFjxddNSSCqn9kIRPyRHQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:31:27.644965Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:31:27.656065Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1661255 cycles +2026-04-20T15:31:27.658749Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [104, 174, 173, 217, 223, 189, 59, 41, 111, 122, 170, 142, 142, 18, 212, 17, 134, 60, 211, 242, 228, 32, 217, 118, 211, 73, 237, 212, 124, 104, 205, 90, 57, 69, 147, 206, 143, 106, 4, 103, 251, 175, 100, 234, 139, 5, 63, 174, 136, 11, 175, 165, 120, 87, 116, 176, 13, 92, 164, 105, 116, 231, 35, 166, 112, 255, 55, 70, 183, 154, 220, 198, 103, 238, 186, 10, 188, 160, 129, 155, 218, 59, 104, 117, 90, 177, 104, 190, 105, 175, 172, 155, 116, 12, 222, 52, 26, 69, 120, 207, 185, 139, 115, 213, 47, 68, 134, 226, 49, 217, 209, 70, 147, 66, 13, 105, 250, 92, 194, 10, 238, 250, 121, 198, 91, 16, 241, 191, 145, 26, 166, 197, 2, 207, 224, 240, 245, 209, 141, 133, 116, 162, 32, 120, 99, 122, 239, 27, 222, 33, 57, 175, 31, 177, 118, 160, 61, 42, 249, 226, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:31:28.242800Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:31:28.242881Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:31:30.096052Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=66 prev_hash=0x1b275bb4cc3500a21fdf7f43e1bb104718243f20845a5046dec7a9a8eb0b4601 hash=0xaad911e431ac27957477b412dddbc3e47ecb2de89e5b00bfc89d8d8ec2c3645a producing_time=3.055571ms +2026-04-20T15:31:30.104610Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=66 current_state_root="21d2498b47e919f0d4130f6741255f0f5be574482f8f4e01ab45116886748aa11b7d828130f3b4eabdf0c8f8e14e1478e9dad796167d74791f75beb0c94ee93a" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x3c4d7799c3dc22bf0c16d493cba852a326b32ede52118d2db629e58de5fc7b56"] proof_blobs=[] +2026-04-20T15:31:30.109499Z DEBUG StfBlueprint::apply_slot{context=Node da_height=66}: sov_chain_state: Setting next visible slot number next_visible_slot_number=62 +2026-04-20T15:31:30.112846Z DEBUG StfBlueprint::apply_slot{context=Node da_height=66}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x3c4d7799c3dc22bf0c16d493cba852a326b32ede52118d2db629e58de5fc7b56}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:30.114016Z DEBUG StfBlueprint::apply_slot{context=Node da_height=66}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=21d2498b47e919f0d4130f6741255f0f5be574482f8f4e01ab45116886748aa11b7d828130f3b4eabdf0c8f8e14e1478e9dad796167d74791f75beb0c94ee93a next_version=66 sesssion_starting_time=122.179µs +2026-04-20T15:31:30.120530Z DEBUG StfBlueprint::apply_slot{context=Node da_height=66}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=60e453ce81ae38fa4b0d9a3dcc674684dfa1d865bfe49b407b2c4cccc109ff13725be87b27a3edf7fab517f645ea17e753d6bf2c679dafef64aeb90e82977e8c next_version=66 time=7.045104ms accesses_build_time=399.037µs finishing_session_time=6.444758ms +2026-04-20T15:31:30.121168Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="21d2498b47e919f0d4130f6741255f0f5be574482f8f4e01ab45116886748aa11b7d828130f3b4eabdf0c8f8e14e1478e9dad796167d74791f75beb0c94ee93a" next_state_root="60e453ce81ae38fa4b0d9a3dcc674684dfa1d865bfe49b407b2c4cccc109ff13725be87b27a3edf7fab517f645ea17e753d6bf2c679dafef64aeb90e82977e8c" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:31:30.122911Z DEBUG sov_stf_runner::runner: Block execution complete time=2.971217351s +2026-04-20T15:31:30.122956Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:31:30.124248Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 66, latest_finalized_slot_number: 65, sync_status: Synced { synced_da_height: 65 }, .. } +2026-04-20T15:31:30.125667Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=62 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 66, latest_finalized_slot_number: 65, sync_status: Synced { synced_da_height: 65 }, .. } +2026-04-20T15:31:30.126681Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=62 +2026-04-20T15:31:30.129408Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:31:30.130379Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=58 +2026-04-20T15:31:30.131483Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=63 +2026-04-20T15:31:30.131858Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:31:30.132594Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=63 sequence_number=67 +2026-04-20T15:31:30.132798Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:30.132950Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=67 blob_id=2147897403746957479082229199504198788 visible_slot_number_after_increase=63 visible_slots_to_advance=1 +2026-04-20T15:31:30.135470Z DEBUG compute_state_update{scope="sequencer" rollup_height=63 slot_number=63}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60e453ce81ae38fa4b0d9a3dcc674684dfa1d865bfe49b407b2c4cccc109ff13725be87b27a3edf7fab517f645ea17e753d6bf2c679dafef64aeb90e82977e8c next_version=67 sesssion_starting_time=136.069µs +2026-04-20T15:31:30.139233Z DEBUG manage_blob_submission_inside_task{blob_id=2147897403746957479082229199504198788 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x4f8bf8cbce4538c1d42afbd903b7eef1f957d2f3e4526e58b9a4abccc50f33c9 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=67 include_at=67 bytes=13 time=1.699159ms +2026-04-20T15:31:30.140426Z DEBUG compute_state_update{scope="sequencer" rollup_height=63 slot_number=63}: sov_state::nomt::prover_storage: computed next state root state_root=492824f816a3dd25d125ccb420e5c19465ede53f3e888ecd2a81c952f4bdc96e36d693be3c062f5ce847498cb546b43fce9dc1146eb30ab5e4a61f57cbc0a9d1 next_version=67 time=5.312306ms accesses_build_time=213.629µs finishing_session_time=4.885578ms +2026-04-20T15:31:30.630943Z DEBUG sp1_core_executor_runner::native: CHILD sp1_cgccSK2uSUmOtXnuRnCJdw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:31:30.670718Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:31:30.682998Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1817100 cycles +2026-04-20T15:31:30.685664Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [59, 165, 155, 138, 190, 165, 133, 244, 197, 109, 161, 36, 86, 118, 63, 115, 131, 171, 187, 79, 87, 224, 136, 140, 74, 27, 136, 251, 95, 88, 65, 12, 42, 226, 48, 106, 108, 196, 47, 84, 22, 151, 143, 42, 237, 107, 203, 234, 34, 231, 51, 43, 189, 135, 87, 121, 146, 70, 2, 68, 110, 240, 48, 79, 59, 122, 166, 33, 129, 206, 112, 94, 73, 189, 71, 112, 223, 173, 78, 181, 239, 113, 247, 100, 60, 214, 57, 102, 249, 148, 223, 152, 3, 96, 136, 255, 14, 6, 188, 212, 191, 74, 169, 30, 99, 75, 20, 128, 58, 188, 167, 34, 222, 213, 179, 200, 89, 248, 248, 235, 76, 41, 77, 235, 113, 194, 105, 12, 246, 0, 175, 113, 163, 22, 5, 84, 55, 66, 241, 62, 105, 50, 62, 208, 21, 111, 34, 113, 136, 126, 144, 202, 251, 63, 134, 85, 182, 221, 222, 190, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:31:31.327837Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:31:31.327915Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:31:31.405945Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:31:31.649083Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:31:31.651310Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2607482 cycles +2026-04-20T15:31:31.651688Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [51, 0, 0, 0, 0, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 83, 242, 67, 95, 99, 47, 165, 46, 231, 120, 6, 197, 84, 39, 185, 128, 176, 236, 222, 30, 36, 202, 42, 225, 142, 159, 193, 7, 167, 232, 4, 67, 98, 146, 190, 106, 104, 161, 20, 142, 22, 23, 17, 172, 146, 252, 147, 168, 22, 221, 94, 238, 106, 123, 14, 97, 240, 146, 108, 74, 195, 245, 207, 210, 59, 122, 166, 33, 129, 206, 112, 94, 73, 189, 71, 112, 223, 173, 78, 181, 239, 113, 247, 100, 60, 214, 57, 102, 249, 148, 223, 152, 3, 96, 136, 255, 14, 6, 188, 212, 191, 74, 169, 30, 99, 75, 20, 128, 58, 188, 167, 34, 222, 213, 179, 200, 89, 248, 248, 235, 76, 41, 77, 235, 113, 194, 105, 12, 99, 24, 165, 217, 170, 215, 72, 153, 210, 192, 174, 233, 226, 141, 244, 153, 162, 34, 238, 75, 181, 8, 190, 48, 177, 238, 46, 204, 172, 24, 91, 183, 246, 0, 175, 113, 163, 22, 5, 84, 55, 66, 241, 62, 105, 50, 62, 208, 21, 111, 34, 113, 136, 126, 144, 202, 251, 63, 134, 85, 182, 221, 222, 190, 32, 0, 0, 0, 0, 0, 0, 0, 33, 87, 226, 242, 39, 49, 250, 210, 41, 143, 26, 188, 101, 19, 12, 136, 43, 105, 121, 236, 80, 118, 108, 155, 63, 154, 215, 73, 15, 107, 27, 67, 32, 0, 0, 0, 0, 0, 0, 0, 54, 246, 123, 188, 67, 61, 237, 103, 16, 229, 5, 146, 113, 8, 178, 215, 95, 95, 151, 239, 106, 28, 10, 135, 55, 55, 208, 95, 86, 190, 27, 9, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:31:32.568092Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:31:32.568163Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:31:32.569106Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=1951 +2026-04-20T15:31:32.571653Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:31:32.572166Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:31:32.572497Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=68 blob_id=2147897406693118832205819992387618037 +2026-04-20T15:31:33.100624Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=67 prev_hash=0xaad911e431ac27957477b412dddbc3e47ecb2de89e5b00bfc89d8d8ec2c3645a hash=0xe46a7519e3146f2a1a9c00a1b7a6562a3135a72a9d7e00660518c645e6f253ff producing_time=3.180059ms +2026-04-20T15:31:33.105810Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=67 current_state_root="60e453ce81ae38fa4b0d9a3dcc674684dfa1d865bfe49b407b2c4cccc109ff13725be87b27a3edf7fab517f645ea17e753d6bf2c679dafef64aeb90e82977e8c" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x4f8bf8cbce4538c1d42afbd903b7eef1f957d2f3e4526e58b9a4abccc50f33c9"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xaf020686424421814255e822a7fbb480203e842c4d1f81032fabdd0dcf6f84b2, len=2001"] +2026-04-20T15:31:33.113841Z DEBUG StfBlueprint::apply_slot{context=Node da_height=67}: sov_chain_state: Setting next visible slot number next_visible_slot_number=63 +2026-04-20T15:31:33.119822Z DEBUG StfBlueprint::apply_slot{context=Node da_height=67}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x4f8bf8cbce4538c1d42afbd903b7eef1f957d2f3e4526e58b9a4abccc50f33c9}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:33.122143Z DEBUG StfBlueprint::apply_slot{context=Node da_height=67}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=60e453ce81ae38fa4b0d9a3dcc674684dfa1d865bfe49b407b2c4cccc109ff13725be87b27a3edf7fab517f645ea17e753d6bf2c679dafef64aeb90e82977e8c next_version=67 sesssion_starting_time=264.808µs +2026-04-20T15:31:33.129615Z DEBUG StfBlueprint::apply_slot{context=Node da_height=67}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=492824f816a3dd25d125ccb420e5c19465ede53f3e888ecd2a81c952f4bdc96e410311fc1b186d3de12621bcc1b414274245eb8bf9ee016c7f6f4bac3668fb31 next_version=67 time=8.702103ms accesses_build_time=949.734µs finishing_session_time=7.331393ms +2026-04-20T15:31:33.130798Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="21d2498b47e919f0d4130f6741255f0f5be574482f8f4e01ab45116886748aa11b7d828130f3b4eabdf0c8f8e14e1478e9dad796167d74791f75beb0c94ee93a" next_state_root="492824f816a3dd25d125ccb420e5c19465ede53f3e888ecd2a81c952f4bdc96e410311fc1b186d3de12621bcc1b414274245eb8bf9ee016c7f6f4bac3668fb31" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:31:33.135680Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 67, latest_finalized_slot_number: 66, sync_status: Syncing { synced_da_height: 66, target_da_height: 67 }, .. } +2026-04-20T15:31:33.137169Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=63 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 67, latest_finalized_slot_number: 66, sync_status: Syncing { synced_da_height: 66, target_da_height: 67 }, .. } +2026-04-20T15:31:33.138121Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=63 +2026-04-20T15:31:33.140798Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:31:33.141865Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=59 +2026-04-20T15:31:33.143638Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=64 +2026-04-20T15:31:33.144698Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:31:33.148992Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 51. Final slot number 60 +2026-04-20T15:31:33.149695Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=64 sequence_number=69 +2026-04-20T15:31:33.149952Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:33.149995Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=69 blob_id=2147897407394282878118773066410558849 visible_slot_number_after_increase=64 visible_slots_to_advance=1 +2026-04-20T15:31:33.154138Z DEBUG compute_state_update{scope="sequencer" rollup_height=64 slot_number=64}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:31:33.154472Z DEBUG compute_state_update{scope="sequencer" rollup_height=64 slot_number=64}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=492824f816a3dd25d125ccb420e5c19465ede53f3e888ecd2a81c952f4bdc96e410311fc1b186d3de12621bcc1b414274245eb8bf9ee016c7f6f4bac3668fb31 next_version=68 sesssion_starting_time=629.026µs +2026-04-20T15:31:33.154766Z DEBUG sov_stf_runner::runner: Block execution complete time=3.031816428s +2026-04-20T15:31:33.154834Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:31:33.156892Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:31:33.156953Z DEBUG manage_blob_submission_inside_task{blob_id=2147897407394282878118773066410558849 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x8e969075bacff1101a94c36a2c30ed75485d26a61cf3eb26a0c202479b086e65 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=68 include_at=68 bytes=13 time=1.668379ms +2026-04-20T15:31:33.157594Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:31:33.159951Z DEBUG compute_state_update{scope="sequencer" rollup_height=64 slot_number=64}: sov_state::nomt::prover_storage: computed next state root state_root=1dd907542a26162c9efc0882438c417f6a4d749cff2003aa5a243b80116a06d85f1c61fa74b4ba22d945a6e8fef34bba2a3cefc2e30fc7a60c31b631b7499f1b next_version=68 time=6.568948ms accesses_build_time=454.027µs finishing_session_time=5.378655ms +2026-04-20T15:31:36.086305Z DEBUG sp1_core_executor_runner::native: CHILD sp1_thc4WtChQFWspvhT99NBiQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:31:36.105855Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=68 prev_hash=0xe46a7519e3146f2a1a9c00a1b7a6562a3135a72a9d7e00660518c645e6f253ff hash=0x170d272151f84418742db9e45747f3eb650a9bb8433e13cb429e48ea05b1c56b producing_time=3.1568ms +2026-04-20T15:31:36.118064Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=68 current_state_root="492824f816a3dd25d125ccb420e5c19465ede53f3e888ecd2a81c952f4bdc96e410311fc1b186d3de12621bcc1b414274245eb8bf9ee016c7f6f4bac3668fb31" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x8e969075bacff1101a94c36a2c30ed75485d26a61cf3eb26a0c202479b086e65"] proof_blobs=[] +2026-04-20T15:31:36.123951Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:31:36.126931Z DEBUG StfBlueprint::apply_slot{context=Node da_height=68}: sov_chain_state: Setting next visible slot number next_visible_slot_number=64 +2026-04-20T15:31:36.136254Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1765167 cycles +2026-04-20T15:31:36.138915Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [21, 55, 71, 186, 43, 254, 247, 68, 37, 148, 242, 178, 235, 181, 16, 29, 224, 22, 57, 225, 164, 123, 65, 161, 8, 107, 179, 45, 207, 48, 131, 24, 124, 14, 55, 251, 135, 121, 35, 9, 241, 112, 234, 177, 213, 14, 38, 20, 109, 171, 98, 39, 100, 33, 57, 188, 28, 7, 48, 164, 132, 212, 183, 3, 107, 173, 81, 95, 25, 125, 190, 76, 36, 20, 27, 94, 213, 203, 126, 130, 98, 181, 35, 254, 177, 23, 60, 97, 227, 197, 247, 171, 5, 98, 13, 40, 72, 95, 85, 72, 82, 70, 2, 74, 47, 45, 52, 153, 169, 211, 112, 85, 140, 182, 77, 190, 18, 146, 67, 19, 230, 235, 16, 83, 101, 74, 189, 29, 213, 176, 126, 44, 160, 178, 251, 11, 105, 240, 29, 55, 139, 146, 125, 37, 178, 1, 8, 200, 122, 117, 152, 88, 65, 232, 104, 167, 199, 109, 130, 144, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:31:36.145087Z DEBUG StfBlueprint::apply_slot{context=Node da_height=68}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 51. Final slot number 60 +2026-04-20T15:31:36.145616Z DEBUG StfBlueprint::apply_slot{context=Node da_height=68}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x8e969075bacff1101a94c36a2c30ed75485d26a61cf3eb26a0c202479b086e65}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:36.148123Z DEBUG StfBlueprint::apply_slot{context=Node da_height=68}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=492824f816a3dd25d125ccb420e5c19465ede53f3e888ecd2a81c952f4bdc96e410311fc1b186d3de12621bcc1b414274245eb8bf9ee016c7f6f4bac3668fb31 next_version=68 sesssion_starting_time=266.568µs +2026-04-20T15:31:36.157356Z DEBUG StfBlueprint::apply_slot{context=Node da_height=68}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=1dd907542a26162c9efc0882438c417f6a4d749cff2003aa5a243b80116a06d85fc0d90a50fb8ddf83e0cfedcba20769fbce8cdfa8a15c748b002d30bb92db89 next_version=68 time=10.632811ms accesses_build_time=1.117303ms finishing_session_time=9.087512ms +2026-04-20T15:31:36.158533Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="60e453ce81ae38fa4b0d9a3dcc674684dfa1d865bfe49b407b2c4cccc109ff13725be87b27a3edf7fab517f645ea17e753d6bf2c679dafef64aeb90e82977e8c" next_state_root="1dd907542a26162c9efc0882438c417f6a4d749cff2003aa5a243b80116a06d85fc0d90a50fb8ddf83e0cfedcba20769fbce8cdfa8a15c748b002d30bb92db89" aggregated_proofs=1 proof_receipts=1 +2026-04-20T15:31:36.164160Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 68, latest_finalized_slot_number: 68, sync_status: Syncing { synced_da_height: 67, target_da_height: 68 }, .. } +2026-04-20T15:31:36.165605Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=64 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 68, latest_finalized_slot_number: 68, sync_status: Syncing { synced_da_height: 67, target_da_height: 68 }, .. } +2026-04-20T15:31:36.166600Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=64 +2026-04-20T15:31:36.169325Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:31:36.170346Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=60 +2026-04-20T15:31:36.172157Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=65 +2026-04-20T15:31:36.173083Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:31:36.174612Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=65 sequence_number=70 +2026-04-20T15:31:36.174958Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=70 blob_id=2147897411051302909668867608652454886 visible_slot_number_after_increase=65 visible_slots_to_advance=1 +2026-04-20T15:31:36.174936Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:36.180415Z DEBUG compute_state_update{scope="sequencer" rollup_height=65 slot_number=65}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:31:36.180751Z DEBUG compute_state_update{scope="sequencer" rollup_height=65 slot_number=65}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1dd907542a26162c9efc0882438c417f6a4d749cff2003aa5a243b80116a06d85fc0d90a50fb8ddf83e0cfedcba20769fbce8cdfa8a15c748b002d30bb92db89 next_version=69 sesssion_starting_time=1.351741ms +2026-04-20T15:31:36.182927Z DEBUG manage_blob_submission_inside_task{blob_id=2147897411051302909668867608652454886 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xfb5147ba22181be36e239e05a5d59f109a021a27f49688d8baa85e16a44d179a sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=69 include_at=69 bytes=13 time=1.845448ms +2026-04-20T15:31:36.186259Z DEBUG compute_state_update{scope="sequencer" rollup_height=65 slot_number=65}: sov_state::nomt::prover_storage: computed next state root state_root=2a4b488cbbe9a03fb38c8b738983bee0028c12b67ffa587d6e524bddfea05f177d9782c7580827e58d78f4a4631016e946a8a2de8c14104d8cc0c99dce9f5689 next_version=69 time=7.259013ms accesses_build_time=385.167µs finishing_session_time=5.384555ms +2026-04-20T15:31:36.196203Z DEBUG sov_stf_runner::runner: Block execution complete time=3.041382846s +2026-04-20T15:31:36.196251Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:31:36.198568Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:31:36.199267Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:31:36.714417Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sxiQWMH7RCWnzs7Rvxc7Jg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:31:36.750819Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:31:36.763127Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1720958 cycles +2026-04-20T15:31:36.765871Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [6, 194, 215, 206, 215, 89, 113, 29, 97, 183, 115, 159, 44, 184, 97, 42, 0, 95, 67, 151, 85, 229, 68, 216, 21, 3, 177, 109, 104, 191, 132, 92, 113, 129, 42, 162, 174, 3, 200, 8, 97, 68, 253, 254, 243, 198, 11, 9, 34, 90, 219, 177, 237, 233, 234, 115, 236, 125, 79, 117, 238, 243, 250, 67, 59, 41, 242, 157, 197, 244, 168, 98, 7, 97, 29, 64, 131, 48, 238, 117, 97, 85, 221, 4, 27, 139, 150, 246, 204, 207, 185, 27, 73, 224, 207, 177, 48, 31, 126, 113, 88, 47, 58, 2, 94, 55, 244, 209, 163, 241, 113, 87, 25, 101, 7, 182, 185, 25, 9, 25, 123, 141, 44, 183, 102, 144, 38, 156, 196, 37, 55, 251, 102, 10, 224, 137, 135, 61, 165, 113, 36, 10, 184, 207, 190, 226, 240, 197, 146, 32, 234, 251, 216, 90, 114, 119, 78, 240, 223, 197, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:31:36.794516Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:31:36.794591Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:31:37.420106Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:31:37.420190Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:31:39.110753Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=69 prev_hash=0x170d272151f84418742db9e45747f3eb650a9bb8433e13cb429e48ea05b1c56b hash=0x07bab9ed8adbc335351437d9e0567fc240cfad546cd16652fffb2b749d47373b producing_time=3.17527ms +2026-04-20T15:31:39.118658Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=69 current_state_root="1dd907542a26162c9efc0882438c417f6a4d749cff2003aa5a243b80116a06d85fc0d90a50fb8ddf83e0cfedcba20769fbce8cdfa8a15c748b002d30bb92db89" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xfb5147ba22181be36e239e05a5d59f109a021a27f49688d8baa85e16a44d179a"] proof_blobs=[] +2026-04-20T15:31:39.126377Z DEBUG StfBlueprint::apply_slot{context=Node da_height=69}: sov_chain_state: Setting next visible slot number next_visible_slot_number=65 +2026-04-20T15:31:39.131777Z DEBUG StfBlueprint::apply_slot{context=Node da_height=69}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xfb5147ba22181be36e239e05a5d59f109a021a27f49688d8baa85e16a44d179a}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:39.133816Z DEBUG StfBlueprint::apply_slot{context=Node da_height=69}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1dd907542a26162c9efc0882438c417f6a4d749cff2003aa5a243b80116a06d85fc0d90a50fb8ddf83e0cfedcba20769fbce8cdfa8a15c748b002d30bb92db89 next_version=69 sesssion_starting_time=235.378µs +2026-04-20T15:31:39.140833Z DEBUG StfBlueprint::apply_slot{context=Node da_height=69}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2a4b488cbbe9a03fb38c8b738983bee0028c12b67ffa587d6e524bddfea05f173b4c542ecd9662232dd460d74664a576f2ad1f79ae92164c3da76867e936e140 next_version=69 time=8.030048ms accesses_build_time=765.775µs finishing_session_time=6.896665ms +2026-04-20T15:31:39.141831Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="1dd907542a26162c9efc0882438c417f6a4d749cff2003aa5a243b80116a06d85fc0d90a50fb8ddf83e0cfedcba20769fbce8cdfa8a15c748b002d30bb92db89" next_state_root="2a4b488cbbe9a03fb38c8b738983bee0028c12b67ffa587d6e524bddfea05f173b4c542ecd9662232dd460d74664a576f2ad1f79ae92164c3da76867e936e140" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:31:39.145194Z DEBUG sov_stf_runner::runner: Block execution complete time=2.948947925s +2026-04-20T15:31:39.145291Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:31:39.146218Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 69, latest_finalized_slot_number: 68, sync_status: Syncing { synced_da_height: 68, target_da_height: 69 }, .. } +2026-04-20T15:31:39.147692Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=65 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 69, latest_finalized_slot_number: 68, sync_status: Syncing { synced_da_height: 68, target_da_height: 69 }, .. } +2026-04-20T15:31:39.147895Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:31:39.148425Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:31:39.148704Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=65 +2026-04-20T15:31:39.151411Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:31:39.152426Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=61 +2026-04-20T15:31:39.153792Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=66 +2026-04-20T15:31:39.154375Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:31:39.155331Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=66 sequence_number=71 +2026-04-20T15:31:39.155533Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:39.155592Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=71 blob_id=2147897414655114632205765626442977969 visible_slot_number_after_increase=66 visible_slots_to_advance=1 +2026-04-20T15:31:39.158913Z DEBUG compute_state_update{scope="sequencer" rollup_height=66 slot_number=66}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2a4b488cbbe9a03fb38c8b738983bee0028c12b67ffa587d6e524bddfea05f173b4c542ecd9662232dd460d74664a576f2ad1f79ae92164c3da76867e936e140 next_version=70 sesssion_starting_time=243.048µs +2026-04-20T15:31:39.162104Z DEBUG manage_blob_submission_inside_task{blob_id=2147897414655114632205765626442977969 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x894e0ffce00bba9521354e0f461329bca5be91815c3b59a263454087e5e825b8 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=70 include_at=70 bytes=13 time=1.690659ms +2026-04-20T15:31:39.164505Z DEBUG compute_state_update{scope="sequencer" rollup_height=66 slot_number=66}: sov_state::nomt::prover_storage: computed next state root state_root=3524c0126832c42a901c78c86f60810d1a86563694fe5b9741448cc9cde5b2f10a4bc0bf48cf0ac51fe7feacc3297780649857c0d0666b98062e11133223f8d9 next_version=70 time=6.230979ms accesses_build_time=386.557µs finishing_session_time=5.466944ms +2026-04-20T15:31:39.684388Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-nYHWLsvSlWl7zQSZkW0UQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:31:39.722309Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:31:39.734651Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1767022 cycles +2026-04-20T15:31:39.737481Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [79, 210, 140, 13, 195, 88, 50, 191, 42, 226, 167, 92, 15, 182, 184, 88, 26, 18, 144, 195, 119, 116, 224, 32, 87, 100, 108, 100, 226, 137, 116, 219, 119, 136, 79, 4, 123, 216, 59, 41, 139, 47, 105, 157, 146, 244, 155, 5, 171, 14, 99, 115, 159, 141, 56, 108, 215, 146, 140, 31, 135, 196, 29, 97, 76, 9, 162, 22, 208, 211, 43, 32, 104, 100, 107, 65, 249, 176, 5, 232, 69, 60, 23, 23, 231, 179, 90, 220, 159, 182, 119, 179, 25, 252, 120, 240, 49, 16, 81, 92, 93, 112, 7, 240, 139, 139, 107, 6, 224, 133, 193, 208, 24, 233, 145, 170, 145, 84, 227, 11, 62, 50, 36, 14, 218, 183, 125, 43, 4, 25, 84, 95, 95, 118, 119, 58, 59, 131, 231, 210, 242, 246, 217, 150, 72, 232, 201, 129, 101, 143, 119, 247, 207, 108, 38, 84, 143, 41, 120, 157, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:31:40.359937Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:31:40.360017Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:31:42.115611Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=70 prev_hash=0x07bab9ed8adbc335351437d9e0567fc240cfad546cd16652fffb2b749d47373b hash=0x3efb5b0e87c1fcd3e50cb50ccad81fb6ebcbd8cae73b192ff5aaed54b34607ca producing_time=3.13116ms +2026-04-20T15:31:42.117459Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=70 current_state_root="2a4b488cbbe9a03fb38c8b738983bee0028c12b67ffa587d6e524bddfea05f173b4c542ecd9662232dd460d74664a576f2ad1f79ae92164c3da76867e936e140" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x894e0ffce00bba9521354e0f461329bca5be91815c3b59a263454087e5e825b8"] proof_blobs=[] +2026-04-20T15:31:42.124896Z DEBUG StfBlueprint::apply_slot{context=Node da_height=70}: sov_chain_state: Setting next visible slot number next_visible_slot_number=66 +2026-04-20T15:31:42.130287Z DEBUG StfBlueprint::apply_slot{context=Node da_height=70}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x894e0ffce00bba9521354e0f461329bca5be91815c3b59a263454087e5e825b8}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:42.132324Z DEBUG StfBlueprint::apply_slot{context=Node da_height=70}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2a4b488cbbe9a03fb38c8b738983bee0028c12b67ffa587d6e524bddfea05f173b4c542ecd9662232dd460d74664a576f2ad1f79ae92164c3da76867e936e140 next_version=70 sesssion_starting_time=243.089µs +2026-04-20T15:31:42.139749Z DEBUG StfBlueprint::apply_slot{context=Node da_height=70}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3524c0126832c42a901c78c86f60810d1a86563694fe5b9741448cc9cde5b2f10bba511dea57bbad3255f3792d851d8fdc14b5619e29369cba666b7cee22c1d8 next_version=70 time=8.462034ms accesses_build_time=772.035µs finishing_session_time=7.306553ms +2026-04-20T15:31:42.140784Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="1dd907542a26162c9efc0882438c417f6a4d749cff2003aa5a243b80116a06d85fc0d90a50fb8ddf83e0cfedcba20769fbce8cdfa8a15c748b002d30bb92db89" next_state_root="3524c0126832c42a901c78c86f60810d1a86563694fe5b9741448cc9cde5b2f10bba511dea57bbad3255f3792d851d8fdc14b5619e29369cba666b7cee22c1d8" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:31:42.145340Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 70, latest_finalized_slot_number: 69, sync_status: Syncing { synced_da_height: 69, target_da_height: 70 }, .. } +2026-04-20T15:31:42.147115Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=66 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 70, latest_finalized_slot_number: 69, sync_status: Syncing { synced_da_height: 69, target_da_height: 70 }, .. } +2026-04-20T15:31:42.148237Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=66 +2026-04-20T15:31:42.150637Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:31:42.151564Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=62 +2026-04-20T15:31:42.153344Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=67 +2026-04-20T15:31:42.154198Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:31:42.155727Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=67 sequence_number=72 +2026-04-20T15:31:42.156037Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:42.156090Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=72 blob_id=2147897418281909503372677429427771283 visible_slot_number_after_increase=67 visible_slots_to_advance=1 +2026-04-20T15:31:42.160043Z DEBUG compute_state_update{scope="sequencer" rollup_height=67 slot_number=67}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:31:42.160280Z DEBUG sov_stf_runner::runner: Block execution complete time=3.015009147s +2026-04-20T15:31:42.160331Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:31:42.160369Z DEBUG compute_state_update{scope="sequencer" rollup_height=67 slot_number=67}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3524c0126832c42a901c78c86f60810d1a86563694fe5b9741448cc9cde5b2f10bba511dea57bbad3255f3792d851d8fdc14b5619e29369cba666b7cee22c1d8 next_version=71 sesssion_starting_time=341.098µs +2026-04-20T15:31:42.162612Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:31:42.162720Z DEBUG manage_blob_submission_inside_task{blob_id=2147897418281909503372677429427771283 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x5c99f6b464a1abddbb82c5980061ca13112cfe375e809d61be4a1ba92d4e247c sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=71 include_at=71 bytes=13 time=1.621689ms +2026-04-20T15:31:42.163195Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:31:42.165456Z DEBUG compute_state_update{scope="sequencer" rollup_height=67 slot_number=67}: sov_state::nomt::prover_storage: computed next state root state_root=72a909c93841ffa006f24ab11aaf40cc2f40e3aad968a66d62ac8932759aeb9941927f79bf9564005e6915f78736598ebac644d693e85d7ed0a0924cedb6ea01 next_version=71 time=5.818103ms accesses_build_time=382.128µs finishing_session_time=4.999958ms +2026-04-20T15:31:42.630042Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vnrnkOqrTvqO3yXmMEKGPw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:31:42.667003Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:31:42.679345Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1741445 cycles +2026-04-20T15:31:42.682090Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [13, 80, 60, 58, 71, 42, 100, 88, 61, 137, 38, 131, 216, 132, 54, 38, 85, 174, 2, 32, 40, 200, 28, 56, 114, 132, 181, 140, 219, 174, 72, 254, 37, 76, 117, 203, 75, 61, 112, 40, 96, 169, 252, 245, 80, 177, 101, 214, 94, 16, 95, 249, 177, 18, 34, 43, 185, 245, 233, 248, 185, 116, 98, 123, 103, 165, 193, 23, 172, 61, 33, 96, 123, 49, 212, 229, 150, 54, 26, 200, 211, 238, 16, 142, 209, 11, 175, 109, 30, 166, 50, 45, 96, 28, 200, 188, 66, 87, 233, 52, 95, 85, 211, 50, 228, 223, 197, 124, 20, 255, 130, 11, 199, 147, 190, 100, 120, 149, 249, 238, 150, 140, 7, 197, 68, 203, 177, 112, 96, 125, 170, 204, 218, 8, 1, 44, 154, 154, 36, 178, 89, 69, 106, 241, 60, 30, 157, 191, 203, 229, 77, 93, 122, 189, 113, 206, 173, 63, 0, 50, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:31:43.293901Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:31:43.293982Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:31:45.120577Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=71 prev_hash=0x3efb5b0e87c1fcd3e50cb50ccad81fb6ebcbd8cae73b192ff5aaed54b34607ca hash=0x422200b261a19a683bf0b8d854d3bb822c8366905bab19cad21fc56ff2fb5cd1 producing_time=3.11235ms +2026-04-20T15:31:45.122485Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=71 current_state_root="3524c0126832c42a901c78c86f60810d1a86563694fe5b9741448cc9cde5b2f10bba511dea57bbad3255f3792d851d8fdc14b5619e29369cba666b7cee22c1d8" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x5c99f6b464a1abddbb82c5980061ca13112cfe375e809d61be4a1ba92d4e247c"] proof_blobs=[] +2026-04-20T15:31:45.130292Z DEBUG StfBlueprint::apply_slot{context=Node da_height=71}: sov_chain_state: Setting next visible slot number next_visible_slot_number=67 +2026-04-20T15:31:45.136126Z DEBUG StfBlueprint::apply_slot{context=Node da_height=71}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x5c99f6b464a1abddbb82c5980061ca13112cfe375e809d61be4a1ba92d4e247c}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:45.138263Z DEBUG StfBlueprint::apply_slot{context=Node da_height=71}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3524c0126832c42a901c78c86f60810d1a86563694fe5b9741448cc9cde5b2f10bba511dea57bbad3255f3792d851d8fdc14b5619e29369cba666b7cee22c1d8 next_version=71 sesssion_starting_time=263.748µs +2026-04-20T15:31:45.146087Z DEBUG StfBlueprint::apply_slot{context=Node da_height=71}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=72a909c93841ffa006f24ab11aaf40cc2f40e3aad968a66d62ac8932759aeb997ca0c6c7831575a517a76c7f217d8eb68081caa5014fa619b1509ded2be51ee2 next_version=71 time=8.876422ms accesses_build_time=777.315µs finishing_session_time=7.682761ms +2026-04-20T15:31:45.147221Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2a4b488cbbe9a03fb38c8b738983bee0028c12b67ffa587d6e524bddfea05f173b4c542ecd9662232dd460d74664a576f2ad1f79ae92164c3da76867e936e140" next_state_root="72a909c93841ffa006f24ab11aaf40cc2f40e3aad968a66d62ac8932759aeb997ca0c6c7831575a517a76c7f217d8eb68081caa5014fa619b1509ded2be51ee2" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:31:45.152153Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 71, latest_finalized_slot_number: 71, sync_status: Syncing { synced_da_height: 70, target_da_height: 71 }, .. } +2026-04-20T15:31:45.153952Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=67 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 71, latest_finalized_slot_number: 71, sync_status: Syncing { synced_da_height: 70, target_da_height: 71 }, .. } +2026-04-20T15:31:45.154959Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=67 +2026-04-20T15:31:45.157471Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:31:45.158410Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=63 +2026-04-20T15:31:45.160289Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=68 +2026-04-20T15:31:45.161254Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:31:45.162771Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=68 sequence_number=73 +2026-04-20T15:31:45.163044Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=73 blob_id=2147897421917105151536399237683342851 visible_slot_number_after_increase=68 visible_slots_to_advance=1 +2026-04-20T15:31:45.163040Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:45.169775Z DEBUG manage_blob_submission_inside_task{blob_id=2147897421917105151536399237683342851 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x307dce66387e6453c779ee20771a8bfb1063c2d1d1db7baa39e182128b485740 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=72 include_at=72 bytes=13 time=1.547629ms +2026-04-20T15:31:45.175370Z DEBUG compute_state_update{scope="sequencer" rollup_height=68 slot_number=68}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:31:45.175441Z DEBUG compute_state_update{scope="sequencer" rollup_height=68 slot_number=68}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:31:45.175697Z DEBUG compute_state_update{scope="sequencer" rollup_height=68 slot_number=68}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=72a909c93841ffa006f24ab11aaf40cc2f40e3aad968a66d62ac8932759aeb997ca0c6c7831575a517a76c7f217d8eb68081caa5014fa619b1509ded2be51ee2 next_version=72 sesssion_starting_time=8.803173ms +2026-04-20T15:31:45.176030Z DEBUG sov_stf_runner::runner: Block execution complete time=3.015704893s +2026-04-20T15:31:45.176108Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:31:45.178329Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:31:45.178987Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:31:45.181189Z DEBUG compute_state_update{scope="sequencer" rollup_height=68 slot_number=68}: sov_state::nomt::prover_storage: computed next state root state_root=5d124d08733236598d9ebff3a7c939325707116c9a7508526b75a65b3f9221716be21b8e50d370d447b5e3aff512c9293dbfe697c71eeab3eb35dceb6345f417 next_version=72 time=14.663084ms accesses_build_time=364.217µs finishing_session_time=5.405665ms +2026-04-20T15:31:45.642413Z DEBUG sp1_core_executor_runner::native: CHILD sp1_K35Kj5t7QKa8aXwZAM5RRw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:31:45.680773Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:31:45.693002Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1782144 cycles +2026-04-20T15:31:45.696154Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 96, 230, 209, 98, 234, 173, 143, 155, 178, 232, 196, 199, 139, 227, 211, 145, 104, 83, 128, 165, 233, 18, 64, 43, 228, 164, 17, 253, 66, 198, 69, 47, 242, 228, 122, 170, 92, 197, 187, 167, 146, 63, 111, 185, 190, 103, 55, 18, 248, 201, 15, 196, 189, 173, 33, 74, 124, 163, 58, 42, 25, 168, 194, 67, 129, 0, 107, 170, 85, 49, 176, 230, 182, 57, 69, 55, 11, 3, 156, 236, 189, 70, 249, 178, 127, 244, 153, 94, 255, 117, 86, 51, 58, 156, 230, 9, 197, 6, 214, 77, 174, 248, 213, 23, 40, 165, 158, 78, 95, 254, 28, 227, 225, 13, 36, 210, 198, 128, 160, 68, 61, 4, 151, 240, 60, 216, 136, 27, 39, 91, 180, 204, 53, 0, 162, 31, 223, 127, 67, 225, 187, 16, 71, 24, 36, 63, 32, 132, 90, 80, 70, 222, 199, 169, 168, 235, 11, 70, 1, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:31:46.320700Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:31:46.320775Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:31:48.125154Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=72 prev_hash=0x422200b261a19a683bf0b8d854d3bb822c8366905bab19cad21fc56ff2fb5cd1 hash=0x48e759c6938d3f0ba2364245f5c4921fcd18f7b5ed643290edb39abec3816cdc producing_time=3.228289ms +2026-04-20T15:31:48.129377Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=72 current_state_root="72a909c93841ffa006f24ab11aaf40cc2f40e3aad968a66d62ac8932759aeb997ca0c6c7831575a517a76c7f217d8eb68081caa5014fa619b1509ded2be51ee2" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x307dce66387e6453c779ee20771a8bfb1063c2d1d1db7baa39e182128b485740"] proof_blobs=[] +2026-04-20T15:31:48.137296Z DEBUG StfBlueprint::apply_slot{context=Node da_height=72}: sov_chain_state: Setting next visible slot number next_visible_slot_number=68 +2026-04-20T15:31:48.142776Z DEBUG StfBlueprint::apply_slot{context=Node da_height=72}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x307dce66387e6453c779ee20771a8bfb1063c2d1d1db7baa39e182128b485740}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:48.144866Z DEBUG StfBlueprint::apply_slot{context=Node da_height=72}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=72a909c93841ffa006f24ab11aaf40cc2f40e3aad968a66d62ac8932759aeb997ca0c6c7831575a517a76c7f217d8eb68081caa5014fa619b1509ded2be51ee2 next_version=72 sesssion_starting_time=237.559µs +2026-04-20T15:31:48.151985Z DEBUG StfBlueprint::apply_slot{context=Node da_height=72}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=5d124d08733236598d9ebff3a7c939325707116c9a7508526b75a65b3f9221710ca076086d701c4d0f8436f0174bc2825abf379bceffb65067c58dc37fd84903 next_version=72 time=8.134707ms accesses_build_time=764.935µs finishing_session_time=6.997615ms +2026-04-20T15:31:48.152982Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="72a909c93841ffa006f24ab11aaf40cc2f40e3aad968a66d62ac8932759aeb997ca0c6c7831575a517a76c7f217d8eb68081caa5014fa619b1509ded2be51ee2" next_state_root="5d124d08733236598d9ebff3a7c939325707116c9a7508526b75a65b3f9221710ca076086d701c4d0f8436f0174bc2825abf379bceffb65067c58dc37fd84903" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:31:48.157548Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 72, latest_finalized_slot_number: 72, sync_status: Synced { synced_da_height: 71 }, .. } +2026-04-20T15:31:48.158939Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=68 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 72, latest_finalized_slot_number: 72, sync_status: Synced { synced_da_height: 71 }, .. } +2026-04-20T15:31:48.160112Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=68 +2026-04-20T15:31:48.163016Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:31:48.164061Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=64 +2026-04-20T15:31:48.165911Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=69 +2026-04-20T15:31:48.166894Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:31:48.168741Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=69 sequence_number=74 +2026-04-20T15:31:48.169042Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:48.169124Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=74 blob_id=2147897425551154205147784058252088686 visible_slot_number_after_increase=69 visible_slots_to_advance=1 +2026-04-20T15:31:48.169240Z DEBUG sov_stf_runner::runner: Block execution complete time=2.99314837s +2026-04-20T15:31:48.169286Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:31:48.170713Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:31:48.171366Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:31:48.172531Z DEBUG compute_state_update{scope="sequencer" rollup_height=69 slot_number=69}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:31:48.172824Z DEBUG compute_state_update{scope="sequencer" rollup_height=69 slot_number=69}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5d124d08733236598d9ebff3a7c939325707116c9a7508526b75a65b3f9221710ca076086d701c4d0f8436f0174bc2825abf379bceffb65067c58dc37fd84903 next_version=73 sesssion_starting_time=297.779µs +2026-04-20T15:31:48.175421Z DEBUG manage_blob_submission_inside_task{blob_id=2147897425551154205147784058252088686 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x0986014e896d9e2931a6e58a22e32a5831a3310bb41b2c934163ef7cadddc6b2 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=73 include_at=73 bytes=13 time=1.902668ms +2026-04-20T15:31:48.178457Z DEBUG compute_state_update{scope="sequencer" rollup_height=69 slot_number=69}: sov_state::nomt::prover_storage: computed next state root state_root=5d6ea05f0873976c8a8edaa6ae44f2aa7b2f3b00171de458d14f98f038c7ca8813ad225cbe79558704e585faf2feff37e8d21514f31df5efc9bfe2b23559afec next_version=73 time=6.320239ms accesses_build_time=383.807µs finishing_session_time=5.541814ms +2026-04-20T15:31:48.659212Z DEBUG sp1_core_executor_runner::native: CHILD sp1_69sbkj5xRr6QIyko4icBZA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:31:48.695230Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:31:48.707822Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1709295 cycles +2026-04-20T15:31:48.710511Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [33, 210, 73, 139, 71, 233, 25, 240, 212, 19, 15, 103, 65, 37, 95, 15, 91, 229, 116, 72, 47, 143, 78, 1, 171, 69, 17, 104, 134, 116, 138, 161, 27, 125, 130, 129, 48, 243, 180, 234, 189, 240, 200, 248, 225, 78, 20, 120, 233, 218, 215, 150, 22, 125, 116, 121, 31, 117, 190, 176, 201, 78, 233, 58, 127, 128, 199, 176, 108, 0, 87, 188, 38, 57, 129, 236, 206, 251, 92, 2, 98, 126, 99, 124, 183, 169, 239, 192, 30, 187, 46, 192, 56, 209, 207, 89, 17, 159, 10, 214, 192, 154, 167, 135, 132, 62, 111, 165, 16, 35, 53, 243, 221, 65, 125, 22, 189, 122, 169, 43, 33, 178, 77, 95, 106, 254, 244, 216, 170, 217, 17, 228, 49, 172, 39, 149, 116, 119, 180, 18, 221, 219, 195, 228, 126, 203, 45, 232, 158, 91, 0, 191, 200, 157, 141, 142, 194, 195, 100, 90, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:31:49.311826Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:31:49.311906Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:31:51.129728Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=73 prev_hash=0x48e759c6938d3f0ba2364245f5c4921fcd18f7b5ed643290edb39abec3816cdc hash=0x70ec1dfc35aef921a96c5abf5cadb1f690e328c4c7663563434d4170a44018fd producing_time=3.292739ms +2026-04-20T15:31:51.131708Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=73 current_state_root="5d124d08733236598d9ebff3a7c939325707116c9a7508526b75a65b3f9221710ca076086d701c4d0f8436f0174bc2825abf379bceffb65067c58dc37fd84903" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0986014e896d9e2931a6e58a22e32a5831a3310bb41b2c934163ef7cadddc6b2"] proof_blobs=[] +2026-04-20T15:31:51.141139Z DEBUG StfBlueprint::apply_slot{context=Node da_height=73}: sov_chain_state: Setting next visible slot number next_visible_slot_number=69 +2026-04-20T15:31:51.148085Z DEBUG StfBlueprint::apply_slot{context=Node da_height=73}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x0986014e896d9e2931a6e58a22e32a5831a3310bb41b2c934163ef7cadddc6b2}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:51.150563Z DEBUG StfBlueprint::apply_slot{context=Node da_height=73}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5d124d08733236598d9ebff3a7c939325707116c9a7508526b75a65b3f9221710ca076086d701c4d0f8436f0174bc2825abf379bceffb65067c58dc37fd84903 next_version=73 sesssion_starting_time=342.348µs +2026-04-20T15:31:51.158531Z DEBUG StfBlueprint::apply_slot{context=Node da_height=73}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=5d6ea05f0873976c8a8edaa6ae44f2aa7b2f3b00171de458d14f98f038c7ca881abce5e7ab12a108c59e08becd78250e5692019ba7a2e85d56916da286b4c662 next_version=73 time=9.092481ms accesses_build_time=766.085µs finishing_session_time=7.80887ms +2026-04-20T15:31:51.159731Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="5d124d08733236598d9ebff3a7c939325707116c9a7508526b75a65b3f9221710ca076086d701c4d0f8436f0174bc2825abf379bceffb65067c58dc37fd84903" next_state_root="5d6ea05f0873976c8a8edaa6ae44f2aa7b2f3b00171de458d14f98f038c7ca881abce5e7ab12a108c59e08becd78250e5692019ba7a2e85d56916da286b4c662" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:31:51.164300Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 73, latest_finalized_slot_number: 73, sync_status: Synced { synced_da_height: 72 }, .. } +2026-04-20T15:31:51.165733Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=69 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 73, latest_finalized_slot_number: 73, sync_status: Synced { synced_da_height: 72 }, .. } +2026-04-20T15:31:51.166706Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=69 +2026-04-20T15:31:51.169428Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:31:51.170419Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=65 +2026-04-20T15:31:51.172222Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=70 +2026-04-20T15:31:51.173139Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:31:51.174794Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=70 sequence_number=75 +2026-04-20T15:31:51.175094Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:51.175223Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=75 blob_id=2147897429185200254416358872148558815 visible_slot_number_after_increase=70 visible_slots_to_advance=1 +2026-04-20T15:31:51.179269Z DEBUG compute_state_update{scope="sequencer" rollup_height=70 slot_number=70}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:31:51.179593Z DEBUG sov_stf_runner::runner: Block execution complete time=3.010313718s +2026-04-20T15:31:51.179586Z DEBUG compute_state_update{scope="sequencer" rollup_height=70 slot_number=70}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5d6ea05f0873976c8a8edaa6ae44f2aa7b2f3b00171de458d14f98f038c7ca881abce5e7ab12a108c59e08becd78250e5692019ba7a2e85d56916da286b4c662 next_version=74 sesssion_starting_time=322.738µs +2026-04-20T15:31:51.179652Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:31:51.182255Z DEBUG manage_blob_submission_inside_task{blob_id=2147897429185200254416358872148558815 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x64b1d492b3953eebf27e262585792777fb5c0d09938bfa9ca0227b30997c6276 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=74 include_at=74 bytes=13 time=1.602429ms +2026-04-20T15:31:51.183604Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:31:51.184537Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:31:51.184960Z DEBUG compute_state_update{scope="sequencer" rollup_height=70 slot_number=70}: sov_state::nomt::prover_storage: computed next state root state_root=30d6fe631d09c6f4d4eb74da85d3bdd20b158f87344b23c436558d4d35dc786538224231435cf912ad2855f693a6c891b5f5f0ba9c570b66769f7e8c0b9b4872 next_version=74 time=6.085261ms accesses_build_time=382.328µs finishing_session_time=5.288046ms +2026-04-20T15:31:51.634015Z DEBUG sp1_core_executor_runner::native: CHILD sp1_B-6zgkC1QcCPaTRkPlbluw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:31:51.673197Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:31:51.684742Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1842095 cycles +2026-04-20T15:31:51.687364Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [96, 228, 83, 206, 129, 174, 56, 250, 75, 13, 154, 61, 204, 103, 70, 132, 223, 161, 216, 101, 191, 228, 155, 64, 123, 44, 76, 204, 193, 9, 255, 19, 114, 91, 232, 123, 39, 163, 237, 247, 250, 181, 23, 246, 69, 234, 23, 231, 83, 214, 191, 44, 103, 157, 175, 239, 100, 174, 185, 14, 130, 151, 126, 140, 94, 126, 200, 220, 45, 41, 197, 100, 85, 141, 215, 9, 155, 232, 12, 61, 225, 158, 174, 147, 116, 84, 119, 138, 93, 251, 111, 44, 81, 83, 183, 53, 10, 126, 141, 133, 31, 91, 19, 12, 78, 242, 102, 19, 63, 122, 171, 165, 59, 84, 7, 213, 216, 34, 158, 202, 137, 204, 237, 252, 5, 48, 231, 90, 228, 106, 117, 25, 227, 20, 111, 42, 26, 156, 0, 161, 183, 166, 86, 42, 49, 53, 167, 42, 157, 126, 0, 102, 5, 24, 198, 69, 230, 242, 83, 255, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:31:52.334836Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:31:52.334916Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:31:54.134992Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=74 prev_hash=0x70ec1dfc35aef921a96c5abf5cadb1f690e328c4c7663563434d4170a44018fd hash=0x75dfc64e5e0fe0eae02e31da4b13f5c731eb206256ba51e3f68d2574043fa7f2 producing_time=3.271339ms +2026-04-20T15:31:54.143259Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=74 current_state_root="5d6ea05f0873976c8a8edaa6ae44f2aa7b2f3b00171de458d14f98f038c7ca881abce5e7ab12a108c59e08becd78250e5692019ba7a2e85d56916da286b4c662" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x64b1d492b3953eebf27e262585792777fb5c0d09938bfa9ca0227b30997c6276"] proof_blobs=[] +2026-04-20T15:31:54.152044Z DEBUG StfBlueprint::apply_slot{context=Node da_height=74}: sov_chain_state: Setting next visible slot number next_visible_slot_number=70 +2026-04-20T15:31:54.158487Z DEBUG StfBlueprint::apply_slot{context=Node da_height=74}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x64b1d492b3953eebf27e262585792777fb5c0d09938bfa9ca0227b30997c6276}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:54.160791Z DEBUG StfBlueprint::apply_slot{context=Node da_height=74}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5d6ea05f0873976c8a8edaa6ae44f2aa7b2f3b00171de458d14f98f038c7ca881abce5e7ab12a108c59e08becd78250e5692019ba7a2e85d56916da286b4c662 next_version=74 sesssion_starting_time=312.898µs +2026-04-20T15:31:54.168646Z DEBUG StfBlueprint::apply_slot{context=Node da_height=74}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=30d6fe631d09c6f4d4eb74da85d3bdd20b158f87344b23c436558d4d35dc78654b2660edf4d421f4dd193ec33bf87a5d9282a35f03fda23be53a3ca3a7a0ebfe next_version=74 time=8.967192ms accesses_build_time=786.234µs finishing_session_time=7.70639ms +2026-04-20T15:31:54.169729Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="5d6ea05f0873976c8a8edaa6ae44f2aa7b2f3b00171de458d14f98f038c7ca881abce5e7ab12a108c59e08becd78250e5692019ba7a2e85d56916da286b4c662" next_state_root="30d6fe631d09c6f4d4eb74da85d3bdd20b158f87344b23c436558d4d35dc78654b2660edf4d421f4dd193ec33bf87a5d9282a35f03fda23be53a3ca3a7a0ebfe" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:31:54.174047Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 74, latest_finalized_slot_number: 74, sync_status: Synced { synced_da_height: 73 }, .. } +2026-04-20T15:31:54.175455Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=70 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 74, latest_finalized_slot_number: 74, sync_status: Synced { synced_da_height: 73 }, .. } +2026-04-20T15:31:54.176409Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=70 +2026-04-20T15:31:54.178907Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:31:54.179881Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=66 +2026-04-20T15:31:54.181736Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=71 +2026-04-20T15:31:54.182653Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:31:54.184154Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=71 sequence_number=76 +2026-04-20T15:31:54.184429Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:54.184483Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=76 blob_id=2147897432824028914951778094157264719 visible_slot_number_after_increase=71 visible_slots_to_advance=1 +2026-04-20T15:31:54.189788Z DEBUG compute_state_update{scope="sequencer" rollup_height=71 slot_number=71}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:31:54.190116Z DEBUG compute_state_update{scope="sequencer" rollup_height=71 slot_number=71}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=30d6fe631d09c6f4d4eb74da85d3bdd20b158f87344b23c436558d4d35dc78654b2660edf4d421f4dd193ec33bf87a5d9282a35f03fda23be53a3ca3a7a0ebfe next_version=75 sesssion_starting_time=1.48834ms +2026-04-20T15:31:54.190228Z DEBUG sov_stf_runner::runner: Block execution complete time=3.010587976s +2026-04-20T15:31:54.190274Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:31:54.191708Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:31:54.192032Z DEBUG manage_blob_submission_inside_task{blob_id=2147897432824028914951778094157264719 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x1264d4477bbd41fac752898395bea7bcdacb969c6723e10fcb0d89d20c218a40 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=75 include_at=75 bytes=13 time=1.393931ms +2026-04-20T15:31:54.192427Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:31:54.195496Z DEBUG compute_state_update{scope="sequencer" rollup_height=71 slot_number=71}: sov_state::nomt::prover_storage: computed next state root state_root=664169969b40776ddf5118a2b209eb3fd1648763b6aa2edf00a4b7c25815fd9505c59a112f1abcbaa62d0f49eccf61f3280114e3a163064ea0e07d08e4e1d3fc next_version=75 time=7.271792ms accesses_build_time=395.547µs finishing_session_time=5.296606ms +2026-04-20T15:31:54.644520Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Dj49XQYbRGqHo_vmpua_Qw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:31:54.704918Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:31:54.717111Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 3985020 cycles +2026-04-20T15:31:54.719814Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [73, 40, 36, 248, 22, 163, 221, 37, 209, 37, 204, 180, 32, 229, 193, 148, 101, 237, 229, 63, 62, 136, 142, 205, 42, 129, 201, 82, 244, 189, 201, 110, 65, 3, 17, 252, 27, 24, 109, 61, 225, 38, 33, 188, 193, 180, 20, 39, 66, 69, 235, 139, 249, 238, 1, 108, 127, 111, 75, 172, 54, 104, 251, 49, 4, 85, 152, 230, 165, 106, 2, 225, 224, 251, 200, 2, 98, 49, 137, 16, 92, 160, 14, 126, 45, 196, 11, 48, 127, 176, 80, 242, 94, 66, 199, 148, 5, 12, 6, 60, 177, 20, 120, 23, 216, 25, 168, 180, 73, 54, 32, 188, 184, 59, 203, 110, 74, 30, 16, 122, 198, 21, 21, 125, 195, 247, 212, 209, 23, 13, 39, 33, 81, 248, 68, 24, 116, 45, 185, 228, 87, 71, 243, 235, 101, 10, 155, 184, 67, 62, 19, 203, 66, 158, 72, 234, 5, 177, 197, 107, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:31:56.103280Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:31:56.103366Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:31:57.139640Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=75 prev_hash=0x75dfc64e5e0fe0eae02e31da4b13f5c731eb206256ba51e3f68d2574043fa7f2 hash=0xea9cce71b6200024ceb0a96bd2b63dd9271b4520dbd0535e86fe69ef1c237f2d producing_time=3.334749ms +2026-04-20T15:31:57.142674Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=75 current_state_root="30d6fe631d09c6f4d4eb74da85d3bdd20b158f87344b23c436558d4d35dc78654b2660edf4d421f4dd193ec33bf87a5d9282a35f03fda23be53a3ca3a7a0ebfe" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1264d4477bbd41fac752898395bea7bcdacb969c6723e10fcb0d89d20c218a40"] proof_blobs=[] +2026-04-20T15:31:57.150888Z DEBUG StfBlueprint::apply_slot{context=Node da_height=75}: sov_chain_state: Setting next visible slot number next_visible_slot_number=71 +2026-04-20T15:31:57.156836Z DEBUG StfBlueprint::apply_slot{context=Node da_height=75}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x1264d4477bbd41fac752898395bea7bcdacb969c6723e10fcb0d89d20c218a40}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:57.159050Z DEBUG StfBlueprint::apply_slot{context=Node da_height=75}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=30d6fe631d09c6f4d4eb74da85d3bdd20b158f87344b23c436558d4d35dc78654b2660edf4d421f4dd193ec33bf87a5d9282a35f03fda23be53a3ca3a7a0ebfe next_version=75 sesssion_starting_time=300.018µs +2026-04-20T15:31:57.166341Z DEBUG StfBlueprint::apply_slot{context=Node da_height=75}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=664169969b40776ddf5118a2b209eb3fd1648763b6aa2edf00a4b7c25815fd95565440415a16a1514cc5a7613ad26b3d3f1d1ca38a0064ca32f8e1e545548bce next_version=75 time=8.362166ms accesses_build_time=760.475µs finishing_session_time=7.145024ms +2026-04-20T15:31:57.167332Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="30d6fe631d09c6f4d4eb74da85d3bdd20b158f87344b23c436558d4d35dc78654b2660edf4d421f4dd193ec33bf87a5d9282a35f03fda23be53a3ca3a7a0ebfe" next_state_root="664169969b40776ddf5118a2b209eb3fd1648763b6aa2edf00a4b7c25815fd95565440415a16a1514cc5a7613ad26b3d3f1d1ca38a0064ca32f8e1e545548bce" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:31:57.171377Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 75, latest_finalized_slot_number: 75, sync_status: Synced { synced_da_height: 74 }, .. } +2026-04-20T15:31:57.172723Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=71 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 75, latest_finalized_slot_number: 75, sync_status: Synced { synced_da_height: 74 }, .. } +2026-04-20T15:31:57.173617Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=71 +2026-04-20T15:31:57.176038Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:31:57.176964Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=67 +2026-04-20T15:31:57.178958Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=72 +2026-04-20T15:31:57.180038Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:31:57.181621Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=72 sequence_number=77 +2026-04-20T15:31:57.181960Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=77 blob_id=2147897436447184041291967774659588353 visible_slot_number_after_increase=72 visible_slots_to_advance=1 +2026-04-20T15:31:57.181927Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:31:57.183119Z DEBUG sov_stf_runner::runner: Block execution complete time=2.992852871s +2026-04-20T15:31:57.183171Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:31:57.185432Z DEBUG compute_state_update{scope="sequencer" rollup_height=72 slot_number=72}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:31:57.185596Z DEBUG compute_state_update{scope="sequencer" rollup_height=72 slot_number=72}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=664169969b40776ddf5118a2b209eb3fd1648763b6aa2edf00a4b7c25815fd95565440415a16a1514cc5a7613ad26b3d3f1d1ca38a0064ca32f8e1e545548bce next_version=76 sesssion_starting_time=166.589µs +2026-04-20T15:31:57.185882Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:31:57.186425Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:31:57.189195Z DEBUG manage_blob_submission_inside_task{blob_id=2147897436447184041291967774659588353 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xbd97a0f7fcea17eddc07732d8e8a94295159ac6b10d9c66d29001be51b872de3 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=76 include_at=76 bytes=13 time=1.940707ms +2026-04-20T15:31:57.191246Z DEBUG compute_state_update{scope="sequencer" rollup_height=72 slot_number=72}: sov_state::nomt::prover_storage: computed next state root state_root=75db87f5762874f5a7f1aa9ec9a4ea190289d6793e5c36500edb2791345acbd20792480eaf8b5ebc35a5170ab2e26657e1177e668ae99effa279361911c160a1 next_version=76 time=6.037521ms accesses_build_time=215.509µs finishing_session_time=5.598124ms +2026-04-20T15:31:57.640982Z DEBUG sp1_core_executor_runner::native: CHILD sp1_2XzxMDodSLiWeHYUlF5ZLQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:31:57.677649Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:31:57.689360Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1719559 cycles +2026-04-20T15:31:57.692094Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [29, 217, 7, 84, 42, 38, 22, 44, 158, 252, 8, 130, 67, 140, 65, 127, 106, 77, 116, 156, 255, 32, 3, 170, 90, 36, 59, 128, 17, 106, 6, 216, 95, 192, 217, 10, 80, 251, 141, 223, 131, 224, 207, 237, 203, 162, 7, 105, 251, 206, 140, 223, 168, 161, 92, 116, 139, 0, 45, 48, 187, 146, 219, 137, 19, 64, 74, 70, 80, 130, 68, 208, 161, 0, 82, 149, 100, 204, 76, 105, 56, 104, 235, 28, 176, 226, 193, 216, 24, 34, 8, 228, 6, 100, 100, 13, 92, 207, 13, 141, 108, 23, 29, 186, 140, 182, 145, 101, 138, 251, 78, 168, 152, 86, 97, 50, 149, 157, 219, 167, 45, 143, 206, 90, 137, 53, 157, 197, 7, 186, 185, 237, 138, 219, 195, 53, 53, 20, 55, 217, 224, 86, 127, 194, 64, 207, 173, 84, 108, 209, 102, 82, 255, 251, 43, 116, 157, 71, 55, 59, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:31:58.296694Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:31:58.296774Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:32:00.144411Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=76 prev_hash=0xea9cce71b6200024ceb0a96bd2b63dd9271b4520dbd0535e86fe69ef1c237f2d hash=0x6c0d6def2dc30308fe0a6a06048a774e92c2d640ed89b250844c4b67faad84b8 producing_time=3.515337ms +2026-04-20T15:32:00.155812Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=76 current_state_root="664169969b40776ddf5118a2b209eb3fd1648763b6aa2edf00a4b7c25815fd95565440415a16a1514cc5a7613ad26b3d3f1d1ca38a0064ca32f8e1e545548bce" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xbd97a0f7fcea17eddc07732d8e8a94295159ac6b10d9c66d29001be51b872de3"] proof_blobs=[] +2026-04-20T15:32:00.164528Z DEBUG StfBlueprint::apply_slot{context=Node da_height=76}: sov_chain_state: Setting next visible slot number next_visible_slot_number=72 +2026-04-20T15:32:00.170879Z DEBUG StfBlueprint::apply_slot{context=Node da_height=76}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xbd97a0f7fcea17eddc07732d8e8a94295159ac6b10d9c66d29001be51b872de3}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:00.173186Z DEBUG StfBlueprint::apply_slot{context=Node da_height=76}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=664169969b40776ddf5118a2b209eb3fd1648763b6aa2edf00a4b7c25815fd95565440415a16a1514cc5a7613ad26b3d3f1d1ca38a0064ca32f8e1e545548bce next_version=76 sesssion_starting_time=321.888µs +2026-04-20T15:32:00.180749Z DEBUG StfBlueprint::apply_slot{context=Node da_height=76}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=75db87f5762874f5a7f1aa9ec9a4ea190289d6793e5c36500edb2791345acbd23032be043edc6cd008bce7b6792de3f2ee0e2ae0ad78a3f1389edad49de29db2 next_version=76 time=8.677174ms accesses_build_time=779.905µs finishing_session_time=7.426752ms +2026-04-20T15:32:00.181865Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="664169969b40776ddf5118a2b209eb3fd1648763b6aa2edf00a4b7c25815fd95565440415a16a1514cc5a7613ad26b3d3f1d1ca38a0064ca32f8e1e545548bce" next_state_root="75db87f5762874f5a7f1aa9ec9a4ea190289d6793e5c36500edb2791345acbd23032be043edc6cd008bce7b6792de3f2ee0e2ae0ad78a3f1389edad49de29db2" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:32:00.186211Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 76, latest_finalized_slot_number: 76, sync_status: Syncing { synced_da_height: 75, target_da_height: 76 }, .. } +2026-04-20T15:32:00.187609Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=72 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 76, latest_finalized_slot_number: 76, sync_status: Syncing { synced_da_height: 75, target_da_height: 76 }, .. } +2026-04-20T15:32:00.188546Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=72 +2026-04-20T15:32:00.191044Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:32:00.192022Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=68 +2026-04-20T15:32:00.193955Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=73 +2026-04-20T15:32:00.195039Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:32:00.196719Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=73 sequence_number=78 +2026-04-20T15:32:00.197002Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=78 blob_id=2147897440092139348133215091718205711 visible_slot_number_after_increase=73 visible_slots_to_advance=1 +2026-04-20T15:32:00.197000Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:00.198201Z DEBUG sov_stf_runner::runner: Block execution complete time=3.015039018s +2026-04-20T15:32:00.198251Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:32:00.200889Z DEBUG compute_state_update{scope="sequencer" rollup_height=73 slot_number=73}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:32:00.201184Z DEBUG compute_state_update{scope="sequencer" rollup_height=73 slot_number=73}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=75db87f5762874f5a7f1aa9ec9a4ea190289d6793e5c36500edb2791345acbd23032be043edc6cd008bce7b6792de3f2ee0e2ae0ad78a3f1389edad49de29db2 next_version=77 sesssion_starting_time=300.629µs +2026-04-20T15:32:00.204181Z DEBUG manage_blob_submission_inside_task{blob_id=2147897440092139348133215091718205711 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x8d202453c7176ddadad6949a1ab02aee273a7a23f1d6a99afe33b2d945da940a sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=77 include_at=77 bytes=13 time=1.790988ms +2026-04-20T15:32:00.206487Z DEBUG compute_state_update{scope="sequencer" rollup_height=73 slot_number=73}: sov_state::nomt::prover_storage: computed next state root state_root=0cb0f688c3950f1f5a757b6c449a7b1cc443917e9e399a93c404c7ecb5e6eeaa02d6da71e59fc5228858de36b6bcc8665f56d0483e6900c13af9397643a7e001 next_version=77 time=5.976301ms accesses_build_time=367.067µs finishing_session_time=5.219067ms +2026-04-20T15:32:00.668590Z DEBUG sp1_core_executor_runner::native: CHILD sp1__0Kq-AREQ5CeYxvKslOheg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:32:00.707350Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:32:00.720099Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1781827 cycles +2026-04-20T15:32:00.722879Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [42, 75, 72, 140, 187, 233, 160, 63, 179, 140, 139, 115, 137, 131, 190, 224, 2, 140, 18, 182, 127, 250, 88, 125, 110, 82, 75, 221, 254, 160, 95, 23, 59, 76, 84, 46, 205, 150, 98, 35, 45, 212, 96, 215, 70, 100, 165, 118, 242, 173, 31, 121, 174, 146, 22, 76, 61, 167, 104, 103, 233, 54, 225, 64, 65, 116, 171, 84, 30, 243, 41, 144, 65, 11, 199, 162, 236, 228, 169, 179, 43, 43, 40, 205, 154, 67, 83, 135, 197, 139, 101, 69, 193, 190, 249, 10, 49, 112, 92, 101, 112, 226, 171, 182, 156, 1, 78, 129, 8, 47, 92, 121, 90, 133, 15, 26, 73, 183, 146, 16, 169, 189, 183, 117, 14, 196, 222, 78, 62, 251, 91, 14, 135, 193, 252, 211, 229, 12, 181, 12, 202, 216, 31, 182, 235, 203, 216, 202, 231, 59, 25, 47, 245, 170, 237, 84, 179, 70, 7, 202, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:32:01.359814Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:32:01.359900Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:32:01.434266Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:32:01.674782Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:32:01.677102Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2607482 cycles +2026-04-20T15:32:01.677503Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [61, 0, 0, 0, 0, 0, 0, 0, 70, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 21, 55, 71, 186, 43, 254, 247, 68, 37, 148, 242, 178, 235, 181, 16, 29, 224, 22, 57, 225, 164, 123, 65, 161, 8, 107, 179, 45, 207, 48, 131, 24, 124, 14, 55, 251, 135, 121, 35, 9, 241, 112, 234, 177, 213, 14, 38, 20, 109, 171, 98, 39, 100, 33, 57, 188, 28, 7, 48, 164, 132, 212, 183, 3, 65, 116, 171, 84, 30, 243, 41, 144, 65, 11, 199, 162, 236, 228, 169, 179, 43, 43, 40, 205, 154, 67, 83, 135, 197, 139, 101, 69, 193, 190, 249, 10, 49, 112, 92, 101, 112, 226, 171, 182, 156, 1, 78, 129, 8, 47, 92, 121, 90, 133, 15, 26, 73, 183, 146, 16, 169, 189, 183, 117, 14, 196, 222, 78, 213, 176, 126, 44, 160, 178, 251, 11, 105, 240, 29, 55, 139, 146, 125, 37, 178, 1, 8, 200, 122, 117, 152, 88, 65, 232, 104, 167, 199, 109, 130, 144, 62, 251, 91, 14, 135, 193, 252, 211, 229, 12, 181, 12, 202, 216, 31, 182, 235, 203, 216, 202, 231, 59, 25, 47, 245, 170, 237, 84, 179, 70, 7, 202, 32, 0, 0, 0, 0, 0, 0, 0, 33, 87, 226, 242, 39, 49, 250, 210, 41, 143, 26, 188, 101, 19, 12, 136, 43, 105, 121, 236, 80, 118, 108, 155, 63, 154, 215, 73, 15, 107, 27, 67, 32, 0, 0, 0, 0, 0, 0, 0, 54, 246, 123, 188, 67, 61, 237, 103, 16, 229, 5, 146, 113, 8, 178, 215, 95, 95, 151, 239, 106, 28, 10, 135, 55, 55, 208, 95, 86, 190, 27, 9, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:32:02.593090Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:32:02.593164Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:32:02.594031Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=1951 +2026-04-20T15:32:02.596528Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:32:02.597074Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:32:02.597351Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=79 blob_id=2147897442991131934747068459244018576 +2026-04-20T15:32:03.149669Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=77 prev_hash=0x6c0d6def2dc30308fe0a6a06048a774e92c2d640ed89b250844c4b67faad84b8 hash=0xce6d92701a6bde1a1de589b7d1c0a5f690c67330cbbcbe5f9000776dcd6284d1 producing_time=3.09083ms +2026-04-20T15:32:03.160832Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=77 current_state_root="75db87f5762874f5a7f1aa9ec9a4ea190289d6793e5c36500edb2791345acbd23032be043edc6cd008bce7b6792de3f2ee0e2ae0ad78a3f1389edad49de29db2" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x8d202453c7176ddadad6949a1ab02aee273a7a23f1d6a99afe33b2d945da940a"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd8cbdb6ee6b688716aaac8548fe89ab1520400a37be3f66fbb2b604a7f1029a7, len=2001"] +2026-04-20T15:32:03.169688Z DEBUG StfBlueprint::apply_slot{context=Node da_height=77}: sov_chain_state: Setting next visible slot number next_visible_slot_number=73 +2026-04-20T15:32:03.176135Z DEBUG StfBlueprint::apply_slot{context=Node da_height=77}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x8d202453c7176ddadad6949a1ab02aee273a7a23f1d6a99afe33b2d945da940a}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:03.178654Z DEBUG StfBlueprint::apply_slot{context=Node da_height=77}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=75db87f5762874f5a7f1aa9ec9a4ea190289d6793e5c36500edb2791345acbd23032be043edc6cd008bce7b6792de3f2ee0e2ae0ad78a3f1389edad49de29db2 next_version=77 sesssion_starting_time=330.618µs +2026-04-20T15:32:03.186384Z DEBUG StfBlueprint::apply_slot{context=Node da_height=77}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=0cb0f688c3950f1f5a757b6c449a7b1cc443917e9e399a93c404c7ecb5e6eeaa39b2052b00318a8561a4ead4c18adc5de96fabeaeb41d75d4fc70ac99442ffce next_version=77 time=9.002062ms accesses_build_time=928.754µs finishing_session_time=7.573661ms +2026-04-20T15:32:03.187509Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="75db87f5762874f5a7f1aa9ec9a4ea190289d6793e5c36500edb2791345acbd23032be043edc6cd008bce7b6792de3f2ee0e2ae0ad78a3f1389edad49de29db2" next_state_root="0cb0f688c3950f1f5a757b6c449a7b1cc443917e9e399a93c404c7ecb5e6eeaa39b2052b00318a8561a4ead4c18adc5de96fabeaeb41d75d4fc70ac99442ffce" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:32:03.191408Z DEBUG sov_stf_runner::runner: Block execution complete time=2.993161729s +2026-04-20T15:32:03.191516Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:32:03.192358Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 77, latest_finalized_slot_number: 76, sync_status: Syncing { synced_da_height: 76, target_da_height: 77 }, .. } +2026-04-20T15:32:03.193785Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=73 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 77, latest_finalized_slot_number: 76, sync_status: Syncing { synced_da_height: 76, target_da_height: 77 }, .. } +2026-04-20T15:32:03.193869Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:32:03.194440Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:32:03.194728Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=73 +2026-04-20T15:32:03.197384Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:32:03.198367Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=69 +2026-04-20T15:32:03.200219Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=74 +2026-04-20T15:32:03.201186Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:32:03.205261Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 61. Final slot number 70 +2026-04-20T15:32:03.205906Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=74 sequence_number=80 +2026-04-20T15:32:03.206145Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:03.206235Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=80 blob_id=2147897443729733072612701154100933116 visible_slot_number_after_increase=74 visible_slots_to_advance=1 +2026-04-20T15:32:03.210587Z DEBUG compute_state_update{scope="sequencer" rollup_height=74 slot_number=74}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0cb0f688c3950f1f5a757b6c449a7b1cc443917e9e399a93c404c7ecb5e6eeaa39b2052b00318a8561a4ead4c18adc5de96fabeaeb41d75d4fc70ac99442ffce next_version=78 sesssion_starting_time=285.328µs +2026-04-20T15:32:03.214129Z DEBUG manage_blob_submission_inside_task{blob_id=2147897443729733072612701154100933116 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x6cc0568af9d793269e7e86ac546f92d4b0be397ec4df970196b6c8a3eadee7a3 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=78 include_at=78 bytes=13 time=1.967697ms +2026-04-20T15:32:03.217091Z DEBUG compute_state_update{scope="sequencer" rollup_height=74 slot_number=74}: sov_state::nomt::prover_storage: computed next state root state_root=7acf58923eb5e973b6ba8254cf7022f5ba2d8e1e724f05fbcbfc18bc459af534140b806aa35663909ed509f80ce21b7887b122d481c5412fc27558cce844f2f4 next_version=78 time=7.268193ms accesses_build_time=466.747µs finishing_session_time=6.370359ms +2026-04-20T15:32:06.064352Z DEBUG sp1_core_executor_runner::native: CHILD sp1_l-qOhiuSTLaRL4bPkCtDEg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:32:06.101858Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:32:06.113183Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1759694 cycles +2026-04-20T15:32:06.115976Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [53, 36, 192, 18, 104, 50, 196, 42, 144, 28, 120, 200, 111, 96, 129, 13, 26, 134, 86, 54, 148, 254, 91, 151, 65, 68, 140, 201, 205, 229, 178, 241, 11, 186, 81, 29, 234, 87, 187, 173, 50, 85, 243, 121, 45, 133, 29, 143, 220, 20, 181, 97, 158, 41, 54, 156, 186, 102, 107, 124, 238, 34, 193, 216, 1, 20, 252, 67, 248, 197, 84, 181, 192, 255, 128, 138, 132, 52, 80, 115, 171, 49, 221, 171, 146, 63, 56, 148, 201, 212, 167, 185, 5, 129, 218, 153, 58, 51, 56, 147, 175, 31, 170, 51, 187, 102, 116, 110, 175, 47, 145, 63, 26, 88, 154, 58, 170, 242, 32, 172, 63, 173, 34, 222, 43, 58, 111, 205, 66, 34, 0, 178, 97, 161, 154, 104, 59, 240, 184, 216, 84, 211, 187, 130, 44, 131, 102, 144, 91, 171, 25, 202, 210, 31, 197, 111, 242, 251, 92, 209, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:32:06.154160Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=78 prev_hash=0xce6d92701a6bde1a1de589b7d1c0a5f690c67330cbbcbe5f9000776dcd6284d1 hash=0x6782991255debf7c10ebca008d0248655ef5ab8001fe5741b63523c3e85f31bf producing_time=3.208049ms +2026-04-20T15:32:06.165282Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=78 current_state_root="0cb0f688c3950f1f5a757b6c449a7b1cc443917e9e399a93c404c7ecb5e6eeaa39b2052b00318a8561a4ead4c18adc5de96fabeaeb41d75d4fc70ac99442ffce" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x6cc0568af9d793269e7e86ac546f92d4b0be397ec4df970196b6c8a3eadee7a3"] proof_blobs=[] +2026-04-20T15:32:06.173633Z DEBUG StfBlueprint::apply_slot{context=Node da_height=78}: sov_chain_state: Setting next visible slot number next_visible_slot_number=74 +2026-04-20T15:32:06.190468Z DEBUG StfBlueprint::apply_slot{context=Node da_height=78}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 61. Final slot number 70 +2026-04-20T15:32:06.190903Z DEBUG StfBlueprint::apply_slot{context=Node da_height=78}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x6cc0568af9d793269e7e86ac546f92d4b0be397ec4df970196b6c8a3eadee7a3}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:06.193217Z DEBUG StfBlueprint::apply_slot{context=Node da_height=78}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0cb0f688c3950f1f5a757b6c449a7b1cc443917e9e399a93c404c7ecb5e6eeaa39b2052b00318a8561a4ead4c18adc5de96fabeaeb41d75d4fc70ac99442ffce next_version=78 sesssion_starting_time=245.978µs +2026-04-20T15:32:06.203130Z DEBUG StfBlueprint::apply_slot{context=Node da_height=78}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=7acf58923eb5e973b6ba8254cf7022f5ba2d8e1e724f05fbcbfc18bc459af53433ebc46bd2790ae97e0a89aa637588a33eb47b8c326df5cc3e93e5155a673fab next_version=78 time=11.229458ms accesses_build_time=1.059524ms finishing_session_time=9.790867ms +2026-04-20T15:32:06.204237Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="75db87f5762874f5a7f1aa9ec9a4ea190289d6793e5c36500edb2791345acbd23032be043edc6cd008bce7b6792de3f2ee0e2ae0ad78a3f1389edad49de29db2" next_state_root="7acf58923eb5e973b6ba8254cf7022f5ba2d8e1e724f05fbcbfc18bc459af53433ebc46bd2790ae97e0a89aa637588a33eb47b8c326df5cc3e93e5155a673fab" aggregated_proofs=1 proof_receipts=1 +2026-04-20T15:32:06.209771Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 78, latest_finalized_slot_number: 78, sync_status: Syncing { synced_da_height: 77, target_da_height: 78 }, .. } +2026-04-20T15:32:06.211277Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=74 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 78, latest_finalized_slot_number: 78, sync_status: Syncing { synced_da_height: 77, target_da_height: 78 }, .. } +2026-04-20T15:32:06.212271Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=74 +2026-04-20T15:32:06.214809Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:32:06.215758Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=70 +2026-04-20T15:32:06.217604Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=75 +2026-04-20T15:32:06.218551Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:32:06.220078Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=75 sequence_number=81 +2026-04-20T15:32:06.220247Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=81 blob_id=2147897447374669488720155877915311864 visible_slot_number_after_increase=75 visible_slots_to_advance=1 +2026-04-20T15:32:06.220343Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:06.225027Z DEBUG compute_state_update{scope="sequencer" rollup_height=75 slot_number=75}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:32:06.225350Z DEBUG compute_state_update{scope="sequencer" rollup_height=75 slot_number=75}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7acf58923eb5e973b6ba8254cf7022f5ba2d8e1e724f05fbcbfc18bc459af53433ebc46bd2790ae97e0a89aa637588a33eb47b8c326df5cc3e93e5155a673fab next_version=79 sesssion_starting_time=1.048324ms +2026-04-20T15:32:06.227505Z DEBUG manage_blob_submission_inside_task{blob_id=2147897447374669488720155877915311864 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x7ed196d89bb255b6a98d3e6bcfecccd3e04455b6c42fc22a6445fee55bf1e0cf sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=79 include_at=79 bytes=13 time=1.864919ms +2026-04-20T15:32:06.230997Z DEBUG compute_state_update{scope="sequencer" rollup_height=75 slot_number=75}: sov_state::nomt::prover_storage: computed next state root state_root=654422da5b11e7d115aef91b43a59b03078a85b969e722b35954ba8ad90c5c751c7ea6ae7e7da77b389f4174779390cf5e65bd9a9d202dd818c3d3f5c152f2ed next_version=79 time=7.074004ms accesses_build_time=371.017µs finishing_session_time=5.553854ms +2026-04-20T15:32:06.237365Z DEBUG sov_stf_runner::runner: Block execution complete time=3.045871399s +2026-04-20T15:32:06.237421Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:32:06.239781Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:32:06.240528Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:32:06.655764Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xW0IgElLS9yW4IZRrLKBmw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:32:06.693781Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:32:06.705718Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1770145 cycles +2026-04-20T15:32:06.708567Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [114, 169, 9, 201, 56, 65, 255, 160, 6, 242, 74, 177, 26, 175, 64, 204, 47, 64, 227, 170, 217, 104, 166, 109, 98, 172, 137, 50, 117, 154, 235, 153, 124, 160, 198, 199, 131, 21, 117, 165, 23, 167, 108, 127, 33, 125, 142, 182, 128, 129, 202, 165, 1, 79, 166, 25, 177, 80, 157, 237, 43, 229, 30, 226, 39, 63, 238, 201, 69, 14, 152, 49, 65, 66, 237, 62, 233, 35, 101, 212, 20, 243, 172, 242, 83, 158, 206, 92, 48, 212, 26, 5, 7, 75, 58, 7, 11, 253, 23, 221, 36, 207, 160, 33, 235, 77, 88, 204, 33, 152, 3, 2, 140, 12, 161, 163, 221, 132, 71, 190, 115, 166, 79, 169, 213, 179, 19, 127, 72, 231, 89, 198, 147, 141, 63, 11, 162, 54, 66, 69, 245, 196, 146, 31, 205, 24, 247, 181, 237, 100, 50, 144, 237, 179, 154, 190, 195, 129, 108, 220, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:32:06.767263Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:32:06.767346Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:32:07.386506Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:32:07.386586Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:32:09.157986Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=79 prev_hash=0x6782991255debf7c10ebca008d0248655ef5ab8001fe5741b63523c3e85f31bf hash=0x04c9705fe597d6d32df81501753419877dea1557dcca9d5eedc63e82c4859549 producing_time=3.21233ms +2026-04-20T15:32:09.170151Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=79 current_state_root="7acf58923eb5e973b6ba8254cf7022f5ba2d8e1e724f05fbcbfc18bc459af53433ebc46bd2790ae97e0a89aa637588a33eb47b8c326df5cc3e93e5155a673fab" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x7ed196d89bb255b6a98d3e6bcfecccd3e04455b6c42fc22a6445fee55bf1e0cf"] proof_blobs=[] +2026-04-20T15:32:09.178485Z DEBUG StfBlueprint::apply_slot{context=Node da_height=79}: sov_chain_state: Setting next visible slot number next_visible_slot_number=75 +2026-04-20T15:32:09.184354Z DEBUG StfBlueprint::apply_slot{context=Node da_height=79}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x7ed196d89bb255b6a98d3e6bcfecccd3e04455b6c42fc22a6445fee55bf1e0cf}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:09.186520Z DEBUG StfBlueprint::apply_slot{context=Node da_height=79}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7acf58923eb5e973b6ba8254cf7022f5ba2d8e1e724f05fbcbfc18bc459af53433ebc46bd2790ae97e0a89aa637588a33eb47b8c326df5cc3e93e5155a673fab next_version=79 sesssion_starting_time=266.908µs +2026-04-20T15:32:09.194598Z DEBUG StfBlueprint::apply_slot{context=Node da_height=79}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=654422da5b11e7d115aef91b43a59b03078a85b969e722b35954ba8ad90c5c7543c3aed8b6c43d88c3802d32d508da58c0cc9f9f48de9e5c25aab39e41128883 next_version=79 time=9.125071ms accesses_build_time=766.545µs finishing_session_time=7.931198ms +2026-04-20T15:32:09.195673Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="7acf58923eb5e973b6ba8254cf7022f5ba2d8e1e724f05fbcbfc18bc459af53433ebc46bd2790ae97e0a89aa637588a33eb47b8c326df5cc3e93e5155a673fab" next_state_root="654422da5b11e7d115aef91b43a59b03078a85b969e722b35954ba8ad90c5c7543c3aed8b6c43d88c3802d32d508da58c0cc9f9f48de9e5c25aab39e41128883" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:32:09.200079Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 79, latest_finalized_slot_number: 79, sync_status: Syncing { synced_da_height: 78, target_da_height: 79 }, .. } +2026-04-20T15:32:09.201618Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=75 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 79, latest_finalized_slot_number: 79, sync_status: Syncing { synced_da_height: 78, target_da_height: 79 }, .. } +2026-04-20T15:32:09.202573Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=75 +2026-04-20T15:32:09.205274Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:32:09.206326Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=71 +2026-04-20T15:32:09.208176Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=76 +2026-04-20T15:32:09.209228Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:32:09.210799Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=76 sequence_number=82 +2026-04-20T15:32:09.211057Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:09.211087Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=82 blob_id=2147897450989348006071565081035446135 visible_slot_number_after_increase=76 visible_slots_to_advance=1 +2026-04-20T15:32:09.213800Z DEBUG sov_stf_runner::runner: Block execution complete time=2.976382729s +2026-04-20T15:32:09.213946Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:32:09.215062Z DEBUG compute_state_update{scope="sequencer" rollup_height=76 slot_number=76}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:32:09.215393Z DEBUG compute_state_update{scope="sequencer" rollup_height=76 slot_number=76}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=654422da5b11e7d115aef91b43a59b03078a85b969e722b35954ba8ad90c5c7543c3aed8b6c43d88c3802d32d508da58c0cc9f9f48de9e5c25aab39e41128883 next_version=80 sesssion_starting_time=335.588µs +2026-04-20T15:32:09.216174Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:32:09.216882Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:32:09.218371Z DEBUG manage_blob_submission_inside_task{blob_id=2147897450989348006071565081035446135 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x8b5163356f98273cae0150d630f8ea3e5ba7414423160e4ae0126de05aac4790 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=80 include_at=80 bytes=13 time=1.931417ms +2026-04-20T15:32:09.221548Z DEBUG compute_state_update{scope="sequencer" rollup_height=76 slot_number=76}: sov_state::nomt::prover_storage: computed next state root state_root=1bbefc5f9430968e5ba49d8a86b41bd33c62068f82b323203c78a9cf6c86b5ad53197808d41acd0bdfc763cf81bd737674ef46397be06420524e8e22d96c1620 next_version=80 time=6.892655ms accesses_build_time=393.387µs finishing_session_time=6.041251ms +2026-04-20T15:32:09.718272Z DEBUG sp1_core_executor_runner::native: CHILD sp1_zHmIrQ6WQnuizzzZ3WvNBQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:32:09.757396Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:32:09.769257Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1809671 cycles +2026-04-20T15:32:09.772179Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [93, 18, 77, 8, 115, 50, 54, 89, 141, 158, 191, 243, 167, 201, 57, 50, 87, 7, 17, 108, 154, 117, 8, 82, 107, 117, 166, 91, 63, 146, 33, 113, 12, 160, 118, 8, 109, 112, 28, 77, 15, 132, 54, 240, 23, 75, 194, 130, 90, 191, 55, 155, 206, 255, 182, 80, 103, 197, 141, 195, 127, 216, 73, 3, 96, 14, 27, 246, 99, 92, 9, 24, 79, 115, 190, 46, 117, 202, 220, 56, 41, 254, 26, 221, 8, 215, 73, 20, 33, 27, 1, 147, 112, 225, 156, 68, 38, 42, 145, 208, 244, 141, 218, 238, 235, 209, 165, 215, 30, 78, 238, 14, 57, 140, 188, 67, 16, 236, 129, 72, 186, 18, 105, 56, 219, 131, 187, 188, 112, 236, 29, 252, 53, 174, 249, 33, 169, 108, 90, 191, 92, 173, 177, 246, 144, 227, 40, 196, 199, 102, 53, 99, 67, 77, 65, 112, 164, 64, 24, 253, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:32:10.412265Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:32:10.412352Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:32:12.162153Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=80 prev_hash=0x04c9705fe597d6d32df81501753419877dea1557dcca9d5eedc63e82c4859549 hash=0xf74dcd3c6a0060e3073d1be93696b17da72c9d65269e2750efed5d8ec4ebdd8c producing_time=3.234468ms +2026-04-20T15:32:12.167190Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=80 current_state_root="654422da5b11e7d115aef91b43a59b03078a85b969e722b35954ba8ad90c5c7543c3aed8b6c43d88c3802d32d508da58c0cc9f9f48de9e5c25aab39e41128883" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x8b5163356f98273cae0150d630f8ea3e5ba7414423160e4ae0126de05aac4790"] proof_blobs=[] +2026-04-20T15:32:12.175532Z DEBUG StfBlueprint::apply_slot{context=Node da_height=80}: sov_chain_state: Setting next visible slot number next_visible_slot_number=76 +2026-04-20T15:32:12.181412Z DEBUG StfBlueprint::apply_slot{context=Node da_height=80}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x8b5163356f98273cae0150d630f8ea3e5ba7414423160e4ae0126de05aac4790}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:12.183604Z DEBUG StfBlueprint::apply_slot{context=Node da_height=80}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=654422da5b11e7d115aef91b43a59b03078a85b969e722b35954ba8ad90c5c7543c3aed8b6c43d88c3802d32d508da58c0cc9f9f48de9e5c25aab39e41128883 next_version=80 sesssion_starting_time=240.678µs +2026-04-20T15:32:12.191495Z DEBUG StfBlueprint::apply_slot{context=Node da_height=80}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=1bbefc5f9430968e5ba49d8a86b41bd33c62068f82b323203c78a9cf6c86b5ad4c6153cc2da4e8cf614adaeacb6d13a979367a09db5e41dc37ed95342e513382 next_version=80 time=8.922162ms accesses_build_time=779.525µs finishing_session_time=7.761009ms +2026-04-20T15:32:12.192596Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="654422da5b11e7d115aef91b43a59b03078a85b969e722b35954ba8ad90c5c7543c3aed8b6c43d88c3802d32d508da58c0cc9f9f48de9e5c25aab39e41128883" next_state_root="1bbefc5f9430968e5ba49d8a86b41bd33c62068f82b323203c78a9cf6c86b5ad4c6153cc2da4e8cf614adaeacb6d13a979367a09db5e41dc37ed95342e513382" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:32:12.196226Z DEBUG sov_stf_runner::runner: Block execution complete time=2.982315709s +2026-04-20T15:32:12.196342Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:32:12.197052Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 80, latest_finalized_slot_number: 79, sync_status: Syncing { synced_da_height: 79, target_da_height: 80 }, .. } +2026-04-20T15:32:12.198444Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=76 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 80, latest_finalized_slot_number: 79, sync_status: Syncing { synced_da_height: 79, target_da_height: 80 }, .. } +2026-04-20T15:32:12.198833Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:32:12.199380Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=76 +2026-04-20T15:32:12.199394Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:32:12.201987Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:32:12.202960Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=72 +2026-04-20T15:32:12.204874Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=77 +2026-04-20T15:32:12.205951Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:32:12.207501Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=77 sequence_number=83 +2026-04-20T15:32:12.207769Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:12.207833Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=83 blob_id=2147897454612519327308587232666928518 visible_slot_number_after_increase=77 visible_slots_to_advance=1 +2026-04-20T15:32:12.211983Z DEBUG compute_state_update{scope="sequencer" rollup_height=77 slot_number=77}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1bbefc5f9430968e5ba49d8a86b41bd33c62068f82b323203c78a9cf6c86b5ad4c6153cc2da4e8cf614adaeacb6d13a979367a09db5e41dc37ed95342e513382 next_version=81 sesssion_starting_time=256.458µs +2026-04-20T15:32:12.215422Z DEBUG manage_blob_submission_inside_task{blob_id=2147897454612519327308587232666928518 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x76f79e856c2df06c90b8c1b767902a82e6c6d31e3c4fe62053e0fde29dd86753 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=81 include_at=81 bytes=13 time=1.905097ms +2026-04-20T15:32:12.217416Z DEBUG compute_state_update{scope="sequencer" rollup_height=77 slot_number=77}: sov_state::nomt::prover_storage: computed next state root state_root=70f56ba43829cb5d61cde00f90de8cd3e97ccee6376921e8ff3e07e829c2da2959043518d593d12d2eb05d4295066b8a6a03d01d980d82a83801c237fb95a29e next_version=81 time=6.07061ms accesses_build_time=370.607µs finishing_session_time=5.300335ms +2026-04-20T15:32:12.698093Z DEBUG sp1_core_executor_runner::native: CHILD sp1_MVERSjchRkyUs9oIbvA1ow==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:32:12.734743Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:32:12.746751Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1729426 cycles +2026-04-20T15:32:12.749469Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [93, 110, 160, 95, 8, 115, 151, 108, 138, 142, 218, 166, 174, 68, 242, 170, 123, 47, 59, 0, 23, 29, 228, 88, 209, 79, 152, 240, 56, 199, 202, 136, 26, 188, 229, 231, 171, 18, 161, 8, 197, 158, 8, 190, 205, 120, 37, 14, 86, 146, 1, 155, 167, 162, 232, 93, 86, 145, 109, 162, 134, 180, 198, 98, 100, 27, 148, 248, 38, 66, 103, 146, 65, 67, 121, 207, 187, 206, 179, 114, 206, 124, 204, 73, 140, 157, 191, 164, 109, 143, 12, 181, 105, 147, 108, 144, 126, 112, 172, 7, 194, 32, 151, 161, 153, 66, 226, 139, 191, 118, 142, 180, 163, 21, 164, 170, 153, 166, 55, 203, 79, 20, 166, 36, 182, 224, 212, 162, 117, 223, 198, 78, 94, 15, 224, 234, 224, 46, 49, 218, 75, 19, 245, 199, 49, 235, 32, 98, 86, 186, 81, 227, 246, 141, 37, 116, 4, 63, 167, 242, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:32:13.362779Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:32:13.362870Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:32:15.166697Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=81 prev_hash=0xf74dcd3c6a0060e3073d1be93696b17da72c9d65269e2750efed5d8ec4ebdd8c hash=0x415a6dea83253ed1f397090c5447c7dea1679490524fe0a09ae45ceba8be38b3 producing_time=3.20467ms +2026-04-20T15:32:15.168719Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=81 current_state_root="1bbefc5f9430968e5ba49d8a86b41bd33c62068f82b323203c78a9cf6c86b5ad4c6153cc2da4e8cf614adaeacb6d13a979367a09db5e41dc37ed95342e513382" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x76f79e856c2df06c90b8c1b767902a82e6c6d31e3c4fe62053e0fde29dd86753"] proof_blobs=[] +2026-04-20T15:32:15.177196Z DEBUG StfBlueprint::apply_slot{context=Node da_height=81}: sov_chain_state: Setting next visible slot number next_visible_slot_number=77 +2026-04-20T15:32:15.183508Z DEBUG StfBlueprint::apply_slot{context=Node da_height=81}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x76f79e856c2df06c90b8c1b767902a82e6c6d31e3c4fe62053e0fde29dd86753}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:15.185861Z DEBUG StfBlueprint::apply_slot{context=Node da_height=81}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1bbefc5f9430968e5ba49d8a86b41bd33c62068f82b323203c78a9cf6c86b5ad4c6153cc2da4e8cf614adaeacb6d13a979367a09db5e41dc37ed95342e513382 next_version=81 sesssion_starting_time=330.347µs +2026-04-20T15:32:15.193560Z DEBUG StfBlueprint::apply_slot{context=Node da_height=81}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=70f56ba43829cb5d61cde00f90de8cd3e97ccee6376921e8ff3e07e829c2da2971828d4e127077593bec883c3e52d42f577300a80e49462b4ee48ff6263fa455 next_version=81 time=8.878293ms accesses_build_time=836.655µs finishing_session_time=7.561071ms +2026-04-20T15:32:15.194732Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="654422da5b11e7d115aef91b43a59b03078a85b969e722b35954ba8ad90c5c7543c3aed8b6c43d88c3802d32d508da58c0cc9f9f48de9e5c25aab39e41128883" next_state_root="70f56ba43829cb5d61cde00f90de8cd3e97ccee6376921e8ff3e07e829c2da2971828d4e127077593bec883c3e52d42f577300a80e49462b4ee48ff6263fa455" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:32:15.199327Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 81, latest_finalized_slot_number: 81, sync_status: Syncing { synced_da_height: 80, target_da_height: 81 }, .. } +2026-04-20T15:32:15.200700Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=77 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 81, latest_finalized_slot_number: 81, sync_status: Syncing { synced_da_height: 80, target_da_height: 81 }, .. } +2026-04-20T15:32:15.201594Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=77 +2026-04-20T15:32:15.204137Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:32:15.205221Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=73 +2026-04-20T15:32:15.207146Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=78 +2026-04-20T15:32:15.208137Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:32:15.209711Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=78 sequence_number=84 +2026-04-20T15:32:15.209963Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:15.210076Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=84 blob_id=2147897458241718770716026554029758252 visible_slot_number_after_increase=78 visible_slots_to_advance=1 +2026-04-20T15:32:15.216486Z DEBUG manage_blob_submission_inside_task{blob_id=2147897458241718770716026554029758252 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x59a017fe03ffaf1892b15554784566fc180b2c125f1433a2b4e65e0fb0995673 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=82 include_at=82 bytes=13 time=1.663989ms +2026-04-20T15:32:15.220008Z DEBUG compute_state_update{scope="sequencer" rollup_height=78 slot_number=78}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:32:15.220070Z DEBUG compute_state_update{scope="sequencer" rollup_height=78 slot_number=78}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:32:15.220349Z DEBUG sov_stf_runner::runner: Block execution complete time=3.02404206s +2026-04-20T15:32:15.220338Z DEBUG compute_state_update{scope="sequencer" rollup_height=78 slot_number=78}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=70f56ba43829cb5d61cde00f90de8cd3e97ccee6376921e8ff3e07e829c2da2971828d4e127077593bec883c3e52d42f577300a80e49462b4ee48ff6263fa455 next_version=82 sesssion_starting_time=6.576758ms +2026-04-20T15:32:15.220396Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:32:15.222832Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:32:15.223418Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:32:15.226636Z DEBUG compute_state_update{scope="sequencer" rollup_height=78 slot_number=78}: sov_state::nomt::prover_storage: computed next state root state_root=7c28065ae039bc7a3196cb144b9d554c6880354247ab5c856152e2596bbd41ef55b8f2f55c012679f36b202dece7e8ae354d304c9977d84078faecfde45cd785 next_version=82 time=13.252374ms accesses_build_time=372.098µs finishing_session_time=6.21676ms +2026-04-20T15:32:15.671443Z DEBUG sp1_core_executor_runner::native: CHILD sp1_C61fBcB3TbKHYTcH61pOlA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:32:15.708780Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:32:15.721527Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1757087 cycles +2026-04-20T15:32:15.724229Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [48, 214, 254, 99, 29, 9, 198, 244, 212, 235, 116, 218, 133, 211, 189, 210, 11, 21, 143, 135, 52, 75, 35, 196, 54, 85, 141, 77, 53, 220, 120, 101, 75, 38, 96, 237, 244, 212, 33, 244, 221, 25, 62, 195, 59, 248, 122, 93, 146, 130, 163, 95, 3, 253, 162, 59, 229, 58, 60, 163, 167, 160, 235, 254, 73, 29, 226, 131, 224, 209, 89, 135, 28, 99, 94, 191, 188, 62, 92, 189, 108, 104, 13, 233, 80, 156, 105, 97, 18, 43, 226, 34, 212, 185, 148, 129, 30, 187, 121, 69, 44, 31, 92, 57, 232, 215, 36, 131, 98, 68, 128, 70, 136, 160, 18, 218, 74, 250, 36, 60, 34, 253, 27, 27, 31, 241, 236, 110, 234, 156, 206, 113, 182, 32, 0, 36, 206, 176, 169, 107, 210, 182, 61, 217, 39, 27, 69, 32, 219, 208, 83, 94, 134, 254, 105, 239, 28, 35, 127, 45, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:32:16.341604Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:32:16.341693Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:32:18.171105Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=82 prev_hash=0x415a6dea83253ed1f397090c5447c7dea1679490524fe0a09ae45ceba8be38b3 hash=0x5b015a27db0745ec8899cfa4642161590250d641a652b8dda8346a2dc4180ef5 producing_time=3.347719ms +2026-04-20T15:32:18.173142Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=82 current_state_root="70f56ba43829cb5d61cde00f90de8cd3e97ccee6376921e8ff3e07e829c2da2971828d4e127077593bec883c3e52d42f577300a80e49462b4ee48ff6263fa455" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x59a017fe03ffaf1892b15554784566fc180b2c125f1433a2b4e65e0fb0995673"] proof_blobs=[] +2026-04-20T15:32:18.181717Z DEBUG StfBlueprint::apply_slot{context=Node da_height=82}: sov_chain_state: Setting next visible slot number next_visible_slot_number=78 +2026-04-20T15:32:18.187891Z DEBUG StfBlueprint::apply_slot{context=Node da_height=82}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x59a017fe03ffaf1892b15554784566fc180b2c125f1433a2b4e65e0fb0995673}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:18.190065Z DEBUG StfBlueprint::apply_slot{context=Node da_height=82}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=70f56ba43829cb5d61cde00f90de8cd3e97ccee6376921e8ff3e07e829c2da2971828d4e127077593bec883c3e52d42f577300a80e49462b4ee48ff6263fa455 next_version=82 sesssion_starting_time=264.348µs +2026-04-20T15:32:18.198481Z DEBUG StfBlueprint::apply_slot{context=Node da_height=82}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=7c28065ae039bc7a3196cb144b9d554c6880354247ab5c856152e2596bbd41ef72a83ba80ee3c90d9c8a7a8e567421b7e308b79ad350c52a35619735ca7e57e4 next_version=82 time=9.477749ms accesses_build_time=780.655µs finishing_session_time=8.280506ms +2026-04-20T15:32:18.199582Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="70f56ba43829cb5d61cde00f90de8cd3e97ccee6376921e8ff3e07e829c2da2971828d4e127077593bec883c3e52d42f577300a80e49462b4ee48ff6263fa455" next_state_root="7c28065ae039bc7a3196cb144b9d554c6880354247ab5c856152e2596bbd41ef72a83ba80ee3c90d9c8a7a8e567421b7e308b79ad350c52a35619735ca7e57e4" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:32:18.204171Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 82, latest_finalized_slot_number: 82, sync_status: Syncing { synced_da_height: 81, target_da_height: 82 }, .. } +2026-04-20T15:32:18.205986Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=78 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 82, latest_finalized_slot_number: 82, sync_status: Syncing { synced_da_height: 81, target_da_height: 82 }, .. } +2026-04-20T15:32:18.207153Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=78 +2026-04-20T15:32:18.209901Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:32:18.210910Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=74 +2026-04-20T15:32:18.212184Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=79 +2026-04-20T15:32:18.212784Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:32:18.213641Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=79 sequence_number=85 +2026-04-20T15:32:18.213826Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:18.214014Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=85 blob_id=2147897461873297362399092433552175553 visible_slot_number_after_increase=79 visible_slots_to_advance=1 +2026-04-20T15:32:18.216641Z DEBUG sov_stf_runner::runner: Block execution complete time=2.996250809s +2026-04-20T15:32:18.216715Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:32:18.216980Z DEBUG compute_state_update{scope="sequencer" rollup_height=79 slot_number=79}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:32:18.217302Z DEBUG compute_state_update{scope="sequencer" rollup_height=79 slot_number=79}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7c28065ae039bc7a3196cb144b9d554c6880354247ab5c856152e2596bbd41ef72a83ba80ee3c90d9c8a7a8e567421b7e308b79ad350c52a35619735ca7e57e4 next_version=83 sesssion_starting_time=328.298µs +2026-04-20T15:32:18.219357Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:32:18.220121Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:32:18.220195Z DEBUG manage_blob_submission_inside_task{blob_id=2147897461873297362399092433552175553 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x0e42d6c9b627aa7fe8cd6ea7714544e5dacba3c612722c48ac6c8738ddd9d64b sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=83 include_at=83 bytes=13 time=1.728609ms +2026-04-20T15:32:18.222929Z DEBUG compute_state_update{scope="sequencer" rollup_height=79 slot_number=79}: sov_state::nomt::prover_storage: computed next state root state_root=2635edaf958d89618b70bc5fd6e96e20b48dd1eb5b7c01b06d6dd680cdfd442f78029aebb6bab9e64728db1b87de086e43288b6c4f7910db58d7e1ba93f4ea62 next_version=83 time=6.370798ms accesses_build_time=409.257µs finishing_session_time=5.497804ms +2026-04-20T15:32:18.710570Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hE7UbrjcQ_OVwMSM_1sWUQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:32:18.748113Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:32:18.760941Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1756543 cycles +2026-04-20T15:32:18.763707Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [102, 65, 105, 150, 155, 64, 119, 109, 223, 81, 24, 162, 178, 9, 235, 63, 209, 100, 135, 99, 182, 170, 46, 223, 0, 164, 183, 194, 88, 21, 253, 149, 86, 84, 64, 65, 90, 22, 161, 81, 76, 197, 167, 97, 58, 210, 107, 61, 63, 29, 28, 163, 138, 0, 100, 202, 50, 248, 225, 229, 69, 84, 139, 206, 127, 130, 185, 148, 164, 140, 171, 175, 122, 51, 76, 199, 101, 192, 202, 37, 144, 189, 35, 212, 31, 123, 127, 250, 205, 242, 128, 98, 129, 97, 114, 233, 13, 119, 190, 99, 79, 69, 219, 177, 164, 46, 76, 48, 75, 7, 17, 246, 215, 46, 19, 245, 107, 234, 199, 108, 162, 165, 1, 187, 234, 134, 74, 102, 108, 13, 109, 239, 45, 195, 3, 8, 254, 10, 106, 6, 4, 138, 119, 78, 146, 194, 214, 64, 237, 137, 178, 80, 132, 76, 75, 103, 250, 173, 132, 184, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:32:19.380343Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:32:19.380422Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:32:21.175082Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=83 prev_hash=0x5b015a27db0745ec8899cfa4642161590250d641a652b8dda8346a2dc4180ef5 hash=0x866a09a77886a51aee04c84495d789053d0af8f5fc53405b6999c7722499f951 producing_time=3.10602ms +2026-04-20T15:32:21.180146Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=83 current_state_root="7c28065ae039bc7a3196cb144b9d554c6880354247ab5c856152e2596bbd41ef72a83ba80ee3c90d9c8a7a8e567421b7e308b79ad350c52a35619735ca7e57e4" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0e42d6c9b627aa7fe8cd6ea7714544e5dacba3c612722c48ac6c8738ddd9d64b"] proof_blobs=[] +2026-04-20T15:32:21.189010Z DEBUG StfBlueprint::apply_slot{context=Node da_height=83}: sov_chain_state: Setting next visible slot number next_visible_slot_number=79 +2026-04-20T15:32:21.195363Z DEBUG StfBlueprint::apply_slot{context=Node da_height=83}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x0e42d6c9b627aa7fe8cd6ea7714544e5dacba3c612722c48ac6c8738ddd9d64b}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:21.197663Z DEBUG StfBlueprint::apply_slot{context=Node da_height=83}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7c28065ae039bc7a3196cb144b9d554c6880354247ab5c856152e2596bbd41ef72a83ba80ee3c90d9c8a7a8e567421b7e308b79ad350c52a35619735ca7e57e4 next_version=83 sesssion_starting_time=320.478µs +2026-04-20T15:32:21.205251Z DEBUG StfBlueprint::apply_slot{context=Node da_height=83}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2635edaf958d89618b70bc5fd6e96e20b48dd1eb5b7c01b06d6dd680cdfd442f788282ee60bd5d5e309f0e7ada07ca7b0290d7ecb820b9e62a693caa1d4712d5 next_version=83 time=8.698134ms accesses_build_time=765.635µs finishing_session_time=7.450102ms +2026-04-20T15:32:21.206351Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="7c28065ae039bc7a3196cb144b9d554c6880354247ab5c856152e2596bbd41ef72a83ba80ee3c90d9c8a7a8e567421b7e308b79ad350c52a35619735ca7e57e4" next_state_root="2635edaf958d89618b70bc5fd6e96e20b48dd1eb5b7c01b06d6dd680cdfd442f788282ee60bd5d5e309f0e7ada07ca7b0290d7ecb820b9e62a693caa1d4712d5" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:32:21.210854Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 83, latest_finalized_slot_number: 83, sync_status: Synced { synced_da_height: 82 }, .. } +2026-04-20T15:32:21.212398Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=79 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 83, latest_finalized_slot_number: 83, sync_status: Synced { synced_da_height: 82 }, .. } +2026-04-20T15:32:21.213403Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=79 +2026-04-20T15:32:21.215978Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:32:21.216949Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=75 +2026-04-20T15:32:21.218863Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=80 +2026-04-20T15:32:21.219977Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:32:21.221654Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=80 sequence_number=86 +2026-04-20T15:32:21.221937Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=86 blob_id=2147897465509783125121741146102523063 visible_slot_number_after_increase=80 visible_slots_to_advance=1 +2026-04-20T15:32:21.221938Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:21.227813Z DEBUG compute_state_update{scope="sequencer" rollup_height=80 slot_number=80}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:32:21.228146Z DEBUG sov_stf_runner::runner: Block execution complete time=3.011444411s +2026-04-20T15:32:21.228143Z DEBUG compute_state_update{scope="sequencer" rollup_height=80 slot_number=80}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2635edaf958d89618b70bc5fd6e96e20b48dd1eb5b7c01b06d6dd680cdfd442f788282ee60bd5d5e309f0e7ada07ca7b0290d7ecb820b9e62a693caa1d4712d5 next_version=84 sesssion_starting_time=1.992057ms +2026-04-20T15:32:21.228188Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:32:21.229577Z DEBUG manage_blob_submission_inside_task{blob_id=2147897465509783125121741146102523063 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x3486ea4d09c3eae565dcb711fe817e8bb27bedd67c0466b7295febfe41b3d19b sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=84 include_at=84 bytes=13 time=1.761089ms +2026-04-20T15:32:21.230003Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:32:21.231240Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:32:21.233503Z DEBUG compute_state_update{scope="sequencer" rollup_height=80 slot_number=80}: sov_state::nomt::prover_storage: computed next state root state_root=093325db41191126666708ca14b51cb8bfd0323612e873a9a1136d511bbcaf850a4f619578016b49917fb26e1de41d9234a7d125818d2a47f512a9d77acb90ac next_version=84 time=7.750649ms accesses_build_time=391.187µs finishing_session_time=5.251135ms +2026-04-20T15:32:21.732452Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rhes3_wGSRaRMb8dy_wbfQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:32:21.773454Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:32:21.786019Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1884634 cycles +2026-04-20T15:32:21.787248Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [117, 219, 135, 245, 118, 40, 116, 245, 167, 241, 170, 158, 201, 164, 234, 25, 2, 137, 214, 121, 62, 92, 54, 80, 14, 219, 39, 145, 52, 90, 203, 210, 48, 50, 190, 4, 62, 220, 108, 208, 8, 188, 231, 182, 121, 45, 227, 242, 238, 14, 42, 224, 173, 120, 163, 241, 56, 158, 218, 212, 157, 226, 157, 178, 126, 174, 237, 88, 91, 209, 85, 133, 192, 61, 52, 141, 125, 43, 168, 9, 18, 179, 197, 166, 69, 212, 197, 65, 29, 37, 135, 205, 77, 179, 231, 128, 83, 186, 128, 139, 83, 150, 76, 158, 136, 114, 189, 222, 54, 168, 61, 60, 49, 245, 28, 73, 180, 121, 77, 184, 98, 221, 139, 228, 114, 15, 156, 156, 206, 109, 146, 112, 26, 107, 222, 26, 29, 229, 137, 183, 209, 192, 165, 246, 144, 198, 115, 48, 203, 188, 190, 95, 144, 0, 119, 109, 205, 98, 132, 209, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:32:22.452503Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:32:22.452583Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:32:24.179481Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=84 prev_hash=0x866a09a77886a51aee04c84495d789053d0af8f5fc53405b6999c7722499f951 hash=0xb3e087e754c85d20b85d69fa044d190db78ba0b9d45f70e136936d5fe91689b0 producing_time=3.377958ms +2026-04-20T15:32:24.190752Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=84 current_state_root="2635edaf958d89618b70bc5fd6e96e20b48dd1eb5b7c01b06d6dd680cdfd442f788282ee60bd5d5e309f0e7ada07ca7b0290d7ecb820b9e62a693caa1d4712d5" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x3486ea4d09c3eae565dcb711fe817e8bb27bedd67c0466b7295febfe41b3d19b"] proof_blobs=[] +2026-04-20T15:32:24.199611Z DEBUG StfBlueprint::apply_slot{context=Node da_height=84}: sov_chain_state: Setting next visible slot number next_visible_slot_number=80 +2026-04-20T15:32:24.205974Z DEBUG StfBlueprint::apply_slot{context=Node da_height=84}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x3486ea4d09c3eae565dcb711fe817e8bb27bedd67c0466b7295febfe41b3d19b}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:24.208283Z DEBUG StfBlueprint::apply_slot{context=Node da_height=84}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2635edaf958d89618b70bc5fd6e96e20b48dd1eb5b7c01b06d6dd680cdfd442f788282ee60bd5d5e309f0e7ada07ca7b0290d7ecb820b9e62a693caa1d4712d5 next_version=84 sesssion_starting_time=321.408µs +2026-04-20T15:32:24.215066Z DEBUG StfBlueprint::apply_slot{context=Node da_height=84}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=093325db41191126666708ca14b51cb8bfd0323612e873a9a1136d511bbcaf850484d8fcb5532fb8f463cdde1b8873c5b0c4941857ea06b816d5aec22a83c06a next_version=84 time=7.897859ms accesses_build_time=781.235µs finishing_session_time=6.636747ms +2026-04-20T15:32:24.216156Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2635edaf958d89618b70bc5fd6e96e20b48dd1eb5b7c01b06d6dd680cdfd442f788282ee60bd5d5e309f0e7ada07ca7b0290d7ecb820b9e62a693caa1d4712d5" next_state_root="093325db41191126666708ca14b51cb8bfd0323612e873a9a1136d511bbcaf850484d8fcb5532fb8f463cdde1b8873c5b0c4941857ea06b816d5aec22a83c06a" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:32:24.220655Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 84, latest_finalized_slot_number: 84, sync_status: Synced { synced_da_height: 83 }, .. } +2026-04-20T15:32:24.222078Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=80 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 84, latest_finalized_slot_number: 84, sync_status: Synced { synced_da_height: 83 }, .. } +2026-04-20T15:32:24.223022Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=80 +2026-04-20T15:32:24.225572Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:32:24.226556Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=76 +2026-04-20T15:32:24.228415Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=81 +2026-04-20T15:32:24.229399Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:32:24.231049Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=81 sequence_number=87 +2026-04-20T15:32:24.231339Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=87 blob_id=2147897469147426783382689198476495113 visible_slot_number_after_increase=81 visible_slots_to_advance=1 +2026-04-20T15:32:24.231311Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:24.232121Z DEBUG sov_stf_runner::runner: Block execution complete time=3.003939651s +2026-04-20T15:32:24.232167Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:32:24.234412Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:32:24.235050Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:32:24.235646Z DEBUG compute_state_update{scope="sequencer" rollup_height=81 slot_number=81}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:32:24.236015Z DEBUG compute_state_update{scope="sequencer" rollup_height=81 slot_number=81}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=093325db41191126666708ca14b51cb8bfd0323612e873a9a1136d511bbcaf850484d8fcb5532fb8f463cdde1b8873c5b0c4941857ea06b816d5aec22a83c06a next_version=85 sesssion_starting_time=380.317µs +2026-04-20T15:32:24.238582Z DEBUG manage_blob_submission_inside_task{blob_id=2147897469147426783382689198476495113 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x0fd293025d2d358d3fb0d9aea50b2d691a585aa6eac32274fd86ab70b8bcfcd2 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=85 include_at=85 bytes=13 time=1.827308ms +2026-04-20T15:32:24.241647Z DEBUG compute_state_update{scope="sequencer" rollup_height=81 slot_number=81}: sov_state::nomt::prover_storage: computed next state root state_root=161120378071b71a31d49facb15123b14cecf347f9af5f30f8a5982d8280088e4622921a352162b43725a94d600145691671846b0d0d395d380a6c9238867047 next_version=85 time=6.437208ms accesses_build_time=416.697µs finishing_session_time=5.513344ms +2026-04-20T15:32:24.773529Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TwUD8xMDTsKiux3kVPxbfA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:32:24.837102Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:32:24.849500Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4075642 cycles +2026-04-20T15:32:24.852342Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [12, 176, 246, 136, 195, 149, 15, 31, 90, 117, 123, 108, 68, 154, 123, 28, 196, 67, 145, 126, 158, 57, 154, 147, 196, 4, 199, 236, 181, 230, 238, 170, 57, 178, 5, 43, 0, 49, 138, 133, 97, 164, 234, 212, 193, 138, 220, 93, 233, 111, 171, 234, 235, 65, 215, 93, 79, 199, 10, 201, 148, 66, 255, 206, 111, 68, 13, 113, 193, 94, 223, 122, 236, 210, 17, 0, 112, 233, 48, 141, 112, 106, 43, 253, 249, 143, 233, 108, 69, 33, 114, 132, 200, 72, 16, 193, 124, 166, 230, 236, 154, 133, 120, 119, 46, 213, 16, 180, 240, 50, 61, 29, 64, 228, 235, 168, 71, 233, 108, 169, 43, 67, 98, 141, 33, 130, 34, 102, 103, 130, 153, 18, 85, 222, 191, 124, 16, 235, 202, 0, 141, 2, 72, 101, 94, 245, 171, 128, 1, 254, 87, 65, 182, 53, 35, 195, 232, 95, 49, 191, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:32:26.275265Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:32:26.275352Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:32:27.184669Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=85 prev_hash=0xb3e087e754c85d20b85d69fa044d190db78ba0b9d45f70e136936d5fe91689b0 hash=0x2b84374598b91be95869d040f9d9826f261a5fe4f6833a7f331a805f02989097 producing_time=3.422608ms +2026-04-20T15:32:27.194133Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=85 current_state_root="093325db41191126666708ca14b51cb8bfd0323612e873a9a1136d511bbcaf850484d8fcb5532fb8f463cdde1b8873c5b0c4941857ea06b816d5aec22a83c06a" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0fd293025d2d358d3fb0d9aea50b2d691a585aa6eac32274fd86ab70b8bcfcd2"] proof_blobs=[] +2026-04-20T15:32:27.202344Z DEBUG StfBlueprint::apply_slot{context=Node da_height=85}: sov_chain_state: Setting next visible slot number next_visible_slot_number=81 +2026-04-20T15:32:27.208169Z DEBUG StfBlueprint::apply_slot{context=Node da_height=85}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x0fd293025d2d358d3fb0d9aea50b2d691a585aa6eac32274fd86ab70b8bcfcd2}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:27.210366Z DEBUG StfBlueprint::apply_slot{context=Node da_height=85}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=093325db41191126666708ca14b51cb8bfd0323612e873a9a1136d511bbcaf850484d8fcb5532fb8f463cdde1b8873c5b0c4941857ea06b816d5aec22a83c06a next_version=85 sesssion_starting_time=277.969µs +2026-04-20T15:32:27.217660Z DEBUG StfBlueprint::apply_slot{context=Node da_height=85}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=161120378071b71a31d49facb15123b14cecf347f9af5f30f8a5982d8280088e75b05dda32ae20c6e9e7fa0b1c0ad0dad34f001a6e1089776d930454c349294f next_version=85 time=8.362595ms accesses_build_time=775.204µs finishing_session_time=7.163254ms +2026-04-20T15:32:27.218746Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="093325db41191126666708ca14b51cb8bfd0323612e873a9a1136d511bbcaf850484d8fcb5532fb8f463cdde1b8873c5b0c4941857ea06b816d5aec22a83c06a" next_state_root="161120378071b71a31d49facb15123b14cecf347f9af5f30f8a5982d8280088e75b05dda32ae20c6e9e7fa0b1c0ad0dad34f001a6e1089776d930454c349294f" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:32:27.223190Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 85, latest_finalized_slot_number: 85, sync_status: Synced { synced_da_height: 84 }, .. } +2026-04-20T15:32:27.224599Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=81 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 85, latest_finalized_slot_number: 85, sync_status: Synced { synced_da_height: 84 }, .. } +2026-04-20T15:32:27.225564Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=81 +2026-04-20T15:32:27.228357Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:32:27.229352Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=77 +2026-04-20T15:32:27.231264Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=82 +2026-04-20T15:32:27.232604Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:32:27.234025Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=82 sequence_number=88 +2026-04-20T15:32:27.234270Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:27.234329Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=88 blob_id=2147897472777856420674950381775214643 visible_slot_number_after_increase=82 visible_slots_to_advance=1 +2026-04-20T15:32:27.238416Z DEBUG compute_state_update{scope="sequencer" rollup_height=82 slot_number=82}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:32:27.238750Z DEBUG compute_state_update{scope="sequencer" rollup_height=82 slot_number=82}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=161120378071b71a31d49facb15123b14cecf347f9af5f30f8a5982d8280088e75b05dda32ae20c6e9e7fa0b1c0ad0dad34f001a6e1089776d930454c349294f next_version=86 sesssion_starting_time=464.487µs +2026-04-20T15:32:27.239223Z DEBUG sov_stf_runner::runner: Block execution complete time=3.00705889s +2026-04-20T15:32:27.239331Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:32:27.241524Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:32:27.241918Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:32:27.241907Z DEBUG manage_blob_submission_inside_task{blob_id=2147897472777856420674950381775214643 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x966cd38ab1c404f0964eeec6e05d294cd74ea920028e8e797eb9ffcad50d386d sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=86 include_at=86 bytes=13 time=1.979317ms +2026-04-20T15:32:27.244768Z DEBUG compute_state_update{scope="sequencer" rollup_height=82 slot_number=82}: sov_state::nomt::prover_storage: computed next state root state_root=64a568901fe53473c1303de74ce44b68d3e881c0c3670239ff47ed1c439fb5455619a2e44e0f679790b5c247fdfbde431202d903ec21efa37386cdbb03cc4732 next_version=86 time=6.871556ms accesses_build_time=383.127µs finishing_session_time=5.917532ms +2026-04-20T15:32:27.701625Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IlapgC_4SgOJDWPbQRehzQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:32:27.739704Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:32:27.752165Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1778271 cycles +2026-04-20T15:32:27.754914Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [122, 207, 88, 146, 62, 181, 233, 115, 182, 186, 130, 84, 207, 112, 34, 245, 186, 45, 142, 30, 114, 79, 5, 251, 203, 252, 24, 188, 69, 154, 245, 52, 51, 235, 196, 107, 210, 121, 10, 233, 126, 10, 137, 170, 99, 117, 136, 163, 62, 180, 123, 140, 50, 109, 245, 204, 62, 147, 229, 21, 90, 103, 63, 171, 74, 201, 89, 86, 222, 141, 120, 149, 178, 241, 14, 116, 134, 242, 233, 217, 242, 165, 0, 146, 99, 80, 223, 2, 112, 154, 10, 92, 194, 49, 109, 59, 20, 206, 236, 49, 100, 207, 41, 116, 57, 99, 246, 48, 95, 74, 228, 191, 171, 156, 82, 132, 84, 211, 197, 147, 154, 149, 111, 127, 141, 131, 28, 19, 4, 201, 112, 95, 229, 151, 214, 211, 45, 248, 21, 1, 117, 52, 25, 135, 125, 234, 21, 87, 220, 202, 157, 94, 237, 198, 62, 130, 196, 133, 149, 73, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:32:28.380461Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:32:28.380539Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:32:30.189637Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=86 prev_hash=0x2b84374598b91be95869d040f9d9826f261a5fe4f6833a7f331a805f02989097 hash=0xa95f0bda577bc1f2ba187d78ecf8d3b81406c4ce16b05403345d4ea36f5b4363 producing_time=3.335459ms +2026-04-20T15:32:30.201993Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=86 current_state_root="161120378071b71a31d49facb15123b14cecf347f9af5f30f8a5982d8280088e75b05dda32ae20c6e9e7fa0b1c0ad0dad34f001a6e1089776d930454c349294f" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x966cd38ab1c404f0964eeec6e05d294cd74ea920028e8e797eb9ffcad50d386d"] proof_blobs=[] +2026-04-20T15:32:30.210405Z DEBUG StfBlueprint::apply_slot{context=Node da_height=86}: sov_chain_state: Setting next visible slot number next_visible_slot_number=82 +2026-04-20T15:32:30.216430Z DEBUG StfBlueprint::apply_slot{context=Node da_height=86}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x966cd38ab1c404f0964eeec6e05d294cd74ea920028e8e797eb9ffcad50d386d}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:30.218606Z DEBUG StfBlueprint::apply_slot{context=Node da_height=86}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=161120378071b71a31d49facb15123b14cecf347f9af5f30f8a5982d8280088e75b05dda32ae20c6e9e7fa0b1c0ad0dad34f001a6e1089776d930454c349294f next_version=86 sesssion_starting_time=260.669µs +2026-04-20T15:32:30.226626Z DEBUG StfBlueprint::apply_slot{context=Node da_height=86}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=64a568901fe53473c1303de74ce44b68d3e881c0c3670239ff47ed1c439fb54534bfc81d2f2ba3724f5e15ddc32652aabb5dce6af8ad338c93cc36694ca91120 next_version=86 time=9.070721ms accesses_build_time=766.625µs finishing_session_time=7.883909ms +2026-04-20T15:32:30.227706Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="161120378071b71a31d49facb15123b14cecf347f9af5f30f8a5982d8280088e75b05dda32ae20c6e9e7fa0b1c0ad0dad34f001a6e1089776d930454c349294f" next_state_root="64a568901fe53473c1303de74ce44b68d3e881c0c3670239ff47ed1c439fb54534bfc81d2f2ba3724f5e15ddc32652aabb5dce6af8ad338c93cc36694ca91120" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:32:30.232269Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 86, latest_finalized_slot_number: 86, sync_status: Syncing { synced_da_height: 85, target_da_height: 86 }, .. } +2026-04-20T15:32:30.233708Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=82 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 86, latest_finalized_slot_number: 86, sync_status: Syncing { synced_da_height: 85, target_da_height: 86 }, .. } +2026-04-20T15:32:30.234679Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=82 +2026-04-20T15:32:30.237198Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:32:30.237650Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=78 +2026-04-20T15:32:30.239104Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=83 +2026-04-20T15:32:30.240142Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:32:30.241677Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=83 sequence_number=89 +2026-04-20T15:32:30.241893Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:30.241972Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=89 blob_id=2147897476414299661350056783560075485 visible_slot_number_after_increase=83 visible_slots_to_advance=1 +2026-04-20T15:32:30.245651Z DEBUG sov_stf_runner::runner: Block execution complete time=3.006350184s +2026-04-20T15:32:30.245756Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:32:30.246164Z DEBUG compute_state_update{scope="sequencer" rollup_height=83 slot_number=83}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:32:30.246489Z DEBUG compute_state_update{scope="sequencer" rollup_height=83 slot_number=83}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=64a568901fe53473c1303de74ce44b68d3e881c0c3670239ff47ed1c439fb54534bfc81d2f2ba3724f5e15ddc32652aabb5dce6af8ad338c93cc36694ca91120 next_version=87 sesssion_starting_time=328.278µs +2026-04-20T15:32:30.249622Z DEBUG manage_blob_submission_inside_task{blob_id=2147897476414299661350056783560075485 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x821873005033ac828e99d1ee64dc11e813d51d6aec6631a587e43fc09645d231 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=87 include_at=87 bytes=13 time=1.931558ms +2026-04-20T15:32:30.252268Z DEBUG compute_state_update{scope="sequencer" rollup_height=83 slot_number=83}: sov_state::nomt::prover_storage: computed next state root state_root=289e9bd1a95f7aaa430b7f58090adea67f6e56310323326e6142ff5edb048863086cf69cdf7bea71d7103659bc194b959543ac69be35ca6b0e7275dd60b9cffa next_version=87 time=6.500817ms accesses_build_time=384.287µs finishing_session_time=5.674664ms +2026-04-20T15:32:30.722135Z DEBUG sp1_core_executor_runner::native: CHILD sp1_IhPFbZGhTUm3bG6XB7kXbg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:32:30.759788Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:32:30.772449Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1761528 cycles +2026-04-20T15:32:30.775104Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [101, 68, 34, 218, 91, 17, 231, 209, 21, 174, 249, 27, 67, 165, 155, 3, 7, 138, 133, 185, 105, 231, 34, 179, 89, 84, 186, 138, 217, 12, 92, 117, 67, 195, 174, 216, 182, 196, 61, 136, 195, 128, 45, 50, 213, 8, 218, 88, 192, 204, 159, 159, 72, 222, 158, 92, 37, 170, 179, 158, 65, 18, 136, 131, 0, 225, 207, 164, 255, 200, 52, 112, 116, 38, 188, 206, 165, 84, 153, 37, 213, 5, 48, 51, 4, 224, 229, 68, 94, 181, 2, 194, 83, 187, 225, 228, 88, 193, 141, 179, 243, 25, 172, 170, 162, 66, 165, 157, 172, 191, 228, 188, 192, 208, 158, 237, 114, 145, 72, 20, 55, 217, 244, 40, 144, 220, 35, 208, 247, 77, 205, 60, 106, 0, 96, 227, 7, 61, 27, 233, 54, 150, 177, 125, 167, 44, 157, 101, 38, 158, 39, 80, 239, 237, 93, 142, 196, 235, 221, 140, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:32:31.396827Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:32:31.396905Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:32:31.491173Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:32:31.734199Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:32:31.736522Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2607482 cycles +2026-04-20T15:32:31.736890Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [71, 0, 0, 0, 0, 0, 0, 0, 80, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 53, 36, 192, 18, 104, 50, 196, 42, 144, 28, 120, 200, 111, 96, 129, 13, 26, 134, 86, 54, 148, 254, 91, 151, 65, 68, 140, 201, 205, 229, 178, 241, 11, 186, 81, 29, 234, 87, 187, 173, 50, 85, 243, 121, 45, 133, 29, 143, 220, 20, 181, 97, 158, 41, 54, 156, 186, 102, 107, 124, 238, 34, 193, 216, 0, 225, 207, 164, 255, 200, 52, 112, 116, 38, 188, 206, 165, 84, 153, 37, 213, 5, 48, 51, 4, 224, 229, 68, 94, 181, 2, 194, 83, 187, 225, 228, 88, 193, 141, 179, 243, 25, 172, 170, 162, 66, 165, 157, 172, 191, 228, 188, 192, 208, 158, 237, 114, 145, 72, 20, 55, 217, 244, 40, 144, 220, 35, 208, 66, 34, 0, 178, 97, 161, 154, 104, 59, 240, 184, 216, 84, 211, 187, 130, 44, 131, 102, 144, 91, 171, 25, 202, 210, 31, 197, 111, 242, 251, 92, 209, 247, 77, 205, 60, 106, 0, 96, 227, 7, 61, 27, 233, 54, 150, 177, 125, 167, 44, 157, 101, 38, 158, 39, 80, 239, 237, 93, 142, 196, 235, 221, 140, 32, 0, 0, 0, 0, 0, 0, 0, 33, 87, 226, 242, 39, 49, 250, 210, 41, 143, 26, 188, 101, 19, 12, 136, 43, 105, 121, 236, 80, 118, 108, 155, 63, 154, 215, 73, 15, 107, 27, 67, 32, 0, 0, 0, 0, 0, 0, 0, 54, 246, 123, 188, 67, 61, 237, 103, 16, 229, 5, 146, 113, 8, 178, 215, 95, 95, 151, 239, 106, 28, 10, 135, 55, 55, 208, 95, 86, 190, 27, 9, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:32:32.653374Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:32:32.653446Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:32:32.654267Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=1951 +2026-04-20T15:32:32.656771Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:32:32.657376Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:32:32.657743Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=90 blob_id=2147897479331402506143289049257222827 +2026-04-20T15:32:33.194804Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=87 prev_hash=0xa95f0bda577bc1f2ba187d78ecf8d3b81406c4ce16b05403345d4ea36f5b4363 hash=0xdf4005e77127bc290101553c74ebaa9b6fe996c7abe0edbeec405bafb03a7cb1 producing_time=3.816555ms +2026-04-20T15:32:33.198712Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=87 current_state_root="64a568901fe53473c1303de74ce44b68d3e881c0c3670239ff47ed1c439fb54534bfc81d2f2ba3724f5e15ddc32652aabb5dce6af8ad338c93cc36694ca91120" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x821873005033ac828e99d1ee64dc11e813d51d6aec6631a587e43fc09645d231"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x6b2b027b2557a0e4da266e37f0167d038fbb7a09c598cc317af470064787cf57, len=2001"] +2026-04-20T15:32:33.207285Z DEBUG StfBlueprint::apply_slot{context=Node da_height=87}: sov_chain_state: Setting next visible slot number next_visible_slot_number=83 +2026-04-20T15:32:33.213341Z DEBUG StfBlueprint::apply_slot{context=Node da_height=87}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x821873005033ac828e99d1ee64dc11e813d51d6aec6631a587e43fc09645d231}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:33.215705Z DEBUG StfBlueprint::apply_slot{context=Node da_height=87}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=64a568901fe53473c1303de74ce44b68d3e881c0c3670239ff47ed1c439fb54534bfc81d2f2ba3724f5e15ddc32652aabb5dce6af8ad338c93cc36694ca91120 next_version=87 sesssion_starting_time=255.798µs +2026-04-20T15:32:33.223447Z DEBUG StfBlueprint::apply_slot{context=Node da_height=87}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=289e9bd1a95f7aaa430b7f58090adea67f6e56310323326e6142ff5edb0488637ae72914bd0989fff40b67a1a9fe9879ef0784c36d51e617348a7a55463dd5de next_version=87 time=8.960682ms accesses_build_time=947.874µs finishing_session_time=7.60942ms +2026-04-20T15:32:33.224557Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="64a568901fe53473c1303de74ce44b68d3e881c0c3670239ff47ed1c439fb54534bfc81d2f2ba3724f5e15ddc32652aabb5dce6af8ad338c93cc36694ca91120" next_state_root="289e9bd1a95f7aaa430b7f58090adea67f6e56310323326e6142ff5edb0488637ae72914bd0989fff40b67a1a9fe9879ef0784c36d51e617348a7a55463dd5de" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:32:33.229388Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 87, latest_finalized_slot_number: 87, sync_status: Syncing { synced_da_height: 86, target_da_height: 87 }, .. } +2026-04-20T15:32:33.230897Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=83 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 87, latest_finalized_slot_number: 87, sync_status: Syncing { synced_da_height: 86, target_da_height: 87 }, .. } +2026-04-20T15:32:33.231905Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=83 +2026-04-20T15:32:33.234573Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:32:33.235509Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=79 +2026-04-20T15:32:33.237381Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=84 +2026-04-20T15:32:33.238441Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:32:33.241359Z DEBUG sov_stf_runner::runner: Block execution complete time=2.995623294s +2026-04-20T15:32:33.241430Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:32:33.242809Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 71. Final slot number 80 +2026-04-20T15:32:33.243467Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=84 sequence_number=91 +2026-04-20T15:32:33.243609Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:32:33.243730Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=91 blob_id=2147897480043463686432897023456856896 visible_slot_number_after_increase=84 visible_slots_to_advance=1 +2026-04-20T15:32:33.243713Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:33.244253Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:32:33.247664Z DEBUG compute_state_update{scope="sequencer" rollup_height=84 slot_number=84}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:32:33.247988Z DEBUG compute_state_update{scope="sequencer" rollup_height=84 slot_number=84}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=289e9bd1a95f7aaa430b7f58090adea67f6e56310323326e6142ff5edb0488637ae72914bd0989fff40b67a1a9fe9879ef0784c36d51e617348a7a55463dd5de next_version=88 sesssion_starting_time=331.728µs +2026-04-20T15:32:33.250271Z DEBUG manage_blob_submission_inside_task{blob_id=2147897480043463686432897023456856896 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xc6aa60faed84cff8d86d3773fed2528e6782da1fbe2c7c413e430c16b4fe1356 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=88 include_at=88 bytes=13 time=1.395131ms +2026-04-20T15:32:33.254077Z DEBUG compute_state_update{scope="sequencer" rollup_height=84 slot_number=84}: sov_state::nomt::prover_storage: computed next state root state_root=379c2a5a565171123d1eec71aefac14205af621179625912d8c44345976bffed21c6325512bdc671a8d44400208ee187a4f2a76d23f0958ea6bd22b5ef2067c7 next_version=88 time=6.895666ms accesses_build_time=468.947µs finishing_session_time=5.976832ms +2026-04-20T15:32:36.148943Z DEBUG sp1_core_executor_runner::native: CHILD sp1_DGXptOWOR5qL6DYoES7t_Q==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:32:36.186210Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:32:36.198651Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1758579 cycles +2026-04-20T15:32:36.199382Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=88 prev_hash=0xdf4005e77127bc290101553c74ebaa9b6fe996c7abe0edbeec405bafb03a7cb1 hash=0x343dc2feac9c34d75bbe998ac2968c8dc4c9efe5f9e8188798ffbaec4bcaa739 producing_time=2.99163ms +2026-04-20T15:32:36.201424Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [27, 190, 252, 95, 148, 48, 150, 142, 91, 164, 157, 138, 134, 180, 27, 211, 60, 98, 6, 143, 130, 179, 35, 32, 60, 120, 169, 207, 108, 134, 181, 173, 76, 97, 83, 204, 45, 164, 232, 207, 97, 74, 218, 234, 203, 109, 19, 169, 121, 54, 122, 9, 219, 94, 65, 220, 55, 237, 149, 52, 46, 81, 51, 130, 107, 22, 152, 43, 83, 56, 148, 203, 24, 185, 181, 60, 54, 68, 204, 246, 69, 134, 55, 35, 224, 7, 226, 7, 105, 17, 53, 129, 246, 212, 254, 241, 98, 94, 116, 156, 198, 75, 56, 249, 143, 165, 79, 219, 207, 236, 57, 121, 36, 229, 199, 14, 186, 208, 152, 187, 80, 180, 2, 134, 150, 173, 46, 196, 65, 90, 109, 234, 131, 37, 62, 209, 243, 151, 9, 12, 84, 71, 199, 222, 161, 103, 148, 144, 82, 79, 224, 160, 154, 228, 92, 235, 168, 190, 56, 179, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:32:36.203538Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=88 current_state_root="289e9bd1a95f7aaa430b7f58090adea67f6e56310323326e6142ff5edb0488637ae72914bd0989fff40b67a1a9fe9879ef0784c36d51e617348a7a55463dd5de" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc6aa60faed84cff8d86d3773fed2528e6782da1fbe2c7c413e430c16b4fe1356"] proof_blobs=[] +2026-04-20T15:32:36.213468Z DEBUG StfBlueprint::apply_slot{context=Node da_height=88}: sov_chain_state: Setting next visible slot number next_visible_slot_number=84 +2026-04-20T15:32:36.232200Z DEBUG StfBlueprint::apply_slot{context=Node da_height=88}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 71. Final slot number 80 +2026-04-20T15:32:36.232676Z DEBUG StfBlueprint::apply_slot{context=Node da_height=88}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xc6aa60faed84cff8d86d3773fed2528e6782da1fbe2c7c413e430c16b4fe1356}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:36.235200Z DEBUG StfBlueprint::apply_slot{context=Node da_height=88}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=289e9bd1a95f7aaa430b7f58090adea67f6e56310323326e6142ff5edb0488637ae72914bd0989fff40b67a1a9fe9879ef0784c36d51e617348a7a55463dd5de next_version=88 sesssion_starting_time=254.159µs +2026-04-20T15:32:36.244598Z DEBUG StfBlueprint::apply_slot{context=Node da_height=88}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=379c2a5a565171123d1eec71aefac14205af621179625912d8c44345976bffed7f46fbd4d3abdbdac6ee63630699e6f9451b66d713a240d595d83ff66ce43922 next_version=88 time=10.75334ms accesses_build_time=1.091743ms finishing_session_time=9.25173ms +2026-04-20T15:32:36.245842Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="289e9bd1a95f7aaa430b7f58090adea67f6e56310323326e6142ff5edb0488637ae72914bd0989fff40b67a1a9fe9879ef0784c36d51e617348a7a55463dd5de" next_state_root="379c2a5a565171123d1eec71aefac14205af621179625912d8c44345976bffed7f46fbd4d3abdbdac6ee63630699e6f9451b66d713a240d595d83ff66ce43922" aggregated_proofs=1 proof_receipts=1 +2026-04-20T15:32:36.251361Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 88, latest_finalized_slot_number: 88, sync_status: Syncing { synced_da_height: 87, target_da_height: 88 }, .. } +2026-04-20T15:32:36.252767Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=84 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 88, latest_finalized_slot_number: 88, sync_status: Syncing { synced_da_height: 87, target_da_height: 88 }, .. } +2026-04-20T15:32:36.253731Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=84 +2026-04-20T15:32:36.256248Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:32:36.257260Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=80 +2026-04-20T15:32:36.259174Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=85 +2026-04-20T15:32:36.260374Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:32:36.262004Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=85 sequence_number=92 +2026-04-20T15:32:36.262363Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:36.262427Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=92 blob_id=2147897483692043995163633365766180686 visible_slot_number_after_increase=85 visible_slots_to_advance=1 +2026-04-20T15:32:36.266892Z DEBUG compute_state_update{scope="sequencer" rollup_height=85 slot_number=85}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:32:36.267218Z DEBUG compute_state_update{scope="sequencer" rollup_height=85 slot_number=85}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=379c2a5a565171123d1eec71aefac14205af621179625912d8c44345976bffed7f46fbd4d3abdbdac6ee63630699e6f9451b66d713a240d595d83ff66ce43922 next_version=89 sesssion_starting_time=331.968µs +2026-04-20T15:32:36.267502Z DEBUG sov_stf_runner::runner: Block execution complete time=3.026080236s +2026-04-20T15:32:36.267579Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:32:36.270040Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:32:36.270220Z DEBUG manage_blob_submission_inside_task{blob_id=2147897483692043995163633365766180686 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xb3a2b02ee457e5e5711a23f26566852ad602435907c4539239151f992ffe89c1 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=89 include_at=89 bytes=13 time=1.780419ms +2026-04-20T15:32:36.270645Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:32:36.272808Z DEBUG compute_state_update{scope="sequencer" rollup_height=85 slot_number=85}: sov_state::nomt::prover_storage: computed next state root state_root=2a53180f1699de8a851dde1f7c24eb91fb75bd07b4a74734f8a1f6ac77ca6e836c87a771cbeb59b3769b3d763899e7df1e9286c0bee58864e32d401d02726e9f next_version=89 time=6.304289ms accesses_build_time=374.707µs finishing_session_time=5.500304ms +2026-04-20T15:32:36.767936Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nCRVlDEjSLWlxPl75IcAZQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:32:36.806102Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:32:36.818813Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1756824 cycles +2026-04-20T15:32:36.821514Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [112, 245, 107, 164, 56, 41, 203, 93, 97, 205, 224, 15, 144, 222, 140, 211, 233, 124, 206, 230, 55, 105, 33, 232, 255, 62, 7, 232, 41, 194, 218, 41, 113, 130, 141, 78, 18, 112, 119, 89, 59, 236, 136, 60, 62, 82, 212, 47, 87, 115, 0, 168, 14, 73, 70, 43, 78, 228, 143, 246, 38, 63, 164, 85, 34, 83, 118, 149, 161, 41, 215, 143, 79, 112, 125, 229, 199, 226, 148, 83, 77, 101, 9, 63, 131, 156, 19, 127, 136, 111, 46, 190, 4, 248, 12, 44, 67, 97, 165, 43, 45, 92, 213, 240, 198, 243, 107, 102, 70, 182, 29, 97, 56, 156, 197, 36, 135, 233, 94, 195, 243, 30, 233, 184, 15, 210, 95, 35, 91, 1, 90, 39, 219, 7, 69, 236, 136, 153, 207, 164, 100, 33, 97, 89, 2, 80, 214, 65, 166, 82, 184, 221, 168, 52, 106, 45, 196, 24, 14, 245, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:32:36.872114Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:32:36.872190Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:32:37.490361Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:32:37.490440Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:32:39.204143Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=89 prev_hash=0x343dc2feac9c34d75bbe998ac2968c8dc4c9efe5f9e8188798ffbaec4bcaa739 hash=0x1e8deb473d7346551e459de403d649123bc9462e1837ac3436b86ab9718fc022 producing_time=2.9846ms +2026-04-20T15:32:39.211291Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=89 current_state_root="379c2a5a565171123d1eec71aefac14205af621179625912d8c44345976bffed7f46fbd4d3abdbdac6ee63630699e6f9451b66d713a240d595d83ff66ce43922" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xb3a2b02ee457e5e5711a23f26566852ad602435907c4539239151f992ffe89c1"] proof_blobs=[] +2026-04-20T15:32:39.220204Z DEBUG StfBlueprint::apply_slot{context=Node da_height=89}: sov_chain_state: Setting next visible slot number next_visible_slot_number=85 +2026-04-20T15:32:39.226500Z DEBUG StfBlueprint::apply_slot{context=Node da_height=89}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xb3a2b02ee457e5e5711a23f26566852ad602435907c4539239151f992ffe89c1}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:39.228720Z DEBUG StfBlueprint::apply_slot{context=Node da_height=89}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=379c2a5a565171123d1eec71aefac14205af621179625912d8c44345976bffed7f46fbd4d3abdbdac6ee63630699e6f9451b66d713a240d595d83ff66ce43922 next_version=89 sesssion_starting_time=262.989µs +2026-04-20T15:32:39.236921Z DEBUG StfBlueprint::apply_slot{context=Node da_height=89}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2a53180f1699de8a851dde1f7c24eb91fb75bd07b4a74734f8a1f6ac77ca6e834a55acfc4c93637c4f9d8cec2783689be7b55fe9e7b3f7fccbed0e67bcd1f6f0 next_version=89 time=9.25837ms accesses_build_time=782.004µs finishing_session_time=8.070758ms +2026-04-20T15:32:39.238027Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="379c2a5a565171123d1eec71aefac14205af621179625912d8c44345976bffed7f46fbd4d3abdbdac6ee63630699e6f9451b66d713a240d595d83ff66ce43922" next_state_root="2a53180f1699de8a851dde1f7c24eb91fb75bd07b4a74734f8a1f6ac77ca6e834a55acfc4c93637c4f9d8cec2783689be7b55fe9e7b3f7fccbed0e67bcd1f6f0" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:32:39.241771Z DEBUG sov_stf_runner::runner: Block execution complete time=2.974204253s +2026-04-20T15:32:39.241899Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:32:39.242655Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 89, latest_finalized_slot_number: 88, sync_status: Syncing { synced_da_height: 88, target_da_height: 89 }, .. } +2026-04-20T15:32:39.244077Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=85 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 89, latest_finalized_slot_number: 88, sync_status: Syncing { synced_da_height: 88, target_da_height: 89 }, .. } +2026-04-20T15:32:39.244100Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:32:39.244427Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:32:39.245022Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=85 +2026-04-20T15:32:39.247611Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:32:39.248584Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=81 +2026-04-20T15:32:39.250505Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=86 +2026-04-20T15:32:39.251577Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:32:39.253156Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=86 sequence_number=93 +2026-04-20T15:32:39.253448Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=93 blob_id=2147897487309101958501758985263799651 visible_slot_number_after_increase=86 visible_slots_to_advance=1 +2026-04-20T15:32:39.253441Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:39.258058Z DEBUG compute_state_update{scope="sequencer" rollup_height=86 slot_number=86}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2a53180f1699de8a851dde1f7c24eb91fb75bd07b4a74734f8a1f6ac77ca6e834a55acfc4c93637c4f9d8cec2783689be7b55fe9e7b3f7fccbed0e67bcd1f6f0 next_version=90 sesssion_starting_time=300.039µs +2026-04-20T15:32:39.261158Z DEBUG manage_blob_submission_inside_task{blob_id=2147897487309101958501758985263799651 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x05f6937c0a1f8bfb4e075178c7120569fb59dc8fc344e24d17fef7d801f46d18 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=90 include_at=90 bytes=13 time=1.945148ms +2026-04-20T15:32:39.263752Z DEBUG compute_state_update{scope="sequencer" rollup_height=86 slot_number=86}: sov_state::nomt::prover_storage: computed next state root state_root=7fb9f0219cd3670d9afa9fc1fab664d09eca7e98e1eded282795e1252c67216b0963236fbdd8dbffa501e9f06c8bb29d0d462b836152d4cc5a9e017a8c72d899 next_version=90 time=6.445639ms accesses_build_time=435.938µs finishing_session_time=5.542354ms +2026-04-20T15:32:39.750172Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wZiXYH1KQ0GVTE0pf8p5uA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:32:39.790470Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:32:39.802593Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1848460 cycles +2026-04-20T15:32:39.805402Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [124, 40, 6, 90, 224, 57, 188, 122, 49, 150, 203, 20, 75, 157, 85, 76, 104, 128, 53, 66, 71, 171, 92, 133, 97, 82, 226, 89, 107, 189, 65, 239, 114, 168, 59, 168, 14, 227, 201, 13, 156, 138, 122, 142, 86, 116, 33, 183, 227, 8, 183, 154, 211, 80, 197, 42, 53, 97, 151, 53, 202, 126, 87, 228, 19, 61, 65, 36, 10, 230, 38, 53, 102, 206, 102, 64, 106, 79, 125, 137, 80, 125, 155, 82, 71, 131, 197, 12, 180, 130, 207, 255, 102, 196, 160, 129, 117, 33, 99, 150, 69, 6, 169, 73, 74, 177, 123, 169, 97, 90, 179, 198, 99, 236, 220, 27, 203, 110, 141, 222, 244, 138, 196, 30, 19, 157, 0, 203, 134, 106, 9, 167, 120, 134, 165, 26, 238, 4, 200, 68, 149, 215, 137, 5, 61, 10, 248, 245, 252, 83, 64, 91, 105, 153, 199, 114, 36, 153, 249, 81, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:32:40.475454Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:32:40.475535Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:32:42.207827Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=90 prev_hash=0x1e8deb473d7346551e459de403d649123bc9462e1837ac3436b86ab9718fc022 hash=0x06984aa2f52c3cd1d3313e0bf5c5ed8c3f643d046de2b66166a1e27b4226d9fc producing_time=3.09577ms +2026-04-20T15:32:42.215122Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=90 current_state_root="2a53180f1699de8a851dde1f7c24eb91fb75bd07b4a74734f8a1f6ac77ca6e834a55acfc4c93637c4f9d8cec2783689be7b55fe9e7b3f7fccbed0e67bcd1f6f0" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x05f6937c0a1f8bfb4e075178c7120569fb59dc8fc344e24d17fef7d801f46d18"] proof_blobs=[] +2026-04-20T15:32:42.223199Z DEBUG StfBlueprint::apply_slot{context=Node da_height=90}: sov_chain_state: Setting next visible slot number next_visible_slot_number=86 +2026-04-20T15:32:42.229086Z DEBUG StfBlueprint::apply_slot{context=Node da_height=90}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x05f6937c0a1f8bfb4e075178c7120569fb59dc8fc344e24d17fef7d801f46d18}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:42.231256Z DEBUG StfBlueprint::apply_slot{context=Node da_height=90}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2a53180f1699de8a851dde1f7c24eb91fb75bd07b4a74734f8a1f6ac77ca6e834a55acfc4c93637c4f9d8cec2783689be7b55fe9e7b3f7fccbed0e67bcd1f6f0 next_version=90 sesssion_starting_time=265.408µs +2026-04-20T15:32:42.239492Z DEBUG StfBlueprint::apply_slot{context=Node da_height=90}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=7fb9f0219cd3670d9afa9fc1fab664d09eca7e98e1eded282795e1252c67216b46c268bbb6c9653e4f81de47f0cd7d3c14b7fb435959aecf1514f4161585530a next_version=90 time=9.30298ms accesses_build_time=789.265µs finishing_session_time=8.084668ms +2026-04-20T15:32:42.240630Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="379c2a5a565171123d1eec71aefac14205af621179625912d8c44345976bffed7f46fbd4d3abdbdac6ee63630699e6f9451b66d713a240d595d83ff66ce43922" next_state_root="7fb9f0219cd3670d9afa9fc1fab664d09eca7e98e1eded282795e1252c67216b46c268bbb6c9653e4f81de47f0cd7d3c14b7fb435959aecf1514f4161585530a" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:32:42.245418Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 90, latest_finalized_slot_number: 89, sync_status: Syncing { synced_da_height: 89, target_da_height: 90 }, .. } +2026-04-20T15:32:42.246870Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=86 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 90, latest_finalized_slot_number: 89, sync_status: Syncing { synced_da_height: 89, target_da_height: 90 }, .. } +2026-04-20T15:32:42.247830Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=86 +2026-04-20T15:32:42.250455Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:32:42.251459Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=82 +2026-04-20T15:32:42.253296Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=87 +2026-04-20T15:32:42.254267Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:32:42.255788Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=87 sequence_number=94 +2026-04-20T15:32:42.256057Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:42.256216Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=94 blob_id=2147897490938299591374060782656282159 visible_slot_number_after_increase=87 visible_slots_to_advance=1 +2026-04-20T15:32:42.260372Z DEBUG sov_stf_runner::runner: Block execution complete time=3.018508857s +2026-04-20T15:32:42.260429Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:32:42.260530Z DEBUG compute_state_update{scope="sequencer" rollup_height=87 slot_number=87}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:32:42.260829Z DEBUG compute_state_update{scope="sequencer" rollup_height=87 slot_number=87}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7fb9f0219cd3670d9afa9fc1fab664d09eca7e98e1eded282795e1252c67216b46c268bbb6c9653e4f81de47f0cd7d3c14b7fb435959aecf1514f4161585530a next_version=91 sesssion_starting_time=313.328µs +2026-04-20T15:32:42.262757Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:32:42.263465Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:32:42.263623Z DEBUG manage_blob_submission_inside_task{blob_id=2147897490938299591374060782656282159 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x397476c8549c7e34330f187d106a415bc564a4233eaa35c095ed7ce6772b748a sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=91 include_at=91 bytes=13 time=1.64417ms +2026-04-20T15:32:42.266602Z DEBUG compute_state_update{scope="sequencer" rollup_height=87 slot_number=87}: sov_state::nomt::prover_storage: computed next state root state_root=6c6d7f34ec1953db06355cda905f06fef8b3453bfc51c27853d2f44e471654bf68e8231d1b2cab0f5c537758775f040cb9b63d117cf7320c21c5a813f15de730 next_version=91 time=6.616117ms accesses_build_time=506.907µs finishing_session_time=5.659073ms +2026-04-20T15:32:42.676820Z DEBUG sp1_core_executor_runner::native: CHILD sp1_uM1XZjszReCppSHpl-4qPA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:32:42.713924Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:32:42.726829Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1747924 cycles +2026-04-20T15:32:42.729565Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [38, 53, 237, 175, 149, 141, 137, 97, 139, 112, 188, 95, 214, 233, 110, 32, 180, 141, 209, 235, 91, 124, 1, 176, 109, 109, 214, 128, 205, 253, 68, 47, 120, 130, 130, 238, 96, 189, 93, 94, 48, 159, 14, 122, 218, 7, 202, 123, 2, 144, 215, 236, 184, 32, 185, 230, 42, 105, 60, 170, 29, 71, 18, 213, 122, 203, 38, 164, 185, 122, 164, 232, 156, 68, 77, 71, 74, 83, 165, 88, 210, 179, 253, 233, 172, 252, 224, 116, 61, 161, 178, 0, 173, 230, 246, 165, 64, 38, 179, 228, 18, 200, 18, 238, 180, 105, 107, 229, 29, 67, 191, 65, 67, 92, 229, 156, 46, 85, 125, 138, 28, 176, 198, 78, 157, 132, 253, 19, 179, 224, 135, 231, 84, 200, 93, 32, 184, 93, 105, 250, 4, 77, 25, 13, 183, 139, 160, 185, 212, 95, 112, 225, 54, 147, 109, 95, 233, 22, 137, 176, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:32:43.341145Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:32:43.341228Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:32:45.211994Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=91 prev_hash=0x06984aa2f52c3cd1d3313e0bf5c5ed8c3f643d046de2b66166a1e27b4226d9fc hash=0xbb4e452239b60674fc95bcc244b84e65e1832287236778ec803cd87f9c8e5b44 producing_time=2.997ms +2026-04-20T15:32:45.223307Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=91 current_state_root="7fb9f0219cd3670d9afa9fc1fab664d09eca7e98e1eded282795e1252c67216b46c268bbb6c9653e4f81de47f0cd7d3c14b7fb435959aecf1514f4161585530a" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x397476c8549c7e34330f187d106a415bc564a4233eaa35c095ed7ce6772b748a"] proof_blobs=[] +2026-04-20T15:32:45.231646Z DEBUG StfBlueprint::apply_slot{context=Node da_height=91}: sov_chain_state: Setting next visible slot number next_visible_slot_number=87 +2026-04-20T15:32:45.237926Z DEBUG StfBlueprint::apply_slot{context=Node da_height=91}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x397476c8549c7e34330f187d106a415bc564a4233eaa35c095ed7ce6772b748a}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:45.240249Z DEBUG StfBlueprint::apply_slot{context=Node da_height=91}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7fb9f0219cd3670d9afa9fc1fab664d09eca7e98e1eded282795e1252c67216b46c268bbb6c9653e4f81de47f0cd7d3c14b7fb435959aecf1514f4161585530a next_version=91 sesssion_starting_time=319.518µs +2026-04-20T15:32:45.248307Z DEBUG StfBlueprint::apply_slot{context=Node da_height=91}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6c6d7f34ec1953db06355cda905f06fef8b3453bfc51c27853d2f44e471654bf09acd72926b53bbbdc26ee58c8907fc4b5331132efde0ad662a2b2f52766e38a next_version=91 time=9.22586ms accesses_build_time=835.954µs finishing_session_time=7.914399ms +2026-04-20T15:32:45.249476Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2a53180f1699de8a851dde1f7c24eb91fb75bd07b4a74734f8a1f6ac77ca6e834a55acfc4c93637c4f9d8cec2783689be7b55fe9e7b3f7fccbed0e67bcd1f6f0" next_state_root="6c6d7f34ec1953db06355cda905f06fef8b3453bfc51c27853d2f44e471654bf09acd72926b53bbbdc26ee58c8907fc4b5331132efde0ad662a2b2f52766e38a" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:32:45.254141Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 91, latest_finalized_slot_number: 91, sync_status: Syncing { synced_da_height: 90, target_da_height: 91 }, .. } +2026-04-20T15:32:45.255536Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=87 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 91, latest_finalized_slot_number: 91, sync_status: Syncing { synced_da_height: 90, target_da_height: 91 }, .. } +2026-04-20T15:32:45.256467Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=87 +2026-04-20T15:32:45.258914Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:32:45.259903Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=83 +2026-04-20T15:32:45.261717Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=88 +2026-04-20T15:32:45.262689Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:32:45.264186Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=88 sequence_number=95 +2026-04-20T15:32:45.264457Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:45.264488Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=95 blob_id=2147897494576007891810836350882373235 visible_slot_number_after_increase=88 visible_slots_to_advance=1 +2026-04-20T15:32:45.271621Z DEBUG manage_blob_submission_inside_task{blob_id=2147897494576007891810836350882373235 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xde128e6eec2194e0a3e0d5f351a1a3af7ec3bfa0f025bdc7f20cbcb1ca364fdc sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=92 include_at=92 bytes=13 time=1.868498ms +2026-04-20T15:32:45.275624Z DEBUG compute_state_update{scope="sequencer" rollup_height=88 slot_number=88}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:32:45.275702Z DEBUG compute_state_update{scope="sequencer" rollup_height=88 slot_number=88}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:32:45.275986Z DEBUG compute_state_update{scope="sequencer" rollup_height=88 slot_number=88}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6c6d7f34ec1953db06355cda905f06fef8b3453bfc51c27853d2f44e471654bf09acd72926b53bbbdc26ee58c8907fc4b5331132efde0ad662a2b2f52766e38a next_version=92 sesssion_starting_time=7.382152ms +2026-04-20T15:32:45.276145Z DEBUG sov_stf_runner::runner: Block execution complete time=3.015724284s +2026-04-20T15:32:45.276187Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:32:45.278545Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:32:45.279214Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:32:45.281339Z DEBUG compute_state_update{scope="sequencer" rollup_height=88 slot_number=88}: sov_state::nomt::prover_storage: computed next state root state_root=2ed8ed50af76338f3089042d32778526baf779c9c42003661fbc15e5457a41c06532849f7b3b2928a7bcf0ff190f88a24634eeeabb46c82a20104dcd77d1be24 next_version=92 time=13.166345ms accesses_build_time=424.207µs finishing_session_time=5.254446ms +2026-04-20T15:32:45.724970Z DEBUG sp1_core_executor_runner::native: CHILD sp1_OYllAvuzSy6IJDgVBh2T2A==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:32:45.762678Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:32:45.780003Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1773917 cycles +2026-04-20T15:32:45.782883Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [9, 51, 37, 219, 65, 25, 17, 38, 102, 103, 8, 202, 20, 181, 28, 184, 191, 208, 50, 54, 18, 232, 115, 169, 161, 19, 109, 81, 27, 188, 175, 133, 4, 132, 216, 252, 181, 83, 47, 184, 244, 99, 205, 222, 27, 136, 115, 197, 176, 196, 148, 24, 87, 234, 6, 184, 22, 213, 174, 194, 42, 131, 192, 106, 6, 39, 93, 10, 230, 98, 134, 140, 22, 32, 195, 3, 88, 228, 192, 220, 80, 127, 131, 4, 86, 44, 203, 110, 44, 18, 210, 112, 250, 217, 143, 65, 122, 106, 137, 234, 102, 117, 171, 85, 138, 177, 221, 193, 182, 196, 144, 196, 185, 148, 170, 242, 92, 153, 224, 117, 31, 67, 236, 114, 186, 37, 153, 98, 43, 132, 55, 69, 152, 185, 27, 233, 88, 105, 208, 64, 249, 217, 130, 111, 38, 26, 95, 228, 246, 131, 58, 127, 51, 26, 128, 95, 2, 152, 144, 151, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:32:46.399528Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:32:46.399607Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:32:48.216647Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=92 prev_hash=0xbb4e452239b60674fc95bcc244b84e65e1832287236778ec803cd87f9c8e5b44 hash=0xfa505022b4d33733720098eaab60f1ead1675040d192a219c87a05d62fc345c4 producing_time=3.362188ms +2026-04-20T15:32:48.229015Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=92 current_state_root="6c6d7f34ec1953db06355cda905f06fef8b3453bfc51c27853d2f44e471654bf09acd72926b53bbbdc26ee58c8907fc4b5331132efde0ad662a2b2f52766e38a" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xde128e6eec2194e0a3e0d5f351a1a3af7ec3bfa0f025bdc7f20cbcb1ca364fdc"] proof_blobs=[] +2026-04-20T15:32:48.237881Z DEBUG StfBlueprint::apply_slot{context=Node da_height=92}: sov_chain_state: Setting next visible slot number next_visible_slot_number=88 +2026-04-20T15:32:48.244509Z DEBUG StfBlueprint::apply_slot{context=Node da_height=92}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xde128e6eec2194e0a3e0d5f351a1a3af7ec3bfa0f025bdc7f20cbcb1ca364fdc}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:48.246828Z DEBUG StfBlueprint::apply_slot{context=Node da_height=92}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6c6d7f34ec1953db06355cda905f06fef8b3453bfc51c27853d2f44e471654bf09acd72926b53bbbdc26ee58c8907fc4b5331132efde0ad662a2b2f52766e38a next_version=92 sesssion_starting_time=312.568µs +2026-04-20T15:32:48.255563Z DEBUG StfBlueprint::apply_slot{context=Node da_height=92}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2ed8ed50af76338f3089042d32778526baf779c9c42003661fbc15e5457a41c03778ca70c3b20b3d15fb5be2adaf42d21a30c70cf6230ef734ea7d61613f2c72 next_version=92 time=9.854986ms accesses_build_time=795.645µs finishing_session_time=8.603994ms +2026-04-20T15:32:48.256697Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6c6d7f34ec1953db06355cda905f06fef8b3453bfc51c27853d2f44e471654bf09acd72926b53bbbdc26ee58c8907fc4b5331132efde0ad662a2b2f52766e38a" next_state_root="2ed8ed50af76338f3089042d32778526baf779c9c42003661fbc15e5457a41c03778ca70c3b20b3d15fb5be2adaf42d21a30c70cf6230ef734ea7d61613f2c72" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:32:48.261254Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 92, latest_finalized_slot_number: 92, sync_status: Syncing { synced_da_height: 91, target_da_height: 92 }, .. } +2026-04-20T15:32:48.262751Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=88 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 92, latest_finalized_slot_number: 92, sync_status: Syncing { synced_da_height: 91, target_da_height: 92 }, .. } +2026-04-20T15:32:48.263702Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=88 +2026-04-20T15:32:48.266354Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:32:48.267398Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=84 +2026-04-20T15:32:48.269250Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=89 +2026-04-20T15:32:48.270198Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:32:48.271740Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=89 sequence_number=96 +2026-04-20T15:32:48.272012Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:48.272146Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=96 blob_id=2147897498211204110481234578931455092 visible_slot_number_after_increase=89 visible_slots_to_advance=1 +2026-04-20T15:32:48.276256Z DEBUG compute_state_update{scope="sequencer" rollup_height=89 slot_number=89}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:32:48.276629Z DEBUG compute_state_update{scope="sequencer" rollup_height=89 slot_number=89}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2ed8ed50af76338f3089042d32778526baf779c9c42003661fbc15e5457a41c03778ca70c3b20b3d15fb5be2adaf42d21a30c70cf6230ef734ea7d61613f2c72 next_version=93 sesssion_starting_time=607.926µs +2026-04-20T15:32:48.276863Z DEBUG sov_stf_runner::runner: Block execution complete time=3.000681512s +2026-04-20T15:32:48.276935Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:32:48.279309Z DEBUG manage_blob_submission_inside_task{blob_id=2147897498211204110481234578931455092 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xada351f9a88cb30ca89b9a19408521263b5ac6ccdacb8bd3196fbca1719ef778 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=93 include_at=93 bytes=13 time=1.732039ms +2026-04-20T15:32:48.279699Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:32:48.280430Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:32:48.282086Z DEBUG compute_state_update{scope="sequencer" rollup_height=89 slot_number=89}: sov_state::nomt::prover_storage: computed next state root state_root=0c442844b3c35173ffcbcb4574a9cb40c05f5ec4e04e55aaa4b24c8e4209ffb528086a180f0084c9c1ff896cc63ef81f00ada8c04ddd22d205cb42c223d79216 next_version=93 time=6.460728ms accesses_build_time=382.617µs finishing_session_time=5.342245ms +2026-04-20T15:32:48.756333Z DEBUG sp1_core_executor_runner::native: CHILD sp1_p53E2MQqQyiOsBwodkNlNw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:32:48.793983Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:32:48.806286Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1764377 cycles +2026-04-20T15:32:48.808937Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [22, 17, 32, 55, 128, 113, 183, 26, 49, 212, 159, 172, 177, 81, 35, 177, 76, 236, 243, 71, 249, 175, 95, 48, 248, 165, 152, 45, 130, 128, 8, 142, 117, 176, 93, 218, 50, 174, 32, 198, 233, 231, 250, 11, 28, 10, 208, 218, 211, 79, 0, 26, 110, 16, 137, 119, 109, 147, 4, 84, 195, 73, 41, 79, 19, 92, 133, 234, 184, 76, 60, 179, 244, 76, 115, 33, 66, 156, 236, 154, 248, 64, 51, 7, 189, 47, 57, 123, 61, 245, 220, 199, 157, 202, 24, 251, 111, 174, 228, 56, 172, 9, 70, 160, 27, 125, 220, 189, 164, 175, 9, 42, 236, 61, 182, 136, 37, 113, 104, 31, 139, 14, 239, 44, 177, 224, 132, 172, 169, 95, 11, 218, 87, 123, 193, 242, 186, 24, 125, 120, 236, 248, 211, 184, 20, 6, 196, 206, 22, 176, 84, 3, 52, 93, 78, 163, 111, 91, 67, 99, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:32:49.428970Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:32:49.429049Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:32:51.220975Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=93 prev_hash=0xfa505022b4d33733720098eaab60f1ead1675040d192a219c87a05d62fc345c4 hash=0x8b4c9b9ab7900b23cceab7a418e8415f8b7793cc296af6ac45699d22be412e75 producing_time=3.15094ms +2026-04-20T15:32:51.230444Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=93 current_state_root="2ed8ed50af76338f3089042d32778526baf779c9c42003661fbc15e5457a41c03778ca70c3b20b3d15fb5be2adaf42d21a30c70cf6230ef734ea7d61613f2c72" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xada351f9a88cb30ca89b9a19408521263b5ac6ccdacb8bd3196fbca1719ef778"] proof_blobs=[] +2026-04-20T15:32:51.239498Z DEBUG StfBlueprint::apply_slot{context=Node da_height=93}: sov_chain_state: Setting next visible slot number next_visible_slot_number=89 +2026-04-20T15:32:51.245900Z DEBUG StfBlueprint::apply_slot{context=Node da_height=93}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xada351f9a88cb30ca89b9a19408521263b5ac6ccdacb8bd3196fbca1719ef778}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:51.248306Z DEBUG StfBlueprint::apply_slot{context=Node da_height=93}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2ed8ed50af76338f3089042d32778526baf779c9c42003661fbc15e5457a41c03778ca70c3b20b3d15fb5be2adaf42d21a30c70cf6230ef734ea7d61613f2c72 next_version=93 sesssion_starting_time=329.328µs +2026-04-20T15:32:51.255858Z DEBUG StfBlueprint::apply_slot{context=Node da_height=93}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=0c442844b3c35173ffcbcb4574a9cb40c05f5ec4e04e55aaa4b24c8e4209ffb53818bcb94bc6f90ac5ec0d0aab3d08cbd1e170f97d50d38782e3de7858f7e648 next_version=93 time=8.721193ms accesses_build_time=827.815µs finishing_session_time=7.404543ms +2026-04-20T15:32:51.256962Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2ed8ed50af76338f3089042d32778526baf779c9c42003661fbc15e5457a41c03778ca70c3b20b3d15fb5be2adaf42d21a30c70cf6230ef734ea7d61613f2c72" next_state_root="0c442844b3c35173ffcbcb4574a9cb40c05f5ec4e04e55aaa4b24c8e4209ffb53818bcb94bc6f90ac5ec0d0aab3d08cbd1e170f97d50d38782e3de7858f7e648" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:32:51.261776Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 93, latest_finalized_slot_number: 93, sync_status: Syncing { synced_da_height: 92, target_da_height: 93 }, .. } +2026-04-20T15:32:51.263694Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=89 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 93, latest_finalized_slot_number: 93, sync_status: Syncing { synced_da_height: 92, target_da_height: 93 }, .. } +2026-04-20T15:32:51.264848Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=89 +2026-04-20T15:32:51.267554Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:32:51.268565Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=85 +2026-04-20T15:32:51.270539Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=90 +2026-04-20T15:32:51.271623Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:32:51.273426Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=90 sequence_number=97 +2026-04-20T15:32:51.273717Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=97 blob_id=2147897501840428696288606071370444430 visible_slot_number_after_increase=90 visible_slots_to_advance=1 +2026-04-20T15:32:51.273715Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:51.273951Z DEBUG sov_stf_runner::runner: Block execution complete time=2.997028056s +2026-04-20T15:32:51.274060Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:32:51.277929Z DEBUG compute_state_update{scope="sequencer" rollup_height=90 slot_number=90}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:32:51.278129Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:32:51.278290Z DEBUG compute_state_update{scope="sequencer" rollup_height=90 slot_number=90}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0c442844b3c35173ffcbcb4574a9cb40c05f5ec4e04e55aaa4b24c8e4209ffb53818bcb94bc6f90ac5ec0d0aab3d08cbd1e170f97d50d38782e3de7858f7e648 next_version=94 sesssion_starting_time=372.288µs +2026-04-20T15:32:51.279050Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:32:51.280949Z DEBUG manage_blob_submission_inside_task{blob_id=2147897501840428696288606071370444430 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xfd6ab93829987917dc7afe678edcdaeb15826449077d96341c6e427738199f16 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=94 include_at=94 bytes=13 time=1.871907ms +2026-04-20T15:32:51.283680Z DEBUG compute_state_update{scope="sequencer" rollup_height=90 slot_number=90}: sov_state::nomt::prover_storage: computed next state root state_root=26c6d7bf6ad1b054d0b37adb8058f8fc81620db70c6b3b50b4705c1acefeafbc1ece37d0ebb7d7b8246014e2d1a510de640058068355c5a6f772355410e06cd9 next_version=94 time=6.17339ms accesses_build_time=403.507µs finishing_session_time=5.272766ms +2026-04-20T15:32:51.746637Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wg2zbeLkQ2OgCAceZr05Dg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:32:51.786433Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:32:51.799137Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1862079 cycles +2026-04-20T15:32:51.801853Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [100, 165, 104, 144, 31, 229, 52, 115, 193, 48, 61, 231, 76, 228, 75, 104, 211, 232, 129, 192, 195, 103, 2, 57, 255, 71, 237, 28, 67, 159, 181, 69, 52, 191, 200, 29, 47, 43, 163, 114, 79, 94, 21, 221, 195, 38, 82, 170, 187, 93, 206, 106, 248, 173, 51, 140, 147, 204, 54, 105, 76, 169, 17, 32, 119, 135, 36, 115, 101, 233, 37, 163, 241, 147, 14, 44, 240, 206, 187, 116, 31, 62, 21, 113, 187, 198, 153, 67, 132, 136, 248, 17, 22, 201, 232, 224, 73, 190, 142, 236, 233, 103, 92, 124, 92, 80, 114, 139, 5, 137, 3, 8, 0, 226, 48, 123, 112, 15, 152, 133, 157, 179, 127, 243, 25, 116, 71, 166, 223, 64, 5, 231, 113, 39, 188, 41, 1, 1, 85, 60, 116, 235, 170, 155, 111, 233, 150, 199, 171, 224, 237, 190, 236, 64, 91, 175, 176, 58, 124, 177, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:32:52.456879Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:32:52.456953Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:32:54.226044Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=94 prev_hash=0x8b4c9b9ab7900b23cceab7a418e8415f8b7793cc296af6ac45699d22be412e75 hash=0x7d433a152a346587d5ad3ea0ea4f05afab66fea037b80153c62b59869b43406e producing_time=3.616317ms +2026-04-20T15:32:54.237471Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=94 current_state_root="0c442844b3c35173ffcbcb4574a9cb40c05f5ec4e04e55aaa4b24c8e4209ffb53818bcb94bc6f90ac5ec0d0aab3d08cbd1e170f97d50d38782e3de7858f7e648" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xfd6ab93829987917dc7afe678edcdaeb15826449077d96341c6e427738199f16"] proof_blobs=[] +2026-04-20T15:32:54.246221Z DEBUG StfBlueprint::apply_slot{context=Node da_height=94}: sov_chain_state: Setting next visible slot number next_visible_slot_number=90 +2026-04-20T15:32:54.252554Z DEBUG StfBlueprint::apply_slot{context=Node da_height=94}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xfd6ab93829987917dc7afe678edcdaeb15826449077d96341c6e427738199f16}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:54.254885Z DEBUG StfBlueprint::apply_slot{context=Node da_height=94}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0c442844b3c35173ffcbcb4574a9cb40c05f5ec4e04e55aaa4b24c8e4209ffb53818bcb94bc6f90ac5ec0d0aab3d08cbd1e170f97d50d38782e3de7858f7e648 next_version=94 sesssion_starting_time=321.648µs +2026-04-20T15:32:54.262483Z DEBUG StfBlueprint::apply_slot{context=Node da_height=94}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=26c6d7bf6ad1b054d0b37adb8058f8fc81620db70c6b3b50b4705c1acefeafbc286b076fa358ba69ca7bdf9b54de76ee58a2051bce36ec0fd60c740f7a395c7b next_version=94 time=8.714664ms accesses_build_time=783.145µs finishing_session_time=7.464592ms +2026-04-20T15:32:54.263565Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="0c442844b3c35173ffcbcb4574a9cb40c05f5ec4e04e55aaa4b24c8e4209ffb53818bcb94bc6f90ac5ec0d0aab3d08cbd1e170f97d50d38782e3de7858f7e648" next_state_root="26c6d7bf6ad1b054d0b37adb8058f8fc81620db70c6b3b50b4705c1acefeafbc286b076fa358ba69ca7bdf9b54de76ee58a2051bce36ec0fd60c740f7a395c7b" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:32:54.268079Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 94, latest_finalized_slot_number: 94, sync_status: Synced { synced_da_height: 93 }, .. } +2026-04-20T15:32:54.269503Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=90 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 94, latest_finalized_slot_number: 94, sync_status: Synced { synced_da_height: 93 }, .. } +2026-04-20T15:32:54.270480Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=90 +2026-04-20T15:32:54.273130Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:32:54.274117Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=86 +2026-04-20T15:32:54.276011Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=91 +2026-04-20T15:32:54.276927Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:32:54.278460Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=91 sequence_number=98 +2026-04-20T15:32:54.278734Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:54.278819Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=98 blob_id=2147897505473247245696620913663531221 visible_slot_number_after_increase=91 visible_slots_to_advance=1 +2026-04-20T15:32:54.280076Z DEBUG sov_stf_runner::runner: Block execution complete time=3.006039268s +2026-04-20T15:32:54.280153Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:32:54.283105Z DEBUG compute_state_update{scope="sequencer" rollup_height=91 slot_number=91}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:32:54.283448Z DEBUG compute_state_update{scope="sequencer" rollup_height=91 slot_number=91}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=26c6d7bf6ad1b054d0b37adb8058f8fc81620db70c6b3b50b4705c1acefeafbc286b076fa358ba69ca7bdf9b54de76ee58a2051bce36ec0fd60c740f7a395c7b next_version=95 sesssion_starting_time=347.987µs +2026-04-20T15:32:54.283806Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:32:54.284437Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:32:54.286739Z DEBUG manage_blob_submission_inside_task{blob_id=2147897505473247245696620913663531221 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xa89daeed44cdc91a24a5d7d5e3619ae6a530668988c7954de5338631c277f4e0 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=95 include_at=95 bytes=13 time=1.713899ms +2026-04-20T15:32:54.289106Z DEBUG compute_state_update{scope="sequencer" rollup_height=91 slot_number=91}: sov_state::nomt::prover_storage: computed next state root state_root=641c8d3dbb119e571471f131a2c2aa74462a8c0e81278f6821a1525ffb3b2a477c0f153097bff5b099dcb4c3c0ee6baa623f6be284ae79243b47561706562f48 next_version=95 time=6.406589ms accesses_build_time=391.728µs finishing_session_time=5.559704ms +2026-04-20T15:32:54.762384Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hC_tj2TCQjunPemp6NUJrg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:32:54.826494Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:32:54.838242Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4093709 cycles +2026-04-20T15:32:54.841103Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [40, 158, 155, 209, 169, 95, 122, 170, 67, 11, 127, 88, 9, 10, 222, 166, 127, 110, 86, 49, 3, 35, 50, 110, 97, 66, 255, 94, 219, 4, 136, 99, 122, 231, 41, 20, 189, 9, 137, 255, 244, 11, 103, 161, 169, 254, 152, 121, 239, 7, 132, 195, 109, 81, 230, 23, 52, 138, 122, 85, 70, 61, 213, 222, 46, 109, 225, 213, 232, 178, 158, 144, 42, 172, 103, 109, 49, 113, 173, 133, 6, 98, 135, 38, 82, 250, 28, 230, 156, 34, 182, 135, 214, 253, 140, 5, 67, 187, 19, 44, 78, 75, 183, 79, 180, 85, 171, 163, 242, 37, 224, 12, 80, 70, 146, 236, 126, 179, 128, 30, 68, 76, 250, 198, 162, 101, 72, 54, 52, 61, 194, 254, 172, 156, 52, 215, 91, 190, 153, 138, 194, 150, 140, 141, 196, 201, 239, 229, 249, 232, 24, 135, 152, 255, 186, 236, 75, 202, 167, 57, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:32:56.265747Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:32:56.265827Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:32:57.231041Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=95 prev_hash=0x7d433a152a346587d5ad3ea0ea4f05afab66fea037b80153c62b59869b43406e hash=0xd026db13f483fd60420ec3e287cc6a79ec86cc7870bbe631a79cf8d9e846c981 producing_time=3.355768ms +2026-04-20T15:32:57.233032Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=95 current_state_root="26c6d7bf6ad1b054d0b37adb8058f8fc81620db70c6b3b50b4705c1acefeafbc286b076fa358ba69ca7bdf9b54de76ee58a2051bce36ec0fd60c740f7a395c7b" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa89daeed44cdc91a24a5d7d5e3619ae6a530668988c7954de5338631c277f4e0"] proof_blobs=[] +2026-04-20T15:32:57.241840Z DEBUG StfBlueprint::apply_slot{context=Node da_height=95}: sov_chain_state: Setting next visible slot number next_visible_slot_number=91 +2026-04-20T15:32:57.248240Z DEBUG StfBlueprint::apply_slot{context=Node da_height=95}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xa89daeed44cdc91a24a5d7d5e3619ae6a530668988c7954de5338631c277f4e0}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:57.250597Z DEBUG StfBlueprint::apply_slot{context=Node da_height=95}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=26c6d7bf6ad1b054d0b37adb8058f8fc81620db70c6b3b50b4705c1acefeafbc286b076fa358ba69ca7bdf9b54de76ee58a2051bce36ec0fd60c740f7a395c7b next_version=95 sesssion_starting_time=334.418µs +2026-04-20T15:32:57.258383Z DEBUG StfBlueprint::apply_slot{context=Node da_height=95}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=641c8d3dbb119e571471f131a2c2aa74462a8c0e81278f6821a1525ffb3b2a4732a0d02a575e1d9f00c396f7672d8f87c0a57ad2b46048b7636b5a218fff78f5 next_version=95 time=8.903332ms accesses_build_time=771.955µs finishing_session_time=7.655061ms +2026-04-20T15:32:57.259491Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="26c6d7bf6ad1b054d0b37adb8058f8fc81620db70c6b3b50b4705c1acefeafbc286b076fa358ba69ca7bdf9b54de76ee58a2051bce36ec0fd60c740f7a395c7b" next_state_root="641c8d3dbb119e571471f131a2c2aa74462a8c0e81278f6821a1525ffb3b2a4732a0d02a575e1d9f00c396f7672d8f87c0a57ad2b46048b7636b5a218fff78f5" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:32:57.263765Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 95, latest_finalized_slot_number: 95, sync_status: Synced { synced_da_height: 94 }, .. } +2026-04-20T15:32:57.265149Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=91 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 95, latest_finalized_slot_number: 95, sync_status: Synced { synced_da_height: 94 }, .. } +2026-04-20T15:32:57.266104Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=91 +2026-04-20T15:32:57.268662Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:32:57.269635Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=87 +2026-04-20T15:32:57.271436Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=92 +2026-04-20T15:32:57.272352Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:32:57.273846Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=92 sequence_number=99 +2026-04-20T15:32:57.274102Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:32:57.274192Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=99 blob_id=2147897509093995661581949417902859732 visible_slot_number_after_increase=92 visible_slots_to_advance=1 +2026-04-20T15:32:57.276319Z DEBUG sov_stf_runner::runner: Block execution complete time=2.996174591s +2026-04-20T15:32:57.276381Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:32:57.277706Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:32:57.278271Z DEBUG compute_state_update{scope="sequencer" rollup_height=92 slot_number=92}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:32:57.278366Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:32:57.278613Z DEBUG compute_state_update{scope="sequencer" rollup_height=92 slot_number=92}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=641c8d3dbb119e571471f131a2c2aa74462a8c0e81278f6821a1525ffb3b2a4732a0d02a575e1d9f00c396f7672d8f87c0a57ad2b46048b7636b5a218fff78f5 next_version=96 sesssion_starting_time=337.768µs +2026-04-20T15:32:57.280527Z DEBUG manage_blob_submission_inside_task{blob_id=2147897509093995661581949417902859732 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xac8eef10202e6a78041efb1774c63efd0d1667194fe9ba3af7ed399dc2e28b8b sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=96 include_at=96 bytes=13 time=1.427181ms +2026-04-20T15:32:57.284125Z DEBUG compute_state_update{scope="sequencer" rollup_height=92 slot_number=92}: sov_state::nomt::prover_storage: computed next state root state_root=44908fd065da1be439c472ea28bde2df90d0eb1eb9ced84d2c25d0c848d52012387f9299c3fbf78ed7d646d87c44d943b7d11608967d685ca3cb70a2125d18a5 next_version=96 time=6.334748ms accesses_build_time=458.347µs finishing_session_time=5.391725ms +2026-04-20T15:32:57.766207Z DEBUG sp1_core_executor_runner::native: CHILD sp1_txzkEs1_SU6aKwBg5ZC-Mw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:32:57.803728Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:32:57.816514Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1767301 cycles +2026-04-20T15:32:57.819320Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [55, 156, 42, 90, 86, 81, 113, 18, 61, 30, 236, 113, 174, 250, 193, 66, 5, 175, 98, 17, 121, 98, 89, 18, 216, 196, 67, 69, 151, 107, 255, 237, 127, 70, 251, 212, 211, 171, 219, 218, 198, 238, 99, 99, 6, 153, 230, 249, 69, 27, 102, 215, 19, 162, 64, 213, 149, 216, 63, 246, 108, 228, 57, 34, 97, 183, 59, 131, 49, 142, 222, 198, 201, 156, 242, 124, 208, 193, 204, 167, 149, 206, 168, 240, 220, 197, 227, 56, 3, 243, 78, 55, 146, 12, 21, 115, 31, 167, 158, 3, 26, 213, 118, 156, 222, 236, 154, 26, 245, 122, 224, 18, 3, 101, 239, 35, 109, 148, 8, 82, 207, 107, 5, 205, 133, 139, 115, 231, 30, 141, 235, 71, 61, 115, 70, 85, 30, 69, 157, 228, 3, 214, 73, 18, 59, 201, 70, 46, 24, 55, 172, 52, 54, 184, 106, 185, 113, 143, 192, 34, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:32:58.444591Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:32:58.444670Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:33:00.235888Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=96 prev_hash=0xd026db13f483fd60420ec3e287cc6a79ec86cc7870bbe631a79cf8d9e846c981 hash=0x0e30695595217f97e41849fd4d7dd591770c0f843df54be82a3c13a4882d430a producing_time=3.497697ms +2026-04-20T15:33:00.238966Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=96 current_state_root="641c8d3dbb119e571471f131a2c2aa74462a8c0e81278f6821a1525ffb3b2a4732a0d02a575e1d9f00c396f7672d8f87c0a57ad2b46048b7636b5a218fff78f5" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xac8eef10202e6a78041efb1774c63efd0d1667194fe9ba3af7ed399dc2e28b8b"] proof_blobs=[] +2026-04-20T15:33:00.247856Z DEBUG StfBlueprint::apply_slot{context=Node da_height=96}: sov_chain_state: Setting next visible slot number next_visible_slot_number=92 +2026-04-20T15:33:00.254364Z DEBUG StfBlueprint::apply_slot{context=Node da_height=96}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xac8eef10202e6a78041efb1774c63efd0d1667194fe9ba3af7ed399dc2e28b8b}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:00.256729Z DEBUG StfBlueprint::apply_slot{context=Node da_height=96}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=641c8d3dbb119e571471f131a2c2aa74462a8c0e81278f6821a1525ffb3b2a4732a0d02a575e1d9f00c396f7672d8f87c0a57ad2b46048b7636b5a218fff78f5 next_version=96 sesssion_starting_time=317.067µs +2026-04-20T15:33:00.264202Z DEBUG StfBlueprint::apply_slot{context=Node da_height=96}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=44908fd065da1be439c472ea28bde2df90d0eb1eb9ced84d2c25d0c848d520122bfd67ad438ca8e5143ef4300256cbec2a927513ad6c45ff51ecde56b9d7c6b1 next_version=96 time=8.596104ms accesses_build_time=792.325µs finishing_session_time=7.318612ms +2026-04-20T15:33:00.265354Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="641c8d3dbb119e571471f131a2c2aa74462a8c0e81278f6821a1525ffb3b2a4732a0d02a575e1d9f00c396f7672d8f87c0a57ad2b46048b7636b5a218fff78f5" next_state_root="44908fd065da1be439c472ea28bde2df90d0eb1eb9ced84d2c25d0c848d520122bfd67ad438ca8e5143ef4300256cbec2a927513ad6c45ff51ecde56b9d7c6b1" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:33:00.269908Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 96, latest_finalized_slot_number: 96, sync_status: Synced { synced_da_height: 95 }, .. } +2026-04-20T15:33:00.271302Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=92 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 96, latest_finalized_slot_number: 96, sync_status: Synced { synced_da_height: 95 }, .. } +2026-04-20T15:33:00.272229Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=92 +2026-04-20T15:33:00.274701Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:33:00.275670Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=88 +2026-04-20T15:33:00.277514Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=93 +2026-04-20T15:33:00.278424Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:33:00.279914Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=93 sequence_number=100 +2026-04-20T15:33:00.280176Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:00.280223Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=100 blob_id=2147897512728025807422578700523851414 visible_slot_number_after_increase=93 visible_slots_to_advance=1 +2026-04-20T15:33:00.281411Z DEBUG sov_stf_runner::runner: Block execution complete time=3.005042704s +2026-04-20T15:33:00.281460Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:33:00.284285Z DEBUG compute_state_update{scope="sequencer" rollup_height=93 slot_number=93}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:33:00.284597Z DEBUG compute_state_update{scope="sequencer" rollup_height=93 slot_number=93}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=44908fd065da1be439c472ea28bde2df90d0eb1eb9ced84d2c25d0c848d520122bfd67ad438ca8e5143ef4300256cbec2a927513ad6c45ff51ecde56b9d7c6b1 next_version=97 sesssion_starting_time=317.778µs +2026-04-20T15:33:00.287537Z DEBUG manage_blob_submission_inside_task{blob_id=2147897512728025807422578700523851414 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x09c737632e4b7884f222db4c0312fe05c16ee356ea2b1c604fe40c099d7cf833 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=97 include_at=97 bytes=13 time=1.755759ms +2026-04-20T15:33:00.290519Z DEBUG compute_state_update{scope="sequencer" rollup_height=93 slot_number=93}: sov_state::nomt::prover_storage: computed next state root state_root=2029d4a94bcb9b93ff580de53b77dfb0c279efb1544d23c97f57ce9666af840d02a77252a1d7e0e9c3b59daa1954837ae4a6abb65f39b1873373d531cfb74c3e next_version=97 time=6.612398ms accesses_build_time=367.218µs finishing_session_time=5.836702ms +2026-04-20T15:33:00.756098Z DEBUG sp1_core_executor_runner::native: CHILD sp1_He2TqkyORNi88Ina24rUbQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:33:00.794096Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:33:00.807547Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1775713 cycles +2026-04-20T15:33:00.810232Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [42, 83, 24, 15, 22, 153, 222, 138, 133, 29, 222, 31, 124, 36, 235, 145, 251, 117, 189, 7, 180, 167, 71, 52, 248, 161, 246, 172, 119, 202, 110, 131, 74, 85, 172, 252, 76, 147, 99, 124, 79, 157, 140, 236, 39, 131, 104, 155, 231, 181, 95, 233, 231, 179, 247, 252, 203, 237, 14, 103, 188, 209, 246, 240, 115, 143, 234, 171, 16, 148, 204, 70, 190, 197, 16, 41, 143, 19, 244, 203, 71, 199, 121, 161, 29, 204, 10, 117, 32, 50, 78, 26, 132, 148, 15, 109, 10, 79, 20, 95, 164, 181, 66, 253, 46, 233, 158, 212, 213, 135, 135, 205, 247, 1, 167, 154, 128, 131, 124, 222, 235, 16, 154, 30, 97, 252, 97, 1, 6, 152, 74, 162, 245, 44, 60, 209, 211, 49, 62, 11, 245, 197, 237, 140, 63, 100, 61, 4, 109, 226, 182, 97, 102, 161, 226, 123, 66, 38, 217, 252, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:33:01.433363Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:33:01.433441Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:33:01.530942Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:33:01.773021Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:33:01.775331Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2607482 cycles +2026-04-20T15:33:01.775702Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [81, 0, 0, 0, 0, 0, 0, 0, 90, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 27, 190, 252, 95, 148, 48, 150, 142, 91, 164, 157, 138, 134, 180, 27, 211, 60, 98, 6, 143, 130, 179, 35, 32, 60, 120, 169, 207, 108, 134, 181, 173, 76, 97, 83, 204, 45, 164, 232, 207, 97, 74, 218, 234, 203, 109, 19, 169, 121, 54, 122, 9, 219, 94, 65, 220, 55, 237, 149, 52, 46, 81, 51, 130, 115, 143, 234, 171, 16, 148, 204, 70, 190, 197, 16, 41, 143, 19, 244, 203, 71, 199, 121, 161, 29, 204, 10, 117, 32, 50, 78, 26, 132, 148, 15, 109, 10, 79, 20, 95, 164, 181, 66, 253, 46, 233, 158, 212, 213, 135, 135, 205, 247, 1, 167, 154, 128, 131, 124, 222, 235, 16, 154, 30, 97, 252, 97, 1, 65, 90, 109, 234, 131, 37, 62, 209, 243, 151, 9, 12, 84, 71, 199, 222, 161, 103, 148, 144, 82, 79, 224, 160, 154, 228, 92, 235, 168, 190, 56, 179, 6, 152, 74, 162, 245, 44, 60, 209, 211, 49, 62, 11, 245, 197, 237, 140, 63, 100, 61, 4, 109, 226, 182, 97, 102, 161, 226, 123, 66, 38, 217, 252, 32, 0, 0, 0, 0, 0, 0, 0, 33, 87, 226, 242, 39, 49, 250, 210, 41, 143, 26, 188, 101, 19, 12, 136, 43, 105, 121, 236, 80, 118, 108, 155, 63, 154, 215, 73, 15, 107, 27, 67, 32, 0, 0, 0, 0, 0, 0, 0, 54, 246, 123, 188, 67, 61, 237, 103, 16, 229, 5, 146, 113, 8, 178, 215, 95, 95, 151, 239, 106, 28, 10, 135, 55, 55, 208, 95, 86, 190, 27, 9, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:33:02.684958Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:33:02.685034Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:33:02.685822Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=1951 +2026-04-20T15:33:02.688285Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:33:02.688832Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:33:02.689243Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=101 blob_id=2147897515636689525955595586977768821 +2026-04-20T15:33:03.240230Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=97 prev_hash=0x0e30695595217f97e41849fd4d7dd591770c0f843df54be82a3c13a4882d430a hash=0x864197bb132a8841ddc38f1727912bbead2654b917815daa1ff2fce90032ed4f producing_time=3.267069ms +2026-04-20T15:33:03.244300Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=97 current_state_root="44908fd065da1be439c472ea28bde2df90d0eb1eb9ced84d2c25d0c848d520122bfd67ad438ca8e5143ef4300256cbec2a927513ad6c45ff51ecde56b9d7c6b1" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x09c737632e4b7884f222db4c0312fe05c16ee356ea2b1c604fe40c099d7cf833"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xff94584f836e991633a2e035ce38e01b104840ed14eeb8c377827faaf70f5b1d, len=2001"] +2026-04-20T15:33:03.253184Z DEBUG StfBlueprint::apply_slot{context=Node da_height=97}: sov_chain_state: Setting next visible slot number next_visible_slot_number=93 +2026-04-20T15:33:03.259608Z DEBUG StfBlueprint::apply_slot{context=Node da_height=97}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x09c737632e4b7884f222db4c0312fe05c16ee356ea2b1c604fe40c099d7cf833}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:03.262116Z DEBUG StfBlueprint::apply_slot{context=Node da_height=97}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=44908fd065da1be439c472ea28bde2df90d0eb1eb9ced84d2c25d0c848d520122bfd67ad438ca8e5143ef4300256cbec2a927513ad6c45ff51ecde56b9d7c6b1 next_version=97 sesssion_starting_time=302.508µs +2026-04-20T15:33:03.270566Z DEBUG StfBlueprint::apply_slot{context=Node da_height=97}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2029d4a94bcb9b93ff580de53b77dfb0c279efb1544d23c97f57ce9666af840d498943233d74809cbf37165548d96289bf0b30c4b3c9ae6e9bc537ff9e44deb7 next_version=97 time=9.723937ms accesses_build_time=957.614µs finishing_session_time=8.320757ms +2026-04-20T15:33:03.271649Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="44908fd065da1be439c472ea28bde2df90d0eb1eb9ced84d2c25d0c848d520122bfd67ad438ca8e5143ef4300256cbec2a927513ad6c45ff51ecde56b9d7c6b1" next_state_root="2029d4a94bcb9b93ff580de53b77dfb0c279efb1544d23c97f57ce9666af840d498943233d74809cbf37165548d96289bf0b30c4b3c9ae6e9bc537ff9e44deb7" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:33:03.276407Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 97, latest_finalized_slot_number: 97, sync_status: Syncing { synced_da_height: 96, target_da_height: 97 }, .. } +2026-04-20T15:33:03.277822Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=93 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 97, latest_finalized_slot_number: 97, sync_status: Syncing { synced_da_height: 96, target_da_height: 97 }, .. } +2026-04-20T15:33:03.278877Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=93 +2026-04-20T15:33:03.281753Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:33:03.282801Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=89 +2026-04-20T15:33:03.284686Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=94 +2026-04-20T15:33:03.286045Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:33:03.289507Z DEBUG sov_stf_runner::runner: Block execution complete time=3.008053404s +2026-04-20T15:33:03.289599Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:33:03.291102Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 81. Final slot number 90 +2026-04-20T15:33:03.291723Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=94 sequence_number=102 +2026-04-20T15:33:03.291962Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:03.292094Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=102 blob_id=2147897516369264629668419182616299607 visible_slot_number_after_increase=94 visible_slots_to_advance=1 +2026-04-20T15:33:03.292352Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:33:03.293092Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:33:03.295878Z DEBUG compute_state_update{scope="sequencer" rollup_height=94 slot_number=94}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:33:03.296213Z DEBUG compute_state_update{scope="sequencer" rollup_height=94 slot_number=94}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2029d4a94bcb9b93ff580de53b77dfb0c279efb1544d23c97f57ce9666af840d498943233d74809cbf37165548d96289bf0b30c4b3c9ae6e9bc537ff9e44deb7 next_version=98 sesssion_starting_time=334.558µs +2026-04-20T15:33:03.298448Z DEBUG manage_blob_submission_inside_task{blob_id=2147897516369264629668419182616299607 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xb9698bc2fc3852117fa558a26f6d97a1c5df8bebdd89fc92e9956e7e8f386c0e sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=98 include_at=98 bytes=13 time=1.489751ms +2026-04-20T15:33:03.303146Z DEBUG compute_state_update{scope="sequencer" rollup_height=94 slot_number=94}: sov_state::nomt::prover_storage: computed next state root state_root=128498efd8919a03a0b322e6a5f8667aa465d555f18e78ea82d838fa59711cea1e0e7b3df2070c5beef71230d5171ea143a3ee83ab5fd9ab7e5a7d7859b17bd0 next_version=98 time=7.788729ms accesses_build_time=503.936µs finishing_session_time=6.817846ms +2026-04-20T15:33:06.157991Z DEBUG sp1_core_executor_runner::native: CHILD sp1_a6YZ0KkpQpaFJEIktjIPfw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:33:06.195940Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:33:06.207926Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1774367 cycles +2026-04-20T15:33:06.210705Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [127, 185, 240, 33, 156, 211, 103, 13, 154, 250, 159, 193, 250, 182, 100, 208, 158, 202, 126, 152, 225, 237, 237, 40, 39, 149, 225, 37, 44, 103, 33, 107, 70, 194, 104, 187, 182, 201, 101, 62, 79, 129, 222, 71, 240, 205, 125, 60, 20, 183, 251, 67, 89, 89, 174, 207, 21, 20, 244, 22, 21, 133, 83, 10, 121, 126, 206, 95, 66, 111, 79, 179, 207, 241, 229, 89, 150, 131, 127, 29, 64, 74, 176, 105, 125, 176, 176, 160, 50, 149, 7, 204, 123, 57, 254, 218, 114, 126, 203, 250, 137, 166, 145, 245, 19, 102, 210, 154, 32, 139, 243, 148, 234, 63, 240, 89, 225, 46, 103, 79, 58, 5, 108, 184, 5, 253, 27, 144, 187, 78, 69, 34, 57, 182, 6, 116, 252, 149, 188, 194, 68, 184, 78, 101, 225, 131, 34, 135, 35, 103, 120, 236, 128, 60, 216, 127, 156, 142, 91, 68, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:33:06.244715Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=98 prev_hash=0x864197bb132a8841ddc38f1727912bbead2654b917815daa1ff2fce90032ed4f hash=0x7f2dc449b856c5c1c2e2bc354ba69079ae0866b4a1afeca631ad1cb1c4b7fee0 producing_time=3.459127ms +2026-04-20T15:33:06.252811Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=98 current_state_root="2029d4a94bcb9b93ff580de53b77dfb0c279efb1544d23c97f57ce9666af840d498943233d74809cbf37165548d96289bf0b30c4b3c9ae6e9bc537ff9e44deb7" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xb9698bc2fc3852117fa558a26f6d97a1c5df8bebdd89fc92e9956e7e8f386c0e"] proof_blobs=[] +2026-04-20T15:33:06.262542Z DEBUG StfBlueprint::apply_slot{context=Node da_height=98}: sov_chain_state: Setting next visible slot number next_visible_slot_number=94 +2026-04-20T15:33:06.281094Z DEBUG StfBlueprint::apply_slot{context=Node da_height=98}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 81. Final slot number 90 +2026-04-20T15:33:06.281573Z DEBUG StfBlueprint::apply_slot{context=Node da_height=98}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xb9698bc2fc3852117fa558a26f6d97a1c5df8bebdd89fc92e9956e7e8f386c0e}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:06.284206Z DEBUG StfBlueprint::apply_slot{context=Node da_height=98}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2029d4a94bcb9b93ff580de53b77dfb0c279efb1544d23c97f57ce9666af840d498943233d74809cbf37165548d96289bf0b30c4b3c9ae6e9bc537ff9e44deb7 next_version=98 sesssion_starting_time=320.677µs +2026-04-20T15:33:06.294557Z DEBUG StfBlueprint::apply_slot{context=Node da_height=98}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=128498efd8919a03a0b322e6a5f8667aa465d555f18e78ea82d838fa59711cea228ff11860848179e0248408ea9b356613d82e21d59127766cd7b30a8cc85b85 next_version=98 time=11.772353ms accesses_build_time=1.090153ms finishing_session_time=10.219503ms +2026-04-20T15:33:06.295692Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2029d4a94bcb9b93ff580de53b77dfb0c279efb1544d23c97f57ce9666af840d498943233d74809cbf37165548d96289bf0b30c4b3c9ae6e9bc537ff9e44deb7" next_state_root="128498efd8919a03a0b322e6a5f8667aa465d555f18e78ea82d838fa59711cea228ff11860848179e0248408ea9b356613d82e21d59127766cd7b30a8cc85b85" aggregated_proofs=1 proof_receipts=1 +2026-04-20T15:33:06.301131Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 98, latest_finalized_slot_number: 98, sync_status: Syncing { synced_da_height: 97, target_da_height: 98 }, .. } +2026-04-20T15:33:06.302545Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=94 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 98, latest_finalized_slot_number: 98, sync_status: Syncing { synced_da_height: 97, target_da_height: 98 }, .. } +2026-04-20T15:33:06.303616Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=94 +2026-04-20T15:33:06.306360Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:33:06.307328Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=90 +2026-04-20T15:33:06.309116Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=95 +2026-04-20T15:33:06.310027Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:33:06.311525Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=95 sequence_number=103 +2026-04-20T15:33:06.311793Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=103 blob_id=2147897520020239197007711085356283649 visible_slot_number_after_increase=95 visible_slots_to_advance=1 +2026-04-20T15:33:06.311779Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:06.313425Z DEBUG sov_stf_runner::runner: Block execution complete time=3.023845062s +2026-04-20T15:33:06.313488Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:33:06.314549Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:33:06.315260Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:33:06.315530Z DEBUG compute_state_update{scope="sequencer" rollup_height=95 slot_number=95}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:33:06.315831Z DEBUG compute_state_update{scope="sequencer" rollup_height=95 slot_number=95}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=128498efd8919a03a0b322e6a5f8667aa465d555f18e78ea82d838fa59711cea228ff11860848179e0248408ea9b356613d82e21d59127766cd7b30a8cc85b85 next_version=99 sesssion_starting_time=304.718µs +2026-04-20T15:33:06.317978Z DEBUG manage_blob_submission_inside_task{blob_id=2147897520020239197007711085356283649 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x77cf47494b8bfaecc7d729d547fc499bc254522bae654caec307db50dcc7dab8 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=99 include_at=99 bytes=13 time=1.746288ms +2026-04-20T15:33:06.321146Z DEBUG compute_state_update{scope="sequencer" rollup_height=95 slot_number=95}: sov_state::nomt::prover_storage: computed next state root state_root=629d74333f24ab616524b543adeec74025ef8138277d6313be20cb3b5b520c7f4522113e640f646c9805dc68344b9b8feaca4ce91754538c530747e5c6b90359 next_version=99 time=6.004071ms accesses_build_time=377.417µs finishing_session_time=5.228646ms +2026-04-20T15:33:06.776747Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1nhUG1mMSLaivdjTVJLT_A==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:33:06.816104Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:33:06.827033Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1809070 cycles +2026-04-20T15:33:06.829778Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [108, 109, 127, 52, 236, 25, 83, 219, 6, 53, 92, 218, 144, 95, 6, 254, 248, 179, 69, 59, 252, 81, 194, 120, 83, 210, 244, 78, 71, 22, 84, 191, 9, 172, 215, 41, 38, 181, 59, 187, 220, 38, 238, 88, 200, 144, 127, 196, 181, 51, 17, 50, 239, 222, 10, 214, 98, 162, 178, 245, 39, 102, 227, 138, 33, 98, 8, 68, 179, 205, 34, 212, 61, 200, 4, 48, 147, 217, 173, 175, 219, 43, 128, 142, 249, 150, 228, 47, 20, 117, 29, 59, 22, 219, 237, 23, 120, 100, 123, 232, 112, 136, 14, 195, 25, 246, 180, 120, 82, 3, 216, 45, 43, 122, 132, 164, 129, 19, 92, 98, 223, 66, 56, 66, 28, 190, 68, 72, 250, 80, 80, 34, 180, 211, 55, 51, 114, 0, 152, 234, 171, 96, 241, 234, 209, 103, 80, 64, 209, 146, 162, 25, 200, 122, 5, 214, 47, 195, 69, 196, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:33:06.885523Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:33:06.885598Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:33:07.519726Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:33:07.519809Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:33:09.249370Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=99 prev_hash=0x7f2dc449b856c5c1c2e2bc354ba69079ae0866b4a1afeca631ad1cb1c4b7fee0 hash=0x7d3201a840176dc2d92bc54b47d3d0b725ba496d77a6b87cc9a2eaf9fe6e6c0c producing_time=3.053061ms +2026-04-20T15:33:09.256413Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=99 current_state_root="128498efd8919a03a0b322e6a5f8667aa465d555f18e78ea82d838fa59711cea228ff11860848179e0248408ea9b356613d82e21d59127766cd7b30a8cc85b85" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x77cf47494b8bfaecc7d729d547fc499bc254522bae654caec307db50dcc7dab8"] proof_blobs=[] +2026-04-20T15:33:09.264809Z DEBUG StfBlueprint::apply_slot{context=Node da_height=99}: sov_chain_state: Setting next visible slot number next_visible_slot_number=95 +2026-04-20T15:33:09.270848Z DEBUG StfBlueprint::apply_slot{context=Node da_height=99}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x77cf47494b8bfaecc7d729d547fc499bc254522bae654caec307db50dcc7dab8}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:09.273094Z DEBUG StfBlueprint::apply_slot{context=Node da_height=99}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=128498efd8919a03a0b322e6a5f8667aa465d555f18e78ea82d838fa59711cea228ff11860848179e0248408ea9b356613d82e21d59127766cd7b30a8cc85b85 next_version=99 sesssion_starting_time=306.668µs +2026-04-20T15:33:09.280876Z DEBUG StfBlueprint::apply_slot{context=Node da_height=99}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=629d74333f24ab616524b543adeec74025ef8138277d6313be20cb3b5b520c7f50909fa9cbb6bab71bacce9dd74425a9d881f68c10f5c8eba7ff520af9c91b8e next_version=99 time=8.880202ms accesses_build_time=780.225µs finishing_session_time=7.646941ms +2026-04-20T15:33:09.281962Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="128498efd8919a03a0b322e6a5f8667aa465d555f18e78ea82d838fa59711cea228ff11860848179e0248408ea9b356613d82e21d59127766cd7b30a8cc85b85" next_state_root="629d74333f24ab616524b543adeec74025ef8138277d6313be20cb3b5b520c7f50909fa9cbb6bab71bacce9dd74425a9d881f68c10f5c8eba7ff520af9c91b8e" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:33:09.285670Z DEBUG sov_stf_runner::runner: Block execution complete time=2.972189238s +2026-04-20T15:33:09.285801Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:33:09.286551Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 99, latest_finalized_slot_number: 98, sync_status: Syncing { synced_da_height: 98, target_da_height: 99 }, .. } +2026-04-20T15:33:09.287931Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=95 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 99, latest_finalized_slot_number: 98, sync_status: Syncing { synced_da_height: 98, target_da_height: 99 }, .. } +2026-04-20T15:33:09.288191Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:33:09.288730Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:33:09.288877Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=95 +2026-04-20T15:33:09.291536Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:33:09.292553Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=91 +2026-04-20T15:33:09.294434Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=96 +2026-04-20T15:33:09.295341Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:33:09.296839Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=96 sequence_number=104 +2026-04-20T15:33:09.297101Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:09.297151Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=104 blob_id=2147897523628855322847939415281493178 visible_slot_number_after_increase=96 visible_slots_to_advance=1 +2026-04-20T15:33:09.301667Z DEBUG compute_state_update{scope="sequencer" rollup_height=96 slot_number=96}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=629d74333f24ab616524b543adeec74025ef8138277d6313be20cb3b5b520c7f50909fa9cbb6bab71bacce9dd74425a9d881f68c10f5c8eba7ff520af9c91b8e next_version=100 sesssion_starting_time=278.908µs +2026-04-20T15:33:09.304641Z DEBUG manage_blob_submission_inside_task{blob_id=2147897523628855322847939415281493178 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x7c05ba8fbbdb941b54c92692888a52124849af6d68e7597ba2ce4025ad6d3136 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=100 include_at=100 bytes=13 time=1.721118ms +2026-04-20T15:33:09.307636Z DEBUG compute_state_update{scope="sequencer" rollup_height=96 slot_number=96}: sov_state::nomt::prover_storage: computed next state root state_root=6dd8643e647fe15853f9134de4551aa1e1eea206abd21b36e81b1c2757ef10f10a20ed0a2c21cf4da7dcc7af4ddf97f1518cea244248d0ce8079b0a92e68a691 next_version=100 time=6.801816ms accesses_build_time=518.357µs finishing_session_time=5.811662ms +2026-04-20T15:33:09.799602Z DEBUG sp1_core_executor_runner::native: CHILD sp1_E59IUQxXRhyNX6-CbGxzLQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:33:09.837525Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:33:09.848763Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1769889 cycles +2026-04-20T15:33:09.851540Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 216, 237, 80, 175, 118, 51, 143, 48, 137, 4, 45, 50, 119, 133, 38, 186, 247, 121, 201, 196, 32, 3, 102, 31, 188, 21, 229, 69, 122, 65, 192, 55, 120, 202, 112, 195, 178, 11, 61, 21, 251, 91, 226, 173, 175, 66, 210, 26, 48, 199, 12, 246, 35, 14, 247, 52, 234, 125, 97, 97, 63, 44, 114, 124, 93, 24, 209, 139, 93, 130, 216, 184, 64, 94, 191, 52, 6, 242, 245, 161, 185, 37, 62, 146, 154, 49, 14, 189, 83, 151, 91, 163, 76, 247, 234, 83, 89, 47, 83, 190, 27, 229, 242, 125, 120, 206, 61, 96, 143, 191, 205, 238, 127, 63, 185, 23, 111, 89, 144, 43, 88, 15, 69, 239, 40, 162, 88, 139, 76, 155, 154, 183, 144, 11, 35, 204, 234, 183, 164, 24, 232, 65, 95, 139, 119, 147, 204, 41, 106, 246, 172, 69, 105, 157, 34, 190, 65, 46, 117, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:33:10.475650Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:33:10.475728Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:33:12.253920Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=100 prev_hash=0x7d3201a840176dc2d92bc54b47d3d0b725ba496d77a6b87cc9a2eaf9fe6e6c0c hash=0xaa2e87ce6d11651682664482e37cfa4aed35dc56cf05dca59db21691ba656a15 producing_time=3.11814ms +2026-04-20T15:33:12.258989Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=100 current_state_root="629d74333f24ab616524b543adeec74025ef8138277d6313be20cb3b5b520c7f50909fa9cbb6bab71bacce9dd74425a9d881f68c10f5c8eba7ff520af9c91b8e" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x7c05ba8fbbdb941b54c92692888a52124849af6d68e7597ba2ce4025ad6d3136"] proof_blobs=[] +2026-04-20T15:33:12.267178Z DEBUG StfBlueprint::apply_slot{context=Node da_height=100}: sov_chain_state: Setting next visible slot number next_visible_slot_number=96 +2026-04-20T15:33:12.273378Z DEBUG StfBlueprint::apply_slot{context=Node da_height=100}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x7c05ba8fbbdb941b54c92692888a52124849af6d68e7597ba2ce4025ad6d3136}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:12.275651Z DEBUG StfBlueprint::apply_slot{context=Node da_height=100}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=629d74333f24ab616524b543adeec74025ef8138277d6313be20cb3b5b520c7f50909fa9cbb6bab71bacce9dd74425a9d881f68c10f5c8eba7ff520af9c91b8e next_version=100 sesssion_starting_time=345.268µs +2026-04-20T15:33:12.283391Z DEBUG StfBlueprint::apply_slot{context=Node da_height=100}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6dd8643e647fe15853f9134de4551aa1e1eea206abd21b36e81b1c2757ef10f1540e0815f78327864e18b76f9c46a12a309231ff89696b70c3d711311e489d42 next_version=100 time=8.867603ms accesses_build_time=766.775µs finishing_session_time=7.556521ms +2026-04-20T15:33:12.284629Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="128498efd8919a03a0b322e6a5f8667aa465d555f18e78ea82d838fa59711cea228ff11860848179e0248408ea9b356613d82e21d59127766cd7b30a8cc85b85" next_state_root="6dd8643e647fe15853f9134de4551aa1e1eea206abd21b36e81b1c2757ef10f1540e0815f78327864e18b76f9c46a12a309231ff89696b70c3d711311e489d42" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:33:12.289218Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 100, latest_finalized_slot_number: 99, sync_status: Syncing { synced_da_height: 99, target_da_height: 100 }, .. } +2026-04-20T15:33:12.290651Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=96 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 100, latest_finalized_slot_number: 99, sync_status: Syncing { synced_da_height: 99, target_da_height: 100 }, .. } +2026-04-20T15:33:12.291610Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=96 +2026-04-20T15:33:12.294086Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:33:12.295069Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=92 +2026-04-20T15:33:12.296867Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=97 +2026-04-20T15:33:12.297813Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:33:12.299343Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=97 sequence_number=105 +2026-04-20T15:33:12.299600Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:12.299632Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=105 blob_id=2147897527259288185210434692373081829 visible_slot_number_after_increase=97 visible_slots_to_advance=1 +2026-04-20T15:33:12.304485Z DEBUG compute_state_update{scope="sequencer" rollup_height=97 slot_number=97}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:33:12.304812Z DEBUG compute_state_update{scope="sequencer" rollup_height=97 slot_number=97}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6dd8643e647fe15853f9134de4551aa1e1eea206abd21b36e81b1c2757ef10f1540e0815f78327864e18b76f9c46a12a309231ff89696b70c3d711311e489d42 next_version=101 sesssion_starting_time=1.202732ms +2026-04-20T15:33:12.305007Z DEBUG sov_stf_runner::runner: Block execution complete time=3.019235042s +2026-04-20T15:33:12.305077Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:33:12.306962Z DEBUG manage_blob_submission_inside_task{blob_id=2147897527259288185210434692373081829 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xd867b5cd8257b3f141be8d4ec5498e6182edf115b97d4a017b9b36d9070a69de sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=101 include_at=101 bytes=13 time=1.640729ms +2026-04-20T15:33:12.307469Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:33:12.308250Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:33:12.310434Z DEBUG compute_state_update{scope="sequencer" rollup_height=97 slot_number=97}: sov_state::nomt::prover_storage: computed next state root state_root=73d7790f3f9ba5aeaaf59b328a85f444733a06a41d6f9d91ec3202c9345a0e695ed6776980bec770c6265dffcfbe174992e9735a6dc0f44ceae300443f463363 next_version=101 time=7.243553ms accesses_build_time=409.968µs finishing_session_time=5.529254ms +2026-04-20T15:33:12.747630Z DEBUG sp1_core_executor_runner::native: CHILD sp1_p2W-vt84RM6J7Wfv_5OB7A==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:33:12.785380Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:33:12.798147Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1769579 cycles +2026-04-20T15:33:12.800800Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [12, 68, 40, 68, 179, 195, 81, 115, 255, 203, 203, 69, 116, 169, 203, 64, 192, 95, 94, 196, 224, 78, 85, 170, 164, 178, 76, 142, 66, 9, 255, 181, 56, 24, 188, 185, 75, 198, 249, 10, 197, 236, 13, 10, 171, 61, 8, 203, 209, 225, 112, 249, 125, 80, 211, 135, 130, 227, 222, 120, 88, 247, 230, 72, 22, 34, 217, 141, 29, 161, 80, 128, 194, 181, 171, 161, 126, 81, 145, 212, 195, 53, 172, 158, 112, 192, 198, 1, 82, 55, 181, 234, 97, 253, 22, 241, 12, 9, 6, 220, 11, 183, 149, 137, 123, 227, 233, 89, 210, 96, 115, 18, 110, 60, 8, 23, 79, 214, 58, 43, 34, 169, 212, 18, 151, 245, 216, 14, 125, 67, 58, 21, 42, 52, 101, 135, 213, 173, 62, 160, 234, 79, 5, 175, 171, 102, 254, 160, 55, 184, 1, 83, 198, 43, 89, 134, 155, 67, 64, 110, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:33:13.432740Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:33:13.432823Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:33:15.256374Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=101 prev_hash=0xaa2e87ce6d11651682664482e37cfa4aed35dc56cf05dca59db21691ba656a15 hash=0x4e7e6d29054fb183c1ff5504017fcfee18e4ca02c262d0000d33730428e502a9 producing_time=1.64453ms +2026-04-20T15:33:15.267896Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=101 current_state_root="6dd8643e647fe15853f9134de4551aa1e1eea206abd21b36e81b1c2757ef10f1540e0815f78327864e18b76f9c46a12a309231ff89696b70c3d711311e489d42" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd867b5cd8257b3f141be8d4ec5498e6182edf115b97d4a017b9b36d9070a69de"] proof_blobs=[] +2026-04-20T15:33:15.274874Z DEBUG StfBlueprint::apply_slot{context=Node da_height=101}: sov_chain_state: Setting next visible slot number next_visible_slot_number=97 +2026-04-20T15:33:15.280091Z DEBUG StfBlueprint::apply_slot{context=Node da_height=101}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xd867b5cd8257b3f141be8d4ec5498e6182edf115b97d4a017b9b36d9070a69de}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:15.281803Z DEBUG StfBlueprint::apply_slot{context=Node da_height=101}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6dd8643e647fe15853f9134de4551aa1e1eea206abd21b36e81b1c2757ef10f1540e0815f78327864e18b76f9c46a12a309231ff89696b70c3d711311e489d42 next_version=101 sesssion_starting_time=187.599µs +2026-04-20T15:33:15.287019Z DEBUG StfBlueprint::apply_slot{context=Node da_height=101}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=73d7790f3f9ba5aeaaf59b328a85f444733a06a41d6f9d91ec3202c9345a0e6943c054d3f5b7b2be4a5d6d2e87413aeddebf8f03d8c2fa9b6d875701ea7553f7 next_version=101 time=6.024391ms accesses_build_time=616.506µs finishing_session_time=5.072297ms +2026-04-20T15:33:15.288335Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="629d74333f24ab616524b543adeec74025ef8138277d6313be20cb3b5b520c7f50909fa9cbb6bab71bacce9dd74425a9d881f68c10f5c8eba7ff520af9c91b8e" next_state_root="73d7790f3f9ba5aeaaf59b328a85f444733a06a41d6f9d91ec3202c9345a0e6943c054d3f5b7b2be4a5d6d2e87413aeddebf8f03d8c2fa9b6d875701ea7553f7" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:33:15.292502Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 101, latest_finalized_slot_number: 100, sync_status: Syncing { synced_da_height: 100, target_da_height: 101 }, .. } +2026-04-20T15:33:15.293610Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=97 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 101, latest_finalized_slot_number: 100, sync_status: Syncing { synced_da_height: 100, target_da_height: 101 }, .. } +2026-04-20T15:33:15.294338Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=97 +2026-04-20T15:33:15.296265Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:33:15.297032Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=93 +2026-04-20T15:33:15.298662Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=98 +2026-04-20T15:33:15.299555Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:33:15.301074Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=98 sequence_number=106 +2026-04-20T15:33:15.301364Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:15.301438Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=106 blob_id=2147897530888504473270795869123534485 visible_slot_number_after_increase=98 visible_slots_to_advance=1 +2026-04-20T15:33:15.306038Z DEBUG compute_state_update{scope="sequencer" rollup_height=98 slot_number=98}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:33:15.306349Z DEBUG compute_state_update{scope="sequencer" rollup_height=98 slot_number=98}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=73d7790f3f9ba5aeaaf59b328a85f444733a06a41d6f9d91ec3202c9345a0e6943c054d3f5b7b2be4a5d6d2e87413aeddebf8f03d8c2fa9b6d875701ea7553f7 next_version=102 sesssion_starting_time=1.151973ms +2026-04-20T15:33:15.306483Z DEBUG sov_stf_runner::runner: Block execution complete time=3.001418958s +2026-04-20T15:33:15.306533Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:33:15.307343Z DEBUG manage_blob_submission_inside_task{blob_id=2147897530888504473270795869123534485 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x6c9ffbec3967a8ea79b868cc48c39f1fc433f7e5d22ec76ca2997545d0c20caa sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=102 include_at=102 bytes=13 time=1.128892ms +2026-04-20T15:33:15.309078Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:33:15.309412Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:33:15.310322Z DEBUG compute_state_update{scope="sequencer" rollup_height=98 slot_number=98}: sov_state::nomt::prover_storage: computed next state root state_root=1e7b08a5e42917e92fcd49e97a6ba660691ad790cd45f4537f4e499ad4c4726a3da4a34046d4048e4dc6db5a9f844785c1b3b3db9545af2adc4e7ca13a4ca53c next_version=102 time=5.485964ms accesses_build_time=363.007µs finishing_session_time=3.875315ms +2026-04-20T15:33:15.776288Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9n_EEmfBS02YnMrplHpf8g==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:33:15.815933Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:33:15.829187Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1819033 cycles +2026-04-20T15:33:15.832266Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [38, 198, 215, 191, 106, 209, 176, 84, 208, 179, 122, 219, 128, 88, 248, 252, 129, 98, 13, 183, 12, 107, 59, 80, 180, 112, 92, 26, 206, 254, 175, 188, 40, 107, 7, 111, 163, 88, 186, 105, 202, 123, 223, 155, 84, 222, 118, 238, 88, 162, 5, 27, 206, 54, 236, 15, 214, 12, 116, 15, 122, 57, 92, 123, 69, 106, 168, 143, 0, 15, 203, 160, 32, 87, 7, 252, 180, 27, 158, 77, 101, 77, 50, 91, 181, 15, 41, 180, 125, 39, 166, 42, 125, 102, 97, 90, 43, 213, 175, 124, 107, 78, 239, 252, 121, 14, 196, 211, 205, 76, 128, 51, 113, 246, 212, 146, 210, 29, 107, 44, 111, 155, 218, 228, 92, 218, 237, 239, 208, 38, 219, 19, 244, 131, 253, 96, 66, 14, 195, 226, 135, 204, 106, 121, 236, 134, 204, 120, 112, 187, 230, 49, 167, 156, 248, 217, 232, 70, 201, 129, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:33:16.471932Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:33:16.472012Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:33:18.260848Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=102 prev_hash=0x4e7e6d29054fb183c1ff5504017fcfee18e4ca02c262d0000d33730428e502a9 hash=0x95c3b707869bb8dd79f02ab2ddd64b2423c01f21fa7299f38d406c77031608e0 producing_time=3.19566ms +2026-04-20T15:33:18.270104Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=102 current_state_root="73d7790f3f9ba5aeaaf59b328a85f444733a06a41d6f9d91ec3202c9345a0e6943c054d3f5b7b2be4a5d6d2e87413aeddebf8f03d8c2fa9b6d875701ea7553f7" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x6c9ffbec3967a8ea79b868cc48c39f1fc433f7e5d22ec76ca2997545d0c20caa"] proof_blobs=[] +2026-04-20T15:33:18.278024Z DEBUG StfBlueprint::apply_slot{context=Node da_height=102}: sov_chain_state: Setting next visible slot number next_visible_slot_number=98 +2026-04-20T15:33:18.284049Z DEBUG StfBlueprint::apply_slot{context=Node da_height=102}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x6c9ffbec3967a8ea79b868cc48c39f1fc433f7e5d22ec76ca2997545d0c20caa}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:18.286131Z DEBUG StfBlueprint::apply_slot{context=Node da_height=102}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=73d7790f3f9ba5aeaaf59b328a85f444733a06a41d6f9d91ec3202c9345a0e6943c054d3f5b7b2be4a5d6d2e87413aeddebf8f03d8c2fa9b6d875701ea7553f7 next_version=102 sesssion_starting_time=228.128µs +2026-04-20T15:33:18.293865Z DEBUG StfBlueprint::apply_slot{context=Node da_height=102}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=1e7b08a5e42917e92fcd49e97a6ba660691ad790cd45f4537f4e499ad4c4726a3bcffed751c54b594be24a941fa5ea8dde56187168969a77d3b04ee235103c59 next_version=102 time=8.725623ms accesses_build_time=752.145µs finishing_session_time=7.60895ms +2026-04-20T15:33:18.294949Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6dd8643e647fe15853f9134de4551aa1e1eea206abd21b36e81b1c2757ef10f1540e0815f78327864e18b76f9c46a12a309231ff89696b70c3d711311e489d42" next_state_root="1e7b08a5e42917e92fcd49e97a6ba660691ad790cd45f4537f4e499ad4c4726a3bcffed751c54b594be24a941fa5ea8dde56187168969a77d3b04ee235103c59" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:33:18.299672Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 102, latest_finalized_slot_number: 102, sync_status: Syncing { synced_da_height: 101, target_da_height: 102 }, .. } +2026-04-20T15:33:18.301076Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=98 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 102, latest_finalized_slot_number: 102, sync_status: Syncing { synced_da_height: 101, target_da_height: 102 }, .. } +2026-04-20T15:33:18.302051Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=98 +2026-04-20T15:33:18.304828Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:33:18.305872Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=94 +2026-04-20T15:33:18.307699Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=99 +2026-04-20T15:33:18.308665Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:33:18.310527Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=99 sequence_number=107 +2026-04-20T15:33:18.310869Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=107 blob_id=2147897534526136840466925994572016155 visible_slot_number_after_increase=99 visible_slots_to_advance=1 +2026-04-20T15:33:18.310853Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:18.318115Z DEBUG manage_blob_submission_inside_task{blob_id=2147897534526136840466925994572016155 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x7f04642266f438b50a7fd13d79f00413b632a109cee84469ba8b102d80582292 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=103 include_at=103 bytes=13 time=1.663449ms +2026-04-20T15:33:18.321644Z  INFO sov_db::storage_manager::nomt_based::groups: Starting pruner task iteration versions_to_keep=20 +2026-04-20T15:33:18.321672Z DEBUG compute_state_update{scope="sequencer" rollup_height=99 slot_number=99}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:33:18.321752Z DEBUG compute_state_update{scope="sequencer" rollup_height=99 slot_number=99}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:33:18.321968Z  WARN sov_db::storage_manager::nomt_based::groups: Pruning temporarily disabled +2026-04-20T15:33:18.322038Z DEBUG compute_state_update{scope="sequencer" rollup_height=99 slot_number=99}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1e7b08a5e42917e92fcd49e97a6ba660691ad790cd45f4537f4e499ad4c4726a3bcffed751c54b594be24a941fa5ea8dde56187168969a77d3b04ee235103c59 next_version=103 sesssion_starting_time=7.010815ms +2026-04-20T15:33:18.322153Z DEBUG sov_stf_runner::runner: Block execution complete time=3.015627915s +2026-04-20T15:33:18.322201Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:33:18.325039Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:33:18.325732Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:33:18.328242Z DEBUG compute_state_update{scope="sequencer" rollup_height=99 slot_number=99}: sov_state::nomt::prover_storage: computed next state root state_root=2d7bb2339572b9764f1765c6b6ad809dabd437fdb372a0103415c000d560ae96688e278cf08340f320268e63fd15fe2e7084970043aff50fb19e347255280b90 next_version=103 time=13.630201ms accesses_build_time=406.827µs finishing_session_time=6.102711ms +2026-04-20T15:33:18.758906Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3d1B2TTuQOqegGmHbrmHsw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:33:18.796902Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:33:18.809309Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1777438 cycles +2026-04-20T15:33:18.811960Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [100, 28, 141, 61, 187, 17, 158, 87, 20, 113, 241, 49, 162, 194, 170, 116, 70, 42, 140, 14, 129, 39, 143, 104, 33, 161, 82, 95, 251, 59, 42, 71, 50, 160, 208, 42, 87, 94, 29, 159, 0, 195, 150, 247, 103, 45, 143, 135, 192, 165, 122, 210, 180, 96, 72, 183, 99, 107, 90, 33, 143, 255, 120, 245, 44, 168, 220, 151, 40, 137, 135, 184, 163, 145, 162, 22, 200, 234, 50, 155, 103, 101, 33, 158, 38, 4, 186, 137, 135, 135, 47, 10, 32, 141, 206, 21, 73, 207, 250, 136, 0, 212, 124, 61, 94, 216, 100, 153, 220, 62, 108, 236, 97, 161, 130, 107, 111, 188, 76, 181, 129, 28, 165, 201, 154, 55, 132, 246, 14, 48, 105, 85, 149, 33, 127, 151, 228, 24, 73, 253, 77, 125, 213, 145, 119, 12, 15, 132, 61, 245, 75, 232, 42, 60, 19, 164, 136, 45, 67, 10, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:33:19.437210Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:33:19.437289Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:33:21.265850Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=103 prev_hash=0x95c3b707869bb8dd79f02ab2ddd64b2423c01f21fa7299f38d406c77031608e0 hash=0x80294a48a925311d8cdb5cc1e02e4a5687133c8928992faf808cfb033a7ac4a4 producing_time=3.744756ms +2026-04-20T15:33:21.275079Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=103 current_state_root="1e7b08a5e42917e92fcd49e97a6ba660691ad790cd45f4537f4e499ad4c4726a3bcffed751c54b594be24a941fa5ea8dde56187168969a77d3b04ee235103c59" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x7f04642266f438b50a7fd13d79f00413b632a109cee84469ba8b102d80582292"] proof_blobs=[] +2026-04-20T15:33:21.284226Z DEBUG StfBlueprint::apply_slot{context=Node da_height=103}: sov_chain_state: Setting next visible slot number next_visible_slot_number=99 +2026-04-20T15:33:21.290900Z DEBUG StfBlueprint::apply_slot{context=Node da_height=103}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x7f04642266f438b50a7fd13d79f00413b632a109cee84469ba8b102d80582292}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:21.293333Z DEBUG StfBlueprint::apply_slot{context=Node da_height=103}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1e7b08a5e42917e92fcd49e97a6ba660691ad790cd45f4537f4e499ad4c4726a3bcffed751c54b594be24a941fa5ea8dde56187168969a77d3b04ee235103c59 next_version=103 sesssion_starting_time=324.698µs +2026-04-20T15:33:21.301094Z DEBUG StfBlueprint::apply_slot{context=Node da_height=103}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2d7bb2339572b9764f1765c6b6ad809dabd437fdb372a0103415c000d560ae9634b4baf63352b33424f6e1e62a25f93e40efcaa88beefa7ed63a33b247f42d0d next_version=103 time=8.943842ms accesses_build_time=828.115µs finishing_session_time=7.60697ms +2026-04-20T15:33:21.302230Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="1e7b08a5e42917e92fcd49e97a6ba660691ad790cd45f4537f4e499ad4c4726a3bcffed751c54b594be24a941fa5ea8dde56187168969a77d3b04ee235103c59" next_state_root="2d7bb2339572b9764f1765c6b6ad809dabd437fdb372a0103415c000d560ae9634b4baf63352b33424f6e1e62a25f93e40efcaa88beefa7ed63a33b247f42d0d" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:33:21.307190Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 103, latest_finalized_slot_number: 103, sync_status: Syncing { synced_da_height: 102, target_da_height: 103 }, .. } +2026-04-20T15:33:21.308642Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=99 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 103, latest_finalized_slot_number: 103, sync_status: Syncing { synced_da_height: 102, target_da_height: 103 }, .. } +2026-04-20T15:33:21.309611Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=99 +2026-04-20T15:33:21.312218Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:33:21.313217Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=95 +2026-04-20T15:33:21.315066Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=100 +2026-04-20T15:33:21.316033Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:33:21.317867Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=100 sequence_number=108 +2026-04-20T15:33:21.318107Z  INFO sov_db::storage_manager::nomt_based::groups: Pruner task has completed historical_state.hit_size_limit=false accessory_state.hit_size_limit=false +2026-04-20T15:33:21.318159Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=108 blob_id=2147897538161344925432247912435074093 visible_slot_number_after_increase=100 visible_slots_to_advance=1 +2026-04-20T15:33:21.318136Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:21.319809Z DEBUG sov_stf_runner::runner: Block execution complete time=2.997611872s +2026-04-20T15:33:21.319925Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:33:21.322867Z DEBUG compute_state_update{scope="sequencer" rollup_height=100 slot_number=100}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:33:21.323205Z DEBUG compute_state_update{scope="sequencer" rollup_height=100 slot_number=100}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2d7bb2339572b9764f1765c6b6ad809dabd437fdb372a0103415c000d560ae9634b4baf63352b33424f6e1e62a25f93e40efcaa88beefa7ed63a33b247f42d0d next_version=104 sesssion_starting_time=342.658µs +2026-04-20T15:33:21.325632Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:33:21.326036Z DEBUG manage_blob_submission_inside_task{blob_id=2147897538161344925432247912435074093 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x92ef1622d44b3e22e4a4e20f1898dbf18d34dbb4548425480be0f59e3cf3afd9 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=104 include_at=104 bytes=13 time=1.836118ms +2026-04-20T15:33:21.326720Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:33:21.328965Z DEBUG compute_state_update{scope="sequencer" rollup_height=100 slot_number=100}: sov_state::nomt::prover_storage: computed next state root state_root=0da87a9824e238e961cc8f3a69f647ae41e95a1d6e8f54876e5f7a4d88eba0ce4e77d5cd82be383089cff968266f3a2ca5abe4b2950d6a5a6a6bc1b53de49259 next_version=104 time=6.622028ms accesses_build_time=495.187µs finishing_session_time=5.645664ms +2026-04-20T15:33:21.783391Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TcUtRboYTsKyVBlL8T7XJA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:33:21.824311Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:33:21.837033Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1897271 cycles +2026-04-20T15:33:21.839982Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [68, 144, 143, 208, 101, 218, 27, 228, 57, 196, 114, 234, 40, 189, 226, 223, 144, 208, 235, 30, 185, 206, 216, 77, 44, 37, 208, 200, 72, 213, 32, 18, 43, 253, 103, 173, 67, 140, 168, 229, 20, 62, 244, 48, 2, 86, 203, 236, 42, 146, 117, 19, 173, 108, 69, 255, 81, 236, 222, 86, 185, 215, 198, 177, 30, 232, 45, 172, 187, 111, 45, 133, 83, 245, 112, 81, 20, 168, 89, 82, 145, 207, 154, 84, 27, 124, 77, 52, 200, 169, 15, 102, 104, 175, 179, 193, 114, 36, 227, 108, 72, 185, 3, 75, 15, 131, 8, 179, 44, 236, 69, 71, 109, 146, 5, 42, 71, 158, 52, 199, 122, 120, 1, 88, 0, 128, 208, 31, 134, 65, 151, 187, 19, 42, 136, 65, 221, 195, 143, 23, 39, 145, 43, 190, 173, 38, 84, 185, 23, 129, 93, 170, 31, 242, 252, 233, 0, 50, 237, 79, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:33:22.513046Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:33:22.513128Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:33:24.270280Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=104 prev_hash=0x80294a48a925311d8cdb5cc1e02e4a5687133c8928992faf808cfb033a7ac4a4 hash=0x32c9faa3c2b511403f71287480e090c6decfe3e27dc472d8d42f51bb75bf88e6 producing_time=3.406078ms +2026-04-20T15:33:24.272542Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=104 current_state_root="2d7bb2339572b9764f1765c6b6ad809dabd437fdb372a0103415c000d560ae9634b4baf63352b33424f6e1e62a25f93e40efcaa88beefa7ed63a33b247f42d0d" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x92ef1622d44b3e22e4a4e20f1898dbf18d34dbb4548425480be0f59e3cf3afd9"] proof_blobs=[] +2026-04-20T15:33:24.281528Z DEBUG StfBlueprint::apply_slot{context=Node da_height=104}: sov_chain_state: Setting next visible slot number next_visible_slot_number=100 +2026-04-20T15:33:24.287849Z DEBUG StfBlueprint::apply_slot{context=Node da_height=104}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x92ef1622d44b3e22e4a4e20f1898dbf18d34dbb4548425480be0f59e3cf3afd9}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:24.290166Z DEBUG StfBlueprint::apply_slot{context=Node da_height=104}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2d7bb2339572b9764f1765c6b6ad809dabd437fdb372a0103415c000d560ae9634b4baf63352b33424f6e1e62a25f93e40efcaa88beefa7ed63a33b247f42d0d next_version=104 sesssion_starting_time=327.008µs +2026-04-20T15:33:24.297510Z DEBUG StfBlueprint::apply_slot{context=Node da_height=104}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=0da87a9824e238e961cc8f3a69f647ae41e95a1d6e8f54876e5f7a4d88eba0ce58c91b81806f0caa98be20db31d3018d593849d002baf75dbf86205cff656bf8 next_version=104 time=8.461695ms accesses_build_time=778.255µs finishing_session_time=7.183394ms +2026-04-20T15:33:24.298776Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2d7bb2339572b9764f1765c6b6ad809dabd437fdb372a0103415c000d560ae9634b4baf63352b33424f6e1e62a25f93e40efcaa88beefa7ed63a33b247f42d0d" next_state_root="0da87a9824e238e961cc8f3a69f647ae41e95a1d6e8f54876e5f7a4d88eba0ce58c91b81806f0caa98be20db31d3018d593849d002baf75dbf86205cff656bf8" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:33:24.303743Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 104, latest_finalized_slot_number: 104, sync_status: Syncing { synced_da_height: 103, target_da_height: 104 }, .. } +2026-04-20T15:33:24.305150Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=100 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 104, latest_finalized_slot_number: 104, sync_status: Syncing { synced_da_height: 103, target_da_height: 104 }, .. } +2026-04-20T15:33:24.306104Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=100 +2026-04-20T15:33:24.308902Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:33:24.309887Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=96 +2026-04-20T15:33:24.311716Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=101 +2026-04-20T15:33:24.312690Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:33:24.314476Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=101 sequence_number=109 +2026-04-20T15:33:24.314755Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=109 blob_id=2147897541784502707166964147756075798 visible_slot_number_after_increase=101 visible_slots_to_advance=1 +2026-04-20T15:33:24.314780Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:24.315358Z DEBUG sov_stf_runner::runner: Block execution complete time=2.995454787s +2026-04-20T15:33:24.315417Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:33:24.317734Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:33:24.318454Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:33:24.319500Z DEBUG compute_state_update{scope="sequencer" rollup_height=101 slot_number=101}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:33:24.319826Z DEBUG compute_state_update{scope="sequencer" rollup_height=101 slot_number=101}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0da87a9824e238e961cc8f3a69f647ae41e95a1d6e8f54876e5f7a4d88eba0ce58c91b81806f0caa98be20db31d3018d593849d002baf75dbf86205cff656bf8 next_version=105 sesssion_starting_time=328.748µs +2026-04-20T15:33:24.322545Z DEBUG manage_blob_submission_inside_task{blob_id=2147897541784502707166964147756075798 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x078185cd7cfecfb3342d0fd08f39243b2da7a970f71ce5b230798f5d7e0841f1 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=105 include_at=105 bytes=13 time=1.693859ms +2026-04-20T15:33:24.325661Z DEBUG compute_state_update{scope="sequencer" rollup_height=101 slot_number=101}: sov_state::nomt::prover_storage: computed next state root state_root=68165dc0059e1dbfa5589a16834a55f65dae193fdde311cafcb310e3e0f3d39f74ee748ec51b2adee52cbe37215b4824d99815007b4ea396e90fa9623341a6fa next_version=105 time=6.702356ms accesses_build_time=513.646µs finishing_session_time=5.718433ms +2026-04-20T15:33:24.788090Z DEBUG sp1_core_executor_runner::native: CHILD sp1_X81U_s-ZRmerfX9VGg2Kuw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:33:24.854745Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:33:24.867918Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4192006 cycles +2026-04-20T15:33:24.870782Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [32, 41, 212, 169, 75, 203, 155, 147, 255, 88, 13, 229, 59, 119, 223, 176, 194, 121, 239, 177, 84, 77, 35, 201, 127, 87, 206, 150, 102, 175, 132, 13, 73, 137, 67, 35, 61, 116, 128, 156, 191, 55, 22, 85, 72, 217, 98, 137, 191, 11, 48, 196, 179, 201, 174, 110, 155, 197, 55, 255, 158, 68, 222, 183, 89, 10, 47, 254, 181, 105, 42, 213, 1, 43, 20, 214, 232, 192, 151, 186, 127, 152, 85, 216, 17, 96, 238, 183, 50, 191, 45, 197, 135, 163, 25, 28, 80, 52, 228, 203, 176, 116, 205, 225, 167, 62, 116, 86, 64, 10, 25, 39, 46, 9, 2, 0, 148, 232, 100, 4, 205, 246, 77, 232, 226, 80, 8, 69, 127, 45, 196, 73, 184, 86, 197, 193, 194, 226, 188, 53, 75, 166, 144, 121, 174, 8, 102, 180, 161, 175, 236, 166, 49, 173, 28, 177, 196, 183, 254, 224, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:33:26.336683Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:33:26.336764Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:33:27.274386Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=105 prev_hash=0x32c9faa3c2b511403f71287480e090c6decfe3e27dc472d8d42f51bb75bf88e6 hash=0xc9f9ec895e057f97422f9d77693f7f54c120fc9196fa42ab19a1309bb3b43387 producing_time=3.348018ms +2026-04-20T15:33:27.277504Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=105 current_state_root="0da87a9824e238e961cc8f3a69f647ae41e95a1d6e8f54876e5f7a4d88eba0ce58c91b81806f0caa98be20db31d3018d593849d002baf75dbf86205cff656bf8" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x078185cd7cfecfb3342d0fd08f39243b2da7a970f71ce5b230798f5d7e0841f1"] proof_blobs=[] +2026-04-20T15:33:27.286298Z DEBUG StfBlueprint::apply_slot{context=Node da_height=105}: sov_chain_state: Setting next visible slot number next_visible_slot_number=101 +2026-04-20T15:33:27.292824Z DEBUG StfBlueprint::apply_slot{context=Node da_height=105}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x078185cd7cfecfb3342d0fd08f39243b2da7a970f71ce5b230798f5d7e0841f1}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:27.295188Z DEBUG StfBlueprint::apply_slot{context=Node da_height=105}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0da87a9824e238e961cc8f3a69f647ae41e95a1d6e8f54876e5f7a4d88eba0ce58c91b81806f0caa98be20db31d3018d593849d002baf75dbf86205cff656bf8 next_version=105 sesssion_starting_time=320.158µs +2026-04-20T15:33:27.303395Z DEBUG StfBlueprint::apply_slot{context=Node da_height=105}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=68165dc0059e1dbfa5589a16834a55f65dae193fdde311cafcb310e3e0f3d39f25eeab22b22307bb83243230e72aea63072d1ecb81bfd7de57b2bd12a47228ae next_version=105 time=9.329529ms accesses_build_time=787.085µs finishing_session_time=8.071677ms +2026-04-20T15:33:27.304711Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="0da87a9824e238e961cc8f3a69f647ae41e95a1d6e8f54876e5f7a4d88eba0ce58c91b81806f0caa98be20db31d3018d593849d002baf75dbf86205cff656bf8" next_state_root="68165dc0059e1dbfa5589a16834a55f65dae193fdde311cafcb310e3e0f3d39f25eeab22b22307bb83243230e72aea63072d1ecb81bfd7de57b2bd12a47228ae" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:33:27.309493Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 105, latest_finalized_slot_number: 105, sync_status: Syncing { synced_da_height: 104, target_da_height: 105 }, .. } +2026-04-20T15:33:27.310984Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=101 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 105, latest_finalized_slot_number: 105, sync_status: Syncing { synced_da_height: 104, target_da_height: 105 }, .. } +2026-04-20T15:33:27.312031Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=101 +2026-04-20T15:33:27.314996Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:33:27.316088Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=97 +2026-04-20T15:33:27.318012Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=102 +2026-04-20T15:33:27.319022Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:33:27.320662Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=102 sequence_number=110 +2026-04-20T15:33:27.320965Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:27.321058Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=110 blob_id=2147897545418525477606564626901952283 visible_slot_number_after_increase=102 visible_slots_to_advance=1 +2026-04-20T15:33:27.322538Z DEBUG sov_stf_runner::runner: Block execution complete time=3.007126201s +2026-04-20T15:33:27.322649Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:33:27.325045Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:33:27.325687Z DEBUG compute_state_update{scope="sequencer" rollup_height=102 slot_number=102}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:33:27.325786Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:33:27.326037Z DEBUG compute_state_update{scope="sequencer" rollup_height=102 slot_number=102}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=68165dc0059e1dbfa5589a16834a55f65dae193fdde311cafcb310e3e0f3d39f25eeab22b22307bb83243230e72aea63072d1ecb81bfd7de57b2bd12a47228ae next_version=106 sesssion_starting_time=352.618µs +2026-04-20T15:33:27.328783Z DEBUG manage_blob_submission_inside_task{blob_id=2147897545418525477606564626901952283 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xeabfe3ff8c39dc5f396699a70c5eefe6aad5f3e0f07844dd04467f839d826697 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=106 include_at=106 bytes=13 time=1.758399ms +2026-04-20T15:33:27.331825Z DEBUG compute_state_update{scope="sequencer" rollup_height=102 slot_number=102}: sov_state::nomt::prover_storage: computed next state root state_root=1fb66813e0d798a8807abb86d9f623e496a268abfccbc9f9b0fa83f1e1bb1eab7b81436de0b2a90206b00e74c0f7c9bdb3a68c63598d7de6bf53cfc228ba847f next_version=106 time=6.687737ms accesses_build_time=520.937µs finishing_session_time=5.668313ms +2026-04-20T15:33:27.785837Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yQz6M6AgRem_5BOm3Y5oOw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:33:27.825935Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:33:27.837720Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1824764 cycles +2026-04-20T15:33:27.840244Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [18, 132, 152, 239, 216, 145, 154, 3, 160, 179, 34, 230, 165, 248, 102, 122, 164, 101, 213, 85, 241, 142, 120, 234, 130, 216, 56, 250, 89, 113, 28, 234, 34, 143, 241, 24, 96, 132, 129, 121, 224, 36, 132, 8, 234, 155, 53, 102, 19, 216, 46, 33, 213, 145, 39, 118, 108, 215, 179, 10, 140, 200, 91, 133, 62, 113, 149, 106, 160, 193, 129, 65, 21, 240, 119, 27, 36, 159, 110, 198, 212, 117, 153, 136, 244, 94, 41, 119, 171, 19, 130, 227, 218, 244, 167, 145, 88, 1, 141, 253, 19, 39, 242, 177, 160, 123, 79, 135, 249, 37, 126, 207, 90, 233, 105, 156, 176, 196, 220, 22, 95, 41, 233, 109, 10, 133, 48, 146, 125, 50, 1, 168, 64, 23, 109, 194, 217, 43, 197, 75, 71, 211, 208, 183, 37, 186, 73, 109, 119, 166, 184, 124, 201, 162, 234, 249, 254, 110, 108, 12, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:33:28.485559Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:33:28.485638Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:33:30.279496Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=106 prev_hash=0xc9f9ec895e057f97422f9d77693f7f54c120fc9196fa42ab19a1309bb3b43387 hash=0x6dd75f32692b61200969ca9b51f5e8d314b2557ef42f99cb66f2402c5cc7c79e producing_time=3.384278ms +2026-04-20T15:33:30.285787Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=106 current_state_root="68165dc0059e1dbfa5589a16834a55f65dae193fdde311cafcb310e3e0f3d39f25eeab22b22307bb83243230e72aea63072d1ecb81bfd7de57b2bd12a47228ae" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xeabfe3ff8c39dc5f396699a70c5eefe6aad5f3e0f07844dd04467f839d826697"] proof_blobs=[] +2026-04-20T15:33:30.294595Z DEBUG StfBlueprint::apply_slot{context=Node da_height=106}: sov_chain_state: Setting next visible slot number next_visible_slot_number=102 +2026-04-20T15:33:30.301118Z DEBUG StfBlueprint::apply_slot{context=Node da_height=106}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xeabfe3ff8c39dc5f396699a70c5eefe6aad5f3e0f07844dd04467f839d826697}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:30.303515Z DEBUG StfBlueprint::apply_slot{context=Node da_height=106}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=68165dc0059e1dbfa5589a16834a55f65dae193fdde311cafcb310e3e0f3d39f25eeab22b22307bb83243230e72aea63072d1ecb81bfd7de57b2bd12a47228ae next_version=106 sesssion_starting_time=338.558µs +2026-04-20T15:33:30.311347Z DEBUG StfBlueprint::apply_slot{context=Node da_height=106}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=1fb66813e0d798a8807abb86d9f623e496a268abfccbc9f9b0fa83f1e1bb1eab3e2efdfd536dbecc6fa1ebe3692530e9fcba4faa5846a362226a4662b6bee42f next_version=106 time=8.948302ms accesses_build_time=765.195µs finishing_session_time=7.69315ms +2026-04-20T15:33:30.312629Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="68165dc0059e1dbfa5589a16834a55f65dae193fdde311cafcb310e3e0f3d39f25eeab22b22307bb83243230e72aea63072d1ecb81bfd7de57b2bd12a47228ae" next_state_root="1fb66813e0d798a8807abb86d9f623e496a268abfccbc9f9b0fa83f1e1bb1eab3e2efdfd536dbecc6fa1ebe3692530e9fcba4faa5846a362226a4662b6bee42f" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:33:30.317264Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 106, latest_finalized_slot_number: 106, sync_status: Synced { synced_da_height: 105 }, .. } +2026-04-20T15:33:30.318689Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=102 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 106, latest_finalized_slot_number: 106, sync_status: Synced { synced_da_height: 105 }, .. } +2026-04-20T15:33:30.319682Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=102 +2026-04-20T15:33:30.322434Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:33:30.323454Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=98 +2026-04-20T15:33:30.325264Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=103 +2026-04-20T15:33:30.326210Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:33:30.327908Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=103 sequence_number=111 +2026-04-20T15:33:30.328192Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=111 blob_id=2147897549053798452022673831680802904 visible_slot_number_after_increase=103 visible_slots_to_advance=1 +2026-04-20T15:33:30.328214Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:30.329394Z DEBUG sov_stf_runner::runner: Block execution complete time=3.006767013s +2026-04-20T15:33:30.329455Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:33:30.332550Z DEBUG compute_state_update{scope="sequencer" rollup_height=103 slot_number=103}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:33:30.332875Z DEBUG compute_state_update{scope="sequencer" rollup_height=103 slot_number=103}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1fb66813e0d798a8807abb86d9f623e496a268abfccbc9f9b0fa83f1e1bb1eab3e2efdfd536dbecc6fa1ebe3692530e9fcba4faa5846a362226a4662b6bee42f next_version=107 sesssion_starting_time=333.768µs +2026-04-20T15:33:30.335660Z DEBUG manage_blob_submission_inside_task{blob_id=2147897549053798452022673831680802904 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x2c6e4f2c217af2d0125b7c25d5d963c3c79349540741fb210cac01aca92379b9 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=107 include_at=107 bytes=13 time=1.712259ms +2026-04-20T15:33:30.338947Z DEBUG compute_state_update{scope="sequencer" rollup_height=103 slot_number=103}: sov_state::nomt::prover_storage: computed next state root state_root=7a80f6c6a343e65056fcf875e887d2e0c72672be548bc21437901a864e2f88a3428b6ec68ad31edcc9955149003162fde9c159108484d43e576eab182e4dca58 next_version=107 time=6.847586ms accesses_build_time=431.457µs finishing_session_time=5.966811ms +2026-04-20T15:33:30.821338Z DEBUG sp1_core_executor_runner::native: CHILD sp1_j5cKwFjLRrqeBJ7tX0jx8Q==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:33:30.859389Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:33:30.871431Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1770180 cycles +2026-04-20T15:33:30.874269Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 157, 116, 51, 63, 36, 171, 97, 101, 36, 181, 67, 173, 238, 199, 64, 37, 239, 129, 56, 39, 125, 99, 19, 190, 32, 203, 59, 91, 82, 12, 127, 80, 144, 159, 169, 203, 182, 186, 183, 27, 172, 206, 157, 215, 68, 37, 169, 216, 129, 246, 140, 16, 245, 200, 235, 167, 255, 82, 10, 249, 201, 27, 142, 6, 85, 170, 24, 49, 201, 196, 225, 106, 155, 110, 254, 168, 61, 131, 143, 19, 170, 128, 31, 200, 91, 146, 239, 90, 163, 64, 58, 176, 186, 226, 242, 34, 203, 36, 160, 154, 195, 170, 152, 115, 65, 60, 221, 254, 47, 165, 189, 136, 104, 48, 239, 72, 61, 236, 138, 29, 165, 163, 30, 193, 204, 87, 223, 170, 46, 135, 206, 109, 17, 101, 22, 130, 102, 68, 130, 227, 124, 250, 74, 237, 53, 220, 86, 207, 5, 220, 165, 157, 178, 22, 145, 186, 101, 106, 21, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:33:31.497765Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:33:31.497855Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:33:31.580410Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:33:31.823175Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:33:31.825382Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2607482 cycles +2026-04-20T15:33:31.825752Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [91, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 127, 185, 240, 33, 156, 211, 103, 13, 154, 250, 159, 193, 250, 182, 100, 208, 158, 202, 126, 152, 225, 237, 237, 40, 39, 149, 225, 37, 44, 103, 33, 107, 70, 194, 104, 187, 182, 201, 101, 62, 79, 129, 222, 71, 240, 205, 125, 60, 20, 183, 251, 67, 89, 89, 174, 207, 21, 20, 244, 22, 21, 133, 83, 10, 6, 85, 170, 24, 49, 201, 196, 225, 106, 155, 110, 254, 168, 61, 131, 143, 19, 170, 128, 31, 200, 91, 146, 239, 90, 163, 64, 58, 176, 186, 226, 242, 34, 203, 36, 160, 154, 195, 170, 152, 115, 65, 60, 221, 254, 47, 165, 189, 136, 104, 48, 239, 72, 61, 236, 138, 29, 165, 163, 30, 193, 204, 87, 223, 187, 78, 69, 34, 57, 182, 6, 116, 252, 149, 188, 194, 68, 184, 78, 101, 225, 131, 34, 135, 35, 103, 120, 236, 128, 60, 216, 127, 156, 142, 91, 68, 170, 46, 135, 206, 109, 17, 101, 22, 130, 102, 68, 130, 227, 124, 250, 74, 237, 53, 220, 86, 207, 5, 220, 165, 157, 178, 22, 145, 186, 101, 106, 21, 32, 0, 0, 0, 0, 0, 0, 0, 33, 87, 226, 242, 39, 49, 250, 210, 41, 143, 26, 188, 101, 19, 12, 136, 43, 105, 121, 236, 80, 118, 108, 155, 63, 154, 215, 73, 15, 107, 27, 67, 32, 0, 0, 0, 0, 0, 0, 0, 54, 246, 123, 188, 67, 61, 237, 103, 16, 229, 5, 146, 113, 8, 178, 215, 95, 95, 151, 239, 106, 28, 10, 135, 55, 55, 208, 95, 86, 190, 27, 9, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:33:32.788640Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:33:32.788719Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:33:32.789487Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=1951 +2026-04-20T15:33:32.792902Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:33:32.793462Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:33:32.794045Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=112 blob_id=2147897552030203906496901696671870942 +2026-04-20T15:33:33.284843Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=107 prev_hash=0x6dd75f32692b61200969ca9b51f5e8d314b2557ef42f99cb66f2402c5cc7c79e hash=0xf0c69229353ca83cef341588dccb73e3afab018086c05bf5c15060877006e38b producing_time=3.456958ms +2026-04-20T15:33:33.291934Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=107 current_state_root="1fb66813e0d798a8807abb86d9f623e496a268abfccbc9f9b0fa83f1e1bb1eab3e2efdfd536dbecc6fa1ebe3692530e9fcba4faa5846a362226a4662b6bee42f" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x2c6e4f2c217af2d0125b7c25d5d963c3c79349540741fb210cac01aca92379b9"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x40d3473dac6c0792cd92cf46d2915f0594b554a5949543d385176901c4ad2be1, len=2001"] +2026-04-20T15:33:33.300498Z DEBUG StfBlueprint::apply_slot{context=Node da_height=107}: sov_chain_state: Setting next visible slot number next_visible_slot_number=103 +2026-04-20T15:33:33.306741Z DEBUG StfBlueprint::apply_slot{context=Node da_height=107}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x2c6e4f2c217af2d0125b7c25d5d963c3c79349540741fb210cac01aca92379b9}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:33.309143Z DEBUG StfBlueprint::apply_slot{context=Node da_height=107}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1fb66813e0d798a8807abb86d9f623e496a268abfccbc9f9b0fa83f1e1bb1eab3e2efdfd536dbecc6fa1ebe3692530e9fcba4faa5846a362226a4662b6bee42f next_version=107 sesssion_starting_time=234.718µs +2026-04-20T15:33:33.317507Z DEBUG StfBlueprint::apply_slot{context=Node da_height=107}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=7a80f6c6a343e65056fcf875e887d2e0c72672be548bc21437901a864e2f88a3098d3df0a12d6f1323642f7bab651dad9348b5aa849276b2a3e774d978de85e6 next_version=107 time=9.560018ms accesses_build_time=942.394µs finishing_session_time=8.231996ms +2026-04-20T15:33:33.318803Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="1fb66813e0d798a8807abb86d9f623e496a268abfccbc9f9b0fa83f1e1bb1eab3e2efdfd536dbecc6fa1ebe3692530e9fcba4faa5846a362226a4662b6bee42f" next_state_root="7a80f6c6a343e65056fcf875e887d2e0c72672be548bc21437901a864e2f88a3098d3df0a12d6f1323642f7bab651dad9348b5aa849276b2a3e774d978de85e6" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:33:33.323808Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 107, latest_finalized_slot_number: 107, sync_status: Synced { synced_da_height: 106 }, .. } +2026-04-20T15:33:33.325256Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=103 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 107, latest_finalized_slot_number: 107, sync_status: Synced { synced_da_height: 106 }, .. } +2026-04-20T15:33:33.326208Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=103 +2026-04-20T15:33:33.329039Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:33:33.330035Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=99 +2026-04-20T15:33:33.331889Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=104 +2026-04-20T15:33:33.332830Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:33:33.335283Z DEBUG sov_stf_runner::runner: Block execution complete time=3.005837029s +2026-04-20T15:33:33.335339Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:33:33.337182Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 91. Final slot number 100 +2026-04-20T15:33:33.337799Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:33:33.337812Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=104 sequence_number=113 +2026-04-20T15:33:33.338091Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:33.338127Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=113 blob_id=2147897552692646558348254847587434898 visible_slot_number_after_increase=104 visible_slots_to_advance=1 +2026-04-20T15:33:33.338544Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:33:33.342208Z DEBUG compute_state_update{scope="sequencer" rollup_height=104 slot_number=104}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:33:33.342552Z DEBUG compute_state_update{scope="sequencer" rollup_height=104 slot_number=104}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7a80f6c6a343e65056fcf875e887d2e0c72672be548bc21437901a864e2f88a3098d3df0a12d6f1323642f7bab651dad9348b5aa849276b2a3e774d978de85e6 next_version=108 sesssion_starting_time=351.128µs +2026-04-20T15:33:33.346085Z DEBUG manage_blob_submission_inside_task{blob_id=2147897552692646558348254847587434898 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x6c8a2c9913bfd782eb2aeac0ec18416eabc0070808c34afe6efbe2edfa9cd74f sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=108 include_at=108 bytes=13 time=1.786808ms +2026-04-20T15:33:33.349146Z DEBUG compute_state_update{scope="sequencer" rollup_height=104 slot_number=104}: sov_state::nomt::prover_storage: computed next state root state_root=0f3e610cee196cc34155c4617c50d3cc7e57d190935f426ecb1a24c5bc14022761bbbf099c6f352660a44bac419d3c0fa8fb9d44a31f2429af0c7fbc5390f693 next_version=108 time=7.406992ms accesses_build_time=451.877µs finishing_session_time=6.493268ms +2026-04-20T15:33:36.284087Z DEBUG sp1_core_executor_runner::native: CHILD sp1_z2XFDVfuSRy8qLgiGRDbcg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:33:36.289006Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=108 prev_hash=0xf0c69229353ca83cef341588dccb73e3afab018086c05bf5c15060877006e38b hash=0x8f6993e61d853bc6614921ade29c424311ae9adb1abd3132b279e4325273d670 producing_time=3.252799ms +2026-04-20T15:33:36.297999Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=108 current_state_root="7a80f6c6a343e65056fcf875e887d2e0c72672be548bc21437901a864e2f88a3098d3df0a12d6f1323642f7bab651dad9348b5aa849276b2a3e774d978de85e6" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x6c8a2c9913bfd782eb2aeac0ec18416eabc0070808c34afe6efbe2edfa9cd74f"] proof_blobs=[] +2026-04-20T15:33:36.307217Z DEBUG StfBlueprint::apply_slot{context=Node da_height=108}: sov_chain_state: Setting next visible slot number next_visible_slot_number=104 +2026-04-20T15:33:36.323593Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:33:36.324986Z DEBUG StfBlueprint::apply_slot{context=Node da_height=108}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 91. Final slot number 100 +2026-04-20T15:33:36.325463Z DEBUG StfBlueprint::apply_slot{context=Node da_height=108}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x6c8a2c9913bfd782eb2aeac0ec18416eabc0070808c34afe6efbe2edfa9cd74f}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:36.327990Z DEBUG StfBlueprint::apply_slot{context=Node da_height=108}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7a80f6c6a343e65056fcf875e887d2e0c72672be548bc21437901a864e2f88a3098d3df0a12d6f1323642f7bab651dad9348b5aa849276b2a3e774d978de85e6 next_version=108 sesssion_starting_time=260.388µs +2026-04-20T15:33:36.335521Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1822980 cycles +2026-04-20T15:33:36.338311Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [109, 216, 100, 62, 100, 127, 225, 88, 83, 249, 19, 77, 228, 85, 26, 161, 225, 238, 162, 6, 171, 210, 27, 54, 232, 27, 28, 39, 87, 239, 16, 241, 84, 14, 8, 21, 247, 131, 39, 134, 78, 24, 183, 111, 156, 70, 161, 42, 48, 146, 49, 255, 137, 105, 107, 112, 195, 215, 17, 49, 30, 72, 157, 66, 106, 130, 140, 229, 164, 104, 148, 184, 105, 9, 37, 155, 196, 233, 254, 58, 148, 112, 28, 240, 220, 128, 177, 130, 70, 113, 223, 240, 47, 108, 106, 161, 4, 212, 9, 215, 26, 38, 6, 122, 91, 5, 201, 212, 89, 145, 73, 92, 88, 122, 239, 51, 154, 162, 238, 30, 212, 224, 180, 228, 28, 29, 73, 93, 78, 126, 109, 41, 5, 79, 177, 131, 193, 255, 85, 4, 1, 127, 207, 238, 24, 228, 202, 2, 194, 98, 208, 0, 13, 51, 115, 4, 40, 229, 2, 169, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:33:36.338370Z DEBUG StfBlueprint::apply_slot{context=Node da_height=108}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=0f3e610cee196cc34155c4617c50d3cc7e57d190935f426ecb1a24c5bc14022770ef652f946c73c9a93bfd00f9afa206f31dbf9ffe75f821075f8c1032d861d2 next_version=108 time=11.734594ms accesses_build_time=1.081813ms finishing_session_time=10.236184ms +2026-04-20T15:33:36.339676Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="7a80f6c6a343e65056fcf875e887d2e0c72672be548bc21437901a864e2f88a3098d3df0a12d6f1323642f7bab651dad9348b5aa849276b2a3e774d978de85e6" next_state_root="0f3e610cee196cc34155c4617c50d3cc7e57d190935f426ecb1a24c5bc14022770ef652f946c73c9a93bfd00f9afa206f31dbf9ffe75f821075f8c1032d861d2" aggregated_proofs=1 proof_receipts=1 +2026-04-20T15:33:36.345310Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 108, latest_finalized_slot_number: 108, sync_status: Syncing { synced_da_height: 107, target_da_height: 108 }, .. } +2026-04-20T15:33:36.346718Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=104 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 108, latest_finalized_slot_number: 108, sync_status: Syncing { synced_da_height: 107, target_da_height: 108 }, .. } +2026-04-20T15:33:36.347710Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=104 +2026-04-20T15:33:36.350421Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:33:36.351403Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=100 +2026-04-20T15:33:36.353202Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=105 +2026-04-20T15:33:36.354184Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:33:36.355896Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=105 sequence_number=114 +2026-04-20T15:33:36.356211Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=114 blob_id=2147897556341226333278486122965322632 visible_slot_number_after_increase=105 visible_slots_to_advance=1 +2026-04-20T15:33:36.356217Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:36.357107Z DEBUG sov_stf_runner::runner: Block execution complete time=3.021774686s +2026-04-20T15:33:36.357191Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:33:36.359457Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:33:36.360210Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:33:36.360620Z DEBUG compute_state_update{scope="sequencer" rollup_height=105 slot_number=105}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:33:36.360969Z DEBUG compute_state_update{scope="sequencer" rollup_height=105 slot_number=105}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0f3e610cee196cc34155c4617c50d3cc7e57d190935f426ecb1a24c5bc14022770ef652f946c73c9a93bfd00f9afa206f31dbf9ffe75f821075f8c1032d861d2 next_version=109 sesssion_starting_time=356.158µs +2026-04-20T15:33:36.363464Z DEBUG manage_blob_submission_inside_task{blob_id=2147897556341226333278486122965322632 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x7bac01d6fcbf2643335ca1cf8fadca471204c733d3c6d1ab7275b364413cafe0 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=109 include_at=109 bytes=13 time=1.61025ms +2026-04-20T15:33:36.366713Z DEBUG compute_state_update{scope="sequencer" rollup_height=105 slot_number=105}: sov_state::nomt::prover_storage: computed next state root state_root=2b586a142e17260976cc615e9e66a2078f638ec6f0d25aa012ab404d45fcd4763b3a1e846a468450ce4205b29f7d41af30baf54c2882fdc0997f6145d0f67e09 next_version=109 time=6.501388ms accesses_build_time=393.338µs finishing_session_time=5.651003ms +2026-04-20T15:33:36.833877Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VI5x3vNeTwec-i8qV7000A==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:33:36.872475Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:33:36.883812Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1785148 cycles +2026-04-20T15:33:36.886588Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [115, 215, 121, 15, 63, 155, 165, 174, 170, 245, 155, 50, 138, 133, 244, 68, 115, 58, 6, 164, 29, 111, 157, 145, 236, 50, 2, 201, 52, 90, 14, 105, 67, 192, 84, 211, 245, 183, 178, 190, 74, 93, 109, 46, 135, 65, 58, 237, 222, 191, 143, 3, 216, 194, 250, 155, 109, 135, 87, 1, 234, 117, 83, 247, 109, 159, 31, 135, 26, 199, 102, 2, 240, 110, 21, 219, 177, 102, 176, 92, 49, 145, 90, 5, 82, 90, 14, 41, 24, 40, 111, 129, 90, 86, 150, 105, 65, 225, 230, 105, 73, 93, 228, 190, 177, 9, 97, 242, 132, 244, 138, 144, 115, 165, 202, 74, 50, 221, 107, 103, 28, 199, 205, 161, 90, 249, 4, 38, 149, 195, 183, 7, 134, 155, 184, 221, 121, 240, 42, 178, 221, 214, 75, 36, 35, 192, 31, 33, 250, 114, 153, 243, 141, 64, 108, 119, 3, 22, 8, 224, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:33:37.026156Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:33:37.026239Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:33:37.570541Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:33:37.570616Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:33:39.293602Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=109 prev_hash=0x8f6993e61d853bc6614921ade29c424311ae9adb1abd3132b279e4325273d670 hash=0x4245052fe8ec837dd4bb7b7302dcee42369435423743a622c4f7d13c019cb0f8 producing_time=3.413188ms +2026-04-20T15:33:39.299622Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=109 current_state_root="0f3e610cee196cc34155c4617c50d3cc7e57d190935f426ecb1a24c5bc14022770ef652f946c73c9a93bfd00f9afa206f31dbf9ffe75f821075f8c1032d861d2" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x7bac01d6fcbf2643335ca1cf8fadca471204c733d3c6d1ab7275b364413cafe0"] proof_blobs=[] +2026-04-20T15:33:39.308007Z DEBUG StfBlueprint::apply_slot{context=Node da_height=109}: sov_chain_state: Setting next visible slot number next_visible_slot_number=105 +2026-04-20T15:33:39.313832Z DEBUG StfBlueprint::apply_slot{context=Node da_height=109}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x7bac01d6fcbf2643335ca1cf8fadca471204c733d3c6d1ab7275b364413cafe0}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:39.315993Z DEBUG StfBlueprint::apply_slot{context=Node da_height=109}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0f3e610cee196cc34155c4617c50d3cc7e57d190935f426ecb1a24c5bc14022770ef652f946c73c9a93bfd00f9afa206f31dbf9ffe75f821075f8c1032d861d2 next_version=109 sesssion_starting_time=258.078µs +2026-04-20T15:33:39.323903Z DEBUG StfBlueprint::apply_slot{context=Node da_height=109}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2b586a142e17260976cc615e9e66a2078f638ec6f0d25aa012ab404d45fcd4764897279a9be2e023a4568f57a5e26872d25dfd9cb579c986a9c6c9e45b7a467b next_version=109 time=8.953432ms accesses_build_time=774.145µs finishing_session_time=7.75262ms +2026-04-20T15:33:39.325172Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="0f3e610cee196cc34155c4617c50d3cc7e57d190935f426ecb1a24c5bc14022770ef652f946c73c9a93bfd00f9afa206f31dbf9ffe75f821075f8c1032d861d2" next_state_root="2b586a142e17260976cc615e9e66a2078f638ec6f0d25aa012ab404d45fcd4764897279a9be2e023a4568f57a5e26872d25dfd9cb579c986a9c6c9e45b7a467b" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:33:39.329724Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 109, latest_finalized_slot_number: 109, sync_status: Syncing { synced_da_height: 108, target_da_height: 109 }, .. } +2026-04-20T15:33:39.331109Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=105 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 109, latest_finalized_slot_number: 109, sync_status: Syncing { synced_da_height: 108, target_da_height: 109 }, .. } +2026-04-20T15:33:39.332132Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=105 +2026-04-20T15:33:39.334913Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:33:39.335943Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=101 +2026-04-20T15:33:39.337797Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=106 +2026-04-20T15:33:39.338707Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:33:39.340564Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=106 sequence_number=115 +2026-04-20T15:33:39.340838Z DEBUG sov_stf_runner::runner: Block execution complete time=2.983662473s +2026-04-20T15:33:39.340907Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:33:39.340874Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:39.340941Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=115 blob_id=2147897559949859227115362683799267167 visible_slot_number_after_increase=106 visible_slots_to_advance=1 +2026-04-20T15:33:39.343519Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:33:39.344260Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:33:39.345031Z DEBUG compute_state_update{scope="sequencer" rollup_height=106 slot_number=106}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:33:39.345400Z DEBUG compute_state_update{scope="sequencer" rollup_height=106 slot_number=106}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2b586a142e17260976cc615e9e66a2078f638ec6f0d25aa012ab404d45fcd4764897279a9be2e023a4568f57a5e26872d25dfd9cb579c986a9c6c9e45b7a467b next_version=110 sesssion_starting_time=376.827µs +2026-04-20T15:33:39.347624Z DEBUG manage_blob_submission_inside_task{blob_id=2147897559949859227115362683799267167 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xf5b33c66ce96869f648d54c50ed5ea22492195cb52e3d26ebabfa3edf8f48d37 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=110 include_at=110 bytes=13 time=1.613669ms +2026-04-20T15:33:39.350992Z DEBUG compute_state_update{scope="sequencer" rollup_height=106 slot_number=106}: sov_state::nomt::prover_storage: computed next state root state_root=77bd78bf0bf4f6de90a166a6aacf608841cae7a21aabc20f0cf4e9de561307be28df01e08178274c93f620a7662e1c9bbde3b75ee9613f6f0083fde78503accd next_version=110 time=6.365609ms accesses_build_time=388.528µs finishing_session_time=5.495014ms +2026-04-20T15:33:39.875586Z DEBUG sp1_core_executor_runner::native: CHILD sp1_sneUbxDKT0C4dqdTTYrHyg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:33:39.915832Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:33:39.927897Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1829315 cycles +2026-04-20T15:33:39.930686Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [30, 123, 8, 165, 228, 41, 23, 233, 47, 205, 73, 233, 122, 107, 166, 96, 105, 26, 215, 144, 205, 69, 244, 83, 127, 78, 73, 154, 212, 196, 114, 106, 59, 207, 254, 215, 81, 197, 75, 89, 75, 226, 74, 148, 31, 165, 234, 141, 222, 86, 24, 113, 104, 150, 154, 119, 211, 176, 78, 226, 53, 16, 60, 89, 114, 29, 194, 202, 140, 222, 99, 180, 146, 21, 198, 176, 254, 90, 78, 189, 106, 27, 229, 77, 23, 2, 142, 230, 236, 253, 82, 141, 131, 92, 208, 63, 32, 243, 173, 187, 62, 192, 174, 28, 168, 244, 126, 151, 179, 57, 233, 35, 174, 12, 186, 226, 237, 219, 171, 2, 180, 84, 239, 115, 163, 44, 208, 237, 128, 41, 74, 72, 169, 37, 49, 29, 140, 219, 92, 193, 224, 46, 74, 86, 135, 19, 60, 137, 40, 153, 47, 175, 128, 140, 251, 3, 58, 122, 196, 164, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:33:40.579183Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:33:40.579261Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:33:42.298699Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=110 prev_hash=0x4245052fe8ec837dd4bb7b7302dcee42369435423743a622c4f7d13c019cb0f8 hash=0xef54f117a578b3bc3afd2c769e0c39e6e3436ad33a5b315f4a6e6003ac9b48b9 producing_time=3.23875ms +2026-04-20T15:33:42.303687Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=110 current_state_root="2b586a142e17260976cc615e9e66a2078f638ec6f0d25aa012ab404d45fcd4764897279a9be2e023a4568f57a5e26872d25dfd9cb579c986a9c6c9e45b7a467b" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf5b33c66ce96869f648d54c50ed5ea22492195cb52e3d26ebabfa3edf8f48d37"] proof_blobs=[] +2026-04-20T15:33:42.312528Z DEBUG StfBlueprint::apply_slot{context=Node da_height=110}: sov_chain_state: Setting next visible slot number next_visible_slot_number=106 +2026-04-20T15:33:42.318857Z DEBUG StfBlueprint::apply_slot{context=Node da_height=110}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xf5b33c66ce96869f648d54c50ed5ea22492195cb52e3d26ebabfa3edf8f48d37}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:42.321224Z DEBUG StfBlueprint::apply_slot{context=Node da_height=110}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2b586a142e17260976cc615e9e66a2078f638ec6f0d25aa012ab404d45fcd4764897279a9be2e023a4568f57a5e26872d25dfd9cb579c986a9c6c9e45b7a467b next_version=110 sesssion_starting_time=327.848µs +2026-04-20T15:33:42.329043Z DEBUG StfBlueprint::apply_slot{context=Node da_height=110}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=77bd78bf0bf4f6de90a166a6aacf608841cae7a21aabc20f0cf4e9de561307be7cecbfb3b8f981fb9a1923d188e2489c8c31d91d36f59bd224a319e17a27b5e6 next_version=110 time=8.946472ms accesses_build_time=786.854µs finishing_session_time=7.67526ms +2026-04-20T15:33:42.330386Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2b586a142e17260976cc615e9e66a2078f638ec6f0d25aa012ab404d45fcd4764897279a9be2e023a4568f57a5e26872d25dfd9cb579c986a9c6c9e45b7a467b" next_state_root="77bd78bf0bf4f6de90a166a6aacf608841cae7a21aabc20f0cf4e9de561307be7cecbfb3b8f981fb9a1923d188e2489c8c31d91d36f59bd224a319e17a27b5e6" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:33:42.334273Z DEBUG sov_stf_runner::runner: Block execution complete time=2.993376041s +2026-04-20T15:33:42.334412Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:33:42.335197Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 110, latest_finalized_slot_number: 109, sync_status: Syncing { synced_da_height: 109, target_da_height: 110 }, .. } +2026-04-20T15:33:42.336613Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=106 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 110, latest_finalized_slot_number: 109, sync_status: Syncing { synced_da_height: 109, target_da_height: 110 }, .. } +2026-04-20T15:33:42.336761Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:33:42.337440Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:33:42.337587Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=106 +2026-04-20T15:33:42.340278Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:33:42.341263Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=102 +2026-04-20T15:33:42.343089Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=107 +2026-04-20T15:33:42.344076Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:33:42.345666Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=107 sequence_number=116 +2026-04-20T15:33:42.345934Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:42.345975Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=116 blob_id=2147897563582700832369010586543498522 visible_slot_number_after_increase=107 visible_slots_to_advance=1 +2026-04-20T15:33:42.350452Z DEBUG compute_state_update{scope="sequencer" rollup_height=107 slot_number=107}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77bd78bf0bf4f6de90a166a6aacf608841cae7a21aabc20f0cf4e9de561307be7cecbfb3b8f981fb9a1923d188e2489c8c31d91d36f59bd224a319e17a27b5e6 next_version=111 sesssion_starting_time=294.178µs +2026-04-20T15:33:42.353514Z DEBUG manage_blob_submission_inside_task{blob_id=2147897563582700832369010586543498522 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xb7b891ba3cc27a387fd1d192e7ca5f0064f95b6be30fe72150eb52f76ebab863 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=111 include_at=111 bytes=13 time=1.790258ms +2026-04-20T15:33:42.356374Z DEBUG compute_state_update{scope="sequencer" rollup_height=107 slot_number=107}: sov_state::nomt::prover_storage: computed next state root state_root=208efdd309c87b15a8677260d8b787baef515c8753355b94754b724feb86adbc367f1a6d72deec6471090db704bf47f05c397081dc8ebea8c291d73354c4d602 next_version=111 time=6.603218ms accesses_build_time=377.768µs finishing_session_time=5.797643ms +2026-04-20T15:33:42.821460Z DEBUG sp1_core_executor_runner::native: CHILD sp1_y6vZ1ZLYQhSz2sZApE57jA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:33:42.859575Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:33:42.871760Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1782881 cycles +2026-04-20T15:33:42.874468Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [45, 123, 178, 51, 149, 114, 185, 118, 79, 23, 101, 198, 182, 173, 128, 157, 171, 212, 55, 253, 179, 114, 160, 16, 52, 21, 192, 0, 213, 96, 174, 150, 52, 180, 186, 246, 51, 82, 179, 52, 36, 246, 225, 230, 42, 37, 249, 62, 64, 239, 202, 168, 139, 238, 250, 126, 214, 58, 51, 178, 71, 244, 45, 13, 55, 197, 189, 10, 240, 6, 249, 11, 182, 33, 93, 233, 133, 169, 133, 28, 240, 147, 154, 187, 68, 66, 208, 246, 202, 69, 43, 107, 53, 185, 220, 202, 126, 224, 90, 127, 249, 74, 143, 41, 23, 61, 153, 24, 161, 171, 141, 113, 248, 66, 39, 105, 223, 38, 34, 31, 246, 40, 132, 54, 114, 108, 65, 37, 50, 201, 250, 163, 194, 181, 17, 64, 63, 113, 40, 116, 128, 224, 144, 198, 222, 207, 227, 226, 125, 196, 114, 216, 212, 47, 81, 187, 117, 191, 136, 230, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:33:43.500368Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:33:43.500442Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:33:45.303580Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=111 prev_hash=0xef54f117a578b3bc3afd2c769e0c39e6e3436ad33a5b315f4a6e6003ac9b48b9 hash=0x5d8319f6ad8903489061b1166da96d9a4f76bbcde701c826663caafccf5cbb5f producing_time=3.719256ms +2026-04-20T15:33:45.306837Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=111 current_state_root="77bd78bf0bf4f6de90a166a6aacf608841cae7a21aabc20f0cf4e9de561307be7cecbfb3b8f981fb9a1923d188e2489c8c31d91d36f59bd224a319e17a27b5e6" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xb7b891ba3cc27a387fd1d192e7ca5f0064f95b6be30fe72150eb52f76ebab863"] proof_blobs=[] +2026-04-20T15:33:45.314653Z DEBUG StfBlueprint::apply_slot{context=Node da_height=111}: sov_chain_state: Setting next visible slot number next_visible_slot_number=107 +2026-04-20T15:33:45.320491Z DEBUG StfBlueprint::apply_slot{context=Node da_height=111}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xb7b891ba3cc27a387fd1d192e7ca5f0064f95b6be30fe72150eb52f76ebab863}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:45.322623Z DEBUG StfBlueprint::apply_slot{context=Node da_height=111}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=77bd78bf0bf4f6de90a166a6aacf608841cae7a21aabc20f0cf4e9de561307be7cecbfb3b8f981fb9a1923d188e2489c8c31d91d36f59bd224a319e17a27b5e6 next_version=111 sesssion_starting_time=318.218µs +2026-04-20T15:33:45.330644Z DEBUG StfBlueprint::apply_slot{context=Node da_height=111}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=208efdd309c87b15a8677260d8b787baef515c8753355b94754b724feb86adbc48c06bc6b6487a9a29d6531e03ace3f09ce029475e87f42c386a889f601471dc next_version=111 time=9.104161ms accesses_build_time=753.725µs finishing_session_time=7.895269ms +2026-04-20T15:33:45.331919Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2b586a142e17260976cc615e9e66a2078f638ec6f0d25aa012ab404d45fcd4764897279a9be2e023a4568f57a5e26872d25dfd9cb579c986a9c6c9e45b7a467b" next_state_root="208efdd309c87b15a8677260d8b787baef515c8753355b94754b724feb86adbc48c06bc6b6487a9a29d6531e03ace3f09ce029475e87f42c386a889f601471dc" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:33:45.336379Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 111, latest_finalized_slot_number: 110, sync_status: Syncing { synced_da_height: 110, target_da_height: 111 }, .. } +2026-04-20T15:33:45.337780Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=107 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 111, latest_finalized_slot_number: 110, sync_status: Syncing { synced_da_height: 110, target_da_height: 111 }, .. } +2026-04-20T15:33:45.338750Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=107 +2026-04-20T15:33:45.341437Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:33:45.342427Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=103 +2026-04-20T15:33:45.344254Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=108 +2026-04-20T15:33:45.345228Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:33:45.347018Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=108 sequence_number=117 +2026-04-20T15:33:45.347282Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=117 blob_id=2147897567210674485447290784706452733 visible_slot_number_after_increase=108 visible_slots_to_advance=1 +2026-04-20T15:33:45.347383Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:45.348209Z DEBUG sov_stf_runner::runner: Block execution complete time=3.013830358s +2026-04-20T15:33:45.348283Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:33:45.351138Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:33:45.351739Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:33:45.351961Z DEBUG compute_state_update{scope="sequencer" rollup_height=108 slot_number=108}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:33:45.352276Z DEBUG compute_state_update{scope="sequencer" rollup_height=108 slot_number=108}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=208efdd309c87b15a8677260d8b787baef515c8753355b94754b724feb86adbc48c06bc6b6487a9a29d6531e03ace3f09ce029475e87f42c386a889f601471dc next_version=112 sesssion_starting_time=331.707µs +2026-04-20T15:33:45.354921Z DEBUG manage_blob_submission_inside_task{blob_id=2147897567210674485447290784706452733 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xec5f1e3663139aaa212bfb548104227284ee3e88c0db48a1c1c1ad68032e5748 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=112 include_at=112 bytes=13 time=1.608979ms +2026-04-20T15:33:45.358243Z DEBUG compute_state_update{scope="sequencer" rollup_height=108 slot_number=108}: sov_state::nomt::prover_storage: computed next state root state_root=4e2a77238a3a17ad3be2d9e04c8d5aa85f7f63b8eb8b6e8f8c505982f06d790c5076188d5c3a6d551d6ad0d4065f50aa4445c2124dd5ce520b02d1d4e5ba9816 next_version=112 time=6.684967ms accesses_build_time=380.308µs finishing_session_time=5.852462ms +2026-04-20T15:33:45.813290Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TWt9VhoaQqKlkNrGL4gzUg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:33:45.852215Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:33:45.864908Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1801133 cycles +2026-04-20T15:33:45.868130Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [13, 168, 122, 152, 36, 226, 56, 233, 97, 204, 143, 58, 105, 246, 71, 174, 65, 233, 90, 29, 110, 143, 84, 135, 110, 95, 122, 77, 136, 235, 160, 206, 88, 201, 27, 129, 128, 111, 12, 170, 152, 190, 32, 219, 49, 211, 1, 141, 89, 56, 73, 208, 2, 186, 247, 93, 191, 134, 32, 92, 255, 101, 107, 248, 23, 99, 99, 112, 6, 211, 209, 113, 124, 146, 149, 99, 174, 66, 127, 163, 189, 152, 32, 110, 69, 144, 19, 55, 108, 39, 191, 70, 44, 250, 104, 70, 88, 123, 26, 38, 200, 125, 204, 242, 217, 140, 130, 194, 246, 249, 228, 142, 223, 208, 221, 158, 192, 239, 60, 72, 211, 229, 250, 228, 53, 142, 65, 227, 201, 249, 236, 137, 94, 5, 127, 151, 66, 47, 157, 119, 105, 63, 127, 84, 193, 32, 252, 145, 150, 250, 66, 171, 25, 161, 48, 155, 179, 180, 51, 135, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:33:46.507366Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:33:46.507453Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:33:48.307735Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=112 prev_hash=0x5d8319f6ad8903489061b1166da96d9a4f76bbcde701c826663caafccf5cbb5f hash=0xab0a8db2372e88221db9c51eb96411657a1cf269aa871880756573fddf84fe24 producing_time=2.664383ms +2026-04-20T15:33:48.310826Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=112 current_state_root="208efdd309c87b15a8677260d8b787baef515c8753355b94754b724feb86adbc48c06bc6b6487a9a29d6531e03ace3f09ce029475e87f42c386a889f601471dc" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xec5f1e3663139aaa212bfb548104227284ee3e88c0db48a1c1c1ad68032e5748"] proof_blobs=[] +2026-04-20T15:33:48.319127Z DEBUG StfBlueprint::apply_slot{context=Node da_height=112}: sov_chain_state: Setting next visible slot number next_visible_slot_number=108 +2026-04-20T15:33:48.325560Z DEBUG StfBlueprint::apply_slot{context=Node da_height=112}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xec5f1e3663139aaa212bfb548104227284ee3e88c0db48a1c1c1ad68032e5748}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:48.327738Z DEBUG StfBlueprint::apply_slot{context=Node da_height=112}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=208efdd309c87b15a8677260d8b787baef515c8753355b94754b724feb86adbc48c06bc6b6487a9a29d6531e03ace3f09ce029475e87f42c386a889f601471dc next_version=112 sesssion_starting_time=264.058µs +2026-04-20T15:33:48.336580Z DEBUG StfBlueprint::apply_slot{context=Node da_height=112}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4e2a77238a3a17ad3be2d9e04c8d5aa85f7f63b8eb8b6e8f8c505982f06d790c48ca5db05833c8a3cb822820286533abf84934e6fe57ac64412cc4aaf38fdb65 next_version=112 time=9.908946ms accesses_build_time=789.685µs finishing_session_time=8.707784ms +2026-04-20T15:33:48.337980Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="77bd78bf0bf4f6de90a166a6aacf608841cae7a21aabc20f0cf4e9de561307be7cecbfb3b8f981fb9a1923d188e2489c8c31d91d36f59bd224a319e17a27b5e6" next_state_root="4e2a77238a3a17ad3be2d9e04c8d5aa85f7f63b8eb8b6e8f8c505982f06d790c48ca5db05833c8a3cb822820286533abf84934e6fe57ac64412cc4aaf38fdb65" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:33:48.342750Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 112, latest_finalized_slot_number: 111, sync_status: Syncing { synced_da_height: 111, target_da_height: 112 }, .. } +2026-04-20T15:33:48.344133Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=108 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 112, latest_finalized_slot_number: 111, sync_status: Syncing { synced_da_height: 111, target_da_height: 112 }, .. } +2026-04-20T15:33:48.345071Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=108 +2026-04-20T15:33:48.347627Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:33:48.348599Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=104 +2026-04-20T15:33:48.350407Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=109 +2026-04-20T15:33:48.351310Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:33:48.352978Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=109 sequence_number=118 +2026-04-20T15:33:48.353242Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=118 blob_id=2147897570844663625200599103163121401 visible_slot_number_after_increase=109 visible_slots_to_advance=1 +2026-04-20T15:33:48.353242Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:48.353766Z DEBUG sov_stf_runner::runner: Block execution complete time=3.005496902s +2026-04-20T15:33:48.353815Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:33:48.356424Z DEBUG compute_state_update{scope="sequencer" rollup_height=109 slot_number=109}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:33:48.356556Z DEBUG compute_state_update{scope="sequencer" rollup_height=109 slot_number=109}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4e2a77238a3a17ad3be2d9e04c8d5aa85f7f63b8eb8b6e8f8c505982f06d790c48ca5db05833c8a3cb822820286533abf84934e6fe57ac64412cc4aaf38fdb65 next_version=113 sesssion_starting_time=135.989µs +2026-04-20T15:33:48.356644Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:33:48.357434Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:33:48.359915Z DEBUG manage_blob_submission_inside_task{blob_id=2147897570844663625200599103163121401 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xcebbb760b5f3ba3ec04c2bc4221c0b5a454bac4f574f0006bc35b6496adfc0ff sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=113 include_at=113 bytes=13 time=1.53679ms +2026-04-20T15:33:48.361184Z DEBUG compute_state_update{scope="sequencer" rollup_height=109 slot_number=109}: sov_state::nomt::prover_storage: computed next state root state_root=055ed07102eb63a01a1a5f961f14342acade313fa71cd60cc37b4f567cc9466e27cd844f2e94c0cf0d3c9bfe8523a6b72c5d0aa78a78fb9d331d7ac2da7e6db2 next_version=113 time=4.925788ms accesses_build_time=158.329µs finishing_session_time=4.58526ms +2026-04-20T15:33:48.870100Z DEBUG sp1_core_executor_runner::native: CHILD sp1_JCeHb8E6SpSxiu9LqnYfTQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:33:48.907882Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:33:48.920272Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1761919 cycles +2026-04-20T15:33:48.922440Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [104, 22, 93, 192, 5, 158, 29, 191, 165, 88, 154, 22, 131, 74, 85, 246, 93, 174, 25, 63, 221, 227, 17, 202, 252, 179, 16, 227, 224, 243, 211, 159, 37, 238, 171, 34, 178, 35, 7, 187, 131, 36, 50, 48, 231, 42, 234, 99, 7, 45, 30, 203, 129, 191, 215, 222, 87, 178, 189, 18, 164, 114, 40, 174, 120, 128, 2, 38, 243, 135, 102, 118, 9, 75, 195, 248, 215, 16, 138, 167, 79, 107, 24, 55, 83, 130, 228, 237, 241, 58, 99, 4, 119, 30, 57, 86, 94, 133, 169, 23, 202, 124, 99, 201, 20, 107, 250, 46, 110, 105, 64, 70, 125, 190, 70, 168, 74, 254, 52, 23, 61, 59, 232, 210, 79, 229, 182, 136, 109, 215, 95, 50, 105, 43, 97, 32, 9, 105, 202, 155, 81, 245, 232, 211, 20, 178, 85, 126, 244, 47, 153, 203, 102, 242, 64, 44, 92, 199, 199, 158, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:33:49.548947Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:33:49.549027Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:33:51.312311Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=113 prev_hash=0xab0a8db2372e88221db9c51eb96411657a1cf269aa871880756573fddf84fe24 hash=0xed93273b312d18b3060efc025b014ac658c162768bdc8b0f7c7533f7ffd259fd producing_time=3.119189ms +2026-04-20T15:33:51.316473Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=113 current_state_root="4e2a77238a3a17ad3be2d9e04c8d5aa85f7f63b8eb8b6e8f8c505982f06d790c48ca5db05833c8a3cb822820286533abf84934e6fe57ac64412cc4aaf38fdb65" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xcebbb760b5f3ba3ec04c2bc4221c0b5a454bac4f574f0006bc35b6496adfc0ff"] proof_blobs=[] +2026-04-20T15:33:51.324480Z DEBUG StfBlueprint::apply_slot{context=Node da_height=113}: sov_chain_state: Setting next visible slot number next_visible_slot_number=109 +2026-04-20T15:33:51.330533Z DEBUG StfBlueprint::apply_slot{context=Node da_height=113}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xcebbb760b5f3ba3ec04c2bc4221c0b5a454bac4f574f0006bc35b6496adfc0ff}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:51.332634Z DEBUG StfBlueprint::apply_slot{context=Node da_height=113}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4e2a77238a3a17ad3be2d9e04c8d5aa85f7f63b8eb8b6e8f8c505982f06d790c48ca5db05833c8a3cb822820286533abf84934e6fe57ac64412cc4aaf38fdb65 next_version=113 sesssion_starting_time=240.429µs +2026-04-20T15:33:51.340673Z DEBUG StfBlueprint::apply_slot{context=Node da_height=113}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=055ed07102eb63a01a1a5f961f14342acade313fa71cd60cc37b4f567cc9466e6df7e5b400ac9356be9dc46bef0d50359a2271b2c363c39e422a19ccce585a69 next_version=113 time=9.070492ms accesses_build_time=780.175µs finishing_session_time=7.907639ms +2026-04-20T15:33:51.342053Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="208efdd309c87b15a8677260d8b787baef515c8753355b94754b724feb86adbc48c06bc6b6487a9a29d6531e03ace3f09ce029475e87f42c386a889f601471dc" next_state_root="055ed07102eb63a01a1a5f961f14342acade313fa71cd60cc37b4f567cc9466e6df7e5b400ac9356be9dc46bef0d50359a2271b2c363c39e422a19ccce585a69" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:33:51.346908Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 113, latest_finalized_slot_number: 112, sync_status: Syncing { synced_da_height: 112, target_da_height: 113 }, .. } +2026-04-20T15:33:51.348708Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=109 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 113, latest_finalized_slot_number: 112, sync_status: Syncing { synced_da_height: 112, target_da_height: 113 }, .. } +2026-04-20T15:33:51.349817Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=109 +2026-04-20T15:33:51.352295Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:33:51.353274Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=105 +2026-04-20T15:33:51.355077Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=110 +2026-04-20T15:33:51.356001Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:33:51.357508Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=110 sequence_number=119 +2026-04-20T15:33:51.357774Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:51.357811Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=119 blob_id=2147897574477538563915105299753068402 visible_slot_number_after_increase=110 visible_slots_to_advance=1 +2026-04-20T15:33:51.362347Z DEBUG compute_state_update{scope="sequencer" rollup_height=110 slot_number=110}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:33:51.362664Z DEBUG compute_state_update{scope="sequencer" rollup_height=110 slot_number=110}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=055ed07102eb63a01a1a5f961f14342acade313fa71cd60cc37b4f567cc9466e6df7e5b400ac9356be9dc46bef0d50359a2271b2c363c39e422a19ccce585a69 next_version=114 sesssion_starting_time=345.438µs +2026-04-20T15:33:51.362983Z DEBUG sov_stf_runner::runner: Block execution complete time=3.009170778s +2026-04-20T15:33:51.363089Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:33:51.365349Z DEBUG manage_blob_submission_inside_task{blob_id=2147897574477538563915105299753068402 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xf4c02dac08631f3d039b9b42382d8cd7ab154bac92b0ac365ffdd27eb308c481 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=114 include_at=114 bytes=13 time=1.742729ms +2026-04-20T15:33:51.367628Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:33:51.368380Z DEBUG compute_state_update{scope="sequencer" rollup_height=110 slot_number=110}: sov_state::nomt::prover_storage: computed next state root state_root=3b290bdb9c00f0f79b388a7d329d44540db2d1f2860bf578c58388be0e6cd90668f4d141057adea125f1b2c84a4b666aee29c35a7e128d02f35e04779ca463c6 next_version=114 time=6.581677ms accesses_build_time=495.086µs finishing_session_time=5.580304ms +2026-04-20T15:33:51.368758Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:33:51.827907Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wq6cy6otSRKHI5Ptgdyaxg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:33:51.867954Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:33:51.879927Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1863490 cycles +2026-04-20T15:33:51.882572Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [31, 182, 104, 19, 224, 215, 152, 168, 128, 122, 187, 134, 217, 246, 35, 228, 150, 162, 104, 171, 252, 203, 201, 249, 176, 250, 131, 241, 225, 187, 30, 171, 62, 46, 253, 253, 83, 109, 190, 204, 111, 161, 235, 227, 105, 37, 48, 233, 252, 186, 79, 170, 88, 70, 163, 98, 34, 106, 70, 98, 182, 190, 228, 47, 7, 15, 6, 89, 183, 15, 126, 4, 103, 54, 0, 229, 204, 70, 121, 37, 53, 253, 181, 148, 140, 32, 106, 45, 227, 58, 94, 191, 13, 68, 201, 209, 32, 224, 192, 207, 198, 59, 62, 129, 222, 163, 43, 80, 124, 243, 237, 67, 68, 124, 86, 48, 102, 207, 50, 23, 247, 27, 0, 172, 57, 240, 60, 204, 240, 198, 146, 41, 53, 60, 168, 60, 239, 52, 21, 136, 220, 203, 115, 227, 175, 171, 1, 128, 134, 192, 91, 245, 193, 80, 96, 135, 112, 6, 227, 139, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:33:52.539345Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:33:52.539423Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:33:54.316973Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=114 prev_hash=0xed93273b312d18b3060efc025b014ac658c162768bdc8b0f7c7533f7ffd259fd hash=0x0ed68bec932a116655260dff63e97863921bc0b2684142b383d0e32a9bb2a2cd producing_time=3.313719ms +2026-04-20T15:33:54.326145Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=114 current_state_root="055ed07102eb63a01a1a5f961f14342acade313fa71cd60cc37b4f567cc9466e6df7e5b400ac9356be9dc46bef0d50359a2271b2c363c39e422a19ccce585a69" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf4c02dac08631f3d039b9b42382d8cd7ab154bac92b0ac365ffdd27eb308c481"] proof_blobs=[] +2026-04-20T15:33:54.334840Z DEBUG StfBlueprint::apply_slot{context=Node da_height=114}: sov_chain_state: Setting next visible slot number next_visible_slot_number=110 +2026-04-20T15:33:54.341423Z DEBUG StfBlueprint::apply_slot{context=Node da_height=114}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xf4c02dac08631f3d039b9b42382d8cd7ab154bac92b0ac365ffdd27eb308c481}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:54.343691Z DEBUG StfBlueprint::apply_slot{context=Node da_height=114}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=055ed07102eb63a01a1a5f961f14342acade313fa71cd60cc37b4f567cc9466e6df7e5b400ac9356be9dc46bef0d50359a2271b2c363c39e422a19ccce585a69 next_version=114 sesssion_starting_time=272.259µs +2026-04-20T15:33:54.351422Z DEBUG StfBlueprint::apply_slot{context=Node da_height=114}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3b290bdb9c00f0f79b388a7d329d44540db2d1f2860bf578c58388be0e6cd90647985302b86a3cd959075416b596366198d04983f5e42478987dc622d8724cb9 next_version=114 time=8.805313ms accesses_build_time=790.945µs finishing_session_time=7.572201ms +2026-04-20T15:33:54.352873Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4e2a77238a3a17ad3be2d9e04c8d5aa85f7f63b8eb8b6e8f8c505982f06d790c48ca5db05833c8a3cb822820286533abf84934e6fe57ac64412cc4aaf38fdb65" next_state_root="3b290bdb9c00f0f79b388a7d329d44540db2d1f2860bf578c58388be0e6cd90647985302b86a3cd959075416b596366198d04983f5e42478987dc622d8724cb9" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:33:54.357432Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 114, latest_finalized_slot_number: 114, sync_status: Syncing { synced_da_height: 113, target_da_height: 114 }, .. } +2026-04-20T15:33:54.358848Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=110 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 114, latest_finalized_slot_number: 114, sync_status: Syncing { synced_da_height: 113, target_da_height: 114 }, .. } +2026-04-20T15:33:54.359792Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=110 +2026-04-20T15:33:54.362406Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:33:54.363376Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=106 +2026-04-20T15:33:54.365187Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=111 +2026-04-20T15:33:54.366141Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:33:54.367678Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=111 sequence_number=120 +2026-04-20T15:33:54.367961Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=120 blob_id=2147897578116369549916800200169559214 visible_slot_number_after_increase=111 visible_slots_to_advance=1 +2026-04-20T15:33:54.367950Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:54.375362Z DEBUG manage_blob_submission_inside_task{blob_id=2147897578116369549916800200169559214 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x0d7de044ac95e35cb125c5ea445405c68d68b506930d956c548a3dfc1f545a91 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=115 include_at=115 bytes=13 time=1.619059ms +2026-04-20T15:33:54.376593Z DEBUG compute_state_update{scope="sequencer" rollup_height=111 slot_number=111}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:33:54.376661Z DEBUG compute_state_update{scope="sequencer" rollup_height=111 slot_number=111}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:33:54.376912Z DEBUG sov_stf_runner::runner: Block execution complete time=3.013842868s +2026-04-20T15:33:54.376964Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:33:54.376940Z DEBUG compute_state_update{scope="sequencer" rollup_height=111 slot_number=111}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3b290bdb9c00f0f79b388a7d329d44540db2d1f2860bf578c58388be0e6cd90647985302b86a3cd959075416b596366198d04983f5e42478987dc622d8724cb9 next_version=115 sesssion_starting_time=4.57517ms +2026-04-20T15:33:54.379216Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:33:54.379767Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:33:54.382696Z DEBUG compute_state_update{scope="sequencer" rollup_height=111 slot_number=111}: sov_state::nomt::prover_storage: computed next state root state_root=206e31cf39643778b8c1ce37738a2fcf13a6714759c3ad66b491141fb8051a7f6f0a485e8c6d4c3f05b5b7ed3cc6fe991ae47154a6ff5d0d994c370422d31f31 next_version=115 time=10.75466ms accesses_build_time=410.128µs finishing_session_time=5.647704ms +2026-04-20T15:33:54.860356Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qd30_wdSRRWVGl7yEOxlOw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:33:54.927665Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:33:54.941226Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4193670 cycles +2026-04-20T15:33:54.943979Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [122, 128, 246, 198, 163, 67, 230, 80, 86, 252, 248, 117, 232, 135, 210, 224, 199, 38, 114, 190, 84, 139, 194, 20, 55, 144, 26, 134, 78, 47, 136, 163, 9, 141, 61, 240, 161, 45, 111, 19, 35, 100, 47, 123, 171, 101, 29, 173, 147, 72, 181, 170, 132, 146, 118, 178, 163, 231, 116, 217, 120, 222, 133, 230, 86, 79, 132, 10, 228, 141, 173, 29, 22, 61, 105, 48, 25, 97, 11, 109, 165, 13, 149, 149, 246, 32, 234, 55, 91, 20, 81, 34, 159, 152, 66, 34, 48, 6, 143, 155, 141, 70, 18, 94, 82, 83, 90, 243, 206, 24, 157, 127, 38, 124, 89, 183, 79, 155, 193, 117, 154, 9, 247, 213, 251, 83, 141, 196, 143, 105, 147, 230, 29, 133, 59, 198, 97, 73, 33, 173, 226, 156, 66, 67, 17, 174, 154, 219, 26, 189, 49, 50, 178, 121, 228, 50, 82, 115, 214, 112, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:33:56.408217Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:33:56.408297Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:33:57.321489Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=115 prev_hash=0x0ed68bec932a116655260dff63e97863921bc0b2684142b383d0e32a9bb2a2cd hash=0xe92ee4aa5330f30a5492245a1413b9421a79f6750338efb3929aa940d19862fb producing_time=3.311118ms +2026-04-20T15:33:57.329893Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=115 current_state_root="3b290bdb9c00f0f79b388a7d329d44540db2d1f2860bf578c58388be0e6cd90647985302b86a3cd959075416b596366198d04983f5e42478987dc622d8724cb9" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0d7de044ac95e35cb125c5ea445405c68d68b506930d956c548a3dfc1f545a91"] proof_blobs=[] +2026-04-20T15:33:57.338280Z DEBUG StfBlueprint::apply_slot{context=Node da_height=115}: sov_chain_state: Setting next visible slot number next_visible_slot_number=111 +2026-04-20T15:33:57.344411Z DEBUG StfBlueprint::apply_slot{context=Node da_height=115}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x0d7de044ac95e35cb125c5ea445405c68d68b506930d956c548a3dfc1f545a91}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:57.346653Z DEBUG StfBlueprint::apply_slot{context=Node da_height=115}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3b290bdb9c00f0f79b388a7d329d44540db2d1f2860bf578c58388be0e6cd90647985302b86a3cd959075416b596366198d04983f5e42478987dc622d8724cb9 next_version=115 sesssion_starting_time=235.249µs +2026-04-20T15:33:57.354559Z DEBUG StfBlueprint::apply_slot{context=Node da_height=115}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=206e31cf39643778b8c1ce37738a2fcf13a6714759c3ad66b491141fb8051a7f64c83a676e657d44e932277d1d9336a30210e1465eb4fa8d5fb6e033bcd16df1 next_version=115 time=8.941673ms accesses_build_time=782.115µs finishing_session_time=7.77186ms +2026-04-20T15:33:57.355845Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3b290bdb9c00f0f79b388a7d329d44540db2d1f2860bf578c58388be0e6cd90647985302b86a3cd959075416b596366198d04983f5e42478987dc622d8724cb9" next_state_root="206e31cf39643778b8c1ce37738a2fcf13a6714759c3ad66b491141fb8051a7f64c83a676e657d44e932277d1d9336a30210e1465eb4fa8d5fb6e033bcd16df1" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:33:57.360371Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 115, latest_finalized_slot_number: 115, sync_status: Syncing { synced_da_height: 114, target_da_height: 115 }, .. } +2026-04-20T15:33:57.361772Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=111 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 115, latest_finalized_slot_number: 115, sync_status: Syncing { synced_da_height: 114, target_da_height: 115 }, .. } +2026-04-20T15:33:57.362765Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=111 +2026-04-20T15:33:57.365510Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:33:57.366558Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=107 +2026-04-20T15:33:57.368367Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=112 +2026-04-20T15:33:57.369280Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:33:57.370846Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=112 sequence_number=121 +2026-04-20T15:33:57.371138Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:33:57.371215Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=121 blob_id=2147897581746744530409628100928135456 visible_slot_number_after_increase=112 visible_slots_to_advance=1 +2026-04-20T15:33:57.372672Z DEBUG sov_stf_runner::runner: Block execution complete time=2.995716545s +2026-04-20T15:33:57.372752Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:33:57.375123Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:33:57.375395Z DEBUG compute_state_update{scope="sequencer" rollup_height=112 slot_number=112}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:33:57.375718Z DEBUG compute_state_update{scope="sequencer" rollup_height=112 slot_number=112}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=206e31cf39643778b8c1ce37738a2fcf13a6714759c3ad66b491141fb8051a7f64c83a676e657d44e932277d1d9336a30210e1465eb4fa8d5fb6e033bcd16df1 next_version=116 sesssion_starting_time=328.398µs +2026-04-20T15:33:57.375889Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:33:57.378678Z DEBUG manage_blob_submission_inside_task{blob_id=2147897581746744530409628100928135456 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x5e7c48e77f107a3cd6b3a30a7039d43fbea8f9c2540a11231da76d3dde74759a sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=116 include_at=116 bytes=13 time=1.789968ms +2026-04-20T15:33:57.381329Z DEBUG compute_state_update{scope="sequencer" rollup_height=112 slot_number=112}: sov_state::nomt::prover_storage: computed next state root state_root=2537a4050349ebf6735afc30c599834ce2d109021ff5fe5c64a6975cba0a1f3404535d7a946ad68c326b8011f338fa751c4b1f9dc822660fa895eb2c3d70c84b next_version=116 time=6.329299ms accesses_build_time=406.658µs finishing_session_time=5.447365ms +2026-04-20T15:33:57.840946Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1roCngGySp6Dj-gmU_UbMQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:33:57.880739Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:33:57.893063Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1830618 cycles +2026-04-20T15:33:57.895846Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [15, 62, 97, 12, 238, 25, 108, 195, 65, 85, 196, 97, 124, 80, 211, 204, 126, 87, 209, 144, 147, 95, 66, 110, 203, 26, 36, 197, 188, 20, 2, 39, 112, 239, 101, 47, 148, 108, 115, 201, 169, 59, 253, 0, 249, 175, 162, 6, 243, 29, 191, 159, 254, 117, 248, 33, 7, 95, 140, 16, 50, 216, 97, 210, 57, 232, 59, 169, 103, 156, 182, 170, 232, 200, 229, 158, 171, 192, 65, 207, 7, 189, 116, 42, 150, 31, 63, 226, 188, 38, 12, 90, 217, 221, 130, 95, 90, 74, 50, 129, 188, 253, 27, 2, 96, 215, 215, 221, 58, 126, 68, 133, 64, 124, 198, 52, 99, 47, 198, 145, 87, 255, 43, 100, 207, 189, 163, 11, 66, 69, 5, 47, 232, 236, 131, 125, 212, 187, 123, 115, 2, 220, 238, 66, 54, 148, 53, 66, 55, 67, 166, 34, 196, 247, 209, 60, 1, 156, 176, 248, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:33:58.542597Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:33:58.542679Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:34:00.327256Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=116 prev_hash=0xe92ee4aa5330f30a5492245a1413b9421a79f6750338efb3929aa940d19862fb hash=0x665206ddb2e2f0057993d7bd225b9b11dfc245b8ca970d0e14fff651afea4c42 producing_time=3.422818ms +2026-04-20T15:34:00.335475Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=116 current_state_root="206e31cf39643778b8c1ce37738a2fcf13a6714759c3ad66b491141fb8051a7f64c83a676e657d44e932277d1d9336a30210e1465eb4fa8d5fb6e033bcd16df1" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x5e7c48e77f107a3cd6b3a30a7039d43fbea8f9c2540a11231da76d3dde74759a"] proof_blobs=[] +2026-04-20T15:34:00.344447Z DEBUG StfBlueprint::apply_slot{context=Node da_height=116}: sov_chain_state: Setting next visible slot number next_visible_slot_number=112 +2026-04-20T15:34:00.350812Z DEBUG StfBlueprint::apply_slot{context=Node da_height=116}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x5e7c48e77f107a3cd6b3a30a7039d43fbea8f9c2540a11231da76d3dde74759a}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:00.353114Z DEBUG StfBlueprint::apply_slot{context=Node da_height=116}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=206e31cf39643778b8c1ce37738a2fcf13a6714759c3ad66b491141fb8051a7f64c83a676e657d44e932277d1d9336a30210e1465eb4fa8d5fb6e033bcd16df1 next_version=116 sesssion_starting_time=321.388µs +2026-04-20T15:34:00.360925Z DEBUG StfBlueprint::apply_slot{context=Node da_height=116}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2537a4050349ebf6735afc30c599834ce2d109021ff5fe5c64a6975cba0a1f34300e6c32f15ff0933b5193c90a01efca038c02061730506dc57168a2c4a2b57a next_version=116 time=8.920332ms accesses_build_time=776.375µs finishing_session_time=7.68007ms +2026-04-20T15:34:00.362200Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="206e31cf39643778b8c1ce37738a2fcf13a6714759c3ad66b491141fb8051a7f64c83a676e657d44e932277d1d9336a30210e1465eb4fa8d5fb6e033bcd16df1" next_state_root="2537a4050349ebf6735afc30c599834ce2d109021ff5fe5c64a6975cba0a1f34300e6c32f15ff0933b5193c90a01efca038c02061730506dc57168a2c4a2b57a" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:34:00.366871Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 116, latest_finalized_slot_number: 116, sync_status: Synced { synced_da_height: 115 }, .. } +2026-04-20T15:34:00.368359Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=112 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 116, latest_finalized_slot_number: 116, sync_status: Synced { synced_da_height: 115 }, .. } +2026-04-20T15:34:00.369336Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=112 +2026-04-20T15:34:00.371963Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:34:00.372936Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=108 +2026-04-20T15:34:00.374952Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=113 +2026-04-20T15:34:00.376084Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:34:00.377503Z DEBUG sov_stf_runner::runner: Block execution complete time=3.004765977s +2026-04-20T15:34:00.377551Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:34:00.377903Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=113 sequence_number=122 +2026-04-20T15:34:00.378194Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:00.378249Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=122 blob_id=2147897585382006034334191314356303379 visible_slot_number_after_increase=113 visible_slots_to_advance=1 +2026-04-20T15:34:00.382605Z DEBUG compute_state_update{scope="sequencer" rollup_height=113 slot_number=113}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:34:00.382943Z DEBUG compute_state_update{scope="sequencer" rollup_height=113 slot_number=113}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2537a4050349ebf6735afc30c599834ce2d109021ff5fe5c64a6975cba0a1f34300e6c32f15ff0933b5193c90a01efca038c02061730506dc57168a2c4a2b57a next_version=117 sesssion_starting_time=337.968µs +2026-04-20T15:34:00.385570Z DEBUG manage_blob_submission_inside_task{blob_id=2147897585382006034334191314356303379 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xe0909f913cc9efd14a891c10472b8d7b4fd035d27fbf4fb91432572482c64b4f sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=117 include_at=117 bytes=13 time=1.813728ms +2026-04-20T15:34:00.388620Z DEBUG compute_state_update{scope="sequencer" rollup_height=113 slot_number=113}: sov_state::nomt::prover_storage: computed next state root state_root=4c2d1b8644bbb34320a73eb374cd63c30451539eefc6e0a1679abb76ab4ef68b254ae389c9ebcc8d0b0a27f2115900c3ad75b72b332b1a6e8e5f1a614421fcd7 next_version=117 time=6.431578ms accesses_build_time=402.077µs finishing_session_time=5.544764ms +2026-04-20T15:34:00.871863Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bf0LoUKjTsG0Z8GguePNnA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:34:00.911195Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:34:00.924961Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1795898 cycles +2026-04-20T15:34:00.927720Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [43, 88, 106, 20, 46, 23, 38, 9, 118, 204, 97, 94, 158, 102, 162, 7, 143, 99, 142, 198, 240, 210, 90, 160, 18, 171, 64, 77, 69, 252, 212, 118, 72, 151, 39, 154, 155, 226, 224, 35, 164, 86, 143, 87, 165, 226, 104, 114, 210, 93, 253, 156, 181, 121, 201, 134, 169, 198, 201, 228, 91, 122, 70, 123, 120, 207, 196, 179, 141, 206, 186, 116, 72, 224, 165, 237, 177, 63, 18, 80, 61, 120, 170, 228, 251, 255, 87, 168, 171, 145, 124, 44, 250, 101, 125, 250, 76, 12, 55, 244, 176, 126, 188, 148, 50, 250, 251, 70, 17, 227, 150, 95, 123, 248, 38, 196, 1, 63, 118, 182, 67, 33, 81, 102, 212, 221, 47, 15, 239, 84, 241, 23, 165, 120, 179, 188, 58, 253, 44, 118, 158, 12, 57, 230, 227, 67, 106, 211, 58, 91, 49, 95, 74, 110, 96, 3, 172, 155, 72, 185, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:34:01.562655Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:34:01.562737Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:34:01.627248Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:34:01.877532Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:34:01.879788Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2607482 cycles +2026-04-20T15:34:01.880185Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [101, 0, 0, 0, 0, 0, 0, 0, 110, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 109, 216, 100, 62, 100, 127, 225, 88, 83, 249, 19, 77, 228, 85, 26, 161, 225, 238, 162, 6, 171, 210, 27, 54, 232, 27, 28, 39, 87, 239, 16, 241, 84, 14, 8, 21, 247, 131, 39, 134, 78, 24, 183, 111, 156, 70, 161, 42, 48, 146, 49, 255, 137, 105, 107, 112, 195, 215, 17, 49, 30, 72, 157, 66, 120, 207, 196, 179, 141, 206, 186, 116, 72, 224, 165, 237, 177, 63, 18, 80, 61, 120, 170, 228, 251, 255, 87, 168, 171, 145, 124, 44, 250, 101, 125, 250, 76, 12, 55, 244, 176, 126, 188, 148, 50, 250, 251, 70, 17, 227, 150, 95, 123, 248, 38, 196, 1, 63, 118, 182, 67, 33, 81, 102, 212, 221, 47, 15, 78, 126, 109, 41, 5, 79, 177, 131, 193, 255, 85, 4, 1, 127, 207, 238, 24, 228, 202, 2, 194, 98, 208, 0, 13, 51, 115, 4, 40, 229, 2, 169, 239, 84, 241, 23, 165, 120, 179, 188, 58, 253, 44, 118, 158, 12, 57, 230, 227, 67, 106, 211, 58, 91, 49, 95, 74, 110, 96, 3, 172, 155, 72, 185, 32, 0, 0, 0, 0, 0, 0, 0, 33, 87, 226, 242, 39, 49, 250, 210, 41, 143, 26, 188, 101, 19, 12, 136, 43, 105, 121, 236, 80, 118, 108, 155, 63, 154, 215, 73, 15, 107, 27, 67, 32, 0, 0, 0, 0, 0, 0, 0, 54, 246, 123, 188, 67, 61, 237, 103, 16, 229, 5, 146, 113, 8, 178, 215, 95, 95, 151, 239, 106, 28, 10, 135, 55, 55, 208, 95, 86, 190, 27, 9, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:34:02.846419Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:34:02.846496Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:34:02.847401Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=1951 +2026-04-20T15:34:02.849920Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:34:02.850463Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:34:02.850870Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=123 blob_id=2147897588368050187305306436652511433 +2026-04-20T15:34:03.331664Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=117 prev_hash=0x665206ddb2e2f0057993d7bd225b9b11dfc245b8ca970d0e14fff651afea4c42 hash=0x90ae7b210109fd9876ed948e0ec19fc2b31078ffaa44e0974b4fcbf53ad2c0f7 producing_time=3.288568ms +2026-04-20T15:34:03.341146Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=117 current_state_root="2537a4050349ebf6735afc30c599834ce2d109021ff5fe5c64a6975cba0a1f34300e6c32f15ff0933b5193c90a01efca038c02061730506dc57168a2c4a2b57a" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe0909f913cc9efd14a891c10472b8d7b4fd035d27fbf4fb91432572482c64b4f"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa0a245f056c20b3f01d6f64ae413f662fab415794f667f595ff666bff35c1cad, len=2001"] +2026-04-20T15:34:03.349741Z DEBUG StfBlueprint::apply_slot{context=Node da_height=117}: sov_chain_state: Setting next visible slot number next_visible_slot_number=113 +2026-04-20T15:34:03.355955Z DEBUG StfBlueprint::apply_slot{context=Node da_height=117}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xe0909f913cc9efd14a891c10472b8d7b4fd035d27fbf4fb91432572482c64b4f}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:03.358389Z DEBUG StfBlueprint::apply_slot{context=Node da_height=117}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2537a4050349ebf6735afc30c599834ce2d109021ff5fe5c64a6975cba0a1f34300e6c32f15ff0933b5193c90a01efca038c02061730506dc57168a2c4a2b57a next_version=117 sesssion_starting_time=247.628µs +2026-04-20T15:34:03.366209Z DEBUG StfBlueprint::apply_slot{context=Node da_height=117}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4c2d1b8644bbb34320a73eb374cd63c30451539eefc6e0a1679abb76ab4ef68b78767a84e092a39c1bc3a4801e10f55c1562e3762950daa0ccbca46205a7011b next_version=117 time=9.034861ms accesses_build_time=947.354µs finishing_session_time=7.685551ms +2026-04-20T15:34:03.367508Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2537a4050349ebf6735afc30c599834ce2d109021ff5fe5c64a6975cba0a1f34300e6c32f15ff0933b5193c90a01efca038c02061730506dc57168a2c4a2b57a" next_state_root="4c2d1b8644bbb34320a73eb374cd63c30451539eefc6e0a1679abb76ab4ef68b78767a84e092a39c1bc3a4801e10f55c1562e3762950daa0ccbca46205a7011b" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:34:03.372505Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 117, latest_finalized_slot_number: 117, sync_status: Synced { synced_da_height: 116 }, .. } +2026-04-20T15:34:03.373955Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=113 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 117, latest_finalized_slot_number: 117, sync_status: Synced { synced_da_height: 116 }, .. } +2026-04-20T15:34:03.374910Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=113 +2026-04-20T15:34:03.377588Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:34:03.378525Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=109 +2026-04-20T15:34:03.380335Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=114 +2026-04-20T15:34:03.381220Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:34:03.382801Z DEBUG sov_stf_runner::runner: Block execution complete time=3.005256974s +2026-04-20T15:34:03.382858Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:34:03.385187Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:34:03.385389Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 101. Final slot number 110 +2026-04-20T15:34:03.385920Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:34:03.385979Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=114 sequence_number=124 +2026-04-20T15:34:03.386197Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:03.386277Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=124 blob_id=2147897589018433687185998490641367339 visible_slot_number_after_increase=114 visible_slots_to_advance=1 +2026-04-20T15:34:03.390348Z DEBUG compute_state_update{scope="sequencer" rollup_height=114 slot_number=114}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:34:03.390690Z DEBUG compute_state_update{scope="sequencer" rollup_height=114 slot_number=114}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4c2d1b8644bbb34320a73eb374cd63c30451539eefc6e0a1679abb76ab4ef68b78767a84e092a39c1bc3a4801e10f55c1562e3762950daa0ccbca46205a7011b next_version=118 sesssion_starting_time=349.088µs +2026-04-20T15:34:03.393417Z DEBUG manage_blob_submission_inside_task{blob_id=2147897589018433687185998490641367339 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x16434b7bb1d7a33cd9e9207afd23a3e37f401d5230ce246989f13bfbc616194d sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=118 include_at=118 bytes=13 time=1.767118ms +2026-04-20T15:34:03.396698Z DEBUG compute_state_update{scope="sequencer" rollup_height=114 slot_number=114}: sov_state::nomt::prover_storage: computed next state root state_root=2c2a5e5e9b5240ab7ffb6203a410555d8c7539aa0338d09466eaa9853512c33137d91e7fda48d0038aaf468d6715b1769d3e4ee472fd82afad1678979278807f next_version=118 time=6.856446ms accesses_build_time=479.437µs finishing_session_time=5.910042ms +2026-04-20T15:34:06.324162Z DEBUG sp1_core_executor_runner::native: CHILD sp1_8-Thjp9wRE2s5Q_PcRa4Fg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:34:06.336052Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=118 prev_hash=0x90ae7b210109fd9876ed948e0ec19fc2b31078ffaa44e0974b4fcbf53ad2c0f7 hash=0x0b5b7c3b6df75fed982d2071548cdef16d4e9f8e21555c8bf77f37d576293a57 producing_time=3.332969ms +2026-04-20T15:34:06.345215Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=118 current_state_root="4c2d1b8644bbb34320a73eb374cd63c30451539eefc6e0a1679abb76ab4ef68b78767a84e092a39c1bc3a4801e10f55c1562e3762950daa0ccbca46205a7011b" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x16434b7bb1d7a33cd9e9207afd23a3e37f401d5230ce246989f13bfbc616194d"] proof_blobs=[] +2026-04-20T15:34:06.354505Z DEBUG StfBlueprint::apply_slot{context=Node da_height=118}: sov_chain_state: Setting next visible slot number next_visible_slot_number=114 +2026-04-20T15:34:06.362544Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:34:06.371831Z DEBUG StfBlueprint::apply_slot{context=Node da_height=118}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 101. Final slot number 110 +2026-04-20T15:34:06.372294Z DEBUG StfBlueprint::apply_slot{context=Node da_height=118}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x16434b7bb1d7a33cd9e9207afd23a3e37f401d5230ce246989f13bfbc616194d}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:06.374527Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1782957 cycles +2026-04-20T15:34:06.374842Z DEBUG StfBlueprint::apply_slot{context=Node da_height=118}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4c2d1b8644bbb34320a73eb374cd63c30451539eefc6e0a1679abb76ab4ef68b78767a84e092a39c1bc3a4801e10f55c1562e3762950daa0ccbca46205a7011b next_version=118 sesssion_starting_time=309.818µs +2026-04-20T15:34:06.377233Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [119, 189, 120, 191, 11, 244, 246, 222, 144, 161, 102, 166, 170, 207, 96, 136, 65, 202, 231, 162, 26, 171, 194, 15, 12, 244, 233, 222, 86, 19, 7, 190, 124, 236, 191, 179, 184, 249, 129, 251, 154, 25, 35, 209, 136, 226, 72, 156, 140, 49, 217, 29, 54, 245, 155, 210, 36, 163, 25, 225, 122, 39, 181, 230, 8, 250, 91, 76, 121, 47, 143, 28, 21, 222, 122, 129, 157, 201, 104, 224, 107, 252, 47, 4, 247, 82, 31, 212, 65, 138, 237, 201, 73, 54, 225, 43, 79, 39, 245, 26, 62, 9, 154, 109, 240, 112, 73, 31, 252, 178, 194, 175, 112, 12, 216, 123, 225, 143, 1, 241, 51, 247, 106, 117, 39, 190, 62, 117, 93, 131, 25, 246, 173, 137, 3, 72, 144, 97, 177, 22, 109, 169, 109, 154, 79, 118, 187, 205, 231, 1, 200, 38, 102, 60, 170, 252, 207, 92, 187, 95, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:34:06.383615Z DEBUG StfBlueprint::apply_slot{context=Node da_height=118}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2c2a5e5e9b5240ab7ffb6203a410555d8c7539aa0338d09466eaa9853512c3314a23f7b4a19dcdaf410a8c7712b92737c6e08871d2715409c6e9be68f942346e next_version=118 time=10.156694ms accesses_build_time=1.057913ms finishing_session_time=8.657663ms +2026-04-20T15:34:06.384843Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4c2d1b8644bbb34320a73eb374cd63c30451539eefc6e0a1679abb76ab4ef68b78767a84e092a39c1bc3a4801e10f55c1562e3762950daa0ccbca46205a7011b" next_state_root="2c2a5e5e9b5240ab7ffb6203a410555d8c7539aa0338d09466eaa9853512c3314a23f7b4a19dcdaf410a8c7712b92737c6e08871d2715409c6e9be68f942346e" aggregated_proofs=1 proof_receipts=1 +2026-04-20T15:34:06.390250Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 118, latest_finalized_slot_number: 118, sync_status: Syncing { synced_da_height: 117, target_da_height: 118 }, .. } +2026-04-20T15:34:06.391647Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=114 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 118, latest_finalized_slot_number: 118, sync_status: Syncing { synced_da_height: 117, target_da_height: 118 }, .. } +2026-04-20T15:34:06.392538Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=114 +2026-04-20T15:34:06.394974Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:34:06.395905Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=110 +2026-04-20T15:34:06.397773Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=115 +2026-04-20T15:34:06.398900Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:34:06.400751Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=115 sequence_number=125 +2026-04-20T15:34:06.401058Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:06.401167Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=125 blob_id=2147897592663345603422958886341633486 visible_slot_number_after_increase=115 visible_slots_to_advance=1 +2026-04-20T15:34:06.405288Z DEBUG compute_state_update{scope="sequencer" rollup_height=115 slot_number=115}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:34:06.405619Z DEBUG compute_state_update{scope="sequencer" rollup_height=115 slot_number=115}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2c2a5e5e9b5240ab7ffb6203a410555d8c7539aa0338d09466eaa9853512c3314a23f7b4a19dcdaf410a8c7712b92737c6e08871d2715409c6e9be68f942346e next_version=119 sesssion_starting_time=435.668µs +2026-04-20T15:34:06.405658Z DEBUG sov_stf_runner::runner: Block execution complete time=3.02280918s +2026-04-20T15:34:06.405707Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:34:06.407991Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:34:06.408080Z DEBUG manage_blob_submission_inside_task{blob_id=2147897592663345603422958886341633486 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x9315ac1ed89ee8dfb86bd28552e042dc1f8e146400b12f0475be04c52b96fd5e sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=119 include_at=119 bytes=13 time=1.63186ms +2026-04-20T15:34:06.409230Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:34:06.411032Z DEBUG compute_state_update{scope="sequencer" rollup_height=115 slot_number=115}: sov_state::nomt::prover_storage: computed next state root state_root=5ed1ac670a3d34f79e4529ffeb8f7938ff6e387340d97b05055b63529448122920efcfa7cb8ab5c1dc1d7002a1691e66e3fd8f040e5719abbd2db253f6530214 next_version=119 time=6.224149ms accesses_build_time=365.278µs finishing_session_time=5.316406ms +2026-04-20T15:34:06.865389Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RvnU0J3RRRKTsis35PgySw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:34:06.905910Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:34:06.917727Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1854166 cycles +2026-04-20T15:34:06.920443Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [32, 142, 253, 211, 9, 200, 123, 21, 168, 103, 114, 96, 216, 183, 135, 186, 239, 81, 92, 135, 83, 53, 91, 148, 117, 75, 114, 79, 235, 134, 173, 188, 72, 192, 107, 198, 182, 72, 122, 154, 41, 214, 83, 30, 3, 172, 227, 240, 156, 224, 41, 71, 94, 135, 244, 44, 56, 106, 136, 159, 96, 20, 113, 220, 72, 111, 38, 41, 0, 14, 186, 69, 3, 2, 214, 7, 69, 36, 124, 251, 112, 196, 49, 202, 208, 250, 74, 180, 81, 140, 40, 117, 128, 150, 77, 184, 79, 25, 122, 250, 14, 121, 78, 22, 220, 121, 157, 119, 203, 96, 74, 230, 101, 168, 230, 74, 39, 215, 26, 196, 197, 65, 11, 165, 162, 254, 228, 224, 171, 10, 141, 178, 55, 46, 136, 34, 29, 185, 197, 30, 185, 100, 17, 101, 122, 28, 242, 105, 170, 135, 24, 128, 117, 101, 115, 253, 223, 132, 254, 36, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:34:07.058814Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:34:07.058895Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:34:07.624278Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:34:07.624370Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:34:09.340435Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=119 prev_hash=0x0b5b7c3b6df75fed982d2071548cdef16d4e9f8e21555c8bf77f37d576293a57 hash=0x44763ad11161203a7946810a306667e55004a67eae0f09863e7c4d4c8a8c9272 producing_time=3.278038ms +2026-04-20T15:34:09.348165Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=119 current_state_root="2c2a5e5e9b5240ab7ffb6203a410555d8c7539aa0338d09466eaa9853512c3314a23f7b4a19dcdaf410a8c7712b92737c6e08871d2715409c6e9be68f942346e" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9315ac1ed89ee8dfb86bd28552e042dc1f8e146400b12f0475be04c52b96fd5e"] proof_blobs=[] +2026-04-20T15:34:09.357185Z DEBUG StfBlueprint::apply_slot{context=Node da_height=119}: sov_chain_state: Setting next visible slot number next_visible_slot_number=115 +2026-04-20T15:34:09.363600Z DEBUG StfBlueprint::apply_slot{context=Node da_height=119}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x9315ac1ed89ee8dfb86bd28552e042dc1f8e146400b12f0475be04c52b96fd5e}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:09.365952Z DEBUG StfBlueprint::apply_slot{context=Node da_height=119}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2c2a5e5e9b5240ab7ffb6203a410555d8c7539aa0338d09466eaa9853512c3314a23f7b4a19dcdaf410a8c7712b92737c6e08871d2715409c6e9be68f942346e next_version=119 sesssion_starting_time=323.938µs +2026-04-20T15:34:09.373813Z DEBUG StfBlueprint::apply_slot{context=Node da_height=119}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=5ed1ac670a3d34f79e4529ffeb8f7938ff6e387340d97b05055b6352944812294c6ac62ba398a1cef187d075a279fea07efc31a2551442977233f934842e2316 next_version=119 time=8.978602ms accesses_build_time=781.335µs finishing_session_time=7.72609ms +2026-04-20T15:34:09.375183Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2c2a5e5e9b5240ab7ffb6203a410555d8c7539aa0338d09466eaa9853512c3314a23f7b4a19dcdaf410a8c7712b92737c6e08871d2715409c6e9be68f942346e" next_state_root="5ed1ac670a3d34f79e4529ffeb8f7938ff6e387340d97b05055b6352944812294c6ac62ba398a1cef187d075a279fea07efc31a2551442977233f934842e2316" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:34:09.379891Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 119, latest_finalized_slot_number: 119, sync_status: Syncing { synced_da_height: 118, target_da_height: 119 }, .. } +2026-04-20T15:34:09.381331Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=115 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 119, latest_finalized_slot_number: 119, sync_status: Syncing { synced_da_height: 118, target_da_height: 119 }, .. } +2026-04-20T15:34:09.382256Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=115 +2026-04-20T15:34:09.384851Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:34:09.385850Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=111 +2026-04-20T15:34:09.387754Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=116 +2026-04-20T15:34:09.388624Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:34:09.390190Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=116 sequence_number=126 +2026-04-20T15:34:09.390462Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=126 blob_id=2147897596278096080704373407412230562 visible_slot_number_after_increase=116 visible_slots_to_advance=1 +2026-04-20T15:34:09.390526Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:09.393893Z DEBUG sov_stf_runner::runner: Block execution complete time=2.988192285s +2026-04-20T15:34:09.393971Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:34:09.395702Z DEBUG compute_state_update{scope="sequencer" rollup_height=116 slot_number=116}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:34:09.396069Z DEBUG compute_state_update{scope="sequencer" rollup_height=116 slot_number=116}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5ed1ac670a3d34f79e4529ffeb8f7938ff6e387340d97b05055b6352944812294c6ac62ba398a1cef187d075a279fea07efc31a2551442977233f934842e2316 next_version=120 sesssion_starting_time=373.638µs +2026-04-20T15:34:09.396813Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:34:09.397511Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:34:09.399057Z DEBUG manage_blob_submission_inside_task{blob_id=2147897596278096080704373407412230562 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x95ca5fdbd1db7c6f70ba0c97f49b8abed665916384ee745ef2b14b3dfbd21989 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=120 include_at=120 bytes=13 time=1.706879ms +2026-04-20T15:34:09.402090Z DEBUG compute_state_update{scope="sequencer" rollup_height=116 slot_number=116}: sov_state::nomt::prover_storage: computed next state root state_root=2e7a1574f9f006fb218fbb333664ae4fc4728db3a02a99ef8317731538eb4d9f770f793b09d2b0a9bbfbff1cd86cad88dd3d28eb87ca4df61edcedf5db8efcae next_version=120 time=6.823275ms accesses_build_time=415.777µs finishing_session_time=5.903332ms +2026-04-20T15:34:09.902504Z DEBUG sp1_core_executor_runner::native: CHILD sp1_WyrYglBOR8KKiRBhtMnEpw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:34:09.942242Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:34:09.953664Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1827116 cycles +2026-04-20T15:34:09.956429Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [78, 42, 119, 35, 138, 58, 23, 173, 59, 226, 217, 224, 76, 141, 90, 168, 95, 127, 99, 184, 235, 139, 110, 143, 140, 80, 89, 130, 240, 109, 121, 12, 72, 202, 93, 176, 88, 51, 200, 163, 203, 130, 40, 32, 40, 101, 51, 171, 248, 73, 52, 230, 254, 87, 172, 100, 65, 44, 196, 170, 243, 143, 219, 101, 69, 159, 253, 222, 92, 153, 198, 200, 237, 107, 146, 159, 108, 58, 137, 52, 248, 89, 87, 69, 192, 253, 215, 71, 157, 199, 63, 56, 207, 31, 203, 15, 119, 45, 143, 216, 47, 8, 240, 14, 207, 169, 32, 59, 211, 29, 99, 124, 10, 50, 35, 199, 88, 18, 114, 251, 179, 91, 33, 117, 132, 110, 249, 154, 237, 147, 39, 59, 49, 45, 24, 179, 6, 14, 252, 2, 91, 1, 74, 198, 88, 193, 98, 118, 139, 220, 139, 15, 124, 117, 51, 247, 255, 210, 89, 253, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:34:10.599319Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:34:10.599388Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:34:12.346101Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=120 prev_hash=0x44763ad11161203a7946810a306667e55004a67eae0f09863e7c4d4c8a8c9272 hash=0xd89874802b6fa81ab25ce7cf11b96ab750843f745303756733df236c53ad2ba2 producing_time=2.832602ms +2026-04-20T15:34:12.357286Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=120 current_state_root="5ed1ac670a3d34f79e4529ffeb8f7938ff6e387340d97b05055b6352944812294c6ac62ba398a1cef187d075a279fea07efc31a2551442977233f934842e2316" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x95ca5fdbd1db7c6f70ba0c97f49b8abed665916384ee745ef2b14b3dfbd21989"] proof_blobs=[] +2026-04-20T15:34:12.366217Z DEBUG StfBlueprint::apply_slot{context=Node da_height=120}: sov_chain_state: Setting next visible slot number next_visible_slot_number=116 +2026-04-20T15:34:12.372651Z DEBUG StfBlueprint::apply_slot{context=Node da_height=120}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x95ca5fdbd1db7c6f70ba0c97f49b8abed665916384ee745ef2b14b3dfbd21989}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:12.374992Z DEBUG StfBlueprint::apply_slot{context=Node da_height=120}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5ed1ac670a3d34f79e4529ffeb8f7938ff6e387340d97b05055b6352944812294c6ac62ba398a1cef187d075a279fea07efc31a2551442977233f934842e2316 next_version=120 sesssion_starting_time=320.878µs +2026-04-20T15:34:12.383051Z DEBUG StfBlueprint::apply_slot{context=Node da_height=120}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e7a1574f9f006fb218fbb333664ae4fc4728db3a02a99ef8317731538eb4d9f18b51b43b27aca27dbd221b45a5cbdacddb259c0a08e604936ad6023179a69aa next_version=120 time=9.169241ms accesses_build_time=776.895µs finishing_session_time=7.927558ms +2026-04-20T15:34:12.384352Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="5ed1ac670a3d34f79e4529ffeb8f7938ff6e387340d97b05055b6352944812294c6ac62ba398a1cef187d075a279fea07efc31a2551442977233f934842e2316" next_state_root="2e7a1574f9f006fb218fbb333664ae4fc4728db3a02a99ef8317731538eb4d9f18b51b43b27aca27dbd221b45a5cbdacddb259c0a08e604936ad6023179a69aa" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:34:12.388109Z DEBUG sov_stf_runner::runner: Block execution complete time=2.994150256s +2026-04-20T15:34:12.388227Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:34:12.388898Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 120, latest_finalized_slot_number: 119, sync_status: Syncing { synced_da_height: 119, target_da_height: 120 }, .. } +2026-04-20T15:34:12.390278Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=116 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 120, latest_finalized_slot_number: 119, sync_status: Syncing { synced_da_height: 119, target_da_height: 120 }, .. } +2026-04-20T15:34:12.391116Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:34:12.391216Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=116 +2026-04-20T15:34:12.391763Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:34:12.393855Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:34:12.394827Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=112 +2026-04-20T15:34:12.396641Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=117 +2026-04-20T15:34:12.397544Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:34:12.399233Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=117 sequence_number=127 +2026-04-20T15:34:12.399502Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=127 blob_id=2147897599915738834821205535011096449 visible_slot_number_after_increase=117 visible_slots_to_advance=1 +2026-04-20T15:34:12.399554Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:12.404016Z DEBUG compute_state_update{scope="sequencer" rollup_height=117 slot_number=117}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e7a1574f9f006fb218fbb333664ae4fc4728db3a02a99ef8317731538eb4d9f18b51b43b27aca27dbd221b45a5cbdacddb259c0a08e604936ad6023179a69aa next_version=121 sesssion_starting_time=258.008µs +2026-04-20T15:34:12.406948Z DEBUG manage_blob_submission_inside_task{blob_id=2147897599915738834821205535011096449 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x3bddba3b471a4577e6568e2fc0e46b0bbf9fba6387850b02ca2133634dcde09a sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=121 include_at=121 bytes=13 time=1.714989ms +2026-04-20T15:34:12.410012Z DEBUG compute_state_update{scope="sequencer" rollup_height=117 slot_number=117}: sov_state::nomt::prover_storage: computed next state root state_root=6b4acddcf693e0d20d84c4ba040fd6066a3a4ffca3d96a4f740b9527b40d4c9c5c7a430fd5dc7cc7cc8a4bf25c07d6ced3a42e48c98a53ac3517895f5cd8ff0b next_version=121 time=6.630957ms accesses_build_time=370.008µs finishing_session_time=5.836052ms +2026-04-20T15:34:12.866093Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pMaZo98HThSLB5Jtk6yJbw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:34:12.904544Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:34:12.916895Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1782405 cycles +2026-04-20T15:34:12.919557Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [5, 94, 208, 113, 2, 235, 99, 160, 26, 26, 95, 150, 31, 20, 52, 42, 202, 222, 49, 63, 167, 28, 214, 12, 195, 123, 79, 86, 124, 201, 70, 110, 109, 247, 229, 180, 0, 172, 147, 86, 190, 157, 196, 107, 239, 13, 80, 53, 154, 34, 113, 178, 195, 99, 195, 158, 66, 42, 25, 204, 206, 88, 90, 105, 73, 135, 132, 253, 92, 141, 73, 220, 219, 54, 12, 114, 47, 223, 177, 247, 90, 90, 49, 105, 171, 233, 91, 251, 162, 174, 129, 23, 141, 243, 0, 11, 36, 93, 121, 138, 41, 88, 66, 9, 160, 164, 35, 223, 3, 239, 101, 90, 130, 106, 152, 58, 97, 35, 192, 88, 132, 74, 2, 20, 140, 90, 191, 231, 14, 214, 139, 236, 147, 42, 17, 102, 85, 38, 13, 255, 99, 233, 120, 99, 146, 27, 192, 178, 104, 65, 66, 179, 131, 208, 227, 42, 155, 178, 162, 205, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:34:13.549201Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:34:13.549285Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:34:15.350752Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=121 prev_hash=0xd89874802b6fa81ab25ce7cf11b96ab750843f745303756733df236c53ad2ba2 hash=0x3948cbd7622eaadd3d64d27bb5cad1fab6a18fb7b3db3d6a4c1344502b536cfe producing_time=3.13768ms +2026-04-20T15:34:15.360965Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=121 current_state_root="2e7a1574f9f006fb218fbb333664ae4fc4728db3a02a99ef8317731538eb4d9f18b51b43b27aca27dbd221b45a5cbdacddb259c0a08e604936ad6023179a69aa" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x3bddba3b471a4577e6568e2fc0e46b0bbf9fba6387850b02ca2133634dcde09a"] proof_blobs=[] +2026-04-20T15:34:15.369545Z DEBUG StfBlueprint::apply_slot{context=Node da_height=121}: sov_chain_state: Setting next visible slot number next_visible_slot_number=117 +2026-04-20T15:34:15.375902Z DEBUG StfBlueprint::apply_slot{context=Node da_height=121}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x3bddba3b471a4577e6568e2fc0e46b0bbf9fba6387850b02ca2133634dcde09a}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:15.378195Z DEBUG StfBlueprint::apply_slot{context=Node da_height=121}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e7a1574f9f006fb218fbb333664ae4fc4728db3a02a99ef8317731538eb4d9f18b51b43b27aca27dbd221b45a5cbdacddb259c0a08e604936ad6023179a69aa next_version=121 sesssion_starting_time=328.677µs +2026-04-20T15:34:15.385693Z DEBUG StfBlueprint::apply_slot{context=Node da_height=121}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6b4acddcf693e0d20d84c4ba040fd6066a3a4ffca3d96a4f740b9527b40d4c9c257ff93604e4b9d26e4d79c0811cb07dbc02e3a0b207d056dac30bf5267c4e3f next_version=121 time=8.636074ms accesses_build_time=797.095µs finishing_session_time=7.364622ms +2026-04-20T15:34:15.387048Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="5ed1ac670a3d34f79e4529ffeb8f7938ff6e387340d97b05055b6352944812294c6ac62ba398a1cef187d075a279fea07efc31a2551442977233f934842e2316" next_state_root="6b4acddcf693e0d20d84c4ba040fd6066a3a4ffca3d96a4f740b9527b40d4c9c257ff93604e4b9d26e4d79c0811cb07dbc02e3a0b207d056dac30bf5267c4e3f" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:34:15.391668Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 121, latest_finalized_slot_number: 120, sync_status: Syncing { synced_da_height: 120, target_da_height: 121 }, .. } +2026-04-20T15:34:15.393082Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=117 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 121, latest_finalized_slot_number: 120, sync_status: Syncing { synced_da_height: 120, target_da_height: 121 }, .. } +2026-04-20T15:34:15.394049Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=117 +2026-04-20T15:34:15.396717Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:34:15.397700Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=113 +2026-04-20T15:34:15.399541Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=118 +2026-04-20T15:34:15.400557Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:34:15.402033Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=118 sequence_number=128 +2026-04-20T15:34:15.402331Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:15.402431Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=128 blob_id=2147897603544884562824784905969551113 visible_slot_number_after_increase=118 visible_slots_to_advance=1 +2026-04-20T15:34:15.406107Z DEBUG sov_stf_runner::runner: Block execution complete time=3.017901803s +2026-04-20T15:34:15.406157Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:34:15.406656Z DEBUG compute_state_update{scope="sequencer" rollup_height=118 slot_number=118}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:34:15.406975Z DEBUG compute_state_update{scope="sequencer" rollup_height=118 slot_number=118}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6b4acddcf693e0d20d84c4ba040fd6066a3a4ffca3d96a4f740b9527b40d4c9c257ff93604e4b9d26e4d79c0811cb07dbc02e3a0b207d056dac30bf5267c4e3f next_version=122 sesssion_starting_time=329.528µs +2026-04-20T15:34:15.408812Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:34:15.409539Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:34:15.409641Z DEBUG manage_blob_submission_inside_task{blob_id=2147897603544884562824784905969551113 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x30830e36b5ba69f8c932db1c37d5be6a685326a13fef444f652bd83aca077c13 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=122 include_at=122 bytes=13 time=1.523451ms +2026-04-20T15:34:15.413007Z DEBUG compute_state_update{scope="sequencer" rollup_height=118 slot_number=118}: sov_state::nomt::prover_storage: computed next state root state_root=73ab633c9aea1680ee3dbe2c7202f7bb3e9023a77a3b5291e5fd51752e6cc0c45e71e69b76449bb0a1813fa0256deefedf6854e3620df0e0f54889f66ca802f7 next_version=122 time=6.759717ms accesses_build_time=388.248µs finishing_session_time=5.939602ms +2026-04-20T15:34:15.852915Z DEBUG sp1_core_executor_runner::native: CHILD sp1_7Y3QnuZDQxSvpvu2KGkFuw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:34:15.892811Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:34:15.905041Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1833638 cycles +2026-04-20T15:34:15.907818Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [59, 41, 11, 219, 156, 0, 240, 247, 155, 56, 138, 125, 50, 157, 68, 84, 13, 178, 209, 242, 134, 11, 245, 120, 197, 131, 136, 190, 14, 108, 217, 6, 71, 152, 83, 2, 184, 106, 60, 217, 89, 7, 84, 22, 181, 150, 54, 97, 152, 208, 73, 131, 245, 228, 36, 120, 152, 125, 198, 34, 216, 114, 76, 185, 41, 169, 131, 126, 93, 244, 161, 238, 181, 239, 39, 223, 50, 227, 134, 91, 156, 156, 48, 150, 62, 68, 46, 155, 63, 51, 41, 59, 195, 232, 175, 197, 56, 83, 118, 210, 184, 147, 89, 45, 128, 49, 191, 244, 138, 40, 94, 6, 96, 94, 108, 201, 167, 69, 125, 159, 167, 46, 142, 101, 50, 230, 108, 141, 233, 46, 228, 170, 83, 48, 243, 10, 84, 146, 36, 90, 20, 19, 185, 66, 26, 121, 246, 117, 3, 56, 239, 179, 146, 154, 169, 64, 209, 152, 98, 251, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:34:16.556039Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:34:16.556120Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:34:18.355377Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=122 prev_hash=0x3948cbd7622eaadd3d64d27bb5cad1fab6a18fb7b3db3d6a4c1344502b536cfe hash=0xa6c5afb445ca592a0dc9a2627e062078ff08daffb937b6e6c3d7217918995c7b producing_time=3.091191ms +2026-04-20T15:34:18.358607Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=122 current_state_root="6b4acddcf693e0d20d84c4ba040fd6066a3a4ffca3d96a4f740b9527b40d4c9c257ff93604e4b9d26e4d79c0811cb07dbc02e3a0b207d056dac30bf5267c4e3f" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x30830e36b5ba69f8c932db1c37d5be6a685326a13fef444f652bd83aca077c13"] proof_blobs=[] +2026-04-20T15:34:18.366949Z DEBUG StfBlueprint::apply_slot{context=Node da_height=122}: sov_chain_state: Setting next visible slot number next_visible_slot_number=118 +2026-04-20T15:34:18.373243Z DEBUG StfBlueprint::apply_slot{context=Node da_height=122}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x30830e36b5ba69f8c932db1c37d5be6a685326a13fef444f652bd83aca077c13}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:18.375531Z DEBUG StfBlueprint::apply_slot{context=Node da_height=122}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6b4acddcf693e0d20d84c4ba040fd6066a3a4ffca3d96a4f740b9527b40d4c9c257ff93604e4b9d26e4d79c0811cb07dbc02e3a0b207d056dac30bf5267c4e3f next_version=122 sesssion_starting_time=341.668µs +2026-04-20T15:34:18.383305Z DEBUG StfBlueprint::apply_slot{context=Node da_height=122}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=73ab633c9aea1680ee3dbe2c7202f7bb3e9023a77a3b5291e5fd51752e6cc0c412f5cd658b01e9486d63d74347a54576e19ff069f669d118dbb621c3b664d260 next_version=122 time=8.894532ms accesses_build_time=766.275µs finishing_session_time=7.638991ms +2026-04-20T15:34:18.384666Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e7a1574f9f006fb218fbb333664ae4fc4728db3a02a99ef8317731538eb4d9f18b51b43b27aca27dbd221b45a5cbdacddb259c0a08e604936ad6023179a69aa" next_state_root="73ab633c9aea1680ee3dbe2c7202f7bb3e9023a77a3b5291e5fd51752e6cc0c412f5cd658b01e9486d63d74347a54576e19ff069f669d118dbb621c3b664d260" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:34:18.389586Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 122, latest_finalized_slot_number: 121, sync_status: Syncing { synced_da_height: 121, target_da_height: 122 }, .. } +2026-04-20T15:34:18.391151Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=118 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 122, latest_finalized_slot_number: 121, sync_status: Syncing { synced_da_height: 121, target_da_height: 122 }, .. } +2026-04-20T15:34:18.392153Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=118 +2026-04-20T15:34:18.394911Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:34:18.395906Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=114 +2026-04-20T15:34:18.397761Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=119 +2026-04-20T15:34:18.398725Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:34:18.400202Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=119 sequence_number=129 +2026-04-20T15:34:18.400468Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=129 blob_id=2147897607170514725121274034146070423 visible_slot_number_after_increase=119 visible_slots_to_advance=1 +2026-04-20T15:34:18.400449Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:18.407551Z DEBUG manage_blob_submission_inside_task{blob_id=2147897607170514725121274034146070423 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x8459f7479635b7ff735d0437afc1ea5e905198e3529f2e5e7d17b02ec7154463 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=123 include_at=123 bytes=13 time=1.53856ms +2026-04-20T15:34:18.408073Z DEBUG compute_state_update{scope="sequencer" rollup_height=119 slot_number=119}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:34:18.408232Z DEBUG compute_state_update{scope="sequencer" rollup_height=119 slot_number=119}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=73ab633c9aea1680ee3dbe2c7202f7bb3e9023a77a3b5291e5fd51752e6cc0c412f5cd658b01e9486d63d74347a54576e19ff069f669d118dbb621c3b664d260 next_version=123 sesssion_starting_time=4.402682ms +2026-04-20T15:34:18.408577Z DEBUG sov_stf_runner::runner: Block execution complete time=3.002426972s +2026-04-20T15:34:18.408626Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:34:18.411479Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:34:18.412145Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:34:18.413399Z DEBUG compute_state_update{scope="sequencer" rollup_height=119 slot_number=119}: sov_state::nomt::prover_storage: computed next state root state_root=4bfd651c156255be578d25230cbb6538f5be573288555b71a9a85c4c92ba916f655efb1bd7366f88a24c8998e61ee38b5ceea3993a0dc295385bd81f2cfa0e6b next_version=123 time=9.728087ms accesses_build_time=159.039µs finishing_session_time=5.099026ms +2026-04-20T15:34:18.893576Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ggoGs_sLTuuCjgzNmIq9dA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:34:18.933682Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:34:18.945984Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1851382 cycles +2026-04-20T15:34:18.948725Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [32, 110, 49, 207, 57, 100, 55, 120, 184, 193, 206, 55, 115, 138, 47, 207, 19, 166, 113, 71, 89, 195, 173, 102, 180, 145, 20, 31, 184, 5, 26, 127, 100, 200, 58, 103, 110, 101, 125, 68, 233, 50, 39, 125, 29, 147, 54, 163, 2, 16, 225, 70, 94, 180, 250, 141, 95, 182, 224, 51, 188, 209, 109, 241, 58, 232, 234, 102, 32, 83, 78, 220, 160, 131, 99, 127, 31, 204, 37, 245, 91, 247, 102, 112, 3, 53, 97, 85, 18, 204, 174, 66, 73, 206, 21, 203, 83, 137, 140, 248, 170, 142, 156, 169, 8, 132, 209, 71, 205, 217, 21, 186, 176, 72, 200, 5, 222, 0, 113, 136, 59, 237, 7, 56, 152, 134, 15, 218, 102, 82, 6, 221, 178, 226, 240, 5, 121, 147, 215, 189, 34, 91, 155, 17, 223, 194, 69, 184, 202, 151, 13, 14, 20, 255, 246, 81, 175, 234, 76, 66, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:34:19.602386Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:34:19.602468Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:34:21.360173Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=123 prev_hash=0xa6c5afb445ca592a0dc9a2627e062078ff08daffb937b6e6c3d7217918995c7b hash=0x88066c2fc2ead351a837de1d831dfe22dad720a48593ef1dd75173759e6e9e98 producing_time=3.324688ms +2026-04-20T15:34:21.362097Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=123 current_state_root="73ab633c9aea1680ee3dbe2c7202f7bb3e9023a77a3b5291e5fd51752e6cc0c412f5cd658b01e9486d63d74347a54576e19ff069f669d118dbb621c3b664d260" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x8459f7479635b7ff735d0437afc1ea5e905198e3529f2e5e7d17b02ec7154463"] proof_blobs=[] +2026-04-20T15:34:21.370597Z DEBUG StfBlueprint::apply_slot{context=Node da_height=123}: sov_chain_state: Setting next visible slot number next_visible_slot_number=119 +2026-04-20T15:34:21.377081Z DEBUG StfBlueprint::apply_slot{context=Node da_height=123}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x8459f7479635b7ff735d0437afc1ea5e905198e3529f2e5e7d17b02ec7154463}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:21.379469Z DEBUG StfBlueprint::apply_slot{context=Node da_height=123}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=73ab633c9aea1680ee3dbe2c7202f7bb3e9023a77a3b5291e5fd51752e6cc0c412f5cd658b01e9486d63d74347a54576e19ff069f669d118dbb621c3b664d260 next_version=123 sesssion_starting_time=327.027µs +2026-04-20T15:34:21.387076Z DEBUG StfBlueprint::apply_slot{context=Node da_height=123}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4bfd651c156255be578d25230cbb6538f5be573288555b71a9a85c4c92ba916f04d799a1b75923bed374405974afca33eff6f262427753dd33af8cb9a03db264 next_version=123 time=8.713314ms accesses_build_time=767.206µs finishing_session_time=7.475761ms +2026-04-20T15:34:21.388429Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6b4acddcf693e0d20d84c4ba040fd6066a3a4ffca3d96a4f740b9527b40d4c9c257ff93604e4b9d26e4d79c0811cb07dbc02e3a0b207d056dac30bf5267c4e3f" next_state_root="4bfd651c156255be578d25230cbb6538f5be573288555b71a9a85c4c92ba916f04d799a1b75923bed374405974afca33eff6f262427753dd33af8cb9a03db264" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:34:21.393210Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 123, latest_finalized_slot_number: 122, sync_status: Syncing { synced_da_height: 122, target_da_height: 123 }, .. } +2026-04-20T15:34:21.394685Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=119 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 123, latest_finalized_slot_number: 122, sync_status: Syncing { synced_da_height: 122, target_da_height: 123 }, .. } +2026-04-20T15:34:21.395632Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=119 +2026-04-20T15:34:21.398242Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:34:21.399213Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=115 +2026-04-20T15:34:21.401027Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=120 +2026-04-20T15:34:21.401982Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:34:21.403664Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=120 sequence_number=130 +2026-04-20T15:34:21.403923Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:21.403962Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=130 blob_id=2147897610800919608649925503696406506 visible_slot_number_after_increase=120 visible_slots_to_advance=1 +2026-04-20T15:34:21.406645Z DEBUG sov_stf_runner::runner: Block execution complete time=2.998023231s +2026-04-20T15:34:21.406759Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:34:21.407697Z DEBUG compute_state_update{scope="sequencer" rollup_height=120 slot_number=120}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:34:21.407970Z DEBUG compute_state_update{scope="sequencer" rollup_height=120 slot_number=120}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4bfd651c156255be578d25230cbb6538f5be573288555b71a9a85c4c92ba916f04d799a1b75923bed374405974afca33eff6f262427753dd33af8cb9a03db264 next_version=124 sesssion_starting_time=284.639µs +2026-04-20T15:34:21.410532Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:34:21.410690Z DEBUG manage_blob_submission_inside_task{blob_id=2147897610800919608649925503696406506 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x6438298316e63f296b3e678d9c00d06985795f6d543923d62773d9023ae808f9 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=124 include_at=124 bytes=13 time=1.419241ms +2026-04-20T15:34:21.411685Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:34:21.413161Z DEBUG compute_state_update{scope="sequencer" rollup_height=120 slot_number=120}: sov_state::nomt::prover_storage: computed next state root state_root=26ee67de7c19d53264e256645489bb958771bceb44255e699406316c94c23dcc48b780b8bee8e90110da060e34d516df7920b0ff47c7c9d401235291eec1440b next_version=124 time=5.788003ms accesses_build_time=305.028µs finishing_session_time=5.119757ms +2026-04-20T15:34:21.881957Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BBLdW-3LRwWuc9SD77Qejw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:34:21.925381Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:34:21.938988Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1964253 cycles +2026-04-20T15:34:21.941771Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [37, 55, 164, 5, 3, 73, 235, 246, 115, 90, 252, 48, 197, 153, 131, 76, 226, 209, 9, 2, 31, 245, 254, 92, 100, 166, 151, 92, 186, 10, 31, 52, 48, 14, 108, 50, 241, 95, 240, 147, 59, 81, 147, 201, 10, 1, 239, 202, 3, 140, 2, 6, 23, 48, 80, 109, 197, 113, 104, 162, 196, 162, 181, 122, 119, 155, 13, 138, 100, 229, 185, 233, 186, 196, 122, 31, 138, 158, 239, 115, 104, 244, 140, 181, 161, 70, 228, 159, 157, 28, 13, 8, 143, 141, 150, 107, 121, 218, 76, 165, 107, 125, 153, 36, 127, 18, 230, 159, 212, 180, 198, 70, 240, 248, 212, 238, 94, 146, 216, 14, 251, 47, 243, 78, 53, 155, 83, 160, 144, 174, 123, 33, 1, 9, 253, 152, 118, 237, 148, 142, 14, 193, 159, 194, 179, 16, 120, 255, 170, 68, 224, 151, 75, 79, 203, 245, 58, 210, 192, 247, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:34:22.633893Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:34:22.633976Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:34:24.364587Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=124 prev_hash=0x88066c2fc2ead351a837de1d831dfe22dad720a48593ef1dd75173759e6e9e98 hash=0x3ad17b57e37f7da0754b36effc5fe554b21d503d448f4aeb159ff3b4e51ca3ed producing_time=3.374218ms +2026-04-20T15:34:24.369687Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=124 current_state_root="4bfd651c156255be578d25230cbb6538f5be573288555b71a9a85c4c92ba916f04d799a1b75923bed374405974afca33eff6f262427753dd33af8cb9a03db264" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x6438298316e63f296b3e678d9c00d06985795f6d543923d62773d9023ae808f9"] proof_blobs=[] +2026-04-20T15:34:24.378140Z DEBUG StfBlueprint::apply_slot{context=Node da_height=124}: sov_chain_state: Setting next visible slot number next_visible_slot_number=120 +2026-04-20T15:34:24.384506Z DEBUG StfBlueprint::apply_slot{context=Node da_height=124}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x6438298316e63f296b3e678d9c00d06985795f6d543923d62773d9023ae808f9}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:24.386800Z DEBUG StfBlueprint::apply_slot{context=Node da_height=124}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4bfd651c156255be578d25230cbb6538f5be573288555b71a9a85c4c92ba916f04d799a1b75923bed374405974afca33eff6f262427753dd33af8cb9a03db264 next_version=124 sesssion_starting_time=328.918µs +2026-04-20T15:34:24.394114Z DEBUG StfBlueprint::apply_slot{context=Node da_height=124}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=26ee67de7c19d53264e256645489bb958771bceb44255e699406316c94c23dcc5b27fb2bfe86fdba43a4244d1db68f2545339476d2f10fa2d584b9968f99322c next_version=124 time=8.431346ms accesses_build_time=776.975µs finishing_session_time=7.177684ms +2026-04-20T15:34:24.395504Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="73ab633c9aea1680ee3dbe2c7202f7bb3e9023a77a3b5291e5fd51752e6cc0c412f5cd658b01e9486d63d74347a54576e19ff069f669d118dbb621c3b664d260" next_state_root="26ee67de7c19d53264e256645489bb958771bceb44255e699406316c94c23dcc5b27fb2bfe86fdba43a4244d1db68f2545339476d2f10fa2d584b9968f99322c" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:34:24.400173Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 124, latest_finalized_slot_number: 124, sync_status: Syncing { synced_da_height: 123, target_da_height: 124 }, .. } +2026-04-20T15:34:24.401734Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=120 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 124, latest_finalized_slot_number: 124, sync_status: Syncing { synced_da_height: 123, target_da_height: 124 }, .. } +2026-04-20T15:34:24.402735Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=120 +2026-04-20T15:34:24.405519Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:34:24.406587Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=116 +2026-04-20T15:34:24.408403Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=121 +2026-04-20T15:34:24.409303Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:34:24.410832Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=121 sequence_number=131 +2026-04-20T15:34:24.410956Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=131 blob_id=2147897614436164841252450842179367546 visible_slot_number_after_increase=121 visible_slots_to_advance=1 +2026-04-20T15:34:24.411079Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:24.415875Z DEBUG compute_state_update{scope="sequencer" rollup_height=121 slot_number=121}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:34:24.416201Z DEBUG compute_state_update{scope="sequencer" rollup_height=121 slot_number=121}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=26ee67de7c19d53264e256645489bb958771bceb44255e699406316c94c23dcc5b27fb2bfe86fdba43a4244d1db68f2545339476d2f10fa2d584b9968f99322c next_version=125 sesssion_starting_time=961.743µs +2026-04-20T15:34:24.418040Z DEBUG manage_blob_submission_inside_task{blob_id=2147897614436164841252450842179367546 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xfdb35d9214a0ae68c46c35034e64a8ec495946932fe6f6e8bbff4f21113b7bd3 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=125 include_at=125 bytes=13 time=1.670979ms +2026-04-20T15:34:24.421549Z DEBUG compute_state_update{scope="sequencer" rollup_height=121 slot_number=121}: sov_state::nomt::prover_storage: computed next state root state_root=7e8b96a22c7be62ef4e5d8b48375ad1e64371981f3b22c66e4617eff925e6aef38c0de75f02040ed52295c557cd0a7002914a84a30e55edc2c6d0bff3db67c18 next_version=125 time=6.712817ms accesses_build_time=393.808µs finishing_session_time=5.256146ms +2026-04-20T15:34:24.431339Z DEBUG sov_stf_runner::runner: Block execution complete time=3.024598948s +2026-04-20T15:34:24.431468Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:34:24.433664Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:34:24.433990Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:34:24.914609Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hrH6mhXmRKu2Q71Fq3YoYQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:34:24.979332Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:34:24.992497Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4125615 cycles +2026-04-20T15:34:24.995307Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [76, 45, 27, 134, 68, 187, 179, 67, 32, 167, 62, 179, 116, 205, 99, 195, 4, 81, 83, 158, 239, 198, 224, 161, 103, 154, 187, 118, 171, 78, 246, 139, 120, 118, 122, 132, 224, 146, 163, 156, 27, 195, 164, 128, 30, 16, 245, 92, 21, 98, 227, 118, 41, 80, 218, 160, 204, 188, 164, 98, 5, 167, 1, 27, 97, 216, 49, 118, 57, 65, 79, 153, 222, 136, 157, 73, 244, 248, 2, 65, 39, 34, 55, 45, 142, 241, 175, 91, 237, 129, 85, 88, 196, 41, 199, 85, 127, 56, 8, 19, 70, 242, 133, 194, 64, 136, 28, 30, 125, 79, 145, 139, 148, 102, 246, 234, 128, 194, 38, 50, 46, 149, 26, 141, 16, 115, 52, 178, 11, 91, 124, 59, 109, 247, 95, 237, 152, 45, 32, 113, 84, 140, 222, 241, 109, 78, 159, 142, 33, 85, 92, 139, 247, 127, 55, 213, 118, 41, 58, 87, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:34:26.432154Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:34:26.432234Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:34:27.369653Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=125 prev_hash=0x3ad17b57e37f7da0754b36effc5fe554b21d503d448f4aeb159ff3b4e51ca3ed hash=0x11b6a89a2e1b68cbc00498f0a638d49a86bf9982dfb777b48c17928ee597098b producing_time=3.17416ms +2026-04-20T15:34:27.374739Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=125 current_state_root="26ee67de7c19d53264e256645489bb958771bceb44255e699406316c94c23dcc5b27fb2bfe86fdba43a4244d1db68f2545339476d2f10fa2d584b9968f99322c" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xfdb35d9214a0ae68c46c35034e64a8ec495946932fe6f6e8bbff4f21113b7bd3"] proof_blobs=[] +2026-04-20T15:34:27.383717Z DEBUG StfBlueprint::apply_slot{context=Node da_height=125}: sov_chain_state: Setting next visible slot number next_visible_slot_number=121 +2026-04-20T15:34:27.390065Z DEBUG StfBlueprint::apply_slot{context=Node da_height=125}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xfdb35d9214a0ae68c46c35034e64a8ec495946932fe6f6e8bbff4f21113b7bd3}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:27.392424Z DEBUG StfBlueprint::apply_slot{context=Node da_height=125}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=26ee67de7c19d53264e256645489bb958771bceb44255e699406316c94c23dcc5b27fb2bfe86fdba43a4244d1db68f2545339476d2f10fa2d584b9968f99322c next_version=125 sesssion_starting_time=338.748µs +2026-04-20T15:34:27.400893Z DEBUG StfBlueprint::apply_slot{context=Node da_height=125}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=7e8b96a22c7be62ef4e5d8b48375ad1e64371981f3b22c66e4617eff925e6aef18a62e94e79741749b433c54900150e6bf8f92f53b08a63b4efdbbb790a9543c next_version=125 time=9.603188ms accesses_build_time=781.515µs finishing_session_time=8.337766ms +2026-04-20T15:34:27.402151Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="26ee67de7c19d53264e256645489bb958771bceb44255e699406316c94c23dcc5b27fb2bfe86fdba43a4244d1db68f2545339476d2f10fa2d584b9968f99322c" next_state_root="7e8b96a22c7be62ef4e5d8b48375ad1e64371981f3b22c66e4617eff925e6aef18a62e94e79741749b433c54900150e6bf8f92f53b08a63b4efdbbb790a9543c" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:34:27.406979Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 125, latest_finalized_slot_number: 125, sync_status: Syncing { synced_da_height: 124, target_da_height: 125 }, .. } +2026-04-20T15:34:27.408458Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=121 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 125, latest_finalized_slot_number: 125, sync_status: Syncing { synced_da_height: 124, target_da_height: 125 }, .. } +2026-04-20T15:34:27.409438Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=121 +2026-04-20T15:34:27.411941Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:34:27.412869Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=117 +2026-04-20T15:34:27.414671Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=122 +2026-04-20T15:34:27.415746Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:34:27.416833Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=122 sequence_number=132 +2026-04-20T15:34:27.417008Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:27.417162Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=132 blob_id=2147897618070147745415268661978553124 visible_slot_number_after_increase=122 visible_slots_to_advance=1 +2026-04-20T15:34:27.418299Z DEBUG sov_stf_runner::runner: Block execution complete time=2.986853413s +2026-04-20T15:34:27.418390Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:34:27.419422Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:34:27.420002Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:34:27.420188Z DEBUG compute_state_update{scope="sequencer" rollup_height=122 slot_number=122}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:34:27.420522Z DEBUG compute_state_update{scope="sequencer" rollup_height=122 slot_number=122}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7e8b96a22c7be62ef4e5d8b48375ad1e64371981f3b22c66e4617eff925e6aef18a62e94e79741749b433c54900150e6bf8f92f53b08a63b4efdbbb790a9543c next_version=126 sesssion_starting_time=344.678µs +2026-04-20T15:34:27.422205Z DEBUG manage_blob_submission_inside_task{blob_id=2147897618070147745415268661978553124 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x1ada7bf55e7c2bf19e0af17f9b9e838c77f09435dc6d5c05a9048a8d179c2bb7 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=126 include_at=126 bytes=13 time=1.495061ms +2026-04-20T15:34:27.425695Z DEBUG compute_state_update{scope="sequencer" rollup_height=122 slot_number=122}: sov_state::nomt::prover_storage: computed next state root state_root=17f649f92375971b4b33c58488f69afad14f51e1794eee38d0a8e6c89917858a7dad59e8a8acedc494f6fd3f4aecec1c698046dc041acfa31e7904e5b93f108b next_version=126 time=5.908152ms accesses_build_time=382.618µs finishing_session_time=5.073907ms +2026-04-20T15:34:27.902009Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tpLVGyAtQzK9XvHuz4wwtw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:34:27.940447Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:34:27.952867Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1788667 cycles +2026-04-20T15:34:27.955483Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [44, 42, 94, 94, 155, 82, 64, 171, 127, 251, 98, 3, 164, 16, 85, 93, 140, 117, 57, 170, 3, 56, 208, 148, 102, 234, 169, 133, 53, 18, 195, 49, 74, 35, 247, 180, 161, 157, 205, 175, 65, 10, 140, 119, 18, 185, 39, 55, 198, 224, 136, 113, 210, 113, 84, 9, 198, 233, 190, 104, 249, 66, 52, 110, 20, 204, 40, 75, 28, 114, 43, 97, 101, 88, 228, 166, 52, 165, 10, 60, 9, 60, 190, 215, 130, 61, 104, 190, 76, 213, 188, 41, 123, 176, 139, 14, 87, 126, 199, 100, 79, 95, 162, 119, 57, 196, 171, 145, 57, 239, 71, 10, 141, 54, 68, 205, 101, 178, 4, 9, 6, 109, 94, 207, 122, 248, 99, 82, 68, 118, 58, 209, 17, 97, 32, 58, 121, 70, 129, 10, 48, 102, 103, 229, 80, 4, 166, 126, 174, 15, 9, 134, 62, 124, 77, 76, 138, 140, 146, 114, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:34:28.582987Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:34:28.583065Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:34:30.374647Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=126 prev_hash=0x11b6a89a2e1b68cbc00498f0a638d49a86bf9982dfb777b48c17928ee597098b hash=0x0bdc1d42308fb7d5bdd9da14f19a92ea3c41ceaaa19ff170c6932b11725059e8 producing_time=3.12821ms +2026-04-20T15:34:30.380715Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=126 current_state_root="7e8b96a22c7be62ef4e5d8b48375ad1e64371981f3b22c66e4617eff925e6aef18a62e94e79741749b433c54900150e6bf8f92f53b08a63b4efdbbb790a9543c" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1ada7bf55e7c2bf19e0af17f9b9e838c77f09435dc6d5c05a9048a8d179c2bb7"] proof_blobs=[] +2026-04-20T15:34:30.389473Z DEBUG StfBlueprint::apply_slot{context=Node da_height=126}: sov_chain_state: Setting next visible slot number next_visible_slot_number=122 +2026-04-20T15:34:30.395871Z DEBUG StfBlueprint::apply_slot{context=Node da_height=126}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x1ada7bf55e7c2bf19e0af17f9b9e838c77f09435dc6d5c05a9048a8d179c2bb7}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:30.398240Z DEBUG StfBlueprint::apply_slot{context=Node da_height=126}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7e8b96a22c7be62ef4e5d8b48375ad1e64371981f3b22c66e4617eff925e6aef18a62e94e79741749b433c54900150e6bf8f92f53b08a63b4efdbbb790a9543c next_version=126 sesssion_starting_time=322.128µs +2026-04-20T15:34:30.406447Z DEBUG StfBlueprint::apply_slot{context=Node da_height=126}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=17f649f92375971b4b33c58488f69afad14f51e1794eee38d0a8e6c89917858a0ac1fa5b2aaabb3b9c7ec612903a5accd299070b2c057d6e71455d66db4d41b2 next_version=126 time=9.342929ms accesses_build_time=795.895µs finishing_session_time=8.063177ms +2026-04-20T15:34:30.407761Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="7e8b96a22c7be62ef4e5d8b48375ad1e64371981f3b22c66e4617eff925e6aef18a62e94e79741749b433c54900150e6bf8f92f53b08a63b4efdbbb790a9543c" next_state_root="17f649f92375971b4b33c58488f69afad14f51e1794eee38d0a8e6c89917858a0ac1fa5b2aaabb3b9c7ec612903a5accd299070b2c057d6e71455d66db4d41b2" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:34:30.412476Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 126, latest_finalized_slot_number: 126, sync_status: Synced { synced_da_height: 125 }, .. } +2026-04-20T15:34:30.413854Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=122 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 126, latest_finalized_slot_number: 126, sync_status: Synced { synced_da_height: 125 }, .. } +2026-04-20T15:34:30.414789Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=122 +2026-04-20T15:34:30.417363Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:34:30.418330Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=118 +2026-04-20T15:34:30.420135Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=123 +2026-04-20T15:34:30.421051Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:34:30.422587Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=123 sequence_number=133 +2026-04-20T15:34:30.422796Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=133 blob_id=2147897621704172229682194318325035553 visible_slot_number_after_increase=123 visible_slots_to_advance=1 +2026-04-20T15:34:30.422884Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:30.430256Z DEBUG compute_state_update{scope="sequencer" rollup_height=123 slot_number=123}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:34:30.430473Z DEBUG compute_state_update{scope="sequencer" rollup_height=123 slot_number=123}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=17f649f92375971b4b33c58488f69afad14f51e1794eee38d0a8e6c89917858a0ac1fa5b2aaabb3b9c7ec612903a5accd299070b2c057d6e71455d66db4d41b2 next_version=127 sesssion_starting_time=3.657516ms +2026-04-20T15:34:30.430654Z DEBUG sov_stf_runner::runner: Block execution complete time=3.012280528s +2026-04-20T15:34:30.430701Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:34:30.430837Z DEBUG manage_blob_submission_inside_task{blob_id=2147897621704172229682194318325035553 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x9d6009328e9d73e2fd8e5221a70af4686ff85c1c41d234433a700132a4323a3c sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=127 include_at=127 bytes=13 time=1.613469ms +2026-04-20T15:34:30.436114Z DEBUG compute_state_update{scope="sequencer" rollup_height=123 slot_number=123}: sov_state::nomt::prover_storage: computed next state root state_root=568d167aa1f9ccdafb7b7114cfc0f1bbe3c5e7bccaad7515225a1073e10294f11e433f3f0f03cc8be9af36b2f145e4174f91fba53d40040a046aecf448342219 next_version=127 time=9.571608ms accesses_build_time=265.488µs finishing_session_time=5.596764ms +2026-04-20T15:34:30.895140Z DEBUG sp1_core_executor_runner::native: CHILD sp1_lBfzuSz0QAeLbS-IeLDKrg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:34:30.934909Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:34:30.947581Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1824202 cycles +2026-04-20T15:34:30.950389Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [94, 209, 172, 103, 10, 61, 52, 247, 158, 69, 41, 255, 235, 143, 121, 56, 255, 110, 56, 115, 64, 217, 123, 5, 5, 91, 99, 82, 148, 72, 18, 41, 76, 106, 198, 43, 163, 152, 161, 206, 241, 135, 208, 117, 162, 121, 254, 160, 126, 252, 49, 162, 85, 20, 66, 151, 114, 51, 249, 52, 132, 46, 35, 22, 46, 213, 65, 53, 37, 94, 155, 35, 120, 209, 69, 171, 97, 245, 56, 18, 32, 129, 63, 59, 66, 87, 250, 108, 9, 165, 2, 75, 38, 252, 243, 189, 19, 89, 148, 99, 118, 227, 118, 189, 243, 233, 35, 28, 20, 184, 226, 211, 235, 109, 71, 18, 164, 20, 246, 190, 197, 0, 240, 108, 69, 105, 148, 225, 216, 152, 116, 128, 43, 111, 168, 26, 178, 92, 231, 207, 17, 185, 106, 183, 80, 132, 63, 116, 83, 3, 117, 103, 51, 223, 35, 108, 83, 173, 43, 162, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:34:31.594614Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:34:31.594692Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:34:31.669922Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:34:31.925154Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:34:31.927365Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2607482 cycles +2026-04-20T15:34:31.927727Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [111, 0, 0, 0, 0, 0, 0, 0, 120, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 119, 189, 120, 191, 11, 244, 246, 222, 144, 161, 102, 166, 170, 207, 96, 136, 65, 202, 231, 162, 26, 171, 194, 15, 12, 244, 233, 222, 86, 19, 7, 190, 124, 236, 191, 179, 184, 249, 129, 251, 154, 25, 35, 209, 136, 226, 72, 156, 140, 49, 217, 29, 54, 245, 155, 210, 36, 163, 25, 225, 122, 39, 181, 230, 46, 213, 65, 53, 37, 94, 155, 35, 120, 209, 69, 171, 97, 245, 56, 18, 32, 129, 63, 59, 66, 87, 250, 108, 9, 165, 2, 75, 38, 252, 243, 189, 19, 89, 148, 99, 118, 227, 118, 189, 243, 233, 35, 28, 20, 184, 226, 211, 235, 109, 71, 18, 164, 20, 246, 190, 197, 0, 240, 108, 69, 105, 148, 225, 93, 131, 25, 246, 173, 137, 3, 72, 144, 97, 177, 22, 109, 169, 109, 154, 79, 118, 187, 205, 231, 1, 200, 38, 102, 60, 170, 252, 207, 92, 187, 95, 216, 152, 116, 128, 43, 111, 168, 26, 178, 92, 231, 207, 17, 185, 106, 183, 80, 132, 63, 116, 83, 3, 117, 103, 51, 223, 35, 108, 83, 173, 43, 162, 32, 0, 0, 0, 0, 0, 0, 0, 33, 87, 226, 242, 39, 49, 250, 210, 41, 143, 26, 188, 101, 19, 12, 136, 43, 105, 121, 236, 80, 118, 108, 155, 63, 154, 215, 73, 15, 107, 27, 67, 32, 0, 0, 0, 0, 0, 0, 0, 54, 246, 123, 188, 67, 61, 237, 103, 16, 229, 5, 146, 113, 8, 178, 215, 95, 95, 151, 239, 106, 28, 10, 135, 55, 55, 208, 95, 86, 190, 27, 9, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:34:32.903395Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:34:32.903473Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:34:32.904377Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=1951 +2026-04-20T15:34:32.906996Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:34:32.907906Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=134 blob_id=2147897624704727057500456872760864873 +2026-04-20T15:34:32.908091Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:34:33.378997Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=127 prev_hash=0x0bdc1d42308fb7d5bdd9da14f19a92ea3c41ceaaa19ff170c6932b11725059e8 hash=0xb329e2e7041d0707e640a955521e95d185b69468e199c6f2faa34f17ea51ec77 producing_time=3.032951ms +2026-04-20T15:34:33.384188Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=127 current_state_root="17f649f92375971b4b33c58488f69afad14f51e1794eee38d0a8e6c89917858a0ac1fa5b2aaabb3b9c7ec612903a5accd299070b2c057d6e71455d66db4d41b2" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9d6009328e9d73e2fd8e5221a70af4686ff85c1c41d234433a700132a4323a3c"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x97dacdd6ec8f74c3d961d2bb51443ad870baa942ada0fc302d3f67bb545de8e1, len=2001"] +2026-04-20T15:34:33.392985Z DEBUG StfBlueprint::apply_slot{context=Node da_height=127}: sov_chain_state: Setting next visible slot number next_visible_slot_number=123 +2026-04-20T15:34:33.399387Z DEBUG StfBlueprint::apply_slot{context=Node da_height=127}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x9d6009328e9d73e2fd8e5221a70af4686ff85c1c41d234433a700132a4323a3c}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:33.401885Z DEBUG StfBlueprint::apply_slot{context=Node da_height=127}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=17f649f92375971b4b33c58488f69afad14f51e1794eee38d0a8e6c89917858a0ac1fa5b2aaabb3b9c7ec612903a5accd299070b2c057d6e71455d66db4d41b2 next_version=127 sesssion_starting_time=325.707µs +2026-04-20T15:34:33.410884Z DEBUG StfBlueprint::apply_slot{context=Node da_height=127}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=568d167aa1f9ccdafb7b7114cfc0f1bbe3c5e7bccaad7515225a1073e10294f15358f6e490b732d9729820d6d80ed689ea0adbe690ebb2ad73413c42c1155d33 next_version=127 time=10.282513ms accesses_build_time=944.443µs finishing_session_time=8.867172ms +2026-04-20T15:34:33.412166Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="17f649f92375971b4b33c58488f69afad14f51e1794eee38d0a8e6c89917858a0ac1fa5b2aaabb3b9c7ec612903a5accd299070b2c057d6e71455d66db4d41b2" next_state_root="568d167aa1f9ccdafb7b7114cfc0f1bbe3c5e7bccaad7515225a1073e10294f15358f6e490b732d9729820d6d80ed689ea0adbe690ebb2ad73413c42c1155d33" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:34:33.416993Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 127, latest_finalized_slot_number: 127, sync_status: Synced { synced_da_height: 126 }, .. } +2026-04-20T15:34:33.418399Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=123 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 127, latest_finalized_slot_number: 127, sync_status: Synced { synced_da_height: 126 }, .. } +2026-04-20T15:34:33.419330Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=123 +2026-04-20T15:34:33.421931Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:34:33.422960Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=119 +2026-04-20T15:34:33.424712Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=124 +2026-04-20T15:34:33.425579Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:34:33.429171Z DEBUG sov_stf_runner::runner: Block execution complete time=2.998482019s +2026-04-20T15:34:33.429237Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:34:33.429775Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 111. Final slot number 120 +2026-04-20T15:34:33.430246Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=124 sequence_number=135 +2026-04-20T15:34:33.430443Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:33.430610Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=135 blob_id=2147897625340610802603456301771009014 visible_slot_number_after_increase=124 visible_slots_to_advance=1 +2026-04-20T15:34:33.432022Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:34:33.432771Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:34:33.434386Z DEBUG compute_state_update{scope="sequencer" rollup_height=124 slot_number=124}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:34:33.434681Z DEBUG compute_state_update{scope="sequencer" rollup_height=124 slot_number=124}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=568d167aa1f9ccdafb7b7114cfc0f1bbe3c5e7bccaad7515225a1073e10294f15358f6e490b732d9729820d6d80ed689ea0adbe690ebb2ad73413c42c1155d33 next_version=128 sesssion_starting_time=299.868µs +2026-04-20T15:34:33.437481Z DEBUG manage_blob_submission_inside_task{blob_id=2147897625340610802603456301771009014 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x12e4ffebdf54bec0370ece4eea256e8094466e3325b88f1d0b2aa093775a3c38 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=128 include_at=128 bytes=13 time=1.814989ms +2026-04-20T15:34:33.440645Z DEBUG compute_state_update{scope="sequencer" rollup_height=124 slot_number=124}: sov_state::nomt::prover_storage: computed next state root state_root=330a63d3ba696bd4a50f6f3d834f75b08fcef1aef6b6f698d213965625f8d2763dfc8b6e1440adcb0f526cd26ec6bfcd03f49d24d1b84696c17d54d854afde5d next_version=128 time=6.725736ms accesses_build_time=456.137µs finishing_session_time=5.882102ms +2026-04-20T15:34:36.381123Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xWbFcr2gQLK-fwkRYfuNvA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:34:36.383089Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=128 prev_hash=0xb329e2e7041d0707e640a955521e95d185b69468e199c6f2faa34f17ea51ec77 hash=0x81574e561e8a6b1ebad0c47822fc52b01b95784263febc647d059ef74a71c974 producing_time=3.154089ms +2026-04-20T15:34:36.391819Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=128 current_state_root="568d167aa1f9ccdafb7b7114cfc0f1bbe3c5e7bccaad7515225a1073e10294f15358f6e490b732d9729820d6d80ed689ea0adbe690ebb2ad73413c42c1155d33" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x12e4ffebdf54bec0370ece4eea256e8094466e3325b88f1d0b2aa093775a3c38"] proof_blobs=[] +2026-04-20T15:34:36.401368Z DEBUG StfBlueprint::apply_slot{context=Node da_height=128}: sov_chain_state: Setting next visible slot number next_visible_slot_number=124 +2026-04-20T15:34:36.418857Z DEBUG StfBlueprint::apply_slot{context=Node da_height=128}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 111. Final slot number 120 +2026-04-20T15:34:36.419332Z DEBUG StfBlueprint::apply_slot{context=Node da_height=128}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x12e4ffebdf54bec0370ece4eea256e8094466e3325b88f1d0b2aa093775a3c38}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:36.421864Z DEBUG StfBlueprint::apply_slot{context=Node da_height=128}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=568d167aa1f9ccdafb7b7114cfc0f1bbe3c5e7bccaad7515225a1073e10294f15358f6e490b732d9729820d6d80ed689ea0adbe690ebb2ad73413c42c1155d33 next_version=128 sesssion_starting_time=301.498µs +2026-04-20T15:34:36.422009Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:34:36.432729Z DEBUG StfBlueprint::apply_slot{context=Node da_height=128}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=330a63d3ba696bd4a50f6f3d834f75b08fcef1aef6b6f698d213965625f8d2763cb577d93ba917bb15d59af73a9dc4bef2881c5c5288b068343ea66a84970302 next_version=128 time=12.242261ms accesses_build_time=1.064533ms finishing_session_time=10.733111ms +2026-04-20T15:34:36.433974Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="568d167aa1f9ccdafb7b7114cfc0f1bbe3c5e7bccaad7515225a1073e10294f15358f6e490b732d9729820d6d80ed689ea0adbe690ebb2ad73413c42c1155d33" next_state_root="330a63d3ba696bd4a50f6f3d834f75b08fcef1aef6b6f698d213965625f8d2763cb577d93ba917bb15d59af73a9dc4bef2881c5c5288b068343ea66a84970302" aggregated_proofs=1 proof_receipts=1 +2026-04-20T15:34:36.435106Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1872458 cycles +2026-04-20T15:34:36.437849Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 122, 21, 116, 249, 240, 6, 251, 33, 143, 187, 51, 54, 100, 174, 79, 196, 114, 141, 179, 160, 42, 153, 239, 131, 23, 115, 21, 56, 235, 77, 159, 24, 181, 27, 67, 178, 122, 202, 39, 219, 210, 33, 180, 90, 92, 189, 172, 221, 178, 89, 192, 160, 142, 96, 73, 54, 173, 96, 35, 23, 154, 105, 170, 57, 136, 186, 69, 226, 178, 145, 156, 190, 64, 200, 23, 111, 143, 94, 60, 76, 183, 201, 45, 93, 60, 158, 179, 220, 99, 248, 18, 150, 146, 164, 105, 60, 121, 49, 167, 82, 223, 31, 25, 63, 105, 59, 11, 55, 143, 196, 126, 59, 54, 225, 19, 225, 12, 104, 172, 185, 50, 97, 85, 63, 137, 178, 18, 57, 72, 203, 215, 98, 46, 170, 221, 61, 100, 210, 123, 181, 202, 209, 250, 182, 161, 143, 183, 179, 219, 61, 106, 76, 19, 68, 80, 43, 83, 108, 254, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:34:36.439328Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 128, latest_finalized_slot_number: 128, sync_status: Syncing { synced_da_height: 127, target_da_height: 128 }, .. } +2026-04-20T15:34:36.440678Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=124 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 128, latest_finalized_slot_number: 128, sync_status: Syncing { synced_da_height: 127, target_da_height: 128 }, .. } +2026-04-20T15:34:36.441620Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=124 +2026-04-20T15:34:36.444754Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:34:36.445697Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=120 +2026-04-20T15:34:36.447460Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=125 +2026-04-20T15:34:36.448987Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:34:36.451130Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=125 sequence_number=136 +2026-04-20T15:34:36.451410Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=136 blob_id=2147897628992828553500475598683386696 visible_slot_number_after_increase=125 visible_slots_to_advance=1 +2026-04-20T15:34:36.451402Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:36.452026Z DEBUG sov_stf_runner::runner: Block execution complete time=3.022803141s +2026-04-20T15:34:36.452118Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:34:36.454672Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:34:36.455014Z DEBUG compute_state_update{scope="sequencer" rollup_height=125 slot_number=125}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:34:36.455340Z DEBUG compute_state_update{scope="sequencer" rollup_height=125 slot_number=125}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=330a63d3ba696bd4a50f6f3d834f75b08fcef1aef6b6f698d213965625f8d2763cb577d93ba917bb15d59af73a9dc4bef2881c5c5288b068343ea66a84970302 next_version=129 sesssion_starting_time=307.748µs +2026-04-20T15:34:36.455444Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:34:36.456784Z DEBUG manage_blob_submission_inside_task{blob_id=2147897628992828553500475598683386696 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x29bc86f0dc3b3e8d0cc56bf6330d7ea5cecc0570c9e9d1f4f26a12a8d4b29ebe sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=129 include_at=129 bytes=13 time=1.052673ms +2026-04-20T15:34:36.460698Z DEBUG compute_state_update{scope="sequencer" rollup_height=125 slot_number=125}: sov_state::nomt::prover_storage: computed next state root state_root=6f793921141beffe4d3b82091ddfc8146c97d38af708c9721a5863bf00429da548da3763af735d68cf35fbec7d30be7aaa34f1f254713983b5693895e1119570 next_version=129 time=6.059351ms accesses_build_time=363.678µs finishing_session_time=5.237795ms +2026-04-20T15:34:36.936905Z DEBUG sp1_core_executor_runner::native: CHILD sp1_BjlruVkcQXKYEPpqfYmbqw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:34:36.976918Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:34:36.989378Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1830705 cycles +2026-04-20T15:34:36.992050Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [107, 74, 205, 220, 246, 147, 224, 210, 13, 132, 196, 186, 4, 15, 214, 6, 106, 58, 79, 252, 163, 217, 106, 79, 116, 11, 149, 39, 180, 13, 76, 156, 37, 127, 249, 54, 4, 228, 185, 210, 110, 77, 121, 192, 129, 28, 176, 125, 188, 2, 227, 160, 178, 7, 208, 86, 218, 195, 11, 245, 38, 124, 78, 63, 24, 148, 33, 112, 141, 225, 101, 57, 238, 70, 81, 18, 88, 199, 131, 174, 150, 137, 54, 2, 53, 103, 233, 65, 156, 97, 232, 142, 149, 29, 65, 211, 61, 146, 96, 149, 17, 130, 228, 61, 241, 37, 207, 39, 183, 208, 200, 152, 173, 202, 9, 227, 29, 206, 37, 73, 222, 242, 15, 113, 66, 136, 87, 200, 166, 197, 175, 180, 69, 202, 89, 42, 13, 201, 162, 98, 126, 6, 32, 120, 255, 8, 218, 255, 185, 55, 182, 230, 195, 215, 33, 121, 24, 153, 92, 123, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:34:37.146595Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:34:37.146672Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:34:37.685776Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:34:37.685858Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:34:39.387043Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=129 prev_hash=0x81574e561e8a6b1ebad0c47822fc52b01b95784263febc647d059ef74a71c974 hash=0x46a83e00d71f9f93aad8c7f1e98be14afb41d297bef8a383ba4f8497c0afca62 producing_time=2.99521ms +2026-04-20T15:34:39.394348Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=129 current_state_root="330a63d3ba696bd4a50f6f3d834f75b08fcef1aef6b6f698d213965625f8d2763cb577d93ba917bb15d59af73a9dc4bef2881c5c5288b068343ea66a84970302" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x29bc86f0dc3b3e8d0cc56bf6330d7ea5cecc0570c9e9d1f4f26a12a8d4b29ebe"] proof_blobs=[] +2026-04-20T15:34:39.403765Z DEBUG StfBlueprint::apply_slot{context=Node da_height=129}: sov_chain_state: Setting next visible slot number next_visible_slot_number=125 +2026-04-20T15:34:39.410741Z DEBUG StfBlueprint::apply_slot{context=Node da_height=129}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x29bc86f0dc3b3e8d0cc56bf6330d7ea5cecc0570c9e9d1f4f26a12a8d4b29ebe}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:39.413271Z DEBUG StfBlueprint::apply_slot{context=Node da_height=129}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=330a63d3ba696bd4a50f6f3d834f75b08fcef1aef6b6f698d213965625f8d2763cb577d93ba917bb15d59af73a9dc4bef2881c5c5288b068343ea66a84970302 next_version=129 sesssion_starting_time=322.728µs +2026-04-20T15:34:39.420752Z DEBUG StfBlueprint::apply_slot{context=Node da_height=129}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6f793921141beffe4d3b82091ddfc8146c97d38af708c9721a5863bf00429da5783e06ad0cd082ad03c86138634423a9d745183a8216f58a6da266133cb49161 next_version=129 time=8.606055ms accesses_build_time=784.515µs finishing_session_time=7.306283ms +2026-04-20T15:34:39.422199Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="330a63d3ba696bd4a50f6f3d834f75b08fcef1aef6b6f698d213965625f8d2763cb577d93ba917bb15d59af73a9dc4bef2881c5c5288b068343ea66a84970302" next_state_root="6f793921141beffe4d3b82091ddfc8146c97d38af708c9721a5863bf00429da5783e06ad0cd082ad03c86138634423a9d745183a8216f58a6da266133cb49161" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:34:39.426849Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 129, latest_finalized_slot_number: 129, sync_status: Syncing { synced_da_height: 128, target_da_height: 129 }, .. } +2026-04-20T15:34:39.428239Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=125 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 129, latest_finalized_slot_number: 129, sync_status: Syncing { synced_da_height: 128, target_da_height: 129 }, .. } +2026-04-20T15:34:39.429185Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=125 +2026-04-20T15:34:39.431739Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:34:39.432752Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=121 +2026-04-20T15:34:39.434760Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=126 +2026-04-20T15:34:39.435852Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:34:39.437358Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=126 sequence_number=137 +2026-04-20T15:34:39.437620Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:39.437684Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=137 blob_id=2147897632602688705300416975815337347 visible_slot_number_after_increase=126 visible_slots_to_advance=1 +2026-04-20T15:34:39.443287Z DEBUG compute_state_update{scope="sequencer" rollup_height=126 slot_number=126}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:34:39.443669Z DEBUG compute_state_update{scope="sequencer" rollup_height=126 slot_number=126}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6f793921141beffe4d3b82091ddfc8146c97d38af708c9721a5863bf00429da5783e06ad0cd082ad03c86138634423a9d745183a8216f58a6da266133cb49161 next_version=130 sesssion_starting_time=1.56832ms +2026-04-20T15:34:39.444256Z DEBUG sov_stf_runner::runner: Block execution complete time=2.992157879s +2026-04-20T15:34:39.444377Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:34:39.444348Z DEBUG manage_blob_submission_inside_task{blob_id=2147897632602688705300416975815337347 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xdb688e20729a2563631bcdc9234846840d122bcd8fe076c113e0d9df5fdf3266 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=130 include_at=130 bytes=13 time=1.103933ms +2026-04-20T15:34:39.446689Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:34:39.447407Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:34:39.449436Z DEBUG compute_state_update{scope="sequencer" rollup_height=126 slot_number=126}: sov_state::nomt::prover_storage: computed next state root state_root=6b0e4d72c50d3677f4029518c4c9007222b258987e1ca8d53587c5bc1def1f4b699252c1a902a91171f3d97952ac37e317e11d6d3706ea516321c6a6d32df28a next_version=130 time=7.903229ms accesses_build_time=538.807µs finishing_session_time=5.661063ms +2026-04-20T15:34:40.040104Z DEBUG sp1_core_executor_runner::native: CHILD sp1_iys9Otb5QVi5Vt4ytCc3tA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:34:40.079333Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:34:40.092970Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1813700 cycles +2026-04-20T15:34:40.095735Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [115, 171, 99, 60, 154, 234, 22, 128, 238, 61, 190, 44, 114, 2, 247, 187, 62, 144, 35, 167, 122, 59, 82, 145, 229, 253, 81, 117, 46, 108, 192, 196, 18, 245, 205, 101, 139, 1, 233, 72, 109, 99, 215, 67, 71, 165, 69, 118, 225, 159, 240, 105, 246, 105, 209, 24, 219, 182, 33, 195, 182, 100, 210, 96, 122, 134, 139, 248, 212, 146, 179, 219, 185, 151, 159, 198, 191, 68, 118, 135, 55, 193, 3, 7, 50, 14, 19, 134, 27, 128, 132, 179, 242, 134, 174, 8, 30, 123, 11, 52, 179, 11, 19, 143, 10, 204, 66, 222, 69, 231, 98, 67, 45, 195, 131, 147, 49, 190, 13, 220, 185, 15, 15, 4, 120, 41, 182, 147, 136, 6, 108, 47, 194, 234, 211, 81, 168, 55, 222, 29, 131, 29, 254, 34, 218, 215, 32, 164, 133, 147, 239, 29, 215, 81, 115, 117, 158, 110, 158, 152, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:34:40.732702Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:34:40.732786Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:34:42.391625Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=130 prev_hash=0x46a83e00d71f9f93aad8c7f1e98be14afb41d297bef8a383ba4f8497c0afca62 hash=0x0dc7d81341f34421268c9cc3697473409927724f0c520949a8edb758e767bda3 producing_time=3.202729ms +2026-04-20T15:34:42.396540Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=130 current_state_root="6f793921141beffe4d3b82091ddfc8146c97d38af708c9721a5863bf00429da5783e06ad0cd082ad03c86138634423a9d745183a8216f58a6da266133cb49161" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xdb688e20729a2563631bcdc9234846840d122bcd8fe076c113e0d9df5fdf3266"] proof_blobs=[] +2026-04-20T15:34:42.406178Z DEBUG StfBlueprint::apply_slot{context=Node da_height=130}: sov_chain_state: Setting next visible slot number next_visible_slot_number=126 +2026-04-20T15:34:42.413013Z DEBUG StfBlueprint::apply_slot{context=Node da_height=130}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xdb688e20729a2563631bcdc9234846840d122bcd8fe076c113e0d9df5fdf3266}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:42.415518Z DEBUG StfBlueprint::apply_slot{context=Node da_height=130}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6f793921141beffe4d3b82091ddfc8146c97d38af708c9721a5863bf00429da5783e06ad0cd082ad03c86138634423a9d745183a8216f58a6da266133cb49161 next_version=130 sesssion_starting_time=337.668µs +2026-04-20T15:34:42.423540Z DEBUG StfBlueprint::apply_slot{context=Node da_height=130}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6b0e4d72c50d3677f4029518c4c9007222b258987e1ca8d53587c5bc1def1f4b5d9dcbf29873efaf6ae2a62ac8bfc8aa342b7cb9237670169406dca3b0a8f34f next_version=130 time=9.140051ms accesses_build_time=764.986µs finishing_session_time=7.861299ms +2026-04-20T15:34:42.424839Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6f793921141beffe4d3b82091ddfc8146c97d38af708c9721a5863bf00429da5783e06ad0cd082ad03c86138634423a9d745183a8216f58a6da266133cb49161" next_state_root="6b0e4d72c50d3677f4029518c4c9007222b258987e1ca8d53587c5bc1def1f4b5d9dcbf29873efaf6ae2a62ac8bfc8aa342b7cb9237670169406dca3b0a8f34f" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:34:42.429433Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 130, latest_finalized_slot_number: 130, sync_status: Syncing { synced_da_height: 129, target_da_height: 130 }, .. } +2026-04-20T15:34:42.430814Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=126 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 130, latest_finalized_slot_number: 130, sync_status: Syncing { synced_da_height: 129, target_da_height: 130 }, .. } +2026-04-20T15:34:42.431759Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=126 +2026-04-20T15:34:42.434345Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:34:42.435364Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=122 +2026-04-20T15:34:42.437121Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=127 +2026-04-20T15:34:42.438013Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:34:42.439449Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=127 sequence_number=138 +2026-04-20T15:34:42.439684Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:42.439765Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=138 blob_id=2147897636231881026181066697638405323 visible_slot_number_after_increase=127 visible_slots_to_advance=1 +2026-04-20T15:34:42.441025Z DEBUG sov_stf_runner::runner: Block execution complete time=2.99667567s +2026-04-20T15:34:42.441134Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:34:42.442539Z DEBUG compute_state_update{scope="sequencer" rollup_height=127 slot_number=127}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:34:42.442675Z DEBUG compute_state_update{scope="sequencer" rollup_height=127 slot_number=127}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6b0e4d72c50d3677f4029518c4c9007222b258987e1ca8d53587c5bc1def1f4b5d9dcbf29873efaf6ae2a62ac8bfc8aa342b7cb9237670169406dca3b0a8f34f next_version=131 sesssion_starting_time=138.639µs +2026-04-20T15:34:42.443673Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:34:42.444422Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:34:42.445448Z DEBUG manage_blob_submission_inside_task{blob_id=2147897636231881026181066697638405323 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xcc40227b1091c1db8de551bf6cd1ad9e41c2012f01abcc807b06c6573d2c281f sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=131 include_at=131 bytes=13 time=1.51366ms +2026-04-20T15:34:42.447948Z DEBUG compute_state_update{scope="sequencer" rollup_height=127 slot_number=127}: sov_state::nomt::prover_storage: computed next state root state_root=4dc735a4cdd01b195d4b3cb6a451e2ee98326080063fd187e15d42f5e5098df04c74c99e6df0f7ceffc1ab0ae0908a07822213f5a293d64448ab1b73ea0e2555 next_version=131 time=5.584914ms accesses_build_time=166.149µs finishing_session_time=5.234486ms +2026-04-20T15:34:42.920742Z DEBUG sp1_core_executor_runner::native: CHILD sp1_U3FZzMvKTWedN7TIPVxCNg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:34:42.957356Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:34:42.969543Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1737735 cycles +2026-04-20T15:34:42.972268Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [75, 253, 101, 28, 21, 98, 85, 190, 87, 141, 37, 35, 12, 187, 101, 56, 245, 190, 87, 50, 136, 85, 91, 113, 169, 168, 92, 76, 146, 186, 145, 111, 4, 215, 153, 161, 183, 89, 35, 190, 211, 116, 64, 89, 116, 175, 202, 51, 239, 246, 242, 98, 66, 119, 83, 221, 51, 175, 140, 185, 160, 61, 178, 100, 14, 232, 218, 230, 98, 181, 47, 48, 233, 93, 48, 185, 156, 153, 119, 56, 122, 171, 219, 135, 134, 162, 186, 208, 127, 253, 134, 211, 222, 223, 3, 255, 99, 149, 235, 175, 198, 55, 26, 52, 35, 218, 232, 237, 68, 223, 98, 96, 235, 127, 149, 227, 40, 8, 192, 26, 41, 50, 124, 226, 242, 33, 18, 231, 58, 209, 123, 87, 227, 127, 125, 160, 117, 75, 54, 239, 252, 95, 229, 84, 178, 29, 80, 61, 68, 143, 74, 235, 21, 159, 243, 180, 229, 28, 163, 237, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:34:43.580998Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:34:43.581077Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:34:45.395812Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=131 prev_hash=0x0dc7d81341f34421268c9cc3697473409927724f0c520949a8edb758e767bda3 hash=0xc55fb9cbec9d956a14e3638e24fe6fb5c9956fb57c7b9c67e37a91c9c86046d4 producing_time=3.050041ms +2026-04-20T15:34:45.403666Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=131 current_state_root="6b0e4d72c50d3677f4029518c4c9007222b258987e1ca8d53587c5bc1def1f4b5d9dcbf29873efaf6ae2a62ac8bfc8aa342b7cb9237670169406dca3b0a8f34f" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xcc40227b1091c1db8de551bf6cd1ad9e41c2012f01abcc807b06c6573d2c281f"] proof_blobs=[] +2026-04-20T15:34:45.412522Z DEBUG StfBlueprint::apply_slot{context=Node da_height=131}: sov_chain_state: Setting next visible slot number next_visible_slot_number=127 +2026-04-20T15:34:45.418752Z DEBUG StfBlueprint::apply_slot{context=Node da_height=131}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xcc40227b1091c1db8de551bf6cd1ad9e41c2012f01abcc807b06c6573d2c281f}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:45.421109Z DEBUG StfBlueprint::apply_slot{context=Node da_height=131}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6b0e4d72c50d3677f4029518c4c9007222b258987e1ca8d53587c5bc1def1f4b5d9dcbf29873efaf6ae2a62ac8bfc8aa342b7cb9237670169406dca3b0a8f34f next_version=131 sesssion_starting_time=321.468µs +2026-04-20T15:34:45.429302Z DEBUG StfBlueprint::apply_slot{context=Node da_height=131}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4dc735a4cdd01b195d4b3cb6a451e2ee98326080063fd187e15d42f5e5098df05cd7ad9a2e917f7822b0af38020bebc2d66fcddf735089c753b2134676661172 next_version=131 time=9.31647ms accesses_build_time=790.235µs finishing_session_time=8.060778ms +2026-04-20T15:34:45.430571Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6b0e4d72c50d3677f4029518c4c9007222b258987e1ca8d53587c5bc1def1f4b5d9dcbf29873efaf6ae2a62ac8bfc8aa342b7cb9237670169406dca3b0a8f34f" next_state_root="4dc735a4cdd01b195d4b3cb6a451e2ee98326080063fd187e15d42f5e5098df05cd7ad9a2e917f7822b0af38020bebc2d66fcddf735089c753b2134676661172" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:34:45.435110Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 131, latest_finalized_slot_number: 131, sync_status: Syncing { synced_da_height: 130, target_da_height: 131 }, .. } +2026-04-20T15:34:45.436613Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=127 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 131, latest_finalized_slot_number: 131, sync_status: Syncing { synced_da_height: 130, target_da_height: 131 }, .. } +2026-04-20T15:34:45.437604Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=127 +2026-04-20T15:34:45.440258Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:34:45.441243Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=123 +2026-04-20T15:34:45.443227Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=128 +2026-04-20T15:34:45.444292Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:34:45.445927Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=128 sequence_number=139 +2026-04-20T15:34:45.446077Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=139 blob_id=2147897639865880222719273287103676109 visible_slot_number_after_increase=128 visible_slots_to_advance=1 +2026-04-20T15:34:45.446247Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:45.446727Z DEBUG sov_stf_runner::runner: Block execution complete time=3.005623392s +2026-04-20T15:34:45.446773Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:34:45.449706Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:34:45.450482Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:34:45.450680Z DEBUG compute_state_update{scope="sequencer" rollup_height=128 slot_number=128}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:34:45.451035Z DEBUG compute_state_update{scope="sequencer" rollup_height=128 slot_number=128}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4dc735a4cdd01b195d4b3cb6a451e2ee98326080063fd187e15d42f5e5098df05cd7ad9a2e917f7822b0af38020bebc2d66fcddf735089c753b2134676661172 next_version=132 sesssion_starting_time=353.448µs +2026-04-20T15:34:45.453525Z DEBUG manage_blob_submission_inside_task{blob_id=2147897639865880222719273287103676109 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xba47dd616e893e68415c6d4ec3e2602fd84856380aa57896d1681663cffabbc4 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=132 include_at=132 bytes=13 time=1.50402ms +2026-04-20T15:34:45.456677Z DEBUG compute_state_update{scope="sequencer" rollup_height=128 slot_number=128}: sov_state::nomt::prover_storage: computed next state root state_root=3eac91372cb865b5e00391578e6ba58f694d7ac350610d404dde436b1bb1a6504dedf0025950de328f95caa254323777a27d22de2310291e8e5d2ef2ecdfce7b next_version=132 time=6.433458ms accesses_build_time=414.427µs finishing_session_time=5.540544ms +2026-04-20T15:34:45.943051Z DEBUG sp1_core_executor_runner::native: CHILD sp1_S4HY1RwHSLem5u3kXXGMkg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:34:45.982063Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:34:45.994318Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1806715 cycles +2026-04-20T15:34:45.995511Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [38, 238, 103, 222, 124, 25, 213, 50, 100, 226, 86, 100, 84, 137, 187, 149, 135, 113, 188, 235, 68, 37, 94, 105, 148, 6, 49, 108, 148, 194, 61, 204, 91, 39, 251, 43, 254, 134, 253, 186, 67, 164, 36, 77, 29, 182, 143, 37, 69, 51, 148, 118, 210, 241, 15, 162, 213, 132, 185, 150, 143, 153, 50, 44, 110, 0, 66, 120, 253, 160, 222, 183, 103, 18, 12, 74, 29, 133, 249, 179, 2, 14, 217, 148, 126, 168, 227, 192, 144, 69, 52, 255, 91, 198, 210, 50, 39, 181, 73, 81, 102, 254, 198, 219, 212, 80, 2, 3, 118, 241, 107, 232, 36, 175, 147, 144, 193, 138, 179, 99, 132, 196, 86, 175, 30, 30, 174, 62, 17, 182, 168, 154, 46, 27, 104, 203, 192, 4, 152, 240, 166, 56, 212, 154, 134, 191, 153, 130, 223, 183, 119, 180, 140, 23, 146, 142, 229, 151, 9, 139, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:34:46.635256Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:34:46.635348Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:34:48.399942Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=132 prev_hash=0xc55fb9cbec9d956a14e3638e24fe6fb5c9956fb57c7b9c67e37a91c9c86046d4 hash=0x67dae4032f28c487ca38d95d79eb8c95d1a82dc38d2fb580e13f5d6364ecdcfc producing_time=3.043781ms +2026-04-20T15:34:48.409924Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=132 current_state_root="4dc735a4cdd01b195d4b3cb6a451e2ee98326080063fd187e15d42f5e5098df05cd7ad9a2e917f7822b0af38020bebc2d66fcddf735089c753b2134676661172" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xba47dd616e893e68415c6d4ec3e2602fd84856380aa57896d1681663cffabbc4"] proof_blobs=[] +2026-04-20T15:34:48.418960Z DEBUG StfBlueprint::apply_slot{context=Node da_height=132}: sov_chain_state: Setting next visible slot number next_visible_slot_number=128 +2026-04-20T15:34:48.425281Z DEBUG StfBlueprint::apply_slot{context=Node da_height=132}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xba47dd616e893e68415c6d4ec3e2602fd84856380aa57896d1681663cffabbc4}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:48.427657Z DEBUG StfBlueprint::apply_slot{context=Node da_height=132}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4dc735a4cdd01b195d4b3cb6a451e2ee98326080063fd187e15d42f5e5098df05cd7ad9a2e917f7822b0af38020bebc2d66fcddf735089c753b2134676661172 next_version=132 sesssion_starting_time=339.108µs +2026-04-20T15:34:48.435817Z DEBUG StfBlueprint::apply_slot{context=Node da_height=132}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3eac91372cb865b5e00391578e6ba58f694d7ac350610d404dde436b1bb1a65041cd86bfd5f2303055dfa52e08a64d5b1c35574b46adb9606ff22d3d82384efd next_version=132 time=9.2751ms accesses_build_time=766.885µs finishing_session_time=8.021488ms +2026-04-20T15:34:48.437180Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4dc735a4cdd01b195d4b3cb6a451e2ee98326080063fd187e15d42f5e5098df05cd7ad9a2e917f7822b0af38020bebc2d66fcddf735089c753b2134676661172" next_state_root="3eac91372cb865b5e00391578e6ba58f694d7ac350610d404dde436b1bb1a65041cd86bfd5f2303055dfa52e08a64d5b1c35574b46adb9606ff22d3d82384efd" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:34:48.441015Z DEBUG sov_stf_runner::runner: Block execution complete time=2.994245736s +2026-04-20T15:34:48.441121Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:34:48.441835Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 132, latest_finalized_slot_number: 131, sync_status: Syncing { synced_da_height: 131, target_da_height: 132 }, .. } +2026-04-20T15:34:48.443690Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=128 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 132, latest_finalized_slot_number: 131, sync_status: Syncing { synced_da_height: 131, target_da_height: 132 }, .. } +2026-04-20T15:34:48.443972Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:34:48.444666Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=128 +2026-04-20T15:34:48.444773Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:34:48.447440Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:34:48.448464Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=124 +2026-04-20T15:34:48.450308Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=129 +2026-04-20T15:34:48.451289Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:34:48.452899Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=129 sequence_number=140 +2026-04-20T15:34:48.453216Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:48.453289Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=140 blob_id=2147897643501152275009317815144922755 visible_slot_number_after_increase=129 visible_slots_to_advance=1 +2026-04-20T15:34:48.457699Z DEBUG compute_state_update{scope="sequencer" rollup_height=129 slot_number=129}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3eac91372cb865b5e00391578e6ba58f694d7ac350610d404dde436b1bb1a65041cd86bfd5f2303055dfa52e08a64d5b1c35574b46adb9606ff22d3d82384efd next_version=133 sesssion_starting_time=253.978µs +2026-04-20T15:34:48.460777Z DEBUG manage_blob_submission_inside_task{blob_id=2147897643501152275009317815144922755 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x971b7a6a621cbf6d96135d32c6c6e36797873c020839dfb3a3c403d53c9c613c sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=133 include_at=133 bytes=13 time=1.727109ms +2026-04-20T15:34:48.463757Z DEBUG compute_state_update{scope="sequencer" rollup_height=129 slot_number=129}: sov_state::nomt::prover_storage: computed next state root state_root=4be1a1c6b3670b5d66b6ab9e3d522a28cbf4d8fb43ab36b0c18e0f9d411086836d62aa5d01bfb390d879acf30e9d9b078aa47cb88264baf751e798fc60a45441 next_version=133 time=6.729767ms accesses_build_time=407.108µs finishing_session_time=5.909292ms +2026-04-20T15:34:48.915668Z DEBUG sp1_core_executor_runner::native: CHILD sp1_J4iu1R5PRvOsElIaZ6p6Vg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:34:48.956539Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:34:48.968856Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1853883 cycles +2026-04-20T15:34:48.971582Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [126, 139, 150, 162, 44, 123, 230, 46, 244, 229, 216, 180, 131, 117, 173, 30, 100, 55, 25, 129, 243, 178, 44, 102, 228, 97, 126, 255, 146, 94, 106, 239, 24, 166, 46, 148, 231, 151, 65, 116, 155, 67, 60, 84, 144, 1, 80, 230, 191, 143, 146, 245, 59, 8, 166, 59, 78, 253, 187, 183, 144, 169, 84, 60, 105, 134, 55, 23, 122, 197, 13, 76, 128, 169, 77, 170, 252, 55, 92, 220, 150, 176, 66, 108, 160, 238, 141, 141, 64, 237, 157, 33, 80, 206, 109, 67, 53, 33, 205, 187, 208, 196, 17, 30, 27, 70, 229, 106, 161, 146, 58, 152, 155, 43, 76, 191, 196, 180, 64, 216, 124, 33, 52, 122, 34, 17, 103, 131, 11, 220, 29, 66, 48, 143, 183, 213, 189, 217, 218, 20, 241, 154, 146, 234, 60, 65, 206, 170, 161, 159, 241, 112, 198, 147, 43, 17, 114, 80, 89, 232, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:34:49.623954Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:34:49.624035Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:34:51.404530Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=133 prev_hash=0x67dae4032f28c487ca38d95d79eb8c95d1a82dc38d2fb580e13f5d6364ecdcfc hash=0x80a6fef51fec5b6af9e586d252f5d169d0aa7f4a256f76787a7fab4842e1b0d1 producing_time=3.294288ms +2026-04-20T15:34:51.413816Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=133 current_state_root="3eac91372cb865b5e00391578e6ba58f694d7ac350610d404dde436b1bb1a65041cd86bfd5f2303055dfa52e08a64d5b1c35574b46adb9606ff22d3d82384efd" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x971b7a6a621cbf6d96135d32c6c6e36797873c020839dfb3a3c403d53c9c613c"] proof_blobs=[] +2026-04-20T15:34:51.423479Z DEBUG StfBlueprint::apply_slot{context=Node da_height=133}: sov_chain_state: Setting next visible slot number next_visible_slot_number=129 +2026-04-20T15:34:51.430589Z DEBUG StfBlueprint::apply_slot{context=Node da_height=133}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x971b7a6a621cbf6d96135d32c6c6e36797873c020839dfb3a3c403d53c9c613c}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:51.433192Z DEBUG StfBlueprint::apply_slot{context=Node da_height=133}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3eac91372cb865b5e00391578e6ba58f694d7ac350610d404dde436b1bb1a65041cd86bfd5f2303055dfa52e08a64d5b1c35574b46adb9606ff22d3d82384efd next_version=133 sesssion_starting_time=369.318µs +2026-04-20T15:34:51.443136Z DEBUG StfBlueprint::apply_slot{context=Node da_height=133}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4be1a1c6b3670b5d66b6ab9e3d522a28cbf4d8fb43ab36b0c18e0f9d411086833fca6ec6b479b27a07bfce6ff875ba42cd0031b6293e807950032341905762f9 next_version=133 time=11.213057ms accesses_build_time=885.574µs finishing_session_time=9.771577ms +2026-04-20T15:34:51.444707Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4dc735a4cdd01b195d4b3cb6a451e2ee98326080063fd187e15d42f5e5098df05cd7ad9a2e917f7822b0af38020bebc2d66fcddf735089c753b2134676661172" next_state_root="4be1a1c6b3670b5d66b6ab9e3d522a28cbf4d8fb43ab36b0c18e0f9d411086833fca6ec6b479b27a07bfce6ff875ba42cd0031b6293e807950032341905762f9" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:34:51.449771Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 133, latest_finalized_slot_number: 133, sync_status: Syncing { synced_da_height: 132, target_da_height: 133 }, .. } +2026-04-20T15:34:51.451452Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=129 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 133, latest_finalized_slot_number: 133, sync_status: Syncing { synced_da_height: 132, target_da_height: 133 }, .. } +2026-04-20T15:34:51.452574Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=129 +2026-04-20T15:34:51.455566Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:34:51.456588Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=125 +2026-04-20T15:34:51.457847Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=130 +2026-04-20T15:34:51.458284Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:34:51.459641Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=130 sequence_number=141 +2026-04-20T15:34:51.459961Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:51.460015Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=141 blob_id=2147897647136367185079203127006310126 visible_slot_number_after_increase=130 visible_slots_to_advance=1 +2026-04-20T15:34:51.467020Z DEBUG compute_state_update{scope="sequencer" rollup_height=130 slot_number=130}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:34:51.467092Z DEBUG compute_state_update{scope="sequencer" rollup_height=130 slot_number=130}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:34:51.467370Z DEBUG manage_blob_submission_inside_task{blob_id=2147897647136367185079203127006310126 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xd7bea8c592580ec37c5ca6f5513db5f666070f6653d84ca0a61db6b56b2b6731 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=134 include_at=134 bytes=13 time=1.662359ms +2026-04-20T15:34:51.467433Z DEBUG sov_stf_runner::runner: Block execution complete time=3.026335227s +2026-04-20T15:34:51.467442Z DEBUG compute_state_update{scope="sequencer" rollup_height=130 slot_number=130}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4be1a1c6b3670b5d66b6ab9e3d522a28cbf4d8fb43ab36b0c18e0f9d411086833fca6ec6b479b27a07bfce6ff875ba42cd0031b6293e807950032341905762f9 next_version=134 sesssion_starting_time=2.470644ms +2026-04-20T15:34:51.467515Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:34:51.469342Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:34:51.470433Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:34:51.473794Z DEBUG compute_state_update{scope="sequencer" rollup_height=130 slot_number=130}: sov_state::nomt::prover_storage: computed next state root state_root=2eb960501474cce41684b912126545d2720e70d6d620949df2d2c6b4747acf554adddfa4856c89f94518b39c5a14663207f698c63f271418bca6b5c2c11fbb6c next_version=134 time=9.415739ms accesses_build_time=555.047µs finishing_session_time=6.24697ms +2026-04-20T15:34:51.921230Z DEBUG sp1_core_executor_runner::native: CHILD sp1_rFIO0HG6QferWDBtI7DYuw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:34:51.963072Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:34:51.974714Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1926411 cycles +2026-04-20T15:34:51.977514Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [23, 246, 73, 249, 35, 117, 151, 27, 75, 51, 197, 132, 136, 246, 154, 250, 209, 79, 81, 225, 121, 78, 238, 56, 208, 168, 230, 200, 153, 23, 133, 138, 10, 193, 250, 91, 42, 170, 187, 59, 156, 126, 198, 18, 144, 58, 90, 204, 210, 153, 7, 11, 44, 5, 125, 110, 113, 69, 93, 102, 219, 77, 65, 178, 52, 30, 130, 242, 49, 127, 84, 170, 176, 99, 29, 48, 104, 2, 208, 60, 55, 184, 243, 190, 4, 69, 123, 220, 113, 73, 232, 252, 135, 163, 16, 84, 103, 63, 127, 33, 122, 131, 42, 75, 215, 115, 117, 83, 76, 160, 240, 142, 225, 87, 26, 238, 200, 157, 191, 85, 151, 219, 6, 206, 216, 187, 121, 52, 179, 41, 226, 231, 4, 29, 7, 7, 230, 64, 169, 85, 82, 30, 149, 209, 133, 182, 148, 104, 225, 153, 198, 242, 250, 163, 79, 23, 234, 81, 236, 119, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:34:52.673926Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:34:52.674008Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:34:54.408748Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=134 prev_hash=0x80a6fef51fec5b6af9e586d252f5d169d0aa7f4a256f76787a7fab4842e1b0d1 hash=0x0bf0f558c31a625f0c549204bca31ea6942a4a80d7262c8e4f1371a24296828a producing_time=2.938571ms +2026-04-20T15:34:54.410861Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=134 current_state_root="4be1a1c6b3670b5d66b6ab9e3d522a28cbf4d8fb43ab36b0c18e0f9d411086833fca6ec6b479b27a07bfce6ff875ba42cd0031b6293e807950032341905762f9" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd7bea8c592580ec37c5ca6f5513db5f666070f6653d84ca0a61db6b56b2b6731"] proof_blobs=[] +2026-04-20T15:34:54.419497Z DEBUG StfBlueprint::apply_slot{context=Node da_height=134}: sov_chain_state: Setting next visible slot number next_visible_slot_number=130 +2026-04-20T15:34:54.425473Z DEBUG StfBlueprint::apply_slot{context=Node da_height=134}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xd7bea8c592580ec37c5ca6f5513db5f666070f6653d84ca0a61db6b56b2b6731}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:54.427617Z DEBUG StfBlueprint::apply_slot{context=Node da_height=134}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4be1a1c6b3670b5d66b6ab9e3d522a28cbf4d8fb43ab36b0c18e0f9d411086833fca6ec6b479b27a07bfce6ff875ba42cd0031b6293e807950032341905762f9 next_version=134 sesssion_starting_time=232.879µs +2026-04-20T15:34:54.435287Z DEBUG StfBlueprint::apply_slot{context=Node da_height=134}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2eb960501474cce41684b912126545d2720e70d6d620949df2d2c6b4747acf5520cfeb6c0fd7fab6c9d2333fba76086a7e37630a321d54b52450a426ea58e3aa next_version=134 time=8.696944ms accesses_build_time=781.335µs finishing_session_time=7.510101ms +2026-04-20T15:34:54.436557Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4be1a1c6b3670b5d66b6ab9e3d522a28cbf4d8fb43ab36b0c18e0f9d411086833fca6ec6b479b27a07bfce6ff875ba42cd0031b6293e807950032341905762f9" next_state_root="2eb960501474cce41684b912126545d2720e70d6d620949df2d2c6b4747acf5520cfeb6c0fd7fab6c9d2333fba76086a7e37630a321d54b52450a426ea58e3aa" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:34:54.440512Z DEBUG sov_stf_runner::runner: Block execution complete time=2.973002884s +2026-04-20T15:34:54.440613Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:34:54.441345Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 134, latest_finalized_slot_number: 133, sync_status: Syncing { synced_da_height: 133, target_da_height: 134 }, .. } +2026-04-20T15:34:54.442725Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=130 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 134, latest_finalized_slot_number: 133, sync_status: Syncing { synced_da_height: 133, target_da_height: 134 }, .. } +2026-04-20T15:34:54.442752Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:34:54.443430Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:34:54.443615Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=130 +2026-04-20T15:34:54.446138Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:34:54.447066Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=126 +2026-04-20T15:34:54.448937Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=131 +2026-04-20T15:34:54.450045Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:34:54.451733Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=131 sequence_number=142 +2026-04-20T15:34:54.451984Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=142 blob_id=2147897650753452280500813363324589408 visible_slot_number_after_increase=131 visible_slots_to_advance=1 +2026-04-20T15:34:54.452017Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:54.456530Z DEBUG compute_state_update{scope="sequencer" rollup_height=131 slot_number=131}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2eb960501474cce41684b912126545d2720e70d6d620949df2d2c6b4747acf5520cfeb6c0fd7fab6c9d2333fba76086a7e37630a321d54b52450a426ea58e3aa next_version=135 sesssion_starting_time=292.228µs +2026-04-20T15:34:54.459460Z DEBUG manage_blob_submission_inside_task{blob_id=2147897650753452280500813363324589408 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xc1761b5f7e5bfa268367158d9e7fdef01b1c3572a6676ff0412c636888fee332 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=135 include_at=135 bytes=13 time=1.657269ms +2026-04-20T15:34:54.462328Z DEBUG compute_state_update{scope="sequencer" rollup_height=131 slot_number=131}: sov_state::nomt::prover_storage: computed next state root state_root=2a96922f25738339bfc1b64883a84fe1078fefcee7f0979ca3a2671d292083fd35548d9e99452b1619036d5b61fce9ae3028929f6edb65c5ae49804481566614 next_version=135 time=6.464608ms accesses_build_time=373.278µs finishing_session_time=5.668073ms +2026-04-20T15:34:54.941702Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0z0lKl2LTcGmCNM8KkrMnQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:34:55.006670Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:34:55.019082Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4125097 cycles +2026-04-20T15:34:55.021847Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [86, 141, 22, 122, 161, 249, 204, 218, 251, 123, 113, 20, 207, 192, 241, 187, 227, 197, 231, 188, 202, 173, 117, 21, 34, 90, 16, 115, 225, 2, 148, 241, 83, 88, 246, 228, 144, 183, 50, 217, 114, 152, 32, 214, 216, 14, 214, 137, 234, 10, 219, 230, 144, 235, 178, 173, 115, 65, 60, 66, 193, 21, 93, 51, 99, 172, 157, 168, 208, 216, 184, 210, 30, 39, 87, 162, 26, 154, 114, 25, 114, 192, 64, 232, 94, 230, 250, 211, 240, 240, 104, 73, 19, 116, 231, 171, 34, 7, 38, 8, 226, 45, 52, 37, 3, 117, 71, 247, 67, 217, 51, 27, 205, 120, 245, 48, 75, 245, 149, 169, 249, 90, 46, 18, 240, 238, 238, 16, 129, 87, 78, 86, 30, 138, 107, 30, 186, 208, 196, 120, 34, 252, 82, 176, 27, 149, 120, 66, 99, 254, 188, 100, 125, 5, 158, 247, 74, 113, 201, 116, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:34:56.501271Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:34:56.501367Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:34:57.414046Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=135 prev_hash=0x0bf0f558c31a625f0c549204bca31ea6942a4a80d7262c8e4f1371a24296828a hash=0x7e770f3e618dfe231128d979020e623784f832fb278aa378ebd1f4dffb243c9e producing_time=3.358948ms +2026-04-20T15:34:57.424011Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=135 current_state_root="2eb960501474cce41684b912126545d2720e70d6d620949df2d2c6b4747acf5520cfeb6c0fd7fab6c9d2333fba76086a7e37630a321d54b52450a426ea58e3aa" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc1761b5f7e5bfa268367158d9e7fdef01b1c3572a6676ff0412c636888fee332"] proof_blobs=[] +2026-04-20T15:34:57.430546Z DEBUG StfBlueprint::apply_slot{context=Node da_height=135}: sov_chain_state: Setting next visible slot number next_visible_slot_number=131 +2026-04-20T15:34:57.435452Z DEBUG StfBlueprint::apply_slot{context=Node da_height=135}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xc1761b5f7e5bfa268367158d9e7fdef01b1c3572a6676ff0412c636888fee332}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:57.437078Z DEBUG StfBlueprint::apply_slot{context=Node da_height=135}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2eb960501474cce41684b912126545d2720e70d6d620949df2d2c6b4747acf5520cfeb6c0fd7fab6c9d2333fba76086a7e37630a321d54b52450a426ea58e3aa next_version=135 sesssion_starting_time=176.029µs +2026-04-20T15:34:57.444248Z DEBUG StfBlueprint::apply_slot{context=Node da_height=135}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2a96922f25738339bfc1b64883a84fe1078fefcee7f0979ca3a2671d292083fd1fd96f4ee83d07fef81308b4809f27414ca6738392482d8529fe87466608bfd9 next_version=135 time=7.911809ms accesses_build_time=556.766µs finishing_session_time=7.071224ms +2026-04-20T15:34:57.445228Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4be1a1c6b3670b5d66b6ab9e3d522a28cbf4d8fb43ab36b0c18e0f9d411086833fca6ec6b479b27a07bfce6ff875ba42cd0031b6293e807950032341905762f9" next_state_root="2a96922f25738339bfc1b64883a84fe1078fefcee7f0979ca3a2671d292083fd1fd96f4ee83d07fef81308b4809f27414ca6738392482d8529fe87466608bfd9" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:34:57.449276Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 135, latest_finalized_slot_number: 135, sync_status: Syncing { synced_da_height: 134, target_da_height: 135 }, .. } +2026-04-20T15:34:57.450724Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=131 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 135, latest_finalized_slot_number: 135, sync_status: Syncing { synced_da_height: 134, target_da_height: 135 }, .. } +2026-04-20T15:34:57.451731Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=131 +2026-04-20T15:34:57.455069Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:34:57.456102Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=127 +2026-04-20T15:34:57.458042Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=132 +2026-04-20T15:34:57.459171Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:34:57.460937Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=132 sequence_number=143 +2026-04-20T15:34:57.461218Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=143 blob_id=2147897654391136892592085975352590683 visible_slot_number_after_increase=132 visible_slots_to_advance=1 +2026-04-20T15:34:57.461206Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:34:57.468050Z DEBUG compute_state_update{scope="sequencer" rollup_height=132 slot_number=132}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:34:57.468118Z DEBUG compute_state_update{scope="sequencer" rollup_height=132 slot_number=132}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:34:57.468374Z DEBUG sov_stf_runner::runner: Block execution complete time=3.027782519s +2026-04-20T15:34:57.468391Z DEBUG compute_state_update{scope="sequencer" rollup_height=132 slot_number=132}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2a96922f25738339bfc1b64883a84fe1078fefcee7f0979ca3a2671d292083fd1fd96f4ee83d07fef81308b4809f27414ca6738392482d8529fe87466608bfd9 next_version=136 sesssion_starting_time=3.02795ms +2026-04-20T15:34:57.468424Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:34:57.469089Z DEBUG manage_blob_submission_inside_task{blob_id=2147897654391136892592085975352590683 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x7df80f23d4ad1310ce920eeb4ae3efe2cf39f237a589a83b86bad61033777aa4 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=136 include_at=136 bytes=13 time=2.357534ms +2026-04-20T15:34:57.471181Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:34:57.471827Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:34:57.473699Z DEBUG compute_state_update{scope="sequencer" rollup_height=132 slot_number=132}: sov_state::nomt::prover_storage: computed next state root state_root=2288b90631b4f50548072fe53749390868eb257973d2824819d1ec1c57a00f23368d254c252e8df408ef44ed090dac78c3a4bd9df7481e2e25ff8c962399f273 next_version=136 time=8.735513ms accesses_build_time=395.407µs finishing_session_time=5.215346ms +2026-04-20T15:34:57.919542Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LjB992wGRIqeD9_qVFGE4w==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:34:57.958177Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:34:57.970042Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1766285 cycles +2026-04-20T15:34:57.972636Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [51, 10, 99, 211, 186, 105, 107, 212, 165, 15, 111, 61, 131, 79, 117, 176, 143, 206, 241, 174, 246, 182, 246, 152, 210, 19, 150, 86, 37, 248, 210, 118, 60, 181, 119, 217, 59, 169, 23, 187, 21, 213, 154, 247, 58, 157, 196, 190, 242, 136, 28, 92, 82, 136, 176, 104, 52, 62, 166, 106, 132, 151, 3, 2, 119, 6, 224, 102, 206, 16, 224, 228, 85, 64, 89, 135, 114, 216, 24, 52, 199, 158, 50, 251, 82, 141, 224, 248, 85, 174, 220, 139, 56, 134, 249, 160, 85, 248, 201, 63, 52, 230, 21, 170, 38, 4, 239, 58, 2, 217, 2, 95, 85, 3, 166, 148, 207, 119, 144, 221, 46, 126, 186, 90, 242, 38, 49, 240, 70, 168, 62, 0, 215, 31, 159, 147, 170, 216, 199, 241, 233, 139, 225, 74, 251, 65, 210, 151, 190, 248, 163, 131, 186, 79, 132, 151, 192, 175, 202, 98, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:34:58.598331Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:34:58.598410Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:35:00.418544Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=136 prev_hash=0x7e770f3e618dfe231128d979020e623784f832fb278aa378ebd1f4dffb243c9e hash=0xde667534033435a14c6119f0e542ad0522f5a9f9247a3ecacb7a02be74a80ea7 producing_time=3.281089ms +2026-04-20T15:35:00.420756Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=136 current_state_root="2a96922f25738339bfc1b64883a84fe1078fefcee7f0979ca3a2671d292083fd1fd96f4ee83d07fef81308b4809f27414ca6738392482d8529fe87466608bfd9" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x7df80f23d4ad1310ce920eeb4ae3efe2cf39f237a589a83b86bad61033777aa4"] proof_blobs=[] +2026-04-20T15:35:00.429531Z DEBUG StfBlueprint::apply_slot{context=Node da_height=136}: sov_chain_state: Setting next visible slot number next_visible_slot_number=132 +2026-04-20T15:35:00.435842Z DEBUG StfBlueprint::apply_slot{context=Node da_height=136}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x7df80f23d4ad1310ce920eeb4ae3efe2cf39f237a589a83b86bad61033777aa4}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:00.438166Z DEBUG StfBlueprint::apply_slot{context=Node da_height=136}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2a96922f25738339bfc1b64883a84fe1078fefcee7f0979ca3a2671d292083fd1fd96f4ee83d07fef81308b4809f27414ca6738392482d8529fe87466608bfd9 next_version=136 sesssion_starting_time=325.628µs +2026-04-20T15:35:00.445697Z DEBUG StfBlueprint::apply_slot{context=Node da_height=136}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2288b90631b4f50548072fe53749390868eb257973d2824819d1ec1c57a00f2311fa6dc8c48c13b29eaaf1d41c63ca1c4c9a65aed1d852ab4061096f1bc3a993 next_version=136 time=8.650184ms accesses_build_time=781.125µs finishing_session_time=7.398042ms +2026-04-20T15:35:00.446984Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2a96922f25738339bfc1b64883a84fe1078fefcee7f0979ca3a2671d292083fd1fd96f4ee83d07fef81308b4809f27414ca6738392482d8529fe87466608bfd9" next_state_root="2288b90631b4f50548072fe53749390868eb257973d2824819d1ec1c57a00f2311fa6dc8c48c13b29eaaf1d41c63ca1c4c9a65aed1d852ab4061096f1bc3a993" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:35:00.451773Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 136, latest_finalized_slot_number: 136, sync_status: Syncing { synced_da_height: 135, target_da_height: 136 }, .. } +2026-04-20T15:35:00.453170Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=132 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 136, latest_finalized_slot_number: 136, sync_status: Syncing { synced_da_height: 135, target_da_height: 136 }, .. } +2026-04-20T15:35:00.454114Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=132 +2026-04-20T15:35:00.456834Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:35:00.457824Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=128 +2026-04-20T15:35:00.459653Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=133 +2026-04-20T15:35:00.460739Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:35:00.462285Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=133 sequence_number=144 +2026-04-20T15:35:00.462561Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:00.462600Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=144 blob_id=2147897658020323975427706654509516750 visible_slot_number_after_increase=133 visible_slots_to_advance=1 +2026-04-20T15:35:00.466686Z DEBUG compute_state_update{scope="sequencer" rollup_height=133 slot_number=133}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:35:00.466942Z DEBUG sov_stf_runner::runner: Block execution complete time=2.998525708s +2026-04-20T15:35:00.466984Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:35:00.466982Z DEBUG compute_state_update{scope="sequencer" rollup_height=133 slot_number=133}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2288b90631b4f50548072fe53749390868eb257973d2824819d1ec1c57a00f2311fa6dc8c48c13b29eaaf1d41c63ca1c4c9a65aed1d852ab4061096f1bc3a993 next_version=137 sesssion_starting_time=302.818µs +2026-04-20T15:35:00.469699Z DEBUG manage_blob_submission_inside_task{blob_id=2147897658020323975427706654509516750 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x2344ef15197c3b4d1d9b760c23fcedf9a225152eacae42cb86d9e449e21628e4 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=137 include_at=137 bytes=13 time=1.579569ms +2026-04-20T15:35:00.472499Z DEBUG compute_state_update{scope="sequencer" rollup_height=133 slot_number=133}: sov_state::nomt::prover_storage: computed next state root state_root=083cb57d0574fb1e1b5cd620e8f911b6a741724f5c44806b4f1ac7e5e5aaa4b85a828fc38afb3e0a1d2df7de03943460f5d3c1f0e825e09c13251e4c9e80fa1e next_version=137 time=6.210439ms accesses_build_time=384.377µs finishing_session_time=5.433554ms +2026-04-20T15:35:00.931409Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Pa-tI6mOSXSe3DX96JThqA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:35:00.969506Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:35:00.981369Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1778046 cycles +2026-04-20T15:35:00.984060Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [111, 121, 57, 33, 20, 27, 239, 254, 77, 59, 130, 9, 29, 223, 200, 20, 108, 151, 211, 138, 247, 8, 201, 114, 26, 88, 99, 191, 0, 66, 157, 165, 120, 62, 6, 173, 12, 208, 130, 173, 3, 200, 97, 56, 99, 68, 35, 169, 215, 69, 24, 58, 130, 22, 245, 138, 109, 162, 102, 19, 60, 180, 145, 97, 72, 133, 29, 43, 110, 226, 48, 128, 57, 96, 13, 93, 110, 115, 122, 33, 94, 120, 214, 124, 228, 106, 168, 131, 27, 12, 49, 100, 83, 76, 150, 195, 81, 157, 140, 10, 42, 225, 118, 0, 113, 20, 216, 100, 60, 21, 177, 207, 153, 2, 161, 251, 83, 161, 4, 88, 192, 60, 192, 73, 42, 107, 158, 12, 13, 199, 216, 19, 65, 243, 68, 33, 38, 140, 156, 195, 105, 116, 115, 64, 153, 39, 114, 79, 12, 82, 9, 73, 168, 237, 183, 88, 231, 103, 189, 163, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:35:01.614120Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:35:01.614210Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:35:01.717790Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:35:01.957890Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:35:01.960147Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2607482 cycles +2026-04-20T15:35:01.960522Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [121, 0, 0, 0, 0, 0, 0, 0, 130, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 46, 122, 21, 116, 249, 240, 6, 251, 33, 143, 187, 51, 54, 100, 174, 79, 196, 114, 141, 179, 160, 42, 153, 239, 131, 23, 115, 21, 56, 235, 77, 159, 24, 181, 27, 67, 178, 122, 202, 39, 219, 210, 33, 180, 90, 92, 189, 172, 221, 178, 89, 192, 160, 142, 96, 73, 54, 173, 96, 35, 23, 154, 105, 170, 72, 133, 29, 43, 110, 226, 48, 128, 57, 96, 13, 93, 110, 115, 122, 33, 94, 120, 214, 124, 228, 106, 168, 131, 27, 12, 49, 100, 83, 76, 150, 195, 81, 157, 140, 10, 42, 225, 118, 0, 113, 20, 216, 100, 60, 21, 177, 207, 153, 2, 161, 251, 83, 161, 4, 88, 192, 60, 192, 73, 42, 107, 158, 12, 57, 72, 203, 215, 98, 46, 170, 221, 61, 100, 210, 123, 181, 202, 209, 250, 182, 161, 143, 183, 179, 219, 61, 106, 76, 19, 68, 80, 43, 83, 108, 254, 13, 199, 216, 19, 65, 243, 68, 33, 38, 140, 156, 195, 105, 116, 115, 64, 153, 39, 114, 79, 12, 82, 9, 73, 168, 237, 183, 88, 231, 103, 189, 163, 32, 0, 0, 0, 0, 0, 0, 0, 33, 87, 226, 242, 39, 49, 250, 210, 41, 143, 26, 188, 101, 19, 12, 136, 43, 105, 121, 236, 80, 118, 108, 155, 63, 154, 215, 73, 15, 107, 27, 67, 32, 0, 0, 0, 0, 0, 0, 0, 54, 246, 123, 188, 67, 61, 237, 103, 16, 229, 5, 146, 113, 8, 178, 215, 95, 95, 151, 239, 106, 28, 10, 135, 55, 55, 208, 95, 86, 190, 27, 9, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:35:02.873350Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:35:02.873431Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:35:02.874233Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=1951 +2026-04-20T15:35:02.876860Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:35:02.877419Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:35:02.877814Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=145 blob_id=2147897660936255652857708400871517604 +2026-04-20T15:35:03.423269Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=137 prev_hash=0xde667534033435a14c6119f0e542ad0522f5a9f9247a3ecacb7a02be74a80ea7 hash=0xe1c8c50cc7ea7c084ef601ef3193210d6354631c5dc62516a8a6ce03d9ce0b16 producing_time=2.95067ms +2026-04-20T15:35:03.429293Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=137 current_state_root="2288b90631b4f50548072fe53749390868eb257973d2824819d1ec1c57a00f2311fa6dc8c48c13b29eaaf1d41c63ca1c4c9a65aed1d852ab4061096f1bc3a993" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x2344ef15197c3b4d1d9b760c23fcedf9a225152eacae42cb86d9e449e21628e4"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xbbe1ae21ea668779b4d07af62d08ed2d9bac11832ab858d8cbeafd2345aae07d, len=2001"] +2026-04-20T15:35:03.438248Z DEBUG StfBlueprint::apply_slot{context=Node da_height=137}: sov_chain_state: Setting next visible slot number next_visible_slot_number=133 +2026-04-20T15:35:03.444898Z DEBUG StfBlueprint::apply_slot{context=Node da_height=137}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x2344ef15197c3b4d1d9b760c23fcedf9a225152eacae42cb86d9e449e21628e4}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:03.447485Z DEBUG StfBlueprint::apply_slot{context=Node da_height=137}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2288b90631b4f50548072fe53749390868eb257973d2824819d1ec1c57a00f2311fa6dc8c48c13b29eaaf1d41c63ca1c4c9a65aed1d852ab4061096f1bc3a993 next_version=137 sesssion_starting_time=331.427µs +2026-04-20T15:35:03.455869Z DEBUG StfBlueprint::apply_slot{context=Node da_height=137}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=083cb57d0574fb1e1b5cd620e8f911b6a741724f5c44806b4f1ac7e5e5aaa4b87eb250b27aca13d319a09a576a00c07ba8a3dad27fcc08649473edf41c4358e5 next_version=137 time=9.677297ms accesses_build_time=946.244µs finishing_session_time=8.189196ms +2026-04-20T15:35:03.457270Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2288b90631b4f50548072fe53749390868eb257973d2824819d1ec1c57a00f2311fa6dc8c48c13b29eaaf1d41c63ca1c4c9a65aed1d852ab4061096f1bc3a993" next_state_root="083cb57d0574fb1e1b5cd620e8f911b6a741724f5c44806b4f1ac7e5e5aaa4b87eb250b27aca13d319a09a576a00c07ba8a3dad27fcc08649473edf41c4358e5" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:35:03.462293Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 137, latest_finalized_slot_number: 137, sync_status: Syncing { synced_da_height: 136, target_da_height: 137 }, .. } +2026-04-20T15:35:03.463726Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=133 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 137, latest_finalized_slot_number: 137, sync_status: Syncing { synced_da_height: 136, target_da_height: 137 }, .. } +2026-04-20T15:35:03.464675Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=133 +2026-04-20T15:35:03.467735Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:35:03.468731Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=129 +2026-04-20T15:35:03.470717Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=134 +2026-04-20T15:35:03.471865Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:35:03.476197Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 121. Final slot number 130 +2026-04-20T15:35:03.476920Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=134 sequence_number=146 +2026-04-20T15:35:03.477192Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:03.477250Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=146 blob_id=2147897661664061502630993744492537374 visible_slot_number_after_increase=134 visible_slots_to_advance=1 +2026-04-20T15:35:03.478243Z DEBUG sov_stf_runner::runner: Block execution complete time=3.011264166s +2026-04-20T15:35:03.478330Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:35:03.480864Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:35:03.481717Z DEBUG compute_state_update{scope="sequencer" rollup_height=134 slot_number=134}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:35:03.481834Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:35:03.482043Z DEBUG compute_state_update{scope="sequencer" rollup_height=134 slot_number=134}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=083cb57d0574fb1e1b5cd620e8f911b6a741724f5c44806b4f1ac7e5e5aaa4b87eb250b27aca13d319a09a576a00c07ba8a3dad27fcc08649473edf41c4358e5 next_version=138 sesssion_starting_time=333.678µs +2026-04-20T15:35:03.484825Z DEBUG manage_blob_submission_inside_task{blob_id=2147897661664061502630993744492537374 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xd5189ad45f1343517f566cc8a6a6ba796ea8dc20ea3c5b56c3ecd84ec5575f57 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=138 include_at=138 bytes=13 time=1.748718ms +2026-04-20T15:35:03.488713Z DEBUG compute_state_update{scope="sequencer" rollup_height=134 slot_number=134}: sov_state::nomt::prover_storage: computed next state root state_root=26cc088f750a19570ef2dbd88a271f15e5ea0def66e526b8f4ec1fc961c2452d241d6428c2bc10ff8cb98dc89a53674f686cc6d4e545fd52544b919a19bc5fae next_version=138 time=7.527631ms accesses_build_time=515.606µs finishing_session_time=6.573097ms +2026-04-20T15:35:06.339990Z DEBUG sp1_core_executor_runner::native: CHILD sp1_XYWPRLKES3aXxMJf8oQJ2g==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:35:06.380845Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:35:06.391695Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1865051 cycles +2026-04-20T15:35:06.394867Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [107, 14, 77, 114, 197, 13, 54, 119, 244, 2, 149, 24, 196, 201, 0, 114, 34, 178, 88, 152, 126, 28, 168, 213, 53, 135, 197, 188, 29, 239, 31, 75, 93, 157, 203, 242, 152, 115, 239, 175, 106, 226, 166, 42, 200, 191, 200, 170, 52, 43, 124, 185, 35, 118, 112, 22, 148, 6, 220, 163, 176, 168, 243, 79, 93, 68, 100, 10, 38, 232, 32, 37, 14, 74, 198, 201, 4, 128, 188, 14, 195, 108, 152, 43, 156, 161, 0, 14, 141, 139, 13, 255, 28, 238, 211, 189, 121, 103, 174, 86, 228, 13, 43, 76, 175, 50, 115, 157, 14, 98, 25, 253, 152, 22, 230, 186, 75, 93, 174, 164, 225, 73, 168, 147, 44, 65, 139, 25, 197, 95, 185, 203, 236, 157, 149, 106, 20, 227, 99, 142, 36, 254, 111, 181, 201, 149, 111, 181, 124, 123, 156, 103, 227, 122, 145, 201, 200, 96, 70, 212, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:35:06.426821Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=138 prev_hash=0xe1c8c50cc7ea7c084ef601ef3193210d6354631c5dc62516a8a6ce03d9ce0b16 hash=0xb8a8e1f394a4f23c5944ce80584362fd40fcad606154e6a925f4e3ecfcc931e0 producing_time=2.932261ms +2026-04-20T15:35:06.430725Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=138 current_state_root="083cb57d0574fb1e1b5cd620e8f911b6a741724f5c44806b4f1ac7e5e5aaa4b87eb250b27aca13d319a09a576a00c07ba8a3dad27fcc08649473edf41c4358e5" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd5189ad45f1343517f566cc8a6a6ba796ea8dc20ea3c5b56c3ecd84ec5575f57"] proof_blobs=[] +2026-04-20T15:35:06.441220Z DEBUG StfBlueprint::apply_slot{context=Node da_height=138}: sov_chain_state: Setting next visible slot number next_visible_slot_number=134 +2026-04-20T15:35:06.459855Z DEBUG StfBlueprint::apply_slot{context=Node da_height=138}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 121. Final slot number 130 +2026-04-20T15:35:06.460337Z DEBUG StfBlueprint::apply_slot{context=Node da_height=138}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xd5189ad45f1343517f566cc8a6a6ba796ea8dc20ea3c5b56c3ecd84ec5575f57}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:06.462866Z DEBUG StfBlueprint::apply_slot{context=Node da_height=138}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=083cb57d0574fb1e1b5cd620e8f911b6a741724f5c44806b4f1ac7e5e5aaa4b87eb250b27aca13d319a09a576a00c07ba8a3dad27fcc08649473edf41c4358e5 next_version=138 sesssion_starting_time=307.458µs +2026-04-20T15:35:06.472751Z DEBUG StfBlueprint::apply_slot{context=Node da_height=138}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=26cc088f750a19570ef2dbd88a271f15e5ea0def66e526b8f4ec1fc961c2452d3a03aee8d7ec22f8e49c5127497ce3c57943d7b4179c99bb9f56eae4ae67ad76 next_version=138 time=11.285236ms accesses_build_time=1.080453ms finishing_session_time=9.731517ms +2026-04-20T15:35:06.474172Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="083cb57d0574fb1e1b5cd620e8f911b6a741724f5c44806b4f1ac7e5e5aaa4b87eb250b27aca13d319a09a576a00c07ba8a3dad27fcc08649473edf41c4358e5" next_state_root="26cc088f750a19570ef2dbd88a271f15e5ea0def66e526b8f4ec1fc961c2452d3a03aee8d7ec22f8e49c5127497ce3c57943d7b4179c99bb9f56eae4ae67ad76" aggregated_proofs=1 proof_receipts=1 +2026-04-20T15:35:06.479966Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 138, latest_finalized_slot_number: 138, sync_status: Syncing { synced_da_height: 137, target_da_height: 138 }, .. } +2026-04-20T15:35:06.481335Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=134 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 138, latest_finalized_slot_number: 138, sync_status: Syncing { synced_da_height: 137, target_da_height: 138 }, .. } +2026-04-20T15:35:06.482220Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=134 +2026-04-20T15:35:06.484784Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:35:06.485731Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=130 +2026-04-20T15:35:06.487552Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=135 +2026-04-20T15:35:06.488505Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:35:06.490120Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=135 sequence_number=147 +2026-04-20T15:35:06.490428Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=147 blob_id=2147897665307707841159534650085801954 visible_slot_number_after_increase=135 visible_slots_to_advance=1 +2026-04-20T15:35:06.490404Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:06.490981Z DEBUG sov_stf_runner::runner: Block execution complete time=3.012680517s +2026-04-20T15:35:06.491026Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:35:06.493942Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:35:06.494685Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:35:06.494815Z DEBUG compute_state_update{scope="sequencer" rollup_height=135 slot_number=135}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:35:06.495119Z DEBUG compute_state_update{scope="sequencer" rollup_height=135 slot_number=135}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=26cc088f750a19570ef2dbd88a271f15e5ea0def66e526b8f4ec1fc961c2452d3a03aee8d7ec22f8e49c5127497ce3c57943d7b4179c99bb9f56eae4ae67ad76 next_version=139 sesssion_starting_time=311.398µs +2026-04-20T15:35:06.497526Z DEBUG manage_blob_submission_inside_task{blob_id=2147897665307707841159534650085801954 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x4dcad202fdb39fded52dcc0213aafbe07371a8bfe4395561fed2badf95602a29 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=139 include_at=139 bytes=13 time=1.50657ms +2026-04-20T15:35:06.500410Z DEBUG compute_state_update{scope="sequencer" rollup_height=135 slot_number=135}: sov_state::nomt::prover_storage: computed next state root state_root=30b1ec51691172fdf4889df83c3af8f97ea0653fb858639751ed637a67eb829c0193d40e8ef626171670dca6f454ba6286794b367187c64ed9dc7b172cd06326 next_version=139 time=5.980391ms accesses_build_time=372.178µs finishing_session_time=5.206777ms +2026-04-20T15:35:06.947060Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wQj9LZU6RdGNN-QwWUqNTg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:35:06.987212Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:35:06.999835Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1839920 cycles +2026-04-20T15:35:07.002627Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [77, 199, 53, 164, 205, 208, 27, 25, 93, 75, 60, 182, 164, 81, 226, 238, 152, 50, 96, 128, 6, 63, 209, 135, 225, 93, 66, 245, 229, 9, 141, 240, 92, 215, 173, 154, 46, 145, 127, 120, 34, 176, 175, 56, 2, 11, 235, 194, 214, 111, 205, 223, 115, 80, 137, 199, 83, 178, 19, 70, 118, 102, 17, 114, 45, 251, 94, 253, 95, 205, 251, 254, 88, 69, 63, 227, 140, 159, 16, 218, 196, 143, 36, 149, 3, 251, 182, 106, 218, 198, 239, 222, 131, 199, 43, 22, 40, 131, 65, 129, 165, 186, 0, 188, 82, 46, 229, 186, 240, 174, 167, 243, 55, 69, 92, 192, 190, 224, 155, 43, 14, 101, 138, 96, 245, 14, 33, 56, 103, 218, 228, 3, 47, 40, 196, 135, 202, 56, 217, 93, 121, 235, 140, 149, 209, 168, 45, 195, 141, 47, 181, 128, 225, 63, 93, 99, 100, 236, 220, 252, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:35:07.086713Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:35:07.086795Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:35:07.700456Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:35:07.700534Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:35:09.431483Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=139 prev_hash=0xb8a8e1f394a4f23c5944ce80584362fd40fcad606154e6a925f4e3ecfcc931e0 hash=0xa62e39b28258efdcfe1be7b9fea1c49e95346c514d77c0a116e33785bb719f8b producing_time=3.108989ms +2026-04-20T15:35:09.433564Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=139 current_state_root="26cc088f750a19570ef2dbd88a271f15e5ea0def66e526b8f4ec1fc961c2452d3a03aee8d7ec22f8e49c5127497ce3c57943d7b4179c99bb9f56eae4ae67ad76" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x4dcad202fdb39fded52dcc0213aafbe07371a8bfe4395561fed2badf95602a29"] proof_blobs=[] +2026-04-20T15:35:09.442534Z DEBUG StfBlueprint::apply_slot{context=Node da_height=139}: sov_chain_state: Setting next visible slot number next_visible_slot_number=135 +2026-04-20T15:35:09.448706Z DEBUG StfBlueprint::apply_slot{context=Node da_height=139}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x4dcad202fdb39fded52dcc0213aafbe07371a8bfe4395561fed2badf95602a29}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:09.450943Z DEBUG StfBlueprint::apply_slot{context=Node da_height=139}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=26cc088f750a19570ef2dbd88a271f15e5ea0def66e526b8f4ec1fc961c2452d3a03aee8d7ec22f8e49c5127497ce3c57943d7b4179c99bb9f56eae4ae67ad76 next_version=139 sesssion_starting_time=260.238µs +2026-04-20T15:35:09.458960Z DEBUG StfBlueprint::apply_slot{context=Node da_height=139}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=30b1ec51691172fdf4889df83c3af8f97ea0653fb858639751ed637a67eb829c42e997d1843d6c9feadbbb48c759c22eb00a71a7f3a306073a36bb61d064ad20 next_version=139 time=9.068801ms accesses_build_time=780.175µs finishing_session_time=7.853089ms +2026-04-20T15:35:09.460221Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="26cc088f750a19570ef2dbd88a271f15e5ea0def66e526b8f4ec1fc961c2452d3a03aee8d7ec22f8e49c5127497ce3c57943d7b4179c99bb9f56eae4ae67ad76" next_state_root="30b1ec51691172fdf4889df83c3af8f97ea0653fb858639751ed637a67eb829c42e997d1843d6c9feadbbb48c759c22eb00a71a7f3a306073a36bb61d064ad20" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:35:09.464743Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 139, latest_finalized_slot_number: 139, sync_status: Synced { synced_da_height: 138 }, .. } +2026-04-20T15:35:09.466124Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=135 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 139, latest_finalized_slot_number: 139, sync_status: Synced { synced_da_height: 138 }, .. } +2026-04-20T15:35:09.467080Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=135 +2026-04-20T15:35:09.469674Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:35:09.470596Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=131 +2026-04-20T15:35:09.472456Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=136 +2026-04-20T15:35:09.473640Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:35:09.475435Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=136 sequence_number=148 +2026-04-20T15:35:09.475759Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=148 blob_id=2147897668916413672927778013163732683 visible_slot_number_after_increase=136 visible_slots_to_advance=1 +2026-04-20T15:35:09.475732Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:09.479816Z DEBUG sov_stf_runner::runner: Block execution complete time=2.988798912s +2026-04-20T15:35:09.479868Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:35:09.480382Z DEBUG compute_state_update{scope="sequencer" rollup_height=136 slot_number=136}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:35:09.480757Z DEBUG compute_state_update{scope="sequencer" rollup_height=136 slot_number=136}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=30b1ec51691172fdf4889df83c3af8f97ea0653fb858639751ed637a67eb829c42e997d1843d6c9feadbbb48c759c22eb00a71a7f3a306073a36bb61d064ad20 next_version=140 sesssion_starting_time=372.518µs +2026-04-20T15:35:09.482543Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:35:09.483119Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:35:09.483525Z DEBUG manage_blob_submission_inside_task{blob_id=2147897668916413672927778013163732683 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xaa27c010549eab3d0df68e57316df62401134d21b2762d5a096d110ffd70ca1f sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=140 include_at=140 bytes=13 time=1.62722ms +2026-04-20T15:35:09.486714Z DEBUG compute_state_update{scope="sequencer" rollup_height=136 slot_number=136}: sov_state::nomt::prover_storage: computed next state root state_root=663a8082fffbe21a34e55cf746230d9f8dd0a7ca5f5635ffefd5a64735c8b5de51e65440bb9adee9089a1782ee957f4f2017b13225e3a83c314e9bbe4e76c4b4 next_version=140 time=6.843895ms accesses_build_time=483.086µs finishing_session_time=5.825592ms +2026-04-20T15:35:09.978488Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bJzKi9kfSWK2Mrq1AeEYLg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:35:10.016930Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:35:10.029072Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1792083 cycles +2026-04-20T15:35:10.031823Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [62, 172, 145, 55, 44, 184, 101, 181, 224, 3, 145, 87, 142, 107, 165, 143, 105, 77, 122, 195, 80, 97, 13, 64, 77, 222, 67, 107, 27, 177, 166, 80, 65, 205, 134, 191, 213, 242, 48, 48, 85, 223, 165, 46, 8, 166, 77, 91, 28, 53, 87, 75, 70, 173, 185, 96, 111, 242, 45, 61, 130, 56, 78, 253, 55, 23, 122, 24, 38, 151, 250, 215, 208, 216, 28, 116, 46, 146, 39, 251, 247, 219, 190, 4, 219, 238, 16, 136, 165, 150, 109, 43, 154, 232, 240, 244, 44, 154, 42, 142, 79, 64, 184, 19, 77, 90, 42, 246, 87, 221, 240, 240, 142, 248, 137, 109, 34, 234, 10, 192, 32, 238, 165, 16, 3, 159, 23, 59, 128, 166, 254, 245, 31, 236, 91, 106, 249, 229, 134, 210, 82, 245, 209, 105, 208, 170, 127, 74, 37, 111, 118, 120, 122, 127, 171, 72, 66, 225, 176, 209, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:35:10.664683Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:35:10.664761Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:35:12.436487Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=140 prev_hash=0xa62e39b28258efdcfe1be7b9fea1c49e95346c514d77c0a116e33785bb719f8b hash=0xbd6caca58620177a2d269943f4827e16398c3c298c44331fea99bc69ec9bdd3a producing_time=2.971961ms +2026-04-20T15:35:12.442752Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=140 current_state_root="30b1ec51691172fdf4889df83c3af8f97ea0653fb858639751ed637a67eb829c42e997d1843d6c9feadbbb48c759c22eb00a71a7f3a306073a36bb61d064ad20" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xaa27c010549eab3d0df68e57316df62401134d21b2762d5a096d110ffd70ca1f"] proof_blobs=[] +2026-04-20T15:35:12.451455Z DEBUG StfBlueprint::apply_slot{context=Node da_height=140}: sov_chain_state: Setting next visible slot number next_visible_slot_number=136 +2026-04-20T15:35:12.457628Z DEBUG StfBlueprint::apply_slot{context=Node da_height=140}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xaa27c010549eab3d0df68e57316df62401134d21b2762d5a096d110ffd70ca1f}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:12.459905Z DEBUG StfBlueprint::apply_slot{context=Node da_height=140}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=30b1ec51691172fdf4889df83c3af8f97ea0653fb858639751ed637a67eb829c42e997d1843d6c9feadbbb48c759c22eb00a71a7f3a306073a36bb61d064ad20 next_version=140 sesssion_starting_time=263.448µs +2026-04-20T15:35:12.467925Z DEBUG StfBlueprint::apply_slot{context=Node da_height=140}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=663a8082fffbe21a34e55cf746230d9f8dd0a7ca5f5635ffefd5a64735c8b5de1c143234e8212d8edab93338cdff56806613d1ec6d390752d79b439f22a4bae9 next_version=140 time=9.082461ms accesses_build_time=786.905µs finishing_session_time=7.868438ms +2026-04-20T15:35:12.469203Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="30b1ec51691172fdf4889df83c3af8f97ea0653fb858639751ed637a67eb829c42e997d1843d6c9feadbbb48c759c22eb00a71a7f3a306073a36bb61d064ad20" next_state_root="663a8082fffbe21a34e55cf746230d9f8dd0a7ca5f5635ffefd5a64735c8b5de1c143234e8212d8edab93338cdff56806613d1ec6d390752d79b439f22a4bae9" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:35:12.474095Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 140, latest_finalized_slot_number: 140, sync_status: Synced { synced_da_height: 139 }, .. } +2026-04-20T15:35:12.475537Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=136 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 140, latest_finalized_slot_number: 140, sync_status: Synced { synced_da_height: 139 }, .. } +2026-04-20T15:35:12.476531Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=136 +2026-04-20T15:35:12.479293Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:35:12.480289Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=132 +2026-04-20T15:35:12.482141Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=137 +2026-04-20T15:35:12.483026Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:35:12.484709Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=137 sequence_number=149 +2026-04-20T15:35:12.484970Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:12.484994Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=149 blob_id=2147897672554006217750928190758989712 visible_slot_number_after_increase=137 visible_slots_to_advance=1 +2026-04-20T15:35:12.485283Z DEBUG sov_stf_runner::runner: Block execution complete time=3.005419625s +2026-04-20T15:35:12.485383Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:35:12.487364Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:35:12.487939Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:35:12.488900Z DEBUG compute_state_update{scope="sequencer" rollup_height=137 slot_number=137}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:35:12.489200Z DEBUG compute_state_update{scope="sequencer" rollup_height=137 slot_number=137}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=663a8082fffbe21a34e55cf746230d9f8dd0a7ca5f5635ffefd5a64735c8b5de1c143234e8212d8edab93338cdff56806613d1ec6d390752d79b439f22a4bae9 next_version=141 sesssion_starting_time=307.298µs +2026-04-20T15:35:12.492109Z DEBUG manage_blob_submission_inside_task{blob_id=2147897672554006217750928190758989712 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x7c512ff8c7ac00e95a4216b18bab415e76fb9d8099ae674d6f5f01fb42896435 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=141 include_at=141 bytes=13 time=1.960657ms +2026-04-20T15:35:12.494770Z DEBUG compute_state_update{scope="sequencer" rollup_height=137 slot_number=137}: sov_state::nomt::prover_storage: computed next state root state_root=45ac5fd4ca1889c005155f4fa1a3448ad379e4d6d7f8785fc7c90626b669a52b626c9b10a1818a1c30b8ed4c97683449169e2369fb74dfab8d3e0cfc6c8a9270 next_version=141 time=6.24419ms accesses_build_time=362.468µs finishing_session_time=5.486504ms +2026-04-20T15:35:12.948125Z DEBUG sp1_core_executor_runner::native: CHILD sp1_J0E-5eqrSKu_9i-_IrT4Jg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:35:12.988567Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:35:13.000699Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1851257 cycles +2026-04-20T15:35:13.003509Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [75, 225, 161, 198, 179, 103, 11, 93, 102, 182, 171, 158, 61, 82, 42, 40, 203, 244, 216, 251, 67, 171, 54, 176, 193, 142, 15, 157, 65, 16, 134, 131, 63, 202, 110, 198, 180, 121, 178, 122, 7, 191, 206, 111, 248, 117, 186, 66, 205, 0, 49, 182, 41, 62, 128, 121, 80, 3, 35, 65, 144, 87, 98, 249, 70, 164, 13, 37, 100, 76, 201, 195, 166, 227, 82, 174, 48, 162, 217, 253, 79, 9, 71, 249, 36, 179, 232, 177, 173, 78, 36, 213, 155, 205, 140, 134, 111, 99, 121, 197, 103, 216, 185, 238, 134, 114, 50, 2, 154, 194, 8, 83, 223, 125, 190, 250, 18, 114, 153, 126, 77, 221, 136, 116, 15, 114, 125, 192, 11, 240, 245, 88, 195, 26, 98, 95, 12, 84, 146, 4, 188, 163, 30, 166, 148, 42, 74, 128, 215, 38, 44, 142, 79, 19, 113, 162, 66, 150, 130, 138, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:35:13.654866Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:35:13.654947Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:35:15.441110Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=141 prev_hash=0xbd6caca58620177a2d269943f4827e16398c3c298c44331fea99bc69ec9bdd3a hash=0x2437035cd2c4d3258a10b3edd55e4f750938dd44f17286f15fedfcc4895d7922 producing_time=3.214429ms +2026-04-20T15:35:15.448024Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=141 current_state_root="663a8082fffbe21a34e55cf746230d9f8dd0a7ca5f5635ffefd5a64735c8b5de1c143234e8212d8edab93338cdff56806613d1ec6d390752d79b439f22a4bae9" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x7c512ff8c7ac00e95a4216b18bab415e76fb9d8099ae674d6f5f01fb42896435"] proof_blobs=[] +2026-04-20T15:35:15.456766Z DEBUG StfBlueprint::apply_slot{context=Node da_height=141}: sov_chain_state: Setting next visible slot number next_visible_slot_number=137 +2026-04-20T15:35:15.462964Z DEBUG StfBlueprint::apply_slot{context=Node da_height=141}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x7c512ff8c7ac00e95a4216b18bab415e76fb9d8099ae674d6f5f01fb42896435}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:15.465186Z DEBUG StfBlueprint::apply_slot{context=Node da_height=141}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=663a8082fffbe21a34e55cf746230d9f8dd0a7ca5f5635ffefd5a64735c8b5de1c143234e8212d8edab93338cdff56806613d1ec6d390752d79b439f22a4bae9 next_version=141 sesssion_starting_time=259.938µs +2026-04-20T15:35:15.473123Z DEBUG StfBlueprint::apply_slot{context=Node da_height=141}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=45ac5fd4ca1889c005155f4fa1a3448ad379e4d6d7f8785fc7c90626b669a52b1623da4c4218f297bbe93d4af65b9ca7f454ee9eae8589dc938176a0a8dcfc94 next_version=141 time=8.985522ms accesses_build_time=776.555µs finishing_session_time=7.807139ms +2026-04-20T15:35:15.474422Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="663a8082fffbe21a34e55cf746230d9f8dd0a7ca5f5635ffefd5a64735c8b5de1c143234e8212d8edab93338cdff56806613d1ec6d390752d79b439f22a4bae9" next_state_root="45ac5fd4ca1889c005155f4fa1a3448ad379e4d6d7f8785fc7c90626b669a52b1623da4c4218f297bbe93d4af65b9ca7f454ee9eae8589dc938176a0a8dcfc94" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:35:15.479161Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 141, latest_finalized_slot_number: 141, sync_status: Syncing { synced_da_height: 140, target_da_height: 141 }, .. } +2026-04-20T15:35:15.480354Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=137 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 141, latest_finalized_slot_number: 141, sync_status: Syncing { synced_da_height: 140, target_da_height: 141 }, .. } +2026-04-20T15:35:15.481019Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=137 +2026-04-20T15:35:15.482995Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:35:15.483859Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=133 +2026-04-20T15:35:15.485801Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=138 +2026-04-20T15:35:15.486661Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:35:15.488091Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=138 sequence_number=150 +2026-04-20T15:35:15.488270Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:15.488421Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=150 blob_id=2147897676185625892310884653866208502 visible_slot_number_after_increase=138 visible_slots_to_advance=1 +2026-04-20T15:35:15.492101Z DEBUG compute_state_update{scope="sequencer" rollup_height=138 slot_number=138}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:35:15.492403Z DEBUG compute_state_update{scope="sequencer" rollup_height=138 slot_number=138}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=45ac5fd4ca1889c005155f4fa1a3448ad379e4d6d7f8785fc7c90626b669a52b1623da4c4218f297bbe93d4af65b9ca7f454ee9eae8589dc938176a0a8dcfc94 next_version=142 sesssion_starting_time=307.538µs +2026-04-20T15:35:15.492450Z DEBUG sov_stf_runner::runner: Block execution complete time=3.007084623s +2026-04-20T15:35:15.492566Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:35:15.494856Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:35:15.495202Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:35:15.495417Z DEBUG manage_blob_submission_inside_task{blob_id=2147897676185625892310884653866208502 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x20bf24ac58b21990af31da70bcbf13a25c54fe2d22427aba27ac497d7ed64638 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=142 include_at=142 bytes=13 time=1.53531ms +2026-04-20T15:35:15.497813Z DEBUG compute_state_update{scope="sequencer" rollup_height=138 slot_number=138}: sov_state::nomt::prover_storage: computed next state root state_root=1576a770c412a3f04421e5968a894467181875a32c3ca9115512f0d4440cbf9738edef4e11216bbf5a38e189f6dda17df105afc5ee7bca11486348ed08dcf5ed next_version=142 time=6.08104ms accesses_build_time=358.278µs finishing_session_time=5.323996ms +2026-04-20T15:35:15.962522Z DEBUG sp1_core_executor_runner::native: CHILD sp1_wS6Zdvv3R6GorKslL6Gguw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:35:16.004175Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:35:16.017081Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1876085 cycles +2026-04-20T15:35:16.019363Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 185, 96, 80, 20, 116, 204, 228, 22, 132, 185, 18, 18, 101, 69, 210, 114, 14, 112, 214, 214, 32, 148, 157, 242, 210, 198, 180, 116, 122, 207, 85, 32, 207, 235, 108, 15, 215, 250, 182, 201, 210, 51, 63, 186, 118, 8, 106, 126, 55, 99, 10, 50, 29, 84, 181, 36, 80, 164, 38, 234, 88, 227, 170, 62, 64, 173, 61, 99, 176, 131, 147, 182, 109, 46, 202, 138, 106, 206, 112, 169, 24, 32, 233, 153, 161, 11, 19, 199, 145, 219, 113, 113, 237, 73, 193, 60, 228, 33, 42, 235, 124, 207, 68, 190, 36, 50, 87, 89, 157, 3, 254, 92, 161, 88, 108, 249, 212, 106, 236, 39, 160, 244, 124, 61, 70, 188, 174, 126, 119, 15, 62, 97, 141, 254, 35, 17, 40, 217, 121, 2, 14, 98, 55, 132, 248, 50, 251, 39, 138, 163, 120, 235, 209, 244, 223, 251, 36, 60, 158, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:35:16.680883Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:35:16.680963Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:35:18.446348Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=142 prev_hash=0x2437035cd2c4d3258a10b3edd55e4f750938dd44f17286f15fedfcc4895d7922 hash=0x5514a2b3cb8cf509c6319445e0a691c1c83a033d0ae83f58972d1afb078b7ebd producing_time=2.798481ms +2026-04-20T15:35:18.455595Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=142 current_state_root="45ac5fd4ca1889c005155f4fa1a3448ad379e4d6d7f8785fc7c90626b669a52b1623da4c4218f297bbe93d4af65b9ca7f454ee9eae8589dc938176a0a8dcfc94" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x20bf24ac58b21990af31da70bcbf13a25c54fe2d22427aba27ac497d7ed64638"] proof_blobs=[] +2026-04-20T15:35:18.465121Z DEBUG StfBlueprint::apply_slot{context=Node da_height=142}: sov_chain_state: Setting next visible slot number next_visible_slot_number=138 +2026-04-20T15:35:18.471713Z DEBUG StfBlueprint::apply_slot{context=Node da_height=142}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x20bf24ac58b21990af31da70bcbf13a25c54fe2d22427aba27ac497d7ed64638}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:18.474095Z DEBUG StfBlueprint::apply_slot{context=Node da_height=142}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=45ac5fd4ca1889c005155f4fa1a3448ad379e4d6d7f8785fc7c90626b669a52b1623da4c4218f297bbe93d4af65b9ca7f454ee9eae8589dc938176a0a8dcfc94 next_version=142 sesssion_starting_time=264.379µs +2026-04-20T15:35:18.482063Z DEBUG StfBlueprint::apply_slot{context=Node da_height=142}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=1576a770c412a3f04421e5968a894467181875a32c3ca9115512f0d4440cbf971abccb18bde20fd92d5d6489c22eecee5a2eb9495d004b3aaa036ca03decfe05 next_version=142 time=9.029521ms accesses_build_time=787.324µs finishing_session_time=7.808829ms +2026-04-20T15:35:18.483490Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="45ac5fd4ca1889c005155f4fa1a3448ad379e4d6d7f8785fc7c90626b669a52b1623da4c4218f297bbe93d4af65b9ca7f454ee9eae8589dc938176a0a8dcfc94" next_state_root="1576a770c412a3f04421e5968a894467181875a32c3ca9115512f0d4440cbf971abccb18bde20fd92d5d6489c22eecee5a2eb9495d004b3aaa036ca03decfe05" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:35:18.487612Z DEBUG sov_stf_runner::runner: Block execution complete time=2.995069261s +2026-04-20T15:35:18.487745Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:35:18.488505Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 142, latest_finalized_slot_number: 141, sync_status: Syncing { synced_da_height: 141, target_da_height: 142 }, .. } +2026-04-20T15:35:18.489961Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=138 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 142, latest_finalized_slot_number: 141, sync_status: Syncing { synced_da_height: 141, target_da_height: 142 }, .. } +2026-04-20T15:35:18.490672Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:35:18.490907Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=138 +2026-04-20T15:35:18.491061Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:35:18.493660Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:35:18.494628Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=134 +2026-04-20T15:35:18.496582Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=139 +2026-04-20T15:35:18.497824Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:35:18.499673Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=139 sequence_number=151 +2026-04-20T15:35:18.499958Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=151 blob_id=2147897679825731675242824170466976083 visible_slot_number_after_increase=139 visible_slots_to_advance=1 +2026-04-20T15:35:18.499957Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:18.504782Z DEBUG compute_state_update{scope="sequencer" rollup_height=139 slot_number=139}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1576a770c412a3f04421e5968a894467181875a32c3ca9115512f0d4440cbf971abccb18bde20fd92d5d6489c22eecee5a2eb9495d004b3aaa036ca03decfe05 next_version=143 sesssion_starting_time=287.368µs +2026-04-20T15:35:18.507953Z DEBUG manage_blob_submission_inside_task{blob_id=2147897679825731675242824170466976083 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x710c80268c803c3feab7eaa88d509cc3edba6bfd20d25b086180e58c46dab069 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=143 include_at=143 bytes=13 time=1.803148ms +2026-04-20T15:35:18.510752Z DEBUG compute_state_update{scope="sequencer" rollup_height=139 slot_number=139}: sov_state::nomt::prover_storage: computed next state root state_root=5d137debe9d33f567eeec4a0b7fc687dea446e68e76270a2cb88fbc28c7a81de663d3d3f6bd18238d01a09cda4eadab639888bc40450c66de8fc25ce5c8a8c4b next_version=143 time=6.707727ms accesses_build_time=437.137µs finishing_session_time=5.839612ms +2026-04-20T15:35:18.962844Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SquK8CUGSw6QhGCUiM8-vQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:35:19.002878Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:35:19.014848Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1835567 cycles +2026-04-20T15:35:19.017373Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [42, 150, 146, 47, 37, 115, 131, 57, 191, 193, 182, 72, 131, 168, 79, 225, 7, 143, 239, 206, 231, 240, 151, 156, 163, 162, 103, 29, 41, 32, 131, 253, 31, 217, 111, 78, 232, 61, 7, 254, 248, 19, 8, 180, 128, 159, 39, 65, 76, 166, 115, 131, 146, 72, 45, 133, 41, 254, 135, 70, 102, 8, 191, 217, 60, 83, 141, 107, 151, 9, 240, 80, 33, 31, 158, 137, 129, 236, 162, 65, 193, 20, 147, 205, 223, 152, 43, 1, 166, 233, 44, 23, 123, 146, 236, 13, 49, 104, 220, 111, 128, 58, 26, 156, 196, 60, 157, 178, 245, 143, 135, 97, 171, 145, 211, 56, 126, 250, 2, 249, 190, 8, 151, 243, 146, 132, 243, 188, 222, 102, 117, 52, 3, 52, 53, 161, 76, 97, 25, 240, 229, 66, 173, 5, 34, 245, 169, 249, 36, 122, 62, 202, 203, 122, 2, 190, 116, 168, 14, 167, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:35:19.662602Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:35:19.662693Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:35:21.450669Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=143 prev_hash=0x5514a2b3cb8cf509c6319445e0a691c1c83a033d0ae83f58972d1afb078b7ebd hash=0x22aacacbb75af315aadeda1b5051c0e2d2179f5e37ece5a4e5d69d265a20951f producing_time=2.781372ms +2026-04-20T15:35:21.460666Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=143 current_state_root="1576a770c412a3f04421e5968a894467181875a32c3ca9115512f0d4440cbf971abccb18bde20fd92d5d6489c22eecee5a2eb9495d004b3aaa036ca03decfe05" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x710c80268c803c3feab7eaa88d509cc3edba6bfd20d25b086180e58c46dab069"] proof_blobs=[] +2026-04-20T15:35:21.468575Z DEBUG StfBlueprint::apply_slot{context=Node da_height=143}: sov_chain_state: Setting next visible slot number next_visible_slot_number=139 +2026-04-20T15:35:21.474460Z DEBUG StfBlueprint::apply_slot{context=Node da_height=143}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x710c80268c803c3feab7eaa88d509cc3edba6bfd20d25b086180e58c46dab069}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:21.476588Z DEBUG StfBlueprint::apply_slot{context=Node da_height=143}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1576a770c412a3f04421e5968a894467181875a32c3ca9115512f0d4440cbf971abccb18bde20fd92d5d6489c22eecee5a2eb9495d004b3aaa036ca03decfe05 next_version=143 sesssion_starting_time=320.228µs +2026-04-20T15:35:21.485009Z DEBUG StfBlueprint::apply_slot{context=Node da_height=143}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=5d137debe9d33f567eeec4a0b7fc687dea446e68e76270a2cb88fbc28c7a81de270e5444d66910e3b24f8adba23374871bc2cb76a6167fd17a1635389bd86ffd next_version=143 time=9.521368ms accesses_build_time=767.215µs finishing_session_time=8.293287ms +2026-04-20T15:35:21.486282Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="45ac5fd4ca1889c005155f4fa1a3448ad379e4d6d7f8785fc7c90626b669a52b1623da4c4218f297bbe93d4af65b9ca7f454ee9eae8589dc938176a0a8dcfc94" next_state_root="5d137debe9d33f567eeec4a0b7fc687dea446e68e76270a2cb88fbc28c7a81de270e5444d66910e3b24f8adba23374871bc2cb76a6167fd17a1635389bd86ffd" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:35:21.490678Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 143, latest_finalized_slot_number: 142, sync_status: Syncing { synced_da_height: 142, target_da_height: 143 }, .. } +2026-04-20T15:35:21.492017Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=139 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 143, latest_finalized_slot_number: 142, sync_status: Syncing { synced_da_height: 142, target_da_height: 143 }, .. } +2026-04-20T15:35:21.492916Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=139 +2026-04-20T15:35:21.495239Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:35:21.496164Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=135 +2026-04-20T15:35:21.498054Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=140 +2026-04-20T15:35:21.499243Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:35:21.500926Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=140 sequence_number=152 +2026-04-20T15:35:21.501248Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=152 blob_id=2147897683453695297732101638681839695 visible_slot_number_after_increase=140 visible_slots_to_advance=1 +2026-04-20T15:35:21.501244Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:21.506101Z DEBUG compute_state_update{scope="sequencer" rollup_height=140 slot_number=140}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:35:21.506468Z DEBUG compute_state_update{scope="sequencer" rollup_height=140 slot_number=140}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5d137debe9d33f567eeec4a0b7fc687dea446e68e76270a2cb88fbc28c7a81de270e5444d66910e3b24f8adba23374871bc2cb76a6167fd17a1635389bd86ffd next_version=144 sesssion_starting_time=814.755µs +2026-04-20T15:35:21.506853Z DEBUG sov_stf_runner::runner: Block execution complete time=3.019142975s +2026-04-20T15:35:21.506943Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:35:21.508208Z DEBUG manage_blob_submission_inside_task{blob_id=2147897683453695297732101638681839695 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x2db8cd0e6d6fc78a4610f3fd23a55acfe1a05ddbfaa962489ace73c1e2a8d980 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=144 include_at=144 bytes=13 time=1.321612ms +2026-04-20T15:35:21.510829Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:35:21.512123Z DEBUG compute_state_update{scope="sequencer" rollup_height=140 slot_number=140}: sov_state::nomt::prover_storage: computed next state root state_root=5c396b87dd307f2d2f03606de1e990f29ea8da9db899ff9089c684e8779431f1722cfdcac98061ad989a3c2ab23a58c39e54ba43b02d3b807479ac018be2e1ba next_version=144 time=6.898545ms accesses_build_time=406.978µs finishing_session_time=5.528415ms +2026-04-20T15:35:21.512259Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:35:21.966447Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eh7ec8qfSv-HDImICpoUVg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:35:22.011507Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:35:22.022952Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2019577 cycles +2026-04-20T15:35:22.025579Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [34, 136, 185, 6, 49, 180, 245, 5, 72, 7, 47, 229, 55, 73, 57, 8, 104, 235, 37, 121, 115, 210, 130, 72, 25, 209, 236, 28, 87, 160, 15, 35, 17, 250, 109, 200, 196, 140, 19, 178, 158, 170, 241, 212, 28, 99, 202, 28, 76, 154, 101, 174, 209, 216, 82, 171, 64, 97, 9, 111, 27, 195, 169, 147, 103, 244, 139, 228, 133, 103, 65, 191, 73, 142, 119, 229, 29, 199, 56, 196, 27, 185, 43, 97, 27, 201, 237, 84, 250, 66, 228, 74, 31, 178, 198, 181, 91, 121, 12, 212, 109, 150, 229, 217, 186, 230, 227, 246, 193, 20, 200, 151, 213, 45, 243, 55, 215, 246, 40, 97, 169, 201, 186, 219, 229, 189, 74, 103, 225, 200, 197, 12, 199, 234, 124, 8, 78, 246, 1, 239, 49, 147, 33, 13, 99, 84, 99, 28, 93, 198, 37, 22, 168, 166, 206, 3, 217, 206, 11, 22, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:35:22.740922Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:35:22.741003Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:35:24.454959Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=144 prev_hash=0x22aacacbb75af315aadeda1b5051c0e2d2179f5e37ece5a4e5d69d265a20951f hash=0x83e40e441a7a544f577015831bc4659a9e6229b6c838935411794e4830cadcf5 producing_time=3.04679ms +2026-04-20T15:35:24.460105Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=144 current_state_root="5d137debe9d33f567eeec4a0b7fc687dea446e68e76270a2cb88fbc28c7a81de270e5444d66910e3b24f8adba23374871bc2cb76a6167fd17a1635389bd86ffd" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x2db8cd0e6d6fc78a4610f3fd23a55acfe1a05ddbfaa962489ace73c1e2a8d980"] proof_blobs=[] +2026-04-20T15:35:24.468696Z DEBUG StfBlueprint::apply_slot{context=Node da_height=144}: sov_chain_state: Setting next visible slot number next_visible_slot_number=140 +2026-04-20T15:35:24.474881Z DEBUG StfBlueprint::apply_slot{context=Node da_height=144}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x2db8cd0e6d6fc78a4610f3fd23a55acfe1a05ddbfaa962489ace73c1e2a8d980}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:24.477051Z DEBUG StfBlueprint::apply_slot{context=Node da_height=144}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5d137debe9d33f567eeec4a0b7fc687dea446e68e76270a2cb88fbc28c7a81de270e5444d66910e3b24f8adba23374871bc2cb76a6167fd17a1635389bd86ffd next_version=144 sesssion_starting_time=238.948µs +2026-04-20T15:35:24.485148Z DEBUG StfBlueprint::apply_slot{context=Node da_height=144}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=5c396b87dd307f2d2f03606de1e990f29ea8da9db899ff9089c684e8779431f10de8a5190394bad03b26405b502dc6c20ff6c5a4403eac1d3efb3fcde7727ecc next_version=144 time=9.128051ms accesses_build_time=778.845µs finishing_session_time=7.959188ms +2026-04-20T15:35:24.486502Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="1576a770c412a3f04421e5968a894467181875a32c3ca9115512f0d4440cbf971abccb18bde20fd92d5d6489c22eecee5a2eb9495d004b3aaa036ca03decfe05" next_state_root="5c396b87dd307f2d2f03606de1e990f29ea8da9db899ff9089c684e8779431f10de8a5190394bad03b26405b502dc6c20ff6c5a4403eac1d3efb3fcde7727ecc" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:35:24.491294Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 144, latest_finalized_slot_number: 143, sync_status: Syncing { synced_da_height: 143, target_da_height: 144 }, .. } +2026-04-20T15:35:24.492736Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=140 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 144, latest_finalized_slot_number: 143, sync_status: Syncing { synced_da_height: 143, target_da_height: 144 }, .. } +2026-04-20T15:35:24.493679Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=140 +2026-04-20T15:35:24.496195Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:35:24.497173Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=136 +2026-04-20T15:35:24.498939Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=141 +2026-04-20T15:35:24.499880Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:35:24.501570Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=141 sequence_number=153 +2026-04-20T15:35:24.501835Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:24.501876Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=153 blob_id=2147897687081723926786486365586067631 visible_slot_number_after_increase=141 visible_slots_to_advance=1 +2026-04-20T15:35:24.502996Z DEBUG sov_stf_runner::runner: Block execution complete time=2.996071125s +2026-04-20T15:35:24.503049Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:35:24.505228Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:35:24.505847Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:35:24.505868Z DEBUG compute_state_update{scope="sequencer" rollup_height=141 slot_number=141}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:35:24.506157Z DEBUG compute_state_update{scope="sequencer" rollup_height=141 slot_number=141}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5c396b87dd307f2d2f03606de1e990f29ea8da9db899ff9089c684e8779431f10de8a5190394bad03b26405b502dc6c20ff6c5a4403eac1d3efb3fcde7727ecc next_version=145 sesssion_starting_time=302.087µs +2026-04-20T15:35:24.508576Z DEBUG manage_blob_submission_inside_task{blob_id=2147897687081723926786486365586067631 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x12eb77c6ac79c9b2d6b0687b28aea70483dd0781a117b838477460712d9df12e sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=145 include_at=145 bytes=13 time=1.448141ms +2026-04-20T15:35:24.511375Z DEBUG compute_state_update{scope="sequencer" rollup_height=141 slot_number=141}: sov_state::nomt::prover_storage: computed next state root state_root=0bd2847fda8fb0fac20c7a92065892140db20c83dcfa31d45e6b6a3cbbffcf485c8f2aab0433f6e231a4f0284cbd4140dc12e40b66c88ca770fc55e6a0deb7d7 next_version=145 time=5.892812ms accesses_build_time=367.277µs finishing_session_time=5.115967ms +2026-04-20T15:35:25.009303Z DEBUG sp1_core_executor_runner::native: CHILD sp1_uUNkEyhJRHm_25JQBK0sUA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:35:25.075598Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:35:25.088418Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4172189 cycles +2026-04-20T15:35:25.091283Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [8, 60, 181, 125, 5, 116, 251, 30, 27, 92, 214, 32, 232, 249, 17, 182, 167, 65, 114, 79, 92, 68, 128, 107, 79, 26, 199, 229, 229, 170, 164, 184, 126, 178, 80, 178, 122, 202, 19, 211, 25, 160, 154, 87, 106, 0, 192, 123, 168, 163, 218, 210, 127, 204, 8, 100, 148, 115, 237, 244, 28, 67, 88, 229, 39, 14, 79, 43, 25, 130, 136, 164, 179, 208, 119, 130, 123, 82, 117, 134, 104, 96, 35, 1, 164, 82, 26, 58, 6, 81, 114, 79, 139, 163, 53, 166, 62, 59, 19, 240, 80, 96, 103, 77, 96, 55, 127, 239, 83, 68, 115, 79, 225, 195, 210, 53, 23, 182, 225, 94, 63, 129, 245, 40, 87, 109, 253, 148, 184, 168, 225, 243, 148, 164, 242, 60, 89, 68, 206, 128, 88, 67, 98, 253, 64, 252, 173, 96, 97, 84, 230, 169, 37, 244, 227, 236, 252, 201, 49, 224, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:35:26.547488Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:35:26.547569Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:35:27.459232Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=145 prev_hash=0x83e40e441a7a544f577015831bc4659a9e6229b6c838935411794e4830cadcf5 hash=0x8ba8a3bac3e8b2fb901758b581bd321c085f89cf0ef969c35d69f597a361ed5f producing_time=2.808682ms +2026-04-20T15:35:27.466410Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=145 current_state_root="5c396b87dd307f2d2f03606de1e990f29ea8da9db899ff9089c684e8779431f10de8a5190394bad03b26405b502dc6c20ff6c5a4403eac1d3efb3fcde7727ecc" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x12eb77c6ac79c9b2d6b0687b28aea70483dd0781a117b838477460712d9df12e"] proof_blobs=[] +2026-04-20T15:35:27.474848Z DEBUG StfBlueprint::apply_slot{context=Node da_height=145}: sov_chain_state: Setting next visible slot number next_visible_slot_number=141 +2026-04-20T15:35:27.481032Z DEBUG StfBlueprint::apply_slot{context=Node da_height=145}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x12eb77c6ac79c9b2d6b0687b28aea70483dd0781a117b838477460712d9df12e}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:27.483228Z DEBUG StfBlueprint::apply_slot{context=Node da_height=145}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5c396b87dd307f2d2f03606de1e990f29ea8da9db899ff9089c684e8779431f10de8a5190394bad03b26405b502dc6c20ff6c5a4403eac1d3efb3fcde7727ecc next_version=145 sesssion_starting_time=267.469µs +2026-04-20T15:35:27.491123Z DEBUG StfBlueprint::apply_slot{context=Node da_height=145}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=0bd2847fda8fb0fac20c7a92065892140db20c83dcfa31d45e6b6a3cbbffcf483e5e2319e6673a85ca2fdd1e0750bd053d9b9d43a64d4d7a250646e538f9231f next_version=145 time=8.959453ms accesses_build_time=782.695µs finishing_session_time=7.75925ms +2026-04-20T15:35:27.492511Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="5d137debe9d33f567eeec4a0b7fc687dea446e68e76270a2cb88fbc28c7a81de270e5444d66910e3b24f8adba23374871bc2cb76a6167fd17a1635389bd86ffd" next_state_root="0bd2847fda8fb0fac20c7a92065892140db20c83dcfa31d45e6b6a3cbbffcf483e5e2319e6673a85ca2fdd1e0750bd053d9b9d43a64d4d7a250646e538f9231f" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:35:27.497120Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 145, latest_finalized_slot_number: 144, sync_status: Syncing { synced_da_height: 144, target_da_height: 145 }, .. } +2026-04-20T15:35:27.498754Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=141 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 145, latest_finalized_slot_number: 144, sync_status: Syncing { synced_da_height: 144, target_da_height: 145 }, .. } +2026-04-20T15:35:27.499808Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=141 +2026-04-20T15:35:27.502550Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:35:27.503541Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=137 +2026-04-20T15:35:27.505333Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=142 +2026-04-20T15:35:27.506345Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:35:27.507906Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=142 sequence_number=154 +2026-04-20T15:35:27.508162Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=154 blob_id=2147897690715721589822185039756736449 visible_slot_number_after_increase=142 visible_slots_to_advance=1 +2026-04-20T15:35:27.508141Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:27.513153Z DEBUG compute_state_update{scope="sequencer" rollup_height=142 slot_number=142}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:35:27.513448Z DEBUG compute_state_update{scope="sequencer" rollup_height=142 slot_number=142}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0bd2847fda8fb0fac20c7a92065892140db20c83dcfa31d45e6b6a3cbbffcf483e5e2319e6673a85ca2fdd1e0750bd053d9b9d43a64d4d7a250646e538f9231f next_version=146 sesssion_starting_time=1.153823ms +2026-04-20T15:35:27.514178Z DEBUG sov_stf_runner::runner: Block execution complete time=3.011132527s +2026-04-20T15:35:27.514307Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:35:27.515644Z DEBUG manage_blob_submission_inside_task{blob_id=2147897690715721589822185039756736449 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xba2ee318f4f18007431313ef4eefe59bac657918ac5eec17bdbe15bc554fa19e sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=146 include_at=146 bytes=13 time=1.505451ms +2026-04-20T15:35:27.516771Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:35:27.517517Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:35:27.518930Z DEBUG compute_state_update{scope="sequencer" rollup_height=142 slot_number=142}: sov_state::nomt::prover_storage: computed next state root state_root=19fa95c45d7f263908bb1f16dcee9feba2c5a380c5f2c9d5bf1dacd6d6deb26908d33ac63ab9ca4056064b760c15177e45d766d09079946b7030817cf28a0190 next_version=146 time=7.005474ms accesses_build_time=365.827µs finishing_session_time=5.385035ms +2026-04-20T15:35:28.007838Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Ws1uIvyRQFebzYw81TZy-w==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:35:28.046664Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:35:28.060435Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1784284 cycles +2026-04-20T15:35:28.062684Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [38, 204, 8, 143, 117, 10, 25, 87, 14, 242, 219, 216, 138, 39, 31, 21, 229, 234, 13, 239, 102, 229, 38, 184, 244, 236, 31, 201, 97, 194, 69, 45, 58, 3, 174, 232, 215, 236, 34, 248, 228, 156, 81, 39, 73, 124, 227, 197, 121, 67, 215, 180, 23, 156, 153, 187, 159, 86, 234, 228, 174, 103, 173, 118, 71, 85, 167, 38, 156, 66, 23, 0, 11, 68, 141, 92, 126, 95, 186, 124, 215, 114, 35, 78, 36, 154, 93, 139, 34, 158, 152, 164, 118, 41, 204, 230, 19, 3, 32, 245, 201, 249, 77, 167, 210, 58, 31, 116, 7, 88, 85, 116, 100, 75, 249, 5, 129, 228, 208, 12, 37, 193, 238, 0, 141, 113, 214, 89, 166, 46, 57, 178, 130, 88, 239, 220, 254, 27, 231, 185, 254, 161, 196, 158, 149, 52, 108, 81, 77, 119, 192, 161, 22, 227, 55, 133, 187, 113, 159, 139, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:35:28.689035Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:35:28.689116Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:35:30.463662Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=146 prev_hash=0x8ba8a3bac3e8b2fb901758b581bd321c085f89cf0ef969c35d69f597a361ed5f hash=0xfcb490536c44470558a0fae2e54659a8ff7a3790324166ebe0192557f6a1b014 producing_time=2.99914ms +2026-04-20T15:35:30.466926Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=146 current_state_root="0bd2847fda8fb0fac20c7a92065892140db20c83dcfa31d45e6b6a3cbbffcf483e5e2319e6673a85ca2fdd1e0750bd053d9b9d43a64d4d7a250646e538f9231f" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xba2ee318f4f18007431313ef4eefe59bac657918ac5eec17bdbe15bc554fa19e"] proof_blobs=[] +2026-04-20T15:35:30.475605Z DEBUG StfBlueprint::apply_slot{context=Node da_height=146}: sov_chain_state: Setting next visible slot number next_visible_slot_number=142 +2026-04-20T15:35:30.481531Z DEBUG StfBlueprint::apply_slot{context=Node da_height=146}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xba2ee318f4f18007431313ef4eefe59bac657918ac5eec17bdbe15bc554fa19e}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:30.483677Z DEBUG StfBlueprint::apply_slot{context=Node da_height=146}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0bd2847fda8fb0fac20c7a92065892140db20c83dcfa31d45e6b6a3cbbffcf483e5e2319e6673a85ca2fdd1e0750bd053d9b9d43a64d4d7a250646e538f9231f next_version=146 sesssion_starting_time=266.348µs +2026-04-20T15:35:30.491455Z DEBUG StfBlueprint::apply_slot{context=Node da_height=146}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=19fa95c45d7f263908bb1f16dcee9feba2c5a380c5f2c9d5bf1dacd6d6deb2691dec3acb0ed48707199e40eb748c8179acd5f8e4fb5e29f5870070a142ee1dd4 next_version=146 time=8.841493ms accesses_build_time=784.505µs finishing_session_time=7.64562ms +2026-04-20T15:35:30.492819Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="5c396b87dd307f2d2f03606de1e990f29ea8da9db899ff9089c684e8779431f10de8a5190394bad03b26405b502dc6c20ff6c5a4403eac1d3efb3fcde7727ecc" next_state_root="19fa95c45d7f263908bb1f16dcee9feba2c5a380c5f2c9d5bf1dacd6d6deb2691dec3acb0ed48707199e40eb748c8179acd5f8e4fb5e29f5870070a142ee1dd4" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:35:30.497664Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 146, latest_finalized_slot_number: 145, sync_status: Syncing { synced_da_height: 145, target_da_height: 146 }, .. } +2026-04-20T15:35:30.499051Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=142 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 146, latest_finalized_slot_number: 145, sync_status: Syncing { synced_da_height: 145, target_da_height: 146 }, .. } +2026-04-20T15:35:30.500018Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=142 +2026-04-20T15:35:30.502982Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:35:30.503917Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=138 +2026-04-20T15:35:30.505048Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=143 +2026-04-20T15:35:30.505513Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:35:30.506223Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=143 sequence_number=155 +2026-04-20T15:35:30.506416Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:30.506561Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=155 blob_id=2147897694341261784338749712897186600 visible_slot_number_after_increase=143 visible_slots_to_advance=1 +2026-04-20T15:35:30.509986Z DEBUG compute_state_update{scope="sequencer" rollup_height=143 slot_number=143}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:35:30.510275Z DEBUG compute_state_update{scope="sequencer" rollup_height=143 slot_number=143}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=19fa95c45d7f263908bb1f16dcee9feba2c5a380c5f2c9d5bf1dacd6d6deb2691dec3acb0ed48707199e40eb748c8179acd5f8e4fb5e29f5870070a142ee1dd4 next_version=147 sesssion_starting_time=623.106µs +2026-04-20T15:35:30.510382Z DEBUG sov_stf_runner::runner: Block execution complete time=2.996107405s +2026-04-20T15:35:30.510422Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:35:30.512435Z DEBUG manage_blob_submission_inside_task{blob_id=2147897694341261784338749712897186600 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xb3a6f3b072957f77287771ba9e1968df314a749aedb551a3715d73a744260c56 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=147 include_at=147 bytes=13 time=1.856138ms +2026-04-20T15:35:30.515749Z DEBUG compute_state_update{scope="sequencer" rollup_height=143 slot_number=143}: sov_state::nomt::prover_storage: computed next state root state_root=009cd74b0fc6ab4b1309bfbf2ff245b580f96e6d55ed7e0f303ca6651149d5d44b048ba57513a46b0440581e4d528b7b35432804b2bcb0b0c3ba9bd5defec4d1 next_version=147 time=6.526987ms accesses_build_time=420.887µs finishing_session_time=5.340656ms +2026-04-20T15:35:30.973901Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YOprY9o4StC2iVA7w5BMxw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:35:31.011585Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:35:31.023746Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1769912 cycles +2026-04-20T15:35:31.026451Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [48, 177, 236, 81, 105, 17, 114, 253, 244, 136, 157, 248, 60, 58, 248, 249, 126, 160, 101, 63, 184, 88, 99, 151, 81, 237, 99, 122, 103, 235, 130, 156, 66, 233, 151, 209, 132, 61, 108, 159, 234, 219, 187, 72, 199, 89, 194, 46, 176, 10, 113, 167, 243, 163, 6, 7, 58, 54, 187, 97, 208, 100, 173, 32, 39, 159, 5, 153, 127, 243, 93, 44, 214, 148, 56, 197, 69, 77, 82, 179, 78, 171, 133, 27, 20, 241, 118, 52, 177, 41, 122, 90, 196, 241, 137, 188, 32, 95, 225, 158, 171, 132, 25, 244, 103, 243, 78, 173, 74, 207, 31, 111, 30, 129, 214, 95, 11, 45, 161, 11, 180, 120, 179, 101, 73, 127, 255, 196, 189, 108, 172, 165, 134, 32, 23, 122, 45, 38, 153, 67, 244, 130, 126, 22, 57, 140, 60, 41, 140, 68, 51, 31, 234, 153, 188, 105, 236, 155, 221, 58, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:35:31.647307Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:35:31.647396Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:35:31.665593Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:35:31.904435Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:35:31.906732Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2607482 cycles +2026-04-20T15:35:31.907101Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [131, 0, 0, 0, 0, 0, 0, 0, 140, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 107, 14, 77, 114, 197, 13, 54, 119, 244, 2, 149, 24, 196, 201, 0, 114, 34, 178, 88, 152, 126, 28, 168, 213, 53, 135, 197, 188, 29, 239, 31, 75, 93, 157, 203, 242, 152, 115, 239, 175, 106, 226, 166, 42, 200, 191, 200, 170, 52, 43, 124, 185, 35, 118, 112, 22, 148, 6, 220, 163, 176, 168, 243, 79, 39, 159, 5, 153, 127, 243, 93, 44, 214, 148, 56, 197, 69, 77, 82, 179, 78, 171, 133, 27, 20, 241, 118, 52, 177, 41, 122, 90, 196, 241, 137, 188, 32, 95, 225, 158, 171, 132, 25, 244, 103, 243, 78, 173, 74, 207, 31, 111, 30, 129, 214, 95, 11, 45, 161, 11, 180, 120, 179, 101, 73, 127, 255, 196, 197, 95, 185, 203, 236, 157, 149, 106, 20, 227, 99, 142, 36, 254, 111, 181, 201, 149, 111, 181, 124, 123, 156, 103, 227, 122, 145, 201, 200, 96, 70, 212, 189, 108, 172, 165, 134, 32, 23, 122, 45, 38, 153, 67, 244, 130, 126, 22, 57, 140, 60, 41, 140, 68, 51, 31, 234, 153, 188, 105, 236, 155, 221, 58, 32, 0, 0, 0, 0, 0, 0, 0, 33, 87, 226, 242, 39, 49, 250, 210, 41, 143, 26, 188, 101, 19, 12, 136, 43, 105, 121, 236, 80, 118, 108, 155, 63, 154, 215, 73, 15, 107, 27, 67, 32, 0, 0, 0, 0, 0, 0, 0, 54, 246, 123, 188, 67, 61, 237, 103, 16, 229, 5, 146, 113, 8, 178, 215, 95, 95, 151, 239, 106, 28, 10, 135, 55, 55, 208, 95, 86, 190, 27, 9, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:35:32.867616Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:35:32.867694Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:35:32.868613Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=1951 +2026-04-20T15:35:32.871133Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:35:32.871667Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:35:32.872035Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=156 blob_id=2147897697196777296293144532660980809 +2026-04-20T15:35:33.467339Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=147 prev_hash=0xfcb490536c44470558a0fae2e54659a8ff7a3790324166ebe0192557f6a1b014 hash=0x204387b055b44fbe02328382828c98e7984988cad5aca28a6d3c31fa083973e8 producing_time=2.582183ms +2026-04-20T15:35:33.472367Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=147 current_state_root="19fa95c45d7f263908bb1f16dcee9feba2c5a380c5f2c9d5bf1dacd6d6deb2691dec3acb0ed48707199e40eb748c8179acd5f8e4fb5e29f5870070a142ee1dd4" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xb3a6f3b072957f77287771ba9e1968df314a749aedb551a3715d73a744260c56"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x4f03c80a4a7f299b4c403e22d7d5d3694b6b5d338063465e9e570e96dc8fbffd, len=2001"] +2026-04-20T15:35:33.479884Z DEBUG StfBlueprint::apply_slot{context=Node da_height=147}: sov_chain_state: Setting next visible slot number next_visible_slot_number=143 +2026-04-20T15:35:33.485281Z DEBUG StfBlueprint::apply_slot{context=Node da_height=147}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xb3a6f3b072957f77287771ba9e1968df314a749aedb551a3715d73a744260c56}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:33.487450Z DEBUG StfBlueprint::apply_slot{context=Node da_height=147}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=19fa95c45d7f263908bb1f16dcee9feba2c5a380c5f2c9d5bf1dacd6d6deb2691dec3acb0ed48707199e40eb748c8179acd5f8e4fb5e29f5870070a142ee1dd4 next_version=147 sesssion_starting_time=253.729µs +2026-04-20T15:35:33.495468Z DEBUG StfBlueprint::apply_slot{context=Node da_height=147}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=009cd74b0fc6ab4b1309bfbf2ff245b580f96e6d55ed7e0f303ca6651149d5d43a367455e70faba1d98c4f1629bcc72c3bf194376f987fb81bcbefdc261c65eb next_version=147 time=9.19741ms accesses_build_time=913.704µs finishing_session_time=7.898339ms +2026-04-20T15:35:33.496692Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="0bd2847fda8fb0fac20c7a92065892140db20c83dcfa31d45e6b6a3cbbffcf483e5e2319e6673a85ca2fdd1e0750bd053d9b9d43a64d4d7a250646e538f9231f" next_state_root="009cd74b0fc6ab4b1309bfbf2ff245b580f96e6d55ed7e0f303ca6651149d5d43a367455e70faba1d98c4f1629bcc72c3bf194376f987fb81bcbefdc261c65eb" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:35:33.501645Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 147, latest_finalized_slot_number: 147, sync_status: Syncing { synced_da_height: 146, target_da_height: 147 }, .. } +2026-04-20T15:35:33.503462Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=143 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 147, latest_finalized_slot_number: 147, sync_status: Syncing { synced_da_height: 146, target_da_height: 147 }, .. } +2026-04-20T15:35:33.504653Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=143 +2026-04-20T15:35:33.507428Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:35:33.508431Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=139 +2026-04-20T15:35:33.510251Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=144 +2026-04-20T15:35:33.511235Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:35:33.515500Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 131. Final slot number 140 +2026-04-20T15:35:33.516156Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=144 sequence_number=157 +2026-04-20T15:35:33.516411Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:33.516475Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=157 blob_id=2147897697980182182017673001990654908 visible_slot_number_after_increase=144 visible_slots_to_advance=1 +2026-04-20T15:35:33.523283Z DEBUG compute_state_update{scope="sequencer" rollup_height=144 slot_number=144}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:35:33.523360Z DEBUG compute_state_update{scope="sequencer" rollup_height=144 slot_number=144}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:35:33.523638Z DEBUG compute_state_update{scope="sequencer" rollup_height=144 slot_number=144}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=009cd74b0fc6ab4b1309bfbf2ff245b580f96e6d55ed7e0f303ca6651149d5d43a367455e70faba1d98c4f1629bcc72c3bf194376f987fb81bcbefdc261c65eb next_version=148 sesssion_starting_time=3.07769ms +2026-04-20T15:35:33.523675Z DEBUG sov_stf_runner::runner: Block execution complete time=3.013260283s +2026-04-20T15:35:33.523737Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:35:33.523746Z DEBUG manage_blob_submission_inside_task{blob_id=2147897697980182182017673001990654908 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xb7725b741d64ae44494cda8bc7b00b7f8f33201d2747b5249b7098cfe96e9e89 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=148 include_at=148 bytes=13 time=1.693209ms +2026-04-20T15:35:33.526149Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:35:33.526850Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:35:33.530011Z DEBUG compute_state_update{scope="sequencer" rollup_height=144 slot_number=144}: sov_state::nomt::prover_storage: computed next state root state_root=5d27bad37c961e10c2087356c4d133fd0b943a1d373a99ff013c25ab7827e99a310faa5259ed4aab5dc0d6ab75979c43eada23787ea318a4af73cae075f3f108 next_version=148 time=9.926965ms accesses_build_time=471.477µs finishing_session_time=6.26944ms +2026-04-20T15:35:36.374332Z DEBUG sp1_core_executor_runner::native: CHILD sp1_87W-IctxRlmhXhc9-bFiGg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:35:36.413026Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:35:36.424669Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1789772 cycles +2026-04-20T15:35:36.427295Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [102, 58, 128, 130, 255, 251, 226, 26, 52, 229, 92, 247, 70, 35, 13, 159, 141, 208, 167, 202, 95, 86, 53, 255, 239, 213, 166, 71, 53, 200, 181, 222, 28, 20, 50, 52, 232, 33, 45, 142, 218, 185, 51, 56, 205, 255, 86, 128, 102, 19, 209, 236, 109, 57, 7, 82, 215, 155, 67, 159, 34, 164, 186, 233, 73, 24, 176, 156, 229, 208, 184, 162, 249, 76, 200, 196, 109, 227, 10, 203, 87, 207, 36, 252, 75, 11, 53, 111, 253, 192, 28, 121, 250, 14, 158, 94, 127, 48, 26, 22, 78, 165, 196, 24, 73, 34, 25, 151, 157, 216, 8, 57, 228, 110, 37, 58, 55, 123, 58, 164, 246, 14, 60, 3, 147, 150, 208, 112, 36, 55, 3, 92, 210, 196, 211, 37, 138, 16, 179, 237, 213, 94, 79, 117, 9, 56, 221, 68, 241, 114, 134, 241, 95, 237, 252, 196, 137, 93, 121, 34, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:35:36.471730Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=148 prev_hash=0x204387b055b44fbe02328382828c98e7984988cad5aca28a6d3c31fa083973e8 hash=0x2623a334bebc1224e987bbed29cf7af18f573bd01e836ed4736bda6455d345fe producing_time=3.09507ms +2026-04-20T15:35:36.476615Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=148 current_state_root="009cd74b0fc6ab4b1309bfbf2ff245b580f96e6d55ed7e0f303ca6651149d5d43a367455e70faba1d98c4f1629bcc72c3bf194376f987fb81bcbefdc261c65eb" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xb7725b741d64ae44494cda8bc7b00b7f8f33201d2747b5249b7098cfe96e9e89"] proof_blobs=[] +2026-04-20T15:35:36.484011Z DEBUG StfBlueprint::apply_slot{context=Node da_height=148}: sov_chain_state: Setting next visible slot number next_visible_slot_number=144 +2026-04-20T15:35:36.497732Z DEBUG StfBlueprint::apply_slot{context=Node da_height=148}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 131. Final slot number 140 +2026-04-20T15:35:36.498070Z DEBUG StfBlueprint::apply_slot{context=Node da_height=148}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xb7725b741d64ae44494cda8bc7b00b7f8f33201d2747b5249b7098cfe96e9e89}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:36.499921Z DEBUG StfBlueprint::apply_slot{context=Node da_height=148}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=009cd74b0fc6ab4b1309bfbf2ff245b580f96e6d55ed7e0f303ca6651149d5d43a367455e70faba1d98c4f1629bcc72c3bf194376f987fb81bcbefdc261c65eb next_version=148 sesssion_starting_time=188.719µs +2026-04-20T15:35:36.508853Z DEBUG StfBlueprint::apply_slot{context=Node da_height=148}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=5d27bad37c961e10c2087356c4d133fd0b943a1d373a99ff013c25ab7827e99a3929fced14adb50848db9312823c81b66e42fe729ceae43557917d8aaf3d38eb next_version=148 time=9.909656ms accesses_build_time=779.426µs finishing_session_time=8.838093ms +2026-04-20T15:35:36.509813Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="009cd74b0fc6ab4b1309bfbf2ff245b580f96e6d55ed7e0f303ca6651149d5d43a367455e70faba1d98c4f1629bcc72c3bf194376f987fb81bcbefdc261c65eb" next_state_root="5d27bad37c961e10c2087356c4d133fd0b943a1d373a99ff013c25ab7827e99a3929fced14adb50848db9312823c81b66e42fe729ceae43557917d8aaf3d38eb" aggregated_proofs=1 proof_receipts=1 +2026-04-20T15:35:36.514473Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 148, latest_finalized_slot_number: 148, sync_status: Syncing { synced_da_height: 147, target_da_height: 148 }, .. } +2026-04-20T15:35:36.515928Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=144 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 148, latest_finalized_slot_number: 148, sync_status: Syncing { synced_da_height: 147, target_da_height: 148 }, .. } +2026-04-20T15:35:36.516965Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=144 +2026-04-20T15:35:36.519807Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:35:36.520783Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=140 +2026-04-20T15:35:36.522690Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=145 +2026-04-20T15:35:36.523790Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:35:36.525371Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=145 sequence_number=158 +2026-04-20T15:35:36.525647Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=158 blob_id=2147897701617835290931730744702363494 visible_slot_number_after_increase=145 visible_slots_to_advance=1 +2026-04-20T15:35:36.525631Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:36.529135Z DEBUG sov_stf_runner::runner: Block execution complete time=3.005406355s +2026-04-20T15:35:36.529185Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:35:36.529713Z DEBUG compute_state_update{scope="sequencer" rollup_height=145 slot_number=145}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:35:36.530047Z DEBUG compute_state_update{scope="sequencer" rollup_height=145 slot_number=145}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5d27bad37c961e10c2087356c4d133fd0b943a1d373a99ff013c25ab7827e99a3929fced14adb50848db9312823c81b66e42fe729ceae43557917d8aaf3d38eb next_version=149 sesssion_starting_time=339.688µs +2026-04-20T15:35:36.531685Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:35:36.532281Z DEBUG manage_blob_submission_inside_task{blob_id=2147897701617835290931730744702363494 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x9f829aeeeb5dbe6da420bef757f58a4e7103a0c0fc6dcbe5de91c35182402a7f sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=149 include_at=149 bytes=13 time=1.57751ms +2026-04-20T15:35:36.532433Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:35:36.535762Z DEBUG compute_state_update{scope="sequencer" rollup_height=145 slot_number=145}: sov_state::nomt::prover_storage: computed next state root state_root=5e1844341e9d06781bc1606b94683511a7521631fbce5daae76f3619519cf29c7860f8e6a658225f0c0c94a7d17b35f91276fe69520d1bded4a6b35a1c2ba008 next_version=149 time=6.451448ms accesses_build_time=387.927µs finishing_session_time=5.609334ms +2026-04-20T15:35:36.999815Z DEBUG sp1_core_executor_runner::native: CHILD sp1_DrMALrpxS5-T5d9EwzWRGw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:35:37.039030Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:35:37.050644Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1820646 cycles +2026-04-20T15:35:37.053324Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [69, 172, 95, 212, 202, 24, 137, 192, 5, 21, 95, 79, 161, 163, 68, 138, 211, 121, 228, 214, 215, 248, 120, 95, 199, 201, 6, 38, 182, 105, 165, 43, 22, 35, 218, 76, 66, 24, 242, 151, 187, 233, 61, 74, 246, 91, 156, 167, 244, 84, 238, 158, 174, 133, 137, 220, 147, 129, 118, 160, 168, 220, 252, 148, 17, 163, 38, 227, 123, 48, 21, 187, 178, 134, 22, 147, 110, 135, 91, 236, 55, 115, 20, 123, 50, 74, 15, 54, 200, 80, 199, 201, 47, 102, 233, 177, 44, 189, 36, 195, 210, 0, 88, 124, 131, 53, 67, 44, 146, 107, 180, 52, 238, 36, 32, 162, 108, 200, 173, 58, 225, 212, 146, 39, 38, 131, 205, 222, 85, 20, 162, 179, 203, 140, 245, 9, 198, 49, 148, 69, 224, 166, 145, 193, 200, 58, 3, 61, 10, 232, 63, 88, 151, 45, 26, 251, 7, 139, 126, 189, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:35:37.090426Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:35:37.090502Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:35:37.743233Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:35:37.743330Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:35:39.476295Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=149 prev_hash=0x2623a334bebc1224e987bbed29cf7af18f573bd01e836ed4736bda6455d345fe hash=0x67a1b6dbccbfbb3b14658cab828ff7a3f6388126516d8402e07c6abb268302f2 producing_time=2.835291ms +2026-04-20T15:35:39.481345Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=149 current_state_root="5d27bad37c961e10c2087356c4d133fd0b943a1d373a99ff013c25ab7827e99a3929fced14adb50848db9312823c81b66e42fe729ceae43557917d8aaf3d38eb" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9f829aeeeb5dbe6da420bef757f58a4e7103a0c0fc6dcbe5de91c35182402a7f"] proof_blobs=[] +2026-04-20T15:35:39.489445Z DEBUG StfBlueprint::apply_slot{context=Node da_height=149}: sov_chain_state: Setting next visible slot number next_visible_slot_number=145 +2026-04-20T15:35:39.495013Z DEBUG StfBlueprint::apply_slot{context=Node da_height=149}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x9f829aeeeb5dbe6da420bef757f58a4e7103a0c0fc6dcbe5de91c35182402a7f}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:39.497075Z DEBUG StfBlueprint::apply_slot{context=Node da_height=149}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5d27bad37c961e10c2087356c4d133fd0b943a1d373a99ff013c25ab7827e99a3929fced14adb50848db9312823c81b66e42fe729ceae43557917d8aaf3d38eb next_version=149 sesssion_starting_time=240.669µs +2026-04-20T15:35:39.504902Z DEBUG StfBlueprint::apply_slot{context=Node da_height=149}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=5e1844341e9d06781bc1606b94683511a7521631fbce5daae76f3619519cf29c4d104d45dd30721bfce117ba8ff9cbd1123e9c559d9a5467454511ec217a6959 next_version=149 time=8.846193ms accesses_build_time=766.455µs finishing_session_time=7.70491ms +2026-04-20T15:35:39.506098Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="5d27bad37c961e10c2087356c4d133fd0b943a1d373a99ff013c25ab7827e99a3929fced14adb50848db9312823c81b66e42fe729ceae43557917d8aaf3d38eb" next_state_root="5e1844341e9d06781bc1606b94683511a7521631fbce5daae76f3619519cf29c4d104d45dd30721bfce117ba8ff9cbd1123e9c559d9a5467454511ec217a6959" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:35:39.510684Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 149, latest_finalized_slot_number: 149, sync_status: Synced { synced_da_height: 148 }, .. } +2026-04-20T15:35:39.512079Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=145 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 149, latest_finalized_slot_number: 149, sync_status: Synced { synced_da_height: 148 }, .. } +2026-04-20T15:35:39.513015Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=145 +2026-04-20T15:35:39.515662Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:35:39.516610Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=141 +2026-04-20T15:35:39.518391Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=146 +2026-04-20T15:35:39.519514Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:35:39.521257Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=146 sequence_number=159 +2026-04-20T15:35:39.521539Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=159 blob_id=2147897705239749561368934621381889150 visible_slot_number_after_increase=146 visible_slots_to_advance=1 +2026-04-20T15:35:39.521527Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:39.522211Z DEBUG sov_stf_runner::runner: Block execution complete time=2.993031784s +2026-04-20T15:35:39.522281Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:35:39.524567Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:35:39.525067Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:35:39.525670Z DEBUG compute_state_update{scope="sequencer" rollup_height=146 slot_number=146}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:35:39.525977Z DEBUG compute_state_update{scope="sequencer" rollup_height=146 slot_number=146}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5e1844341e9d06781bc1606b94683511a7521631fbce5daae76f3619519cf29c4d104d45dd30721bfce117ba8ff9cbd1123e9c559d9a5467454511ec217a6959 next_version=150 sesssion_starting_time=308.148µs +2026-04-20T15:35:39.528240Z DEBUG manage_blob_submission_inside_task{blob_id=2147897705239749561368934621381889150 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xa2d8dd96b258b03784614c7616c71f8b4d43ad823efc2a1e4453aca24e74ad48 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=150 include_at=150 bytes=13 time=1.225493ms +2026-04-20T15:35:39.531454Z DEBUG compute_state_update{scope="sequencer" rollup_height=146 slot_number=146}: sov_state::nomt::prover_storage: computed next state root state_root=6aeb28214da7b3abe37583d4447065c1b3ced15d4dd4c9a6c63fe5041be3fc845d62f73e85ac19a0b16121029e3c7a937f0222fc06e2c82be296539856cde833 next_version=150 time=6.18044ms accesses_build_time=384.387µs finishing_session_time=5.381585ms +2026-04-20T15:35:40.050382Z DEBUG sp1_core_executor_runner::native: CHILD sp1_GGuU9-65QF6Uz4c-1FZu8A==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:35:40.090448Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:35:40.102729Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1828108 cycles +2026-04-20T15:35:40.105491Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [21, 118, 167, 112, 196, 18, 163, 240, 68, 33, 229, 150, 138, 137, 68, 103, 24, 24, 117, 163, 44, 60, 169, 17, 85, 18, 240, 212, 68, 12, 191, 151, 26, 188, 203, 24, 189, 226, 15, 217, 45, 93, 100, 137, 194, 46, 236, 238, 90, 46, 185, 73, 93, 0, 75, 58, 170, 3, 108, 160, 61, 236, 254, 5, 56, 112, 47, 150, 36, 126, 31, 75, 118, 141, 154, 38, 105, 150, 244, 95, 133, 169, 243, 245, 43, 99, 121, 153, 178, 14, 213, 241, 149, 251, 231, 109, 17, 141, 23, 119, 39, 129, 177, 73, 220, 43, 253, 138, 128, 60, 31, 29, 86, 19, 37, 184, 199, 126, 60, 86, 206, 79, 61, 175, 134, 163, 209, 6, 34, 170, 202, 203, 183, 90, 243, 21, 170, 222, 218, 27, 80, 81, 192, 226, 210, 23, 159, 94, 55, 236, 229, 164, 229, 214, 157, 38, 90, 32, 149, 31, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:35:40.747844Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:35:40.747926Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:35:42.480418Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=150 prev_hash=0x67a1b6dbccbfbb3b14658cab828ff7a3f6388126516d8402e07c6abb268302f2 hash=0x957254658af05e424fe447ecbe1f3fb4a63256ac9c29e1a15e73347a7e678168 producing_time=3.04579ms +2026-04-20T15:35:42.484477Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=150 current_state_root="5e1844341e9d06781bc1606b94683511a7521631fbce5daae76f3619519cf29c4d104d45dd30721bfce117ba8ff9cbd1123e9c559d9a5467454511ec217a6959" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa2d8dd96b258b03784614c7616c71f8b4d43ad823efc2a1e4453aca24e74ad48"] proof_blobs=[] +2026-04-20T15:35:42.493860Z DEBUG StfBlueprint::apply_slot{context=Node da_height=150}: sov_chain_state: Setting next visible slot number next_visible_slot_number=146 +2026-04-20T15:35:42.500752Z DEBUG StfBlueprint::apply_slot{context=Node da_height=150}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xa2d8dd96b258b03784614c7616c71f8b4d43ad823efc2a1e4453aca24e74ad48}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:42.503182Z DEBUG StfBlueprint::apply_slot{context=Node da_height=150}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5e1844341e9d06781bc1606b94683511a7521631fbce5daae76f3619519cf29c4d104d45dd30721bfce117ba8ff9cbd1123e9c559d9a5467454511ec217a6959 next_version=150 sesssion_starting_time=312.058µs +2026-04-20T15:35:42.511279Z DEBUG StfBlueprint::apply_slot{context=Node da_height=150}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6aeb28214da7b3abe37583d4447065c1b3ced15d4dd4c9a6c63fe5041be3fc84058deb1ab62cea60d4967953ff849b64310f3d40e1bd42cb67f36f571ceaa6de next_version=150 time=9.20166ms accesses_build_time=779.135µs finishing_session_time=7.935539ms +2026-04-20T15:35:42.512662Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="5e1844341e9d06781bc1606b94683511a7521631fbce5daae76f3619519cf29c4d104d45dd30721bfce117ba8ff9cbd1123e9c559d9a5467454511ec217a6959" next_state_root="6aeb28214da7b3abe37583d4447065c1b3ced15d4dd4c9a6c63fe5041be3fc84058deb1ab62cea60d4967953ff849b64310f3d40e1bd42cb67f36f571ceaa6de" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:35:42.517495Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 150, latest_finalized_slot_number: 150, sync_status: Synced { synced_da_height: 149 }, .. } +2026-04-20T15:35:42.518904Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=146 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 150, latest_finalized_slot_number: 150, sync_status: Synced { synced_da_height: 149 }, .. } +2026-04-20T15:35:42.519847Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=146 +2026-04-20T15:35:42.522483Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:35:42.523460Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=142 +2026-04-20T15:35:42.525255Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=147 +2026-04-20T15:35:42.526337Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:35:42.527983Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=147 sequence_number=160 +2026-04-20T15:35:42.528265Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:42.528343Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=160 blob_id=2147897708873818627630053496879809019 visible_slot_number_after_increase=147 visible_slots_to_advance=1 +2026-04-20T15:35:42.532918Z DEBUG compute_state_update{scope="sequencer" rollup_height=147 slot_number=147}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:35:42.533063Z DEBUG compute_state_update{scope="sequencer" rollup_height=147 slot_number=147}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6aeb28214da7b3abe37583d4447065c1b3ced15d4dd4c9a6c63fe5041be3fc84058deb1ab62cea60d4967953ff849b64310f3d40e1bd42cb67f36f571ceaa6de next_version=151 sesssion_starting_time=1.043843ms +2026-04-20T15:35:42.533638Z DEBUG sov_stf_runner::runner: Block execution complete time=3.011369926s +2026-04-20T15:35:42.533735Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:35:42.535648Z DEBUG manage_blob_submission_inside_task{blob_id=2147897708873818627630053496879809019 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x96a46cec5ee8412e39da6b7ccae1e395da6b93559ab939a4e862f7d8a93f78da sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=151 include_at=151 bytes=13 time=1.55824ms +2026-04-20T15:35:42.536046Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:35:42.536769Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:35:42.537920Z DEBUG compute_state_update{scope="sequencer" rollup_height=147 slot_number=147}: sov_state::nomt::prover_storage: computed next state root state_root=153d3a072404264a641649dec9bf6b1f36e908be25cd6451a7c34d3c89e4eec629717f3bd26a6cfff1bab4c29e31f24077eb2a9df8ac1b70f15c6697121a4a19 next_version=151 time=6.081161ms accesses_build_time=176.959µs finishing_session_time=4.812109ms +2026-04-20T15:35:42.950622Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LcYoXrs_Sx2bmXdY01iI0Q==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:35:42.991175Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:35:43.003684Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1853495 cycles +2026-04-20T15:35:43.006378Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [93, 19, 125, 235, 233, 211, 63, 86, 126, 238, 196, 160, 183, 252, 104, 125, 234, 68, 110, 104, 231, 98, 112, 162, 203, 136, 251, 194, 140, 122, 129, 222, 39, 14, 84, 68, 214, 105, 16, 227, 178, 79, 138, 219, 162, 51, 116, 135, 27, 194, 203, 118, 166, 22, 127, 209, 122, 22, 53, 56, 155, 216, 111, 253, 80, 194, 82, 63, 137, 114, 94, 145, 84, 72, 237, 1, 198, 212, 226, 139, 153, 62, 130, 147, 100, 60, 46, 163, 61, 113, 111, 19, 10, 142, 232, 59, 105, 122, 159, 172, 67, 165, 248, 241, 33, 221, 168, 88, 142, 23, 252, 110, 247, 130, 121, 224, 229, 109, 153, 7, 103, 108, 58, 150, 56, 232, 55, 190, 131, 228, 14, 68, 26, 122, 84, 79, 87, 112, 21, 131, 27, 196, 101, 154, 158, 98, 41, 182, 200, 56, 147, 84, 17, 121, 78, 72, 48, 202, 220, 245, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:35:43.657541Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:35:43.657620Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:35:45.484755Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=151 prev_hash=0x957254658af05e424fe447ecbe1f3fb4a63256ac9c29e1a15e73347a7e678168 hash=0x8afe30a495ab1e2b8303ba7990d42e49a44e5c871fc9115fb97b5f8b90b9e612 producing_time=2.839972ms +2026-04-20T15:35:45.496694Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=151 current_state_root="6aeb28214da7b3abe37583d4447065c1b3ced15d4dd4c9a6c63fe5041be3fc84058deb1ab62cea60d4967953ff849b64310f3d40e1bd42cb67f36f571ceaa6de" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x96a46cec5ee8412e39da6b7ccae1e395da6b93559ab939a4e862f7d8a93f78da"] proof_blobs=[] +2026-04-20T15:35:45.505790Z DEBUG StfBlueprint::apply_slot{context=Node da_height=151}: sov_chain_state: Setting next visible slot number next_visible_slot_number=147 +2026-04-20T15:35:45.512198Z DEBUG StfBlueprint::apply_slot{context=Node da_height=151}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x96a46cec5ee8412e39da6b7ccae1e395da6b93559ab939a4e862f7d8a93f78da}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:45.514548Z DEBUG StfBlueprint::apply_slot{context=Node da_height=151}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6aeb28214da7b3abe37583d4447065c1b3ced15d4dd4c9a6c63fe5041be3fc84058deb1ab62cea60d4967953ff849b64310f3d40e1bd42cb67f36f571ceaa6de next_version=151 sesssion_starting_time=342.638µs +2026-04-20T15:35:45.522783Z DEBUG StfBlueprint::apply_slot{context=Node da_height=151}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=153d3a072404264a641649dec9bf6b1f36e908be25cd6451a7c34d3c89e4eec646374345359c3fc7f67ba0e41a72c9fab7bb4ad0544fec7fc60a558a16637b38 next_version=151 time=9.351049ms accesses_build_time=760.095µs finishing_session_time=8.104068ms +2026-04-20T15:35:45.524044Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6aeb28214da7b3abe37583d4447065c1b3ced15d4dd4c9a6c63fe5041be3fc84058deb1ab62cea60d4967953ff849b64310f3d40e1bd42cb67f36f571ceaa6de" next_state_root="153d3a072404264a641649dec9bf6b1f36e908be25cd6451a7c34d3c89e4eec646374345359c3fc7f67ba0e41a72c9fab7bb4ad0544fec7fc60a558a16637b38" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:35:45.528679Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 151, latest_finalized_slot_number: 151, sync_status: Syncing { synced_da_height: 150, target_da_height: 151 }, .. } +2026-04-20T15:35:45.530085Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=147 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 151, latest_finalized_slot_number: 151, sync_status: Syncing { synced_da_height: 150, target_da_height: 151 }, .. } +2026-04-20T15:35:45.531026Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=147 +2026-04-20T15:35:45.533958Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:35:45.534955Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=143 +2026-04-20T15:35:45.536972Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=148 +2026-04-20T15:35:45.538246Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:35:45.540055Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=148 sequence_number=161 +2026-04-20T15:35:45.540411Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=161 blob_id=2147897712515066045136702146265287225 visible_slot_number_after_increase=148 visible_slots_to_advance=1 +2026-04-20T15:35:45.540371Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:45.544134Z DEBUG sov_stf_runner::runner: Block execution complete time=3.010413612s +2026-04-20T15:35:45.544237Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:35:45.544624Z DEBUG compute_state_update{scope="sequencer" rollup_height=148 slot_number=148}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:35:45.544978Z DEBUG compute_state_update{scope="sequencer" rollup_height=148 slot_number=148}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=153d3a072404264a641649dec9bf6b1f36e908be25cd6451a7c34d3c89e4eec646374345359c3fc7f67ba0e41a72c9fab7bb4ad0544fec7fc60a558a16637b38 next_version=152 sesssion_starting_time=362.137µs +2026-04-20T15:35:45.545340Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:35:45.545957Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:35:45.547542Z DEBUG manage_blob_submission_inside_task{blob_id=2147897712515066045136702146265287225 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x963c652d214a463be3b5dd7f6bea479e766e8679a19408d55cc5667fdf8c9792 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=152 include_at=152 bytes=13 time=1.372541ms +2026-04-20T15:35:45.550269Z DEBUG compute_state_update{scope="sequencer" rollup_height=148 slot_number=148}: sov_state::nomt::prover_storage: computed next state root state_root=646e1c8add205f5cfac1e3d084ff9057aee61ab44f8c8ff56ea26d139a1c6a4e101cdbf454967b3a639341af3bb79afde759f028115a658315aa7440bd8e0323 next_version=152 time=6.045241ms accesses_build_time=386.688µs finishing_session_time=5.202667ms +2026-04-20T15:35:45.997954Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mYYqbeMaRNOBZucKHI1Egw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:35:46.038114Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:35:46.050452Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1841797 cycles +2026-04-20T15:35:46.053189Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [92, 57, 107, 135, 221, 48, 127, 45, 47, 3, 96, 109, 225, 233, 144, 242, 158, 168, 218, 157, 184, 153, 255, 144, 137, 198, 132, 232, 119, 148, 49, 241, 13, 232, 165, 25, 3, 148, 186, 208, 59, 38, 64, 91, 80, 45, 198, 194, 15, 246, 197, 164, 64, 62, 172, 29, 62, 251, 63, 205, 231, 114, 126, 204, 6, 194, 250, 142, 108, 151, 32, 207, 57, 174, 113, 244, 81, 157, 42, 107, 237, 124, 7, 45, 254, 221, 58, 135, 250, 166, 93, 70, 6, 191, 147, 53, 102, 206, 84, 169, 117, 203, 106, 112, 185, 231, 185, 163, 80, 199, 240, 102, 89, 30, 47, 197, 175, 134, 235, 253, 149, 60, 163, 228, 139, 94, 172, 51, 139, 168, 163, 186, 195, 232, 178, 251, 144, 23, 88, 181, 129, 189, 50, 28, 8, 95, 137, 207, 14, 249, 105, 195, 93, 105, 245, 151, 163, 97, 237, 95, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:35:46.705345Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:35:46.705424Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:35:48.489110Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=152 prev_hash=0x8afe30a495ab1e2b8303ba7990d42e49a44e5c871fc9115fb97b5f8b90b9e612 hash=0x7c377ce188c6ab7015b424fcd68f82b28bb4b1b8bbd68f45c0b3a6316d14de3f producing_time=3.12634ms +2026-04-20T15:35:48.496859Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=152 current_state_root="153d3a072404264a641649dec9bf6b1f36e908be25cd6451a7c34d3c89e4eec646374345359c3fc7f67ba0e41a72c9fab7bb4ad0544fec7fc60a558a16637b38" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x963c652d214a463be3b5dd7f6bea479e766e8679a19408d55cc5667fdf8c9792"] proof_blobs=[] +2026-04-20T15:35:48.505886Z DEBUG StfBlueprint::apply_slot{context=Node da_height=152}: sov_chain_state: Setting next visible slot number next_visible_slot_number=148 +2026-04-20T15:35:48.512302Z DEBUG StfBlueprint::apply_slot{context=Node da_height=152}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x963c652d214a463be3b5dd7f6bea479e766e8679a19408d55cc5667fdf8c9792}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:48.514674Z DEBUG StfBlueprint::apply_slot{context=Node da_height=152}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=153d3a072404264a641649dec9bf6b1f36e908be25cd6451a7c34d3c89e4eec646374345359c3fc7f67ba0e41a72c9fab7bb4ad0544fec7fc60a558a16637b38 next_version=152 sesssion_starting_time=321.808µs +2026-04-20T15:35:48.522587Z DEBUG StfBlueprint::apply_slot{context=Node da_height=152}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=646e1c8add205f5cfac1e3d084ff9057aee61ab44f8c8ff56ea26d139a1c6a4e782b62d2c59ee0932b35eaf27b85722799b0e87120fc34fb9ae32930b898b318 next_version=152 time=9.026991ms accesses_build_time=778.225µs finishing_session_time=7.78601ms +2026-04-20T15:35:48.523852Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="153d3a072404264a641649dec9bf6b1f36e908be25cd6451a7c34d3c89e4eec646374345359c3fc7f67ba0e41a72c9fab7bb4ad0544fec7fc60a558a16637b38" next_state_root="646e1c8add205f5cfac1e3d084ff9057aee61ab44f8c8ff56ea26d139a1c6a4e782b62d2c59ee0932b35eaf27b85722799b0e87120fc34fb9ae32930b898b318" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:35:48.528862Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 152, latest_finalized_slot_number: 152, sync_status: Syncing { synced_da_height: 151, target_da_height: 152 }, .. } +2026-04-20T15:35:48.530358Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=148 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 152, latest_finalized_slot_number: 152, sync_status: Syncing { synced_da_height: 151, target_da_height: 152 }, .. } +2026-04-20T15:35:48.531368Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=148 +2026-04-20T15:35:48.534171Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:35:48.535200Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=144 +2026-04-20T15:35:48.537173Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=149 +2026-04-20T15:35:48.538312Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:35:48.540127Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=149 sequence_number=162 +2026-04-20T15:35:48.540416Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:48.540513Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=162 blob_id=2147897716143095779026450483936480513 visible_slot_number_after_increase=149 visible_slots_to_advance=1 +2026-04-20T15:35:48.544088Z DEBUG sov_stf_runner::runner: Block execution complete time=2.999873301s +2026-04-20T15:35:48.544133Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:35:48.544595Z DEBUG compute_state_update{scope="sequencer" rollup_height=149 slot_number=149}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:35:48.544896Z DEBUG compute_state_update{scope="sequencer" rollup_height=149 slot_number=149}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=646e1c8add205f5cfac1e3d084ff9057aee61ab44f8c8ff56ea26d139a1c6a4e782b62d2c59ee0932b35eaf27b85722799b0e87120fc34fb9ae32930b898b318 next_version=153 sesssion_starting_time=308.348µs +2026-04-20T15:35:48.546820Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:35:48.547242Z DEBUG manage_blob_submission_inside_task{blob_id=2147897716143095779026450483936480513 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xada18d33ba16dd03a4cc214ee7b4bccf7bf827d271339693d1874b9f2849d0f3 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=153 include_at=153 bytes=13 time=1.429981ms +2026-04-20T15:35:48.547689Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:35:48.551093Z DEBUG compute_state_update{scope="sequencer" rollup_height=149 slot_number=149}: sov_state::nomt::prover_storage: computed next state root state_root=248a2487cf9eee64b7baa3a5b8305136664d1c72be898d698fc60a2ce73ea02e24e5dcf3b1cae65ce3b0786de247c3d7fb500a512a6805adc094deb94199e46a next_version=153 time=6.901586ms accesses_build_time=392.758µs finishing_session_time=6.10654ms +2026-04-20T15:35:48.981538Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NsaGM9whRN-eyVNcTxBYZQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:35:49.023159Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:35:49.035011Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1885767 cycles +2026-04-20T15:35:49.037666Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [11, 210, 132, 127, 218, 143, 176, 250, 194, 12, 122, 146, 6, 88, 146, 20, 13, 178, 12, 131, 220, 250, 49, 212, 94, 107, 106, 60, 187, 255, 207, 72, 62, 94, 35, 25, 230, 103, 58, 133, 202, 47, 221, 30, 7, 80, 189, 5, 61, 155, 157, 67, 166, 77, 77, 122, 37, 6, 70, 229, 56, 249, 35, 31, 90, 12, 59, 69, 205, 180, 194, 138, 86, 127, 92, 115, 180, 187, 143, 195, 22, 245, 26, 170, 224, 211, 33, 62, 245, 155, 216, 212, 222, 59, 10, 146, 74, 47, 60, 190, 37, 23, 254, 22, 43, 130, 28, 82, 181, 37, 41, 48, 240, 130, 173, 207, 63, 128, 241, 7, 16, 237, 136, 217, 124, 15, 225, 248, 252, 180, 144, 83, 108, 68, 71, 5, 88, 160, 250, 226, 229, 70, 89, 168, 255, 122, 55, 144, 50, 65, 102, 235, 224, 25, 37, 87, 246, 161, 176, 20, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:35:49.701384Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:35:49.701465Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:35:51.493271Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=153 prev_hash=0x7c377ce188c6ab7015b424fcd68f82b28bb4b1b8bbd68f45c0b3a6316d14de3f hash=0xc0f730a34a6bb6b092d89e260ac25482ba8304b48e075650a55314d59c6ca014 producing_time=3.265229ms +2026-04-20T15:35:51.496438Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=153 current_state_root="646e1c8add205f5cfac1e3d084ff9057aee61ab44f8c8ff56ea26d139a1c6a4e782b62d2c59ee0932b35eaf27b85722799b0e87120fc34fb9ae32930b898b318" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xada18d33ba16dd03a4cc214ee7b4bccf7bf827d271339693d1874b9f2849d0f3"] proof_blobs=[] +2026-04-20T15:35:51.504869Z DEBUG StfBlueprint::apply_slot{context=Node da_height=153}: sov_chain_state: Setting next visible slot number next_visible_slot_number=149 +2026-04-20T15:35:51.510625Z DEBUG StfBlueprint::apply_slot{context=Node da_height=153}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xada18d33ba16dd03a4cc214ee7b4bccf7bf827d271339693d1874b9f2849d0f3}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:51.512805Z DEBUG StfBlueprint::apply_slot{context=Node da_height=153}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=646e1c8add205f5cfac1e3d084ff9057aee61ab44f8c8ff56ea26d139a1c6a4e782b62d2c59ee0932b35eaf27b85722799b0e87120fc34fb9ae32930b898b318 next_version=153 sesssion_starting_time=257.268µs +2026-04-20T15:35:51.521077Z DEBUG StfBlueprint::apply_slot{context=Node da_height=153}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=248a2487cf9eee64b7baa3a5b8305136664d1c72be898d698fc60a2ce73ea02e4ad15b86a3fa14d9ff18667f9af1635883b6286eb5af3428a0b2dde05df98849 next_version=153 time=9.334099ms accesses_build_time=782.295µs finishing_session_time=8.136068ms +2026-04-20T15:35:51.522362Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="646e1c8add205f5cfac1e3d084ff9057aee61ab44f8c8ff56ea26d139a1c6a4e782b62d2c59ee0932b35eaf27b85722799b0e87120fc34fb9ae32930b898b318" next_state_root="248a2487cf9eee64b7baa3a5b8305136664d1c72be898d698fc60a2ce73ea02e4ad15b86a3fa14d9ff18667f9af1635883b6286eb5af3428a0b2dde05df98849" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:35:51.527140Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 153, latest_finalized_slot_number: 153, sync_status: Syncing { synced_da_height: 152, target_da_height: 153 }, .. } +2026-04-20T15:35:51.528619Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=149 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 153, latest_finalized_slot_number: 153, sync_status: Syncing { synced_da_height: 152, target_da_height: 153 }, .. } +2026-04-20T15:35:51.529672Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=149 +2026-04-20T15:35:51.532546Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:35:51.533559Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=145 +2026-04-20T15:35:51.534945Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=150 +2026-04-20T15:35:51.536288Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:35:51.537983Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=150 sequence_number=163 +2026-04-20T15:35:51.538257Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=163 blob_id=2147897719766186308106107820859357694 visible_slot_number_after_increase=150 visible_slots_to_advance=1 +2026-04-20T15:35:51.538286Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:51.543185Z DEBUG compute_state_update{scope="sequencer" rollup_height=150 slot_number=150}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:35:51.543528Z DEBUG compute_state_update{scope="sequencer" rollup_height=150 slot_number=150}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=248a2487cf9eee64b7baa3a5b8305136664d1c72be898d698fc60a2ce73ea02e4ad15b86a3fa14d9ff18667f9af1635883b6286eb5af3428a0b2dde05df98849 next_version=154 sesssion_starting_time=730.675µs +2026-04-20T15:35:51.543973Z DEBUG sov_stf_runner::runner: Block execution complete time=2.999844541s +2026-04-20T15:35:51.544072Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:35:51.545112Z DEBUG manage_blob_submission_inside_task{blob_id=2147897719766186308106107820859357694 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x38099bfe9e2b3f96beeaeaba2e2cdc0693a8fecdc59ed76328bea56b32a386bd sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=154 include_at=154 bytes=13 time=1.474111ms +2026-04-20T15:35:51.547939Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:35:51.549077Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:35:51.549543Z DEBUG compute_state_update{scope="sequencer" rollup_height=150 slot_number=150}: sov_state::nomt::prover_storage: computed next state root state_root=4f34e2ce86fdb18cb66f8a0b30c11da96f1ff01a6d94960060acdf280bf2cabb7e8ccecc2e31aa35f62d8f2d542fd81f0fa7727cd0736e54dcac173ccef13366 next_version=154 time=7.142764ms accesses_build_time=386.087µs finishing_session_time=5.917502ms +2026-04-20T15:35:52.026474Z DEBUG sp1_core_executor_runner::native: CHILD sp1_g_JmBOKUQJ-WVf3zl89piQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:35:52.068606Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:35:52.081122Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1931539 cycles +2026-04-20T15:35:52.083842Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [25, 250, 149, 196, 93, 127, 38, 57, 8, 187, 31, 22, 220, 238, 159, 235, 162, 197, 163, 128, 197, 242, 201, 213, 191, 29, 172, 214, 214, 222, 178, 105, 29, 236, 58, 203, 14, 212, 135, 7, 25, 158, 64, 235, 116, 140, 129, 121, 172, 213, 248, 228, 251, 94, 41, 245, 135, 0, 112, 161, 66, 238, 29, 212, 8, 240, 186, 116, 28, 148, 227, 116, 22, 70, 132, 113, 253, 23, 137, 36, 61, 162, 168, 69, 9, 150, 94, 168, 13, 27, 97, 7, 255, 76, 231, 81, 26, 70, 3, 255, 49, 45, 250, 120, 183, 66, 1, 96, 43, 107, 222, 132, 75, 131, 241, 106, 102, 119, 158, 156, 193, 202, 250, 49, 72, 38, 221, 237, 32, 67, 135, 176, 85, 180, 79, 190, 2, 50, 131, 130, 130, 140, 152, 231, 152, 73, 136, 202, 213, 172, 162, 138, 109, 60, 49, 250, 8, 57, 115, 232, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:35:52.762233Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:35:52.762311Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:35:54.496558Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=154 prev_hash=0xc0f730a34a6bb6b092d89e260ac25482ba8304b48e075650a55314d59c6ca014 hash=0x775696b2cc3d4389168a67120727ac6ce57ec08bc38050b887e3d54377b462ff producing_time=2.900161ms +2026-04-20T15:35:54.506573Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=154 current_state_root="248a2487cf9eee64b7baa3a5b8305136664d1c72be898d698fc60a2ce73ea02e4ad15b86a3fa14d9ff18667f9af1635883b6286eb5af3428a0b2dde05df98849" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x38099bfe9e2b3f96beeaeaba2e2cdc0693a8fecdc59ed76328bea56b32a386bd"] proof_blobs=[] +2026-04-20T15:35:54.514985Z DEBUG StfBlueprint::apply_slot{context=Node da_height=154}: sov_chain_state: Setting next visible slot number next_visible_slot_number=150 +2026-04-20T15:35:54.520823Z DEBUG StfBlueprint::apply_slot{context=Node da_height=154}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x38099bfe9e2b3f96beeaeaba2e2cdc0693a8fecdc59ed76328bea56b32a386bd}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:54.522993Z DEBUG StfBlueprint::apply_slot{context=Node da_height=154}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=248a2487cf9eee64b7baa3a5b8305136664d1c72be898d698fc60a2ce73ea02e4ad15b86a3fa14d9ff18667f9af1635883b6286eb5af3428a0b2dde05df98849 next_version=154 sesssion_starting_time=260.678µs +2026-04-20T15:35:54.531448Z DEBUG StfBlueprint::apply_slot{context=Node da_height=154}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4f34e2ce86fdb18cb66f8a0b30c11da96f1ff01a6d94960060acdf280bf2cabb4b0fff8387417e6796ae05230dd7670a1c024c0fc9bdab520e7c838db4bb89e5 next_version=154 time=9.508468ms accesses_build_time=780.925µs finishing_session_time=8.318987ms +2026-04-20T15:35:54.532706Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="248a2487cf9eee64b7baa3a5b8305136664d1c72be898d698fc60a2ce73ea02e4ad15b86a3fa14d9ff18667f9af1635883b6286eb5af3428a0b2dde05df98849" next_state_root="4f34e2ce86fdb18cb66f8a0b30c11da96f1ff01a6d94960060acdf280bf2cabb4b0fff8387417e6796ae05230dd7670a1c024c0fc9bdab520e7c838db4bb89e5" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:35:54.536586Z DEBUG sov_stf_runner::runner: Block execution complete time=2.992529899s +2026-04-20T15:35:54.536683Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:35:54.537345Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 154, latest_finalized_slot_number: 153, sync_status: Syncing { synced_da_height: 153, target_da_height: 154 }, .. } +2026-04-20T15:35:54.538726Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=150 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 154, latest_finalized_slot_number: 153, sync_status: Syncing { synced_da_height: 153, target_da_height: 154 }, .. } +2026-04-20T15:35:54.539432Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:35:54.539692Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=150 +2026-04-20T15:35:54.540069Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:35:54.542294Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:35:54.543265Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=146 +2026-04-20T15:35:54.545236Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=151 +2026-04-20T15:35:54.546397Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:35:54.548233Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=151 sequence_number=164 +2026-04-20T15:35:54.548546Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=164 blob_id=2147897723406310886550093596492011658 visible_slot_number_after_increase=151 visible_slots_to_advance=1 +2026-04-20T15:35:54.548530Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:54.553196Z DEBUG compute_state_update{scope="sequencer" rollup_height=151 slot_number=151}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4f34e2ce86fdb18cb66f8a0b30c11da96f1ff01a6d94960060acdf280bf2cabb4b0fff8387417e6796ae05230dd7670a1c024c0fc9bdab520e7c838db4bb89e5 next_version=155 sesssion_starting_time=260.328µs +2026-04-20T15:35:54.556239Z DEBUG manage_blob_submission_inside_task{blob_id=2147897723406310886550093596492011658 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x47eb2bba20312d9365208c55d73a2391c62e3d2368ffe13f1c0c818df3ddad86 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=155 include_at=155 bytes=13 time=1.556929ms +2026-04-20T15:35:54.558634Z DEBUG compute_state_update{scope="sequencer" rollup_height=151 slot_number=151}: sov_state::nomt::prover_storage: computed next state root state_root=3588623b82617cdcc5fa192c2a4fadc16dd8ec47d36d050744c4801fae43207d36d4895818dd808bd73b090384edf3bb645909a5cf3374380cc98f23b0d79ac9 next_version=155 time=6.078541ms accesses_build_time=369.108µs finishing_session_time=5.320995ms +2026-04-20T15:35:55.010982Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mRlrbAXsQCCToOl0Jli8DA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:35:55.077187Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:35:55.089733Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4169780 cycles +2026-04-20T15:35:55.092412Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [0, 156, 215, 75, 15, 198, 171, 75, 19, 9, 191, 191, 47, 242, 69, 181, 128, 249, 110, 109, 85, 237, 126, 15, 48, 60, 166, 101, 17, 73, 213, 212, 58, 54, 116, 85, 231, 15, 171, 161, 217, 140, 79, 22, 41, 188, 199, 44, 59, 241, 148, 55, 111, 152, 127, 184, 27, 203, 239, 220, 38, 28, 101, 235, 100, 54, 0, 112, 240, 158, 155, 230, 92, 88, 17, 213, 246, 153, 101, 110, 19, 213, 219, 182, 246, 64, 18, 159, 29, 58, 118, 144, 15, 135, 118, 33, 88, 9, 186, 91, 230, 188, 47, 95, 152, 97, 86, 187, 251, 82, 239, 214, 147, 130, 183, 8, 83, 241, 71, 56, 252, 56, 210, 48, 164, 4, 147, 23, 38, 35, 163, 52, 190, 188, 18, 36, 233, 135, 187, 237, 41, 207, 122, 241, 143, 87, 59, 208, 30, 131, 110, 212, 115, 107, 218, 100, 85, 211, 69, 254, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:35:56.544285Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:35:56.544377Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:35:57.500840Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=155 prev_hash=0x775696b2cc3d4389168a67120727ac6ce57ec08bc38050b887e3d54377b462ff hash=0x272e2c40d933b3f6c1f06fc41f6b60b07622245a4710a8bc8ed5e846f76af9f0 producing_time=3.05005ms +2026-04-20T15:35:57.510108Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=155 current_state_root="4f34e2ce86fdb18cb66f8a0b30c11da96f1ff01a6d94960060acdf280bf2cabb4b0fff8387417e6796ae05230dd7670a1c024c0fc9bdab520e7c838db4bb89e5" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x47eb2bba20312d9365208c55d73a2391c62e3d2368ffe13f1c0c818df3ddad86"] proof_blobs=[] +2026-04-20T15:35:57.518840Z DEBUG StfBlueprint::apply_slot{context=Node da_height=155}: sov_chain_state: Setting next visible slot number next_visible_slot_number=151 +2026-04-20T15:35:57.525195Z DEBUG StfBlueprint::apply_slot{context=Node da_height=155}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x47eb2bba20312d9365208c55d73a2391c62e3d2368ffe13f1c0c818df3ddad86}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:57.527500Z DEBUG StfBlueprint::apply_slot{context=Node da_height=155}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4f34e2ce86fdb18cb66f8a0b30c11da96f1ff01a6d94960060acdf280bf2cabb4b0fff8387417e6796ae05230dd7670a1c024c0fc9bdab520e7c838db4bb89e5 next_version=155 sesssion_starting_time=333.808µs +2026-04-20T15:35:57.535422Z DEBUG StfBlueprint::apply_slot{context=Node da_height=155}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3588623b82617cdcc5fa192c2a4fadc16dd8ec47d36d050744c4801fae43207d72fc3ff0d9103ea7a9ff23d373cf0cb82a9d58e99f461eececa2136c4a2d10d4 next_version=155 time=9.044612ms accesses_build_time=776.265µs finishing_session_time=7.78844ms +2026-04-20T15:35:57.536745Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="248a2487cf9eee64b7baa3a5b8305136664d1c72be898d698fc60a2ce73ea02e4ad15b86a3fa14d9ff18667f9af1635883b6286eb5af3428a0b2dde05df98849" next_state_root="3588623b82617cdcc5fa192c2a4fadc16dd8ec47d36d050744c4801fae43207d72fc3ff0d9103ea7a9ff23d373cf0cb82a9d58e99f461eececa2136c4a2d10d4" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:35:57.541860Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 155, latest_finalized_slot_number: 154, sync_status: Syncing { synced_da_height: 154, target_da_height: 155 }, .. } +2026-04-20T15:35:57.543695Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=151 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 155, latest_finalized_slot_number: 154, sync_status: Syncing { synced_da_height: 154, target_da_height: 155 }, .. } +2026-04-20T15:35:57.544810Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=151 +2026-04-20T15:35:57.547487Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:35:57.548429Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=147 +2026-04-20T15:35:57.550242Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=152 +2026-04-20T15:35:57.551363Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:35:57.552946Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=152 sequence_number=165 +2026-04-20T15:35:57.553213Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=165 blob_id=2147897727037903742819413904757693733 visible_slot_number_after_increase=152 visible_slots_to_advance=1 +2026-04-20T15:35:57.553216Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:35:57.557536Z DEBUG compute_state_update{scope="sequencer" rollup_height=152 slot_number=152}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:35:57.557853Z DEBUG compute_state_update{scope="sequencer" rollup_height=152 slot_number=152}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3588623b82617cdcc5fa192c2a4fadc16dd8ec47d36d050744c4801fae43207d72fc3ff0d9103ea7a9ff23d373cf0cb82a9d58e99f461eececa2136c4a2d10d4 next_version=156 sesssion_starting_time=550.266µs +2026-04-20T15:35:57.558369Z DEBUG sov_stf_runner::runner: Block execution complete time=3.02170366s +2026-04-20T15:35:57.558487Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:35:57.560103Z DEBUG manage_blob_submission_inside_task{blob_id=2147897727037903742819413904757693733 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xbbe0631baca989d206b5a56a6f5fe730a3f0b0dcb2063354b44eb4ba902cc755 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=156 include_at=156 bytes=13 time=1.50982ms +2026-04-20T15:35:57.560752Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:35:57.561483Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:35:57.562678Z DEBUG compute_state_update{scope="sequencer" rollup_height=152 slot_number=152}: sov_state::nomt::prover_storage: computed next state root state_root=203427280a0d17d332111e1f30207e393dd0ed9e0b23c51f815be47283f6b0df6628e500e821d76ed567b7b1ba7a3830a7968895887ab924e0e30ab5098a47fb next_version=156 time=5.759993ms accesses_build_time=377.408µs finishing_session_time=4.747859ms +2026-04-20T15:35:58.040419Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ODsNCdOST76fTbok166PkA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:35:58.080062Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:35:58.093165Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1819797 cycles +2026-04-20T15:35:58.095955Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [93, 39, 186, 211, 124, 150, 30, 16, 194, 8, 115, 86, 196, 209, 51, 253, 11, 148, 58, 29, 55, 58, 153, 255, 1, 60, 37, 171, 120, 39, 233, 154, 57, 41, 252, 237, 20, 173, 181, 8, 72, 219, 147, 18, 130, 60, 129, 182, 110, 66, 254, 114, 156, 234, 228, 53, 87, 145, 125, 138, 175, 61, 56, 235, 77, 110, 35, 16, 223, 62, 152, 47, 60, 36, 216, 44, 114, 142, 4, 125, 58, 81, 49, 183, 104, 2, 134, 43, 77, 227, 250, 181, 134, 85, 72, 227, 42, 26, 3, 144, 128, 225, 126, 31, 1, 23, 58, 174, 114, 39, 77, 94, 6, 250, 139, 76, 246, 158, 188, 176, 131, 17, 3, 247, 24, 114, 0, 142, 103, 161, 182, 219, 204, 191, 187, 59, 20, 101, 140, 171, 130, 143, 247, 163, 246, 56, 129, 38, 81, 109, 132, 2, 224, 124, 106, 187, 38, 131, 2, 242, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:35:58.737028Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:35:58.737108Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:36:00.504937Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=156 prev_hash=0x272e2c40d933b3f6c1f06fc41f6b60b07622245a4710a8bc8ed5e846f76af9f0 hash=0x9403ab291424ec5f10afef553b85616dd0bbd52b80d67abc8734357c35d46faa producing_time=2.820811ms +2026-04-20T15:36:00.512121Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=156 current_state_root="3588623b82617cdcc5fa192c2a4fadc16dd8ec47d36d050744c4801fae43207d72fc3ff0d9103ea7a9ff23d373cf0cb82a9d58e99f461eececa2136c4a2d10d4" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xbbe0631baca989d206b5a56a6f5fe730a3f0b0dcb2063354b44eb4ba902cc755"] proof_blobs=[] +2026-04-20T15:36:00.520656Z DEBUG StfBlueprint::apply_slot{context=Node da_height=156}: sov_chain_state: Setting next visible slot number next_visible_slot_number=152 +2026-04-20T15:36:00.526876Z DEBUG StfBlueprint::apply_slot{context=Node da_height=156}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xbbe0631baca989d206b5a56a6f5fe730a3f0b0dcb2063354b44eb4ba902cc755}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:00.529078Z DEBUG StfBlueprint::apply_slot{context=Node da_height=156}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3588623b82617cdcc5fa192c2a4fadc16dd8ec47d36d050744c4801fae43207d72fc3ff0d9103ea7a9ff23d373cf0cb82a9d58e99f461eececa2136c4a2d10d4 next_version=156 sesssion_starting_time=238.299µs +2026-04-20T15:36:00.537105Z DEBUG StfBlueprint::apply_slot{context=Node da_height=156}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=203427280a0d17d332111e1f30207e393dd0ed9e0b23c51f815be47283f6b0df20a2f0c564e73a3e3985efe0e8e59f5aa9cb0aa79f2ea59353e8451f4dbe7aac next_version=156 time=9.055712ms accesses_build_time=778.585µs finishing_session_time=7.896729ms +2026-04-20T15:36:00.538450Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4f34e2ce86fdb18cb66f8a0b30c11da96f1ff01a6d94960060acdf280bf2cabb4b0fff8387417e6796ae05230dd7670a1c024c0fc9bdab520e7c838db4bb89e5" next_state_root="203427280a0d17d332111e1f30207e393dd0ed9e0b23c51f815be47283f6b0df20a2f0c564e73a3e3985efe0e8e59f5aa9cb0aa79f2ea59353e8451f4dbe7aac" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:36:00.543096Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 156, latest_finalized_slot_number: 155, sync_status: Syncing { synced_da_height: 155, target_da_height: 156 }, .. } +2026-04-20T15:36:00.544533Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=152 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 156, latest_finalized_slot_number: 155, sync_status: Syncing { synced_da_height: 155, target_da_height: 156 }, .. } +2026-04-20T15:36:00.545472Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=152 +2026-04-20T15:36:00.547925Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:36:00.548898Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=148 +2026-04-20T15:36:00.550754Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=153 +2026-04-20T15:36:00.551785Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:36:00.553471Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=153 sequence_number=166 +2026-04-20T15:36:00.553751Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=166 blob_id=2147897730665883872806486591528924616 visible_slot_number_after_increase=153 visible_slots_to_advance=1 +2026-04-20T15:36:00.553725Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:00.558180Z DEBUG compute_state_update{scope="sequencer" rollup_height=153 slot_number=153}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:36:00.558520Z DEBUG compute_state_update{scope="sequencer" rollup_height=153 slot_number=153}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=203427280a0d17d332111e1f30207e393dd0ed9e0b23c51f815be47283f6b0df20a2f0c564e73a3e3985efe0e8e59f5aa9cb0aa79f2ea59353e8451f4dbe7aac next_version=157 sesssion_starting_time=722.435µs +2026-04-20T15:36:00.558934Z DEBUG sov_stf_runner::runner: Block execution complete time=3.000467697s +2026-04-20T15:36:00.559006Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:36:00.560828Z DEBUG manage_blob_submission_inside_task{blob_id=2147897730665883872806486591528924616 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x5714b165ecbc84049c58d0d5acafe14b8b70ee877981069d26b91032cc17ae44 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=157 include_at=157 bytes=13 time=1.56575ms +2026-04-20T15:36:00.563846Z DEBUG compute_state_update{scope="sequencer" rollup_height=153 slot_number=153}: sov_state::nomt::prover_storage: computed next state root state_root=6819e1673558bf915bb409afe9d7a200e9ce7174d159b6dc5ffe9276281296e065e3947721836ee1cfbbf0da7b7b4a6bb9a2c91a830df31096acc0639fd10e76 next_version=157 time=6.425648ms accesses_build_time=368.937µs finishing_session_time=5.231326ms +2026-04-20T15:36:01.009357Z DEBUG sp1_core_executor_runner::native: CHILD sp1_MUCFQJt-SQiAI5xu35ueLA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:36:01.049578Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:36:01.061362Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1850873 cycles +2026-04-20T15:36:01.064079Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [94, 24, 68, 52, 30, 157, 6, 120, 27, 193, 96, 107, 148, 104, 53, 17, 167, 82, 22, 49, 251, 206, 93, 170, 231, 111, 54, 25, 81, 156, 242, 156, 77, 16, 77, 69, 221, 48, 114, 27, 252, 225, 23, 186, 143, 249, 203, 209, 18, 62, 156, 85, 157, 154, 84, 103, 69, 69, 17, 236, 33, 122, 105, 89, 20, 210, 228, 126, 2, 234, 45, 97, 160, 200, 78, 203, 243, 250, 226, 250, 199, 150, 116, 72, 155, 86, 252, 210, 92, 103, 47, 200, 53, 177, 168, 171, 121, 171, 143, 211, 59, 7, 210, 36, 127, 169, 176, 100, 223, 202, 234, 69, 125, 0, 255, 41, 49, 225, 231, 36, 219, 215, 153, 197, 80, 106, 219, 65, 149, 114, 84, 101, 138, 240, 94, 66, 79, 228, 71, 236, 190, 31, 63, 180, 166, 50, 86, 172, 156, 41, 225, 161, 94, 115, 52, 122, 126, 103, 129, 104, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:36:01.713716Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:36:01.713799Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:36:01.811482Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:36:02.052038Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:36:02.054291Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2607482 cycles +2026-04-20T15:36:02.054675Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [141, 0, 0, 0, 0, 0, 0, 0, 150, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 102, 58, 128, 130, 255, 251, 226, 26, 52, 229, 92, 247, 70, 35, 13, 159, 141, 208, 167, 202, 95, 86, 53, 255, 239, 213, 166, 71, 53, 200, 181, 222, 28, 20, 50, 52, 232, 33, 45, 142, 218, 185, 51, 56, 205, 255, 86, 128, 102, 19, 209, 236, 109, 57, 7, 82, 215, 155, 67, 159, 34, 164, 186, 233, 20, 210, 228, 126, 2, 234, 45, 97, 160, 200, 78, 203, 243, 250, 226, 250, 199, 150, 116, 72, 155, 86, 252, 210, 92, 103, 47, 200, 53, 177, 168, 171, 121, 171, 143, 211, 59, 7, 210, 36, 127, 169, 176, 100, 223, 202, 234, 69, 125, 0, 255, 41, 49, 225, 231, 36, 219, 215, 153, 197, 80, 106, 219, 65, 36, 55, 3, 92, 210, 196, 211, 37, 138, 16, 179, 237, 213, 94, 79, 117, 9, 56, 221, 68, 241, 114, 134, 241, 95, 237, 252, 196, 137, 93, 121, 34, 149, 114, 84, 101, 138, 240, 94, 66, 79, 228, 71, 236, 190, 31, 63, 180, 166, 50, 86, 172, 156, 41, 225, 161, 94, 115, 52, 122, 126, 103, 129, 104, 32, 0, 0, 0, 0, 0, 0, 0, 33, 87, 226, 242, 39, 49, 250, 210, 41, 143, 26, 188, 101, 19, 12, 136, 43, 105, 121, 236, 80, 118, 108, 155, 63, 154, 215, 73, 15, 107, 27, 67, 32, 0, 0, 0, 0, 0, 0, 0, 54, 246, 123, 188, 67, 61, 237, 103, 16, 229, 5, 146, 113, 8, 178, 215, 95, 95, 151, 239, 106, 28, 10, 135, 55, 55, 208, 95, 86, 190, 27, 9, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:36:03.020050Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:36:03.020127Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:36:03.021011Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=1951 +2026-04-20T15:36:03.023777Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:36:03.024290Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:36:03.024771Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=167 blob_id=2147897733649515763635213261959379121 +2026-04-20T15:36:03.508806Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=157 prev_hash=0x9403ab291424ec5f10afef553b85616dd0bbd52b80d67abc8734357c35d46faa hash=0x8a7b1e4421319bd1c01bdd00c48a379beec81cc7bd0fac1e7139ecb892392ce8 producing_time=2.808842ms +2026-04-20T15:36:03.511698Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=157 current_state_root="203427280a0d17d332111e1f30207e393dd0ed9e0b23c51f815be47283f6b0df20a2f0c564e73a3e3985efe0e8e59f5aa9cb0aa79f2ea59353e8451f4dbe7aac" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x5714b165ecbc84049c58d0d5acafe14b8b70ee877981069d26b91032cc17ae44"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x95ccc664f05e361f20c671e3e7bc6b29232882a59aa5a3c97151fe64c8d9a274, len=2001"] +2026-04-20T15:36:03.519906Z DEBUG StfBlueprint::apply_slot{context=Node da_height=157}: sov_chain_state: Setting next visible slot number next_visible_slot_number=153 +2026-04-20T15:36:03.525782Z DEBUG StfBlueprint::apply_slot{context=Node da_height=157}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x5714b165ecbc84049c58d0d5acafe14b8b70ee877981069d26b91032cc17ae44}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:03.528029Z DEBUG StfBlueprint::apply_slot{context=Node da_height=157}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=203427280a0d17d332111e1f30207e393dd0ed9e0b23c51f815be47283f6b0df20a2f0c564e73a3e3985efe0e8e59f5aa9cb0aa79f2ea59353e8451f4dbe7aac next_version=157 sesssion_starting_time=227.589µs +2026-04-20T15:36:03.535874Z DEBUG StfBlueprint::apply_slot{context=Node da_height=157}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6819e1673558bf915bb409afe9d7a200e9ce7174d159b6dc5ffe9276281296e05c183d4e6c6652e6c622feb75723bb5257bca59b8b385a72b219e33b0da37ec6 next_version=157 time=9.011412ms accesses_build_time=927.394µs finishing_session_time=7.72447ms +2026-04-20T15:36:03.537117Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3588623b82617cdcc5fa192c2a4fadc16dd8ec47d36d050744c4801fae43207d72fc3ff0d9103ea7a9ff23d373cf0cb82a9d58e99f461eececa2136c4a2d10d4" next_state_root="6819e1673558bf915bb409afe9d7a200e9ce7174d159b6dc5ffe9276281296e05c183d4e6c6652e6c622feb75723bb5257bca59b8b385a72b219e33b0da37ec6" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:36:03.541843Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 157, latest_finalized_slot_number: 156, sync_status: Syncing { synced_da_height: 156, target_da_height: 157 }, .. } +2026-04-20T15:36:03.543208Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=153 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 157, latest_finalized_slot_number: 156, sync_status: Syncing { synced_da_height: 156, target_da_height: 157 }, .. } +2026-04-20T15:36:03.544112Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=153 +2026-04-20T15:36:03.546485Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:36:03.547416Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=149 +2026-04-20T15:36:03.549447Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=154 +2026-04-20T15:36:03.550790Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:36:03.555250Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 141. Final slot number 150 +2026-04-20T15:36:03.555859Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=154 sequence_number=168 +2026-04-20T15:36:03.556099Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:03.556126Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=168 blob_id=2147897734295047917344728054793206503 visible_slot_number_after_increase=154 visible_slots_to_advance=1 +2026-04-20T15:36:03.557196Z DEBUG sov_stf_runner::runner: Block execution complete time=2.998203821s +2026-04-20T15:36:03.557252Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:36:03.559392Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:36:03.559667Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:36:03.560208Z DEBUG compute_state_update{scope="sequencer" rollup_height=154 slot_number=154}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:36:03.560508Z DEBUG compute_state_update{scope="sequencer" rollup_height=154 slot_number=154}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6819e1673558bf915bb409afe9d7a200e9ce7174d159b6dc5ffe9276281296e05c183d4e6c6652e6c622feb75723bb5257bca59b8b385a72b219e33b0da37ec6 next_version=158 sesssion_starting_time=311.558µs +2026-04-20T15:36:03.562627Z DEBUG manage_blob_submission_inside_task{blob_id=2147897734295047917344728054793206503 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xac3e7e932f88453fbfeda71f57caab1cc10c8208204fb0b54827f8b3d1d0cb19 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=158 include_at=158 bytes=13 time=1.310561ms +2026-04-20T15:36:03.566960Z DEBUG compute_state_update{scope="sequencer" rollup_height=154 slot_number=154}: sov_state::nomt::prover_storage: computed next state root state_root=0c3ca4b4a2fad7117a8a50d498b64ab55a53e320ccc344a3a41201ef2c85b9ae336502e935bbe9bf93519afa6ddc35a139d3644b0b9456f4f8a1b35917f2e581 next_version=158 time=7.212743ms accesses_build_time=448.647µs finishing_session_time=6.329529ms +2026-04-20T15:36:06.504410Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Qf9S5vwRRsy-q6dUIUj9qQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:36:06.513385Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=158 prev_hash=0x8a7b1e4421319bd1c01bdd00c48a379beec81cc7bd0fac1e7139ecb892392ce8 hash=0xc3ed7b2eef0869572b8f14c1291a31a514ba8355b0d9f80eb9da4d2991f0c32e producing_time=2.706473ms +2026-04-20T15:36:06.519465Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=158 current_state_root="6819e1673558bf915bb409afe9d7a200e9ce7174d159b6dc5ffe9276281296e05c183d4e6c6652e6c622feb75723bb5257bca59b8b385a72b219e33b0da37ec6" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xac3e7e932f88453fbfeda71f57caab1cc10c8208204fb0b54827f8b3d1d0cb19"] proof_blobs=[] +2026-04-20T15:36:06.529160Z DEBUG StfBlueprint::apply_slot{context=Node da_height=158}: sov_chain_state: Setting next visible slot number next_visible_slot_number=154 +2026-04-20T15:36:06.545859Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:36:06.549241Z DEBUG StfBlueprint::apply_slot{context=Node da_height=158}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 141. Final slot number 150 +2026-04-20T15:36:06.549725Z DEBUG StfBlueprint::apply_slot{context=Node da_height=158}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xac3e7e932f88453fbfeda71f57caab1cc10c8208204fb0b54827f8b3d1d0cb19}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:06.552485Z DEBUG StfBlueprint::apply_slot{context=Node da_height=158}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6819e1673558bf915bb409afe9d7a200e9ce7174d159b6dc5ffe9276281296e05c183d4e6c6652e6c622feb75723bb5257bca59b8b385a72b219e33b0da37ec6 next_version=158 sesssion_starting_time=339.857µs +2026-04-20T15:36:06.557657Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1880759 cycles +2026-04-20T15:36:06.560499Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [106, 235, 40, 33, 77, 167, 179, 171, 227, 117, 131, 212, 68, 112, 101, 193, 179, 206, 209, 93, 77, 212, 201, 166, 198, 63, 229, 4, 27, 227, 252, 132, 5, 141, 235, 26, 182, 44, 234, 96, 212, 150, 121, 83, 255, 132, 155, 100, 49, 15, 61, 64, 225, 189, 66, 203, 103, 243, 111, 87, 28, 234, 166, 222, 25, 82, 63, 210, 228, 78, 112, 120, 89, 240, 178, 83, 97, 92, 18, 10, 113, 241, 3, 126, 191, 35, 144, 173, 214, 207, 175, 149, 19, 235, 45, 96, 123, 240, 215, 166, 117, 254, 30, 115, 154, 9, 77, 198, 115, 232, 161, 243, 7, 22, 18, 221, 233, 156, 190, 66, 39, 104, 85, 64, 221, 90, 232, 143, 138, 254, 48, 164, 149, 171, 30, 43, 131, 3, 186, 121, 144, 212, 46, 73, 164, 78, 92, 135, 31, 201, 17, 95, 185, 123, 95, 139, 144, 185, 230, 18, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:36:06.561962Z DEBUG StfBlueprint::apply_slot{context=Node da_height=158}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=0c3ca4b4a2fad7117a8a50d498b64ab55a53e320ccc344a3a41201ef2c85b9ae4db91df1b3bafa564c90a048a7d004eec43ec112c6ed33c7259a3df3da9162d1 next_version=158 time=10.926479ms accesses_build_time=1.091423ms finishing_session_time=9.297079ms +2026-04-20T15:36:06.563359Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="203427280a0d17d332111e1f30207e393dd0ed9e0b23c51f815be47283f6b0df20a2f0c564e73a3e3985efe0e8e59f5aa9cb0aa79f2ea59353e8451f4dbe7aac" next_state_root="0c3ca4b4a2fad7117a8a50d498b64ab55a53e320ccc344a3a41201ef2c85b9ae4db91df1b3bafa564c90a048a7d004eec43ec112c6ed33c7259a3df3da9162d1" aggregated_proofs=1 proof_receipts=1 +2026-04-20T15:36:06.568955Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 158, latest_finalized_slot_number: 158, sync_status: Syncing { synced_da_height: 157, target_da_height: 158 }, .. } +2026-04-20T15:36:06.570456Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=154 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 158, latest_finalized_slot_number: 158, sync_status: Syncing { synced_da_height: 157, target_da_height: 158 }, .. } +2026-04-20T15:36:06.571437Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=154 +2026-04-20T15:36:06.574213Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:36:06.575244Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=150 +2026-04-20T15:36:06.577165Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=155 +2026-04-20T15:36:06.578089Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:36:06.579763Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=155 sequence_number=169 +2026-04-20T15:36:06.580044Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:06.580113Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=169 blob_id=2147897737950882133588875876941983444 visible_slot_number_after_increase=155 visible_slots_to_advance=1 +2026-04-20T15:36:06.584984Z DEBUG compute_state_update{scope="sequencer" rollup_height=155 slot_number=155}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:36:06.585379Z DEBUG compute_state_update{scope="sequencer" rollup_height=155 slot_number=155}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0c3ca4b4a2fad7117a8a50d498b64ab55a53e320ccc344a3a41201ef2c85b9ae4db91df1b3bafa564c90a048a7d004eec43ec112c6ed33c7259a3df3da9162d1 next_version=159 sesssion_starting_time=1.174942ms +2026-04-20T15:36:06.587336Z DEBUG manage_blob_submission_inside_task{blob_id=2147897737950882133588875876941983444 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xd242effaf151bd058cd30af1669fde4f31e529d4f57a52ed2736e559f6aea814 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=159 include_at=159 bytes=13 time=1.5519ms +2026-04-20T15:36:06.590451Z DEBUG compute_state_update{scope="sequencer" rollup_height=155 slot_number=155}: sov_state::nomt::prover_storage: computed next state root state_root=62a7a78a89b13286b38d196660b42718f96df7e5dcb4964b1476bc9cd7fee3cb4d26ea1bd66f30a6d60d32e118799f5eeda05faa75d5850e19a66f81de88f294 next_version=159 time=6.627517ms accesses_build_time=370.288µs finishing_session_time=4.981287ms +2026-04-20T15:36:06.596620Z DEBUG sov_stf_runner::runner: Block execution complete time=3.039380835s +2026-04-20T15:36:06.596671Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:36:06.599014Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:36:06.599745Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:36:07.049548Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VWLAtBKlS8SQuQYPCuAaFw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:36:07.089176Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:36:07.102245Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1816498 cycles +2026-04-20T15:36:07.104643Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [21, 61, 58, 7, 36, 4, 38, 74, 100, 22, 73, 222, 201, 191, 107, 31, 54, 233, 8, 190, 37, 205, 100, 81, 167, 195, 77, 60, 137, 228, 238, 198, 70, 55, 67, 69, 53, 156, 63, 199, 246, 123, 160, 228, 26, 114, 201, 250, 183, 187, 74, 208, 84, 79, 236, 127, 198, 10, 85, 138, 22, 99, 123, 56, 11, 201, 147, 248, 230, 79, 9, 5, 237, 120, 11, 14, 156, 44, 88, 241, 199, 121, 84, 83, 155, 54, 227, 140, 9, 81, 250, 132, 223, 73, 144, 73, 111, 51, 72, 222, 12, 156, 209, 122, 3, 44, 81, 251, 114, 207, 53, 60, 159, 47, 145, 198, 234, 244, 124, 232, 223, 249, 85, 30, 96, 38, 88, 199, 124, 55, 124, 225, 136, 198, 171, 112, 21, 180, 36, 252, 214, 143, 130, 178, 139, 180, 177, 184, 187, 214, 143, 69, 192, 179, 166, 49, 109, 20, 222, 63, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:36:07.263280Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:36:07.263364Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:36:07.797685Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:36:07.797765Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:36:09.518842Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=159 prev_hash=0xc3ed7b2eef0869572b8f14c1291a31a514ba8355b0d9f80eb9da4d2991f0c32e hash=0x406063bca19676f90e9aab3b47b67d5c2eb9def34fd429b8c2185b1bf4c80e94 producing_time=3.17881ms +2026-04-20T15:36:09.530292Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=159 current_state_root="0c3ca4b4a2fad7117a8a50d498b64ab55a53e320ccc344a3a41201ef2c85b9ae4db91df1b3bafa564c90a048a7d004eec43ec112c6ed33c7259a3df3da9162d1" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd242effaf151bd058cd30af1669fde4f31e529d4f57a52ed2736e559f6aea814"] proof_blobs=[] +2026-04-20T15:36:09.538764Z DEBUG StfBlueprint::apply_slot{context=Node da_height=159}: sov_chain_state: Setting next visible slot number next_visible_slot_number=155 +2026-04-20T15:36:09.544848Z DEBUG StfBlueprint::apply_slot{context=Node da_height=159}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xd242effaf151bd058cd30af1669fde4f31e529d4f57a52ed2736e559f6aea814}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:09.547009Z DEBUG StfBlueprint::apply_slot{context=Node da_height=159}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0c3ca4b4a2fad7117a8a50d498b64ab55a53e320ccc344a3a41201ef2c85b9ae4db91df1b3bafa564c90a048a7d004eec43ec112c6ed33c7259a3df3da9162d1 next_version=159 sesssion_starting_time=253.738µs +2026-04-20T15:36:09.554999Z DEBUG StfBlueprint::apply_slot{context=Node da_height=159}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=62a7a78a89b13286b38d196660b42718f96df7e5dcb4964b1476bc9cd7fee3cb71d32aa8c311d42abb250874aafdd5be9e6cdbe35c78d9c2d0fed313fe0b4132 next_version=159 time=9.035582ms accesses_build_time=779.285µs finishing_session_time=7.858559ms +2026-04-20T15:36:09.556270Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="0c3ca4b4a2fad7117a8a50d498b64ab55a53e320ccc344a3a41201ef2c85b9ae4db91df1b3bafa564c90a048a7d004eec43ec112c6ed33c7259a3df3da9162d1" next_state_root="62a7a78a89b13286b38d196660b42718f96df7e5dcb4964b1476bc9cd7fee3cb71d32aa8c311d42abb250874aafdd5be9e6cdbe35c78d9c2d0fed313fe0b4132" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:36:09.560931Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 159, latest_finalized_slot_number: 159, sync_status: Syncing { synced_da_height: 158, target_da_height: 159 }, .. } +2026-04-20T15:36:09.562310Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=155 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 159, latest_finalized_slot_number: 159, sync_status: Syncing { synced_da_height: 158, target_da_height: 159 }, .. } +2026-04-20T15:36:09.563249Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=155 +2026-04-20T15:36:09.565894Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:36:09.566929Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=151 +2026-04-20T15:36:09.568833Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=156 +2026-04-20T15:36:09.570161Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:36:09.571939Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=156 sequence_number=170 +2026-04-20T15:36:09.572205Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:09.572305Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=170 blob_id=2147897741567960976518319830797736400 visible_slot_number_after_increase=156 visible_slots_to_advance=1 +2026-04-20T15:36:09.574025Z DEBUG sov_stf_runner::runner: Block execution complete time=2.977362467s +2026-04-20T15:36:09.574075Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:36:09.576597Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:36:09.576630Z DEBUG compute_state_update{scope="sequencer" rollup_height=156 slot_number=156}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:36:09.576962Z DEBUG compute_state_update{scope="sequencer" rollup_height=156 slot_number=156}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62a7a78a89b13286b38d196660b42718f96df7e5dcb4964b1476bc9cd7fee3cb71d32aa8c311d42abb250874aafdd5be9e6cdbe35c78d9c2d0fed313fe0b4132 next_version=160 sesssion_starting_time=339.938µs +2026-04-20T15:36:09.577491Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:36:09.579506Z DEBUG manage_blob_submission_inside_task{blob_id=2147897741567960976518319830797736400 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x650c99fee6f2f3c7654ed57430fe7d6090ec7c20f9af61d1fb4f575b1b112c1e sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=160 include_at=160 bytes=13 time=1.664329ms +2026-04-20T15:36:09.582823Z DEBUG compute_state_update{scope="sequencer" rollup_height=156 slot_number=156}: sov_state::nomt::prover_storage: computed next state root state_root=667f273805d5d34e8e1a3428f6016199e8277c507a7d05e3f62439e19d7e9c5a68fdb573bf658ced0460c34aebd33989b7ec0766ed76775def8d64165ccf73c1 next_version=160 time=6.604307ms accesses_build_time=397.957µs finishing_session_time=5.766842ms +2026-04-20T15:36:10.117177Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nKk1XoYmT4OGG-IJoS8hgQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:36:10.155212Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:36:10.166105Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1767974 cycles +2026-04-20T15:36:10.168879Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [100, 110, 28, 138, 221, 32, 95, 92, 250, 193, 227, 208, 132, 255, 144, 87, 174, 230, 26, 180, 79, 140, 143, 245, 110, 162, 109, 19, 154, 28, 106, 78, 120, 43, 98, 210, 197, 158, 224, 147, 43, 53, 234, 242, 123, 133, 114, 39, 153, 176, 232, 113, 32, 252, 52, 251, 154, 227, 41, 48, 184, 152, 179, 24, 43, 86, 212, 20, 134, 24, 119, 112, 152, 136, 198, 158, 59, 169, 163, 143, 215, 109, 170, 15, 189, 207, 14, 177, 255, 1, 214, 74, 148, 24, 43, 222, 6, 155, 33, 250, 145, 203, 166, 16, 4, 109, 64, 48, 121, 251, 199, 210, 247, 199, 53, 157, 58, 48, 175, 217, 238, 49, 71, 208, 195, 94, 180, 90, 192, 247, 48, 163, 74, 107, 182, 176, 146, 216, 158, 38, 10, 194, 84, 130, 186, 131, 4, 180, 142, 7, 86, 80, 165, 83, 20, 213, 156, 108, 160, 20, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:36:10.798359Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:36:10.798439Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:36:12.523006Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=160 prev_hash=0x406063bca19676f90e9aab3b47b67d5c2eb9def34fd429b8c2185b1bf4c80e94 hash=0x50347b36f98b36b22bc5f5e8d82a57d3ff6bbf8868c4b7d7b8297a946d3d677f producing_time=3.235249ms +2026-04-20T15:36:12.527299Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=160 current_state_root="62a7a78a89b13286b38d196660b42718f96df7e5dcb4964b1476bc9cd7fee3cb71d32aa8c311d42abb250874aafdd5be9e6cdbe35c78d9c2d0fed313fe0b4132" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x650c99fee6f2f3c7654ed57430fe7d6090ec7c20f9af61d1fb4f575b1b112c1e"] proof_blobs=[] +2026-04-20T15:36:12.535996Z DEBUG StfBlueprint::apply_slot{context=Node da_height=160}: sov_chain_state: Setting next visible slot number next_visible_slot_number=156 +2026-04-20T15:36:12.542097Z DEBUG StfBlueprint::apply_slot{context=Node da_height=160}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x650c99fee6f2f3c7654ed57430fe7d6090ec7c20f9af61d1fb4f575b1b112c1e}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:12.544413Z DEBUG StfBlueprint::apply_slot{context=Node da_height=160}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=62a7a78a89b13286b38d196660b42718f96df7e5dcb4964b1476bc9cd7fee3cb71d32aa8c311d42abb250874aafdd5be9e6cdbe35c78d9c2d0fed313fe0b4132 next_version=160 sesssion_starting_time=323.388µs +2026-04-20T15:36:12.552179Z DEBUG StfBlueprint::apply_slot{context=Node da_height=160}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=667f273805d5d34e8e1a3428f6016199e8277c507a7d05e3f62439e19d7e9c5a79743d7d1615ebf000ff2e5c0c86b06a6117e6210291448d2de307e1f832d8de next_version=160 time=8.886072ms accesses_build_time=784.935µs finishing_session_time=7.633261ms +2026-04-20T15:36:12.553474Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="62a7a78a89b13286b38d196660b42718f96df7e5dcb4964b1476bc9cd7fee3cb71d32aa8c311d42abb250874aafdd5be9e6cdbe35c78d9c2d0fed313fe0b4132" next_state_root="667f273805d5d34e8e1a3428f6016199e8277c507a7d05e3f62439e19d7e9c5a79743d7d1615ebf000ff2e5c0c86b06a6117e6210291448d2de307e1f832d8de" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:36:12.558010Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 160, latest_finalized_slot_number: 160, sync_status: Syncing { synced_da_height: 159, target_da_height: 160 }, .. } +2026-04-20T15:36:12.559496Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=156 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 160, latest_finalized_slot_number: 160, sync_status: Syncing { synced_da_height: 159, target_da_height: 160 }, .. } +2026-04-20T15:36:12.560437Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=156 +2026-04-20T15:36:12.562972Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:36:12.563939Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=152 +2026-04-20T15:36:12.565807Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=157 +2026-04-20T15:36:12.567036Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:36:12.568584Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=157 sequence_number=171 +2026-04-20T15:36:12.568851Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:12.568953Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=171 blob_id=2147897745191163914675153125004831577 visible_slot_number_after_increase=157 visible_slots_to_advance=1 +2026-04-20T15:36:12.573192Z DEBUG compute_state_update{scope="sequencer" rollup_height=157 slot_number=157}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:36:12.573326Z DEBUG sov_stf_runner::runner: Block execution complete time=2.999258015s +2026-04-20T15:36:12.573383Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:36:12.573536Z DEBUG compute_state_update{scope="sequencer" rollup_height=157 slot_number=157}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=667f273805d5d34e8e1a3428f6016199e8277c507a7d05e3f62439e19d7e9c5a79743d7d1615ebf000ff2e5c0c86b06a6117e6210291448d2de307e1f832d8de next_version=161 sesssion_starting_time=344.258µs +2026-04-20T15:36:12.575664Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:36:12.576256Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:36:12.576376Z DEBUG manage_blob_submission_inside_task{blob_id=2147897745191163914675153125004831577 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xf484da56bbb029b4f2d8fa5c28fcef31dde62fefe44e92476db83f5aa755a332 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=161 include_at=161 bytes=13 time=1.767298ms +2026-04-20T15:36:12.579302Z DEBUG compute_state_update{scope="sequencer" rollup_height=157 slot_number=157}: sov_state::nomt::prover_storage: computed next state root state_root=7ef9fe7af2041c7f2546017dbb2ddf6e7450d518e4fcacc489030730d87f237c702cd112f46b6148826886b1e709717889ba790ed90d43145192b2ec9929972e next_version=161 time=6.501067ms accesses_build_time=381.697µs finishing_session_time=5.658894ms +2026-04-20T15:36:13.045230Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gg7nrgFuTC6aj8jRInOAtA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:36:13.088523Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:36:13.100985Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1913958 cycles +2026-04-20T15:36:13.103664Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [36, 138, 36, 135, 207, 158, 238, 100, 183, 186, 163, 165, 184, 48, 81, 54, 102, 77, 28, 114, 190, 137, 141, 105, 143, 198, 10, 44, 231, 62, 160, 46, 74, 209, 91, 134, 163, 250, 20, 217, 255, 24, 102, 127, 154, 241, 99, 88, 131, 182, 40, 110, 181, 175, 52, 40, 160, 178, 221, 224, 93, 249, 136, 73, 35, 83, 163, 242, 145, 12, 100, 237, 162, 149, 41, 25, 211, 119, 246, 176, 11, 21, 219, 138, 135, 212, 144, 219, 156, 204, 145, 60, 103, 197, 193, 55, 51, 205, 75, 65, 35, 245, 174, 103, 124, 218, 247, 169, 133, 74, 248, 8, 51, 127, 167, 18, 195, 67, 255, 95, 1, 7, 51, 164, 199, 84, 24, 218, 119, 86, 150, 178, 204, 61, 67, 137, 22, 138, 103, 18, 7, 39, 172, 108, 229, 126, 192, 139, 195, 128, 80, 184, 135, 227, 213, 67, 119, 180, 98, 255, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:36:13.783761Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:36:13.783840Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:36:15.527711Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=161 prev_hash=0x50347b36f98b36b22bc5f5e8d82a57d3ff6bbf8868c4b7d7b8297a946d3d677f hash=0x19a6c1051f36438a66ba2d71697fc5241a8461c2f9e05351dcf31adaa10fd79b producing_time=3.01049ms +2026-04-20T15:36:15.535998Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=161 current_state_root="667f273805d5d34e8e1a3428f6016199e8277c507a7d05e3f62439e19d7e9c5a79743d7d1615ebf000ff2e5c0c86b06a6117e6210291448d2de307e1f832d8de" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf484da56bbb029b4f2d8fa5c28fcef31dde62fefe44e92476db83f5aa755a332"] proof_blobs=[] +2026-04-20T15:36:15.544630Z DEBUG StfBlueprint::apply_slot{context=Node da_height=161}: sov_chain_state: Setting next visible slot number next_visible_slot_number=157 +2026-04-20T15:36:15.550797Z DEBUG StfBlueprint::apply_slot{context=Node da_height=161}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xf484da56bbb029b4f2d8fa5c28fcef31dde62fefe44e92476db83f5aa755a332}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:15.553093Z DEBUG StfBlueprint::apply_slot{context=Node da_height=161}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=667f273805d5d34e8e1a3428f6016199e8277c507a7d05e3f62439e19d7e9c5a79743d7d1615ebf000ff2e5c0c86b06a6117e6210291448d2de307e1f832d8de next_version=161 sesssion_starting_time=325.408µs +2026-04-20T15:36:15.560810Z DEBUG StfBlueprint::apply_slot{context=Node da_height=161}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=7ef9fe7af2041c7f2546017dbb2ddf6e7450d518e4fcacc489030730d87f237c30a4a998903c378e2f47d5855a766eb50065d7bb24f387cc4c422a3cc055c125 next_version=161 time=8.834323ms accesses_build_time=779.695µs finishing_session_time=7.586431ms +2026-04-20T15:36:15.562092Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="667f273805d5d34e8e1a3428f6016199e8277c507a7d05e3f62439e19d7e9c5a79743d7d1615ebf000ff2e5c0c86b06a6117e6210291448d2de307e1f832d8de" next_state_root="7ef9fe7af2041c7f2546017dbb2ddf6e7450d518e4fcacc489030730d87f237c30a4a998903c378e2f47d5855a766eb50065d7bb24f387cc4c422a3cc055c125" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:36:15.566819Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 161, latest_finalized_slot_number: 161, sync_status: Synced { synced_da_height: 160 }, .. } +2026-04-20T15:36:15.568208Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=157 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 161, latest_finalized_slot_number: 161, sync_status: Synced { synced_da_height: 160 }, .. } +2026-04-20T15:36:15.569147Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=157 +2026-04-20T15:36:15.571687Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:36:15.572651Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=153 +2026-04-20T15:36:15.574536Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=158 +2026-04-20T15:36:15.575617Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:36:15.577311Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=158 sequence_number=172 +2026-04-20T15:36:15.577596Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:15.577640Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=172 blob_id=2147897748828804036429608024376176353 visible_slot_number_after_increase=158 visible_slots_to_advance=1 +2026-04-20T15:36:15.581969Z DEBUG compute_state_update{scope="sequencer" rollup_height=158 slot_number=158}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:36:15.582222Z DEBUG sov_stf_runner::runner: Block execution complete time=3.008853023s +2026-04-20T15:36:15.582265Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:36:15.582271Z DEBUG compute_state_update{scope="sequencer" rollup_height=158 slot_number=158}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7ef9fe7af2041c7f2546017dbb2ddf6e7450d518e4fcacc489030730d87f237c30a4a998903c378e2f47d5855a766eb50065d7bb24f387cc4c422a3cc055c125 next_version=162 sesssion_starting_time=308.947µs +2026-04-20T15:36:15.584764Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:36:15.584834Z DEBUG manage_blob_submission_inside_task{blob_id=2147897748828804036429608024376176353 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x9aca866ff26512c63bf26020d5a3e859cf1bec21783430ffe2708282d0fd2d0c sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=162 include_at=162 bytes=13 time=1.455531ms +2026-04-20T15:36:15.585472Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:36:15.587745Z DEBUG compute_state_update{scope="sequencer" rollup_height=158 slot_number=158}: sov_state::nomt::prover_storage: computed next state root state_root=05a7382619d55ba45049b0759a6e5690e6aa16f217604a5b17b0b4b713ec341a11ba12c3de9e9da18383f561302896046bff17c4086488245ac020cfdc2e093e next_version=162 time=6.16595ms accesses_build_time=376.407µs finishing_session_time=5.374415ms +2026-04-20T15:36:16.045757Z DEBUG sp1_core_executor_runner::native: CHILD sp1_v2pVrnw6R-GvEX9RJtW9vg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:36:16.087203Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:36:16.099122Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1875096 cycles +2026-04-20T15:36:16.101964Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [79, 52, 226, 206, 134, 253, 177, 140, 182, 111, 138, 11, 48, 193, 29, 169, 111, 31, 240, 26, 109, 148, 150, 0, 96, 172, 223, 40, 11, 242, 202, 187, 75, 15, 255, 131, 135, 65, 126, 103, 150, 174, 5, 35, 13, 215, 103, 10, 28, 2, 76, 15, 201, 189, 171, 82, 14, 124, 131, 141, 180, 187, 137, 229, 27, 124, 117, 170, 19, 94, 91, 119, 227, 14, 89, 116, 163, 22, 75, 33, 30, 157, 4, 179, 226, 108, 220, 140, 99, 130, 17, 4, 190, 125, 234, 53, 105, 234, 78, 79, 253, 142, 64, 23, 109, 186, 27, 46, 176, 141, 79, 74, 100, 55, 168, 28, 67, 176, 135, 233, 129, 91, 46, 157, 19, 133, 153, 92, 39, 46, 44, 64, 217, 51, 179, 246, 193, 240, 111, 196, 31, 107, 96, 176, 118, 34, 36, 90, 71, 16, 168, 188, 142, 213, 232, 70, 247, 106, 249, 240, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:36:16.764375Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:36:16.764455Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:36:18.531934Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=162 prev_hash=0x19a6c1051f36438a66ba2d71697fc5241a8461c2f9e05351dcf31adaa10fd79b hash=0x72e6199b57d8ff705e64ab04532f305b086cdcd66cd9e6940cad13902f98268f producing_time=3.11032ms +2026-04-20T15:36:18.535073Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=162 current_state_root="7ef9fe7af2041c7f2546017dbb2ddf6e7450d518e4fcacc489030730d87f237c30a4a998903c378e2f47d5855a766eb50065d7bb24f387cc4c422a3cc055c125" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9aca866ff26512c63bf26020d5a3e859cf1bec21783430ffe2708282d0fd2d0c"] proof_blobs=[] +2026-04-20T15:36:18.544105Z DEBUG StfBlueprint::apply_slot{context=Node da_height=162}: sov_chain_state: Setting next visible slot number next_visible_slot_number=158 +2026-04-20T15:36:18.550521Z DEBUG StfBlueprint::apply_slot{context=Node da_height=162}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x9aca866ff26512c63bf26020d5a3e859cf1bec21783430ffe2708282d0fd2d0c}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:18.552891Z DEBUG StfBlueprint::apply_slot{context=Node da_height=162}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7ef9fe7af2041c7f2546017dbb2ddf6e7450d518e4fcacc489030730d87f237c30a4a998903c378e2f47d5855a766eb50065d7bb24f387cc4c422a3cc055c125 next_version=162 sesssion_starting_time=327.048µs +2026-04-20T15:36:18.560830Z DEBUG StfBlueprint::apply_slot{context=Node da_height=162}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=05a7382619d55ba45049b0759a6e5690e6aa16f217604a5b17b0b4b713ec341a4adbc0d1139208ebabda0ccbbce5f7ee6b45e264c6373217a3a62d0e5d24c590 next_version=162 time=9.105611ms accesses_build_time=828.455µs finishing_session_time=7.803679ms +2026-04-20T15:36:18.562381Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="7ef9fe7af2041c7f2546017dbb2ddf6e7450d518e4fcacc489030730d87f237c30a4a998903c378e2f47d5855a766eb50065d7bb24f387cc4c422a3cc055c125" next_state_root="05a7382619d55ba45049b0759a6e5690e6aa16f217604a5b17b0b4b713ec341a4adbc0d1139208ebabda0ccbbce5f7ee6b45e264c6373217a3a62d0e5d24c590" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:36:18.567343Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 162, latest_finalized_slot_number: 162, sync_status: Synced { synced_da_height: 161 }, .. } +2026-04-20T15:36:18.568923Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=158 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 162, latest_finalized_slot_number: 162, sync_status: Synced { synced_da_height: 161 }, .. } +2026-04-20T15:36:18.569968Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=158 +2026-04-20T15:36:18.572841Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:36:18.573924Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=154 +2026-04-20T15:36:18.575870Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=159 +2026-04-20T15:36:18.576940Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:36:18.578609Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=159 sequence_number=173 +2026-04-20T15:36:18.578892Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:18.579016Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=173 blob_id=2147897752456799515477120723328040280 visible_slot_number_after_increase=159 visible_slots_to_advance=1 +2026-04-20T15:36:18.580285Z DEBUG sov_stf_runner::runner: Block execution complete time=2.998027404s +2026-04-20T15:36:18.580345Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:36:18.583127Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:36:18.583362Z DEBUG compute_state_update{scope="sequencer" rollup_height=159 slot_number=159}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:36:18.583464Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:36:18.583674Z DEBUG compute_state_update{scope="sequencer" rollup_height=159 slot_number=159}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=05a7382619d55ba45049b0759a6e5690e6aa16f217604a5b17b0b4b713ec341a4adbc0d1139208ebabda0ccbbce5f7ee6b45e264c6373217a3a62d0e5d24c590 next_version=163 sesssion_starting_time=320.248µs +2026-04-20T15:36:18.586206Z DEBUG manage_blob_submission_inside_task{blob_id=2147897752456799515477120723328040280 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x59b6d6fc67ecee33953308c1076c8cf258de128805b997e90171a4908dbd955e sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=163 include_at=163 bytes=13 time=1.576239ms +2026-04-20T15:36:18.589079Z DEBUG compute_state_update{scope="sequencer" rollup_height=159 slot_number=159}: sov_state::nomt::prover_storage: computed next state root state_root=3fbfc05a76701acbf3304e6937af86685d9e7fb27d42b33b09305a6a1c600a197ace9b56bf7efef0771b7e3e60cf65628b1c29380678abd569b1a09a43e73eeb next_version=163 time=6.13538ms accesses_build_time=403.517µs finishing_session_time=5.317266ms +2026-04-20T15:36:19.018098Z DEBUG sp1_core_executor_runner::native: CHILD sp1_uVaYqg4zSwyK2_v4BR5sJw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:36:19.059072Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:36:19.071000Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1860872 cycles +2026-04-20T15:36:19.073745Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [53, 136, 98, 59, 130, 97, 124, 220, 197, 250, 25, 44, 42, 79, 173, 193, 109, 216, 236, 71, 211, 109, 5, 7, 68, 196, 128, 31, 174, 67, 32, 125, 114, 252, 63, 240, 217, 16, 62, 167, 169, 255, 35, 211, 115, 207, 12, 184, 42, 157, 88, 233, 159, 70, 30, 236, 236, 162, 19, 108, 74, 45, 16, 212, 126, 237, 108, 106, 46, 99, 135, 124, 255, 127, 28, 55, 29, 196, 172, 5, 14, 18, 35, 214, 59, 211, 69, 150, 224, 237, 57, 100, 11, 54, 191, 224, 20, 141, 192, 156, 29, 174, 163, 206, 111, 113, 184, 251, 186, 25, 160, 201, 215, 106, 45, 242, 159, 235, 160, 148, 159, 59, 225, 33, 161, 0, 80, 145, 148, 3, 171, 41, 20, 36, 236, 95, 16, 175, 239, 85, 59, 133, 97, 109, 208, 187, 213, 43, 128, 214, 122, 188, 135, 52, 53, 124, 53, 212, 111, 170, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:36:19.732056Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:36:19.732138Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:36:21.536237Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=163 prev_hash=0x72e6199b57d8ff705e64ab04532f305b086cdcd66cd9e6940cad13902f98268f hash=0xa510e6c3e983fc7ad34682b02c776e75d78176afb40c53e43b7a731d184b0c8e producing_time=3.270379ms +2026-04-20T15:36:21.543386Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=163 current_state_root="05a7382619d55ba45049b0759a6e5690e6aa16f217604a5b17b0b4b713ec341a4adbc0d1139208ebabda0ccbbce5f7ee6b45e264c6373217a3a62d0e5d24c590" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x59b6d6fc67ecee33953308c1076c8cf258de128805b997e90171a4908dbd955e"] proof_blobs=[] +2026-04-20T15:36:21.552374Z DEBUG StfBlueprint::apply_slot{context=Node da_height=163}: sov_chain_state: Setting next visible slot number next_visible_slot_number=159 +2026-04-20T15:36:21.558751Z DEBUG StfBlueprint::apply_slot{context=Node da_height=163}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x59b6d6fc67ecee33953308c1076c8cf258de128805b997e90171a4908dbd955e}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:21.561102Z DEBUG StfBlueprint::apply_slot{context=Node da_height=163}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=05a7382619d55ba45049b0759a6e5690e6aa16f217604a5b17b0b4b713ec341a4adbc0d1139208ebabda0ccbbce5f7ee6b45e264c6373217a3a62d0e5d24c590 next_version=163 sesssion_starting_time=320.448µs +2026-04-20T15:36:21.569383Z DEBUG StfBlueprint::apply_slot{context=Node da_height=163}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3fbfc05a76701acbf3304e6937af86685d9e7fb27d42b33b09305a6a1c600a1948962294f2f6a0c1c9f857af5f708b7382eda75c12ad686d5083483e913a002e next_version=163 time=9.396119ms accesses_build_time=782.225µs finishing_session_time=8.150047ms +2026-04-20T15:36:21.570685Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="05a7382619d55ba45049b0759a6e5690e6aa16f217604a5b17b0b4b713ec341a4adbc0d1139208ebabda0ccbbce5f7ee6b45e264c6373217a3a62d0e5d24c590" next_state_root="3fbfc05a76701acbf3304e6937af86685d9e7fb27d42b33b09305a6a1c600a1948962294f2f6a0c1c9f857af5f708b7382eda75c12ad686d5083483e913a002e" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:36:21.575549Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 163, latest_finalized_slot_number: 163, sync_status: Synced { synced_da_height: 162 }, .. } +2026-04-20T15:36:21.576642Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=159 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 163, latest_finalized_slot_number: 163, sync_status: Synced { synced_da_height: 162 }, .. } +2026-04-20T15:36:21.577301Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=159 +2026-04-20T15:36:21.579477Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:36:21.580575Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=155 +2026-04-20T15:36:21.582282Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=160 +2026-04-20T15:36:21.583244Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:36:21.584702Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=160 sequence_number=174 +2026-04-20T15:36:21.584931Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:21.585066Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=174 blob_id=2147897756090793689480273738853029524 visible_slot_number_after_increase=160 visible_slots_to_advance=1 +2026-04-20T15:36:21.587922Z DEBUG sov_stf_runner::runner: Block execution complete time=3.007585492s +2026-04-20T15:36:21.587986Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:36:21.589451Z DEBUG compute_state_update{scope="sequencer" rollup_height=160 slot_number=160}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:36:21.589711Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:36:21.589746Z DEBUG compute_state_update{scope="sequencer" rollup_height=160 slot_number=160}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3fbfc05a76701acbf3304e6937af86685d9e7fb27d42b33b09305a6a1c600a1948962294f2f6a0c1c9f857af5f708b7382eda75c12ad686d5083483e913a002e next_version=164 sesssion_starting_time=299.738µs +2026-04-20T15:36:21.590752Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:36:21.592565Z DEBUG manage_blob_submission_inside_task{blob_id=2147897756090793689480273738853029524 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x5010d6718e90182f059db931b8c99fc880c70ef827f39dc25875b50b7df62927 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=164 include_at=164 bytes=13 time=1.794579ms +2026-04-20T15:36:21.595578Z DEBUG compute_state_update{scope="sequencer" rollup_height=160 slot_number=160}: sov_state::nomt::prover_storage: computed next state root state_root=538369a93e9d1254d4e0cffc8901f84e2d8e048ea643d29a629c068a56f3ab994b4258d9976f32a12b965e9430330062801a75cb7bc1099f5ce1ed424e24223a next_version=164 time=6.648207ms accesses_build_time=496.007µs finishing_session_time=5.726483ms +2026-04-20T15:36:22.021437Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tv4SyzvTRnCmst-NzfJhDg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:36:22.064098Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:36:22.076915Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1953406 cycles +2026-04-20T15:36:22.079607Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [32, 52, 39, 40, 10, 13, 23, 211, 50, 17, 30, 31, 48, 32, 126, 57, 61, 208, 237, 158, 11, 35, 197, 31, 129, 91, 228, 114, 131, 246, 176, 223, 32, 162, 240, 197, 100, 231, 58, 62, 57, 133, 239, 224, 232, 229, 159, 90, 169, 203, 10, 167, 159, 46, 165, 147, 83, 232, 69, 31, 77, 190, 122, 172, 61, 122, 161, 14, 172, 254, 208, 165, 160, 100, 223, 251, 119, 43, 191, 44, 80, 186, 193, 235, 238, 210, 207, 89, 172, 142, 138, 181, 201, 143, 255, 81, 76, 19, 219, 13, 250, 54, 222, 220, 215, 143, 166, 143, 44, 51, 252, 121, 139, 100, 158, 175, 213, 130, 252, 196, 164, 105, 229, 144, 156, 203, 220, 188, 138, 123, 30, 68, 33, 49, 155, 209, 192, 27, 221, 0, 196, 138, 55, 155, 238, 200, 28, 199, 189, 15, 172, 30, 113, 57, 236, 184, 146, 57, 44, 232, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:36:22.771054Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:36:22.771133Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:36:24.540473Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=164 prev_hash=0xa510e6c3e983fc7ad34682b02c776e75d78176afb40c53e43b7a731d184b0c8e hash=0x1719bcbf9ccae710d58663a7ff1548f2e66b11b997cf14339de73cb916a37092 producing_time=3.272619ms +2026-04-20T15:36:24.550786Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=164 current_state_root="3fbfc05a76701acbf3304e6937af86685d9e7fb27d42b33b09305a6a1c600a1948962294f2f6a0c1c9f857af5f708b7382eda75c12ad686d5083483e913a002e" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x5010d6718e90182f059db931b8c99fc880c70ef827f39dc25875b50b7df62927"] proof_blobs=[] +2026-04-20T15:36:24.558579Z DEBUG StfBlueprint::apply_slot{context=Node da_height=164}: sov_chain_state: Setting next visible slot number next_visible_slot_number=160 +2026-04-20T15:36:24.563994Z DEBUG StfBlueprint::apply_slot{context=Node da_height=164}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x5010d6718e90182f059db931b8c99fc880c70ef827f39dc25875b50b7df62927}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:24.566049Z DEBUG StfBlueprint::apply_slot{context=Node da_height=164}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3fbfc05a76701acbf3304e6937af86685d9e7fb27d42b33b09305a6a1c600a1948962294f2f6a0c1c9f857af5f708b7382eda75c12ad686d5083483e913a002e next_version=164 sesssion_starting_time=241.748µs +2026-04-20T15:36:24.573924Z DEBUG StfBlueprint::apply_slot{context=Node da_height=164}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=538369a93e9d1254d4e0cffc8901f84e2d8e048ea643d29a629c068a56f3ab9930bc6480d962b200058ac651f4db0180442f098ad8973b650b11bff0575d4835 next_version=164 time=8.889292ms accesses_build_time=760.575µs finishing_session_time=7.731999ms +2026-04-20T15:36:24.575126Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3fbfc05a76701acbf3304e6937af86685d9e7fb27d42b33b09305a6a1c600a1948962294f2f6a0c1c9f857af5f708b7382eda75c12ad686d5083483e913a002e" next_state_root="538369a93e9d1254d4e0cffc8901f84e2d8e048ea643d29a629c068a56f3ab9930bc6480d962b200058ac651f4db0180442f098ad8973b650b11bff0575d4835" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:36:24.579833Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 164, latest_finalized_slot_number: 164, sync_status: Syncing { synced_da_height: 163, target_da_height: 164 }, .. } +2026-04-20T15:36:24.581299Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=160 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 164, latest_finalized_slot_number: 164, sync_status: Syncing { synced_da_height: 163, target_da_height: 164 }, .. } +2026-04-20T15:36:24.582280Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=160 +2026-04-20T15:36:24.585112Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:36:24.586144Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=156 +2026-04-20T15:36:24.587695Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=161 +2026-04-20T15:36:24.588521Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:36:24.589776Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=161 sequence_number=175 +2026-04-20T15:36:24.589967Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:24.590069Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=175 blob_id=2147897759723635204365813589839546394 visible_slot_number_after_increase=161 visible_slots_to_advance=1 +2026-04-20T15:36:24.591646Z DEBUG sov_stf_runner::runner: Block execution complete time=3.003672456s +2026-04-20T15:36:24.591732Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:36:24.593293Z DEBUG compute_state_update{scope="sequencer" rollup_height=161 slot_number=161}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:36:24.593626Z DEBUG compute_state_update{scope="sequencer" rollup_height=161 slot_number=161}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=538369a93e9d1254d4e0cffc8901f84e2d8e048ea643d29a629c068a56f3ab9930bc6480d962b200058ac651f4db0180442f098ad8973b650b11bff0575d4835 next_version=165 sesssion_starting_time=338.728µs +2026-04-20T15:36:24.594077Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:36:24.594624Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:36:24.595829Z DEBUG manage_blob_submission_inside_task{blob_id=2147897759723635204365813589839546394 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x21bd98e2aa310a9ab2114b8d2a143525dffa207466a4fa3a8f6c379366e77f68 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=165 include_at=165 bytes=13 time=1.47279ms +2026-04-20T15:36:24.599454Z DEBUG compute_state_update{scope="sequencer" rollup_height=161 slot_number=161}: sov_state::nomt::prover_storage: computed next state root state_root=2def76bed2df7b0cbe77b8d1616a6e837b260e111cc3f61561c373165abbe988721ae4c75161f2be3d5ba29cf324557bed3958840070d0e24ca39db65a5b6132 next_version=165 time=6.548458ms accesses_build_time=374.818µs finishing_session_time=5.742913ms +2026-04-20T15:36:25.078346Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3dVRyDMfQrmMH8qTg8YYgA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:36:25.147520Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:36:25.160876Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4258784 cycles +2026-04-20T15:36:25.162441Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [104, 25, 225, 103, 53, 88, 191, 145, 91, 180, 9, 175, 233, 215, 162, 0, 233, 206, 113, 116, 209, 89, 182, 220, 95, 254, 146, 118, 40, 18, 150, 224, 92, 24, 61, 78, 108, 102, 82, 230, 198, 34, 254, 183, 87, 35, 187, 82, 87, 188, 165, 155, 139, 56, 90, 114, 178, 25, 227, 59, 13, 163, 126, 198, 117, 62, 176, 231, 96, 95, 156, 59, 64, 115, 71, 92, 225, 7, 75, 177, 113, 248, 199, 246, 111, 148, 221, 229, 157, 155, 139, 30, 223, 8, 83, 20, 109, 117, 231, 47, 182, 51, 132, 76, 83, 187, 38, 147, 213, 127, 183, 96, 43, 237, 124, 226, 41, 249, 109, 95, 31, 207, 98, 70, 63, 28, 230, 248, 195, 237, 123, 46, 239, 8, 105, 87, 43, 143, 20, 193, 41, 26, 49, 165, 20, 186, 131, 85, 176, 217, 248, 14, 185, 218, 77, 41, 145, 240, 195, 46, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:36:26.662401Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:36:26.662481Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:36:27.545482Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=165 prev_hash=0x1719bcbf9ccae710d58663a7ff1548f2e66b11b997cf14339de73cb916a37092 hash=0x0636ae52175bc47fdb94433db08f37f0b33a24aa8ea3659cc53c06fbf6f15a55 producing_time=2.659712ms +2026-04-20T15:36:27.554760Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=165 current_state_root="538369a93e9d1254d4e0cffc8901f84e2d8e048ea643d29a629c068a56f3ab9930bc6480d962b200058ac651f4db0180442f098ad8973b650b11bff0575d4835" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x21bd98e2aa310a9ab2114b8d2a143525dffa207466a4fa3a8f6c379366e77f68"] proof_blobs=[] +2026-04-20T15:36:27.563339Z DEBUG StfBlueprint::apply_slot{context=Node da_height=165}: sov_chain_state: Setting next visible slot number next_visible_slot_number=161 +2026-04-20T15:36:27.569195Z DEBUG StfBlueprint::apply_slot{context=Node da_height=165}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x21bd98e2aa310a9ab2114b8d2a143525dffa207466a4fa3a8f6c379366e77f68}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:27.571388Z DEBUG StfBlueprint::apply_slot{context=Node da_height=165}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=538369a93e9d1254d4e0cffc8901f84e2d8e048ea643d29a629c068a56f3ab9930bc6480d962b200058ac651f4db0180442f098ad8973b650b11bff0575d4835 next_version=165 sesssion_starting_time=273.278µs +2026-04-20T15:36:27.579502Z DEBUG StfBlueprint::apply_slot{context=Node da_height=165}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2def76bed2df7b0cbe77b8d1616a6e837b260e111cc3f61561c373165abbe98821ecdf2ec8d9ac1e1f8bf35fa20595b70c3595d42182213c0c47eb2f15f075fd next_version=165 time=9.162971ms accesses_build_time=763.365µs finishing_session_time=7.948018ms +2026-04-20T15:36:27.580772Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="538369a93e9d1254d4e0cffc8901f84e2d8e048ea643d29a629c068a56f3ab9930bc6480d962b200058ac651f4db0180442f098ad8973b650b11bff0575d4835" next_state_root="2def76bed2df7b0cbe77b8d1616a6e837b260e111cc3f61561c373165abbe98821ecdf2ec8d9ac1e1f8bf35fa20595b70c3595d42182213c0c47eb2f15f075fd" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:36:27.584665Z DEBUG sov_stf_runner::runner: Block execution complete time=2.992947136s +2026-04-20T15:36:27.584771Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:36:27.585520Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 165, latest_finalized_slot_number: 164, sync_status: Syncing { synced_da_height: 164, target_da_height: 165 }, .. } +2026-04-20T15:36:27.586869Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=161 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 165, latest_finalized_slot_number: 164, sync_status: Syncing { synced_da_height: 164, target_da_height: 165 }, .. } +2026-04-20T15:36:27.587146Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:36:27.587763Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=161 +2026-04-20T15:36:27.588101Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:36:27.590292Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:36:27.591209Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=157 +2026-04-20T15:36:27.593061Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=162 +2026-04-20T15:36:27.594014Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:36:27.595675Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=162 sequence_number=176 +2026-04-20T15:36:27.595961Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=176 blob_id=2147897763357627588271747653950789351 visible_slot_number_after_increase=162 visible_slots_to_advance=1 +2026-04-20T15:36:27.595981Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:27.600628Z DEBUG compute_state_update{scope="sequencer" rollup_height=162 slot_number=162}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2def76bed2df7b0cbe77b8d1616a6e837b260e111cc3f61561c373165abbe98821ecdf2ec8d9ac1e1f8bf35fa20595b70c3595d42182213c0c47eb2f15f075fd next_version=166 sesssion_starting_time=335.048µs +2026-04-20T15:36:27.603604Z DEBUG manage_blob_submission_inside_task{blob_id=2147897763357627588271747653950789351 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xa1845643bb5359ffa7699eb6163838933befcecf48df1d80b0f6b9622fbe1977 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=166 include_at=166 bytes=13 time=1.63669ms +2026-04-20T15:36:27.606177Z DEBUG compute_state_update{scope="sequencer" rollup_height=162 slot_number=162}: sov_state::nomt::prover_storage: computed next state root state_root=2e52ab28626cc9f0d2eb8aeb5838a4090c2b670034c8fd858a7ef842435711003ae89c0ac7dba836ffa9a10cf78f8ffb1d951cd373e5d06ea725ba083b5bb0b8 next_version=166 time=6.304459ms accesses_build_time=406.097µs finishing_session_time=5.421115ms +2026-04-20T15:36:28.054900Z DEBUG sp1_core_executor_runner::native: CHILD sp1_riFMsj3FQr2S3thhd_RxDg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:36:28.097493Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:36:28.110514Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1884652 cycles +2026-04-20T15:36:28.113183Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [12, 60, 164, 180, 162, 250, 215, 17, 122, 138, 80, 212, 152, 182, 74, 181, 90, 83, 227, 32, 204, 195, 68, 163, 164, 18, 1, 239, 44, 133, 185, 174, 77, 185, 29, 241, 179, 186, 250, 86, 76, 144, 160, 72, 167, 208, 4, 238, 196, 62, 193, 18, 198, 237, 51, 199, 37, 154, 61, 243, 218, 145, 98, 209, 88, 209, 85, 243, 161, 142, 225, 35, 238, 206, 204, 222, 73, 130, 162, 189, 121, 176, 194, 97, 19, 214, 142, 196, 144, 219, 171, 62, 6, 238, 124, 146, 102, 69, 167, 111, 213, 103, 168, 97, 181, 224, 112, 239, 192, 53, 236, 95, 51, 91, 137, 21, 29, 147, 109, 172, 123, 188, 19, 205, 146, 189, 178, 149, 64, 96, 99, 188, 161, 150, 118, 249, 14, 154, 171, 59, 71, 182, 125, 92, 46, 185, 222, 243, 79, 212, 41, 184, 194, 24, 91, 27, 244, 200, 14, 148, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:36:28.779011Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:36:28.779089Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:36:30.549943Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=166 prev_hash=0x0636ae52175bc47fdb94433db08f37f0b33a24aa8ea3659cc53c06fbf6f15a55 hash=0x3d19d7573e256123e8b12c249a3e30a5db1a95696773de2f05b51cf5d87d8105 producing_time=2.804161ms +2026-04-20T15:36:30.558151Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=166 current_state_root="2def76bed2df7b0cbe77b8d1616a6e837b260e111cc3f61561c373165abbe98821ecdf2ec8d9ac1e1f8bf35fa20595b70c3595d42182213c0c47eb2f15f075fd" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa1845643bb5359ffa7699eb6163838933befcecf48df1d80b0f6b9622fbe1977"] proof_blobs=[] +2026-04-20T15:36:30.565824Z DEBUG StfBlueprint::apply_slot{context=Node da_height=166}: sov_chain_state: Setting next visible slot number next_visible_slot_number=162 +2026-04-20T15:36:30.571275Z DEBUG StfBlueprint::apply_slot{context=Node da_height=166}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xa1845643bb5359ffa7699eb6163838933befcecf48df1d80b0f6b9622fbe1977}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:30.573273Z DEBUG StfBlueprint::apply_slot{context=Node da_height=166}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2def76bed2df7b0cbe77b8d1616a6e837b260e111cc3f61561c373165abbe98821ecdf2ec8d9ac1e1f8bf35fa20595b70c3595d42182213c0c47eb2f15f075fd next_version=166 sesssion_starting_time=240.248µs +2026-04-20T15:36:30.580986Z DEBUG StfBlueprint::apply_slot{context=Node da_height=166}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e52ab28626cc9f0d2eb8aeb5838a4090c2b670034c8fd858a7ef84243571100546edbefd9b57b72f2c687ca35b5560184a1e0aaa10d98249f0fcf2115727c21 next_version=166 time=8.727534ms accesses_build_time=763.986µs finishing_session_time=7.577961ms +2026-04-20T15:36:30.582241Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="538369a93e9d1254d4e0cffc8901f84e2d8e048ea643d29a629c068a56f3ab9930bc6480d962b200058ac651f4db0180442f098ad8973b650b11bff0575d4835" next_state_root="2e52ab28626cc9f0d2eb8aeb5838a4090c2b670034c8fd858a7ef84243571100546edbefd9b57b72f2c687ca35b5560184a1e0aaa10d98249f0fcf2115727c21" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:36:30.586773Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 166, latest_finalized_slot_number: 165, sync_status: Syncing { synced_da_height: 165, target_da_height: 166 }, .. } +2026-04-20T15:36:30.588116Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=162 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 166, latest_finalized_slot_number: 165, sync_status: Syncing { synced_da_height: 165, target_da_height: 166 }, .. } +2026-04-20T15:36:30.589028Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=162 +2026-04-20T15:36:30.591450Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:36:30.592379Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=158 +2026-04-20T15:36:30.594131Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=163 +2026-04-20T15:36:30.594994Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:36:30.596521Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=163 sequence_number=177 +2026-04-20T15:36:30.596760Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:30.596861Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=177 blob_id=2147897766985666805882426086596585690 visible_slot_number_after_increase=163 visible_slots_to_advance=1 +2026-04-20T15:36:30.598072Z DEBUG sov_stf_runner::runner: Block execution complete time=3.013321764s +2026-04-20T15:36:30.598127Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:36:30.600131Z DEBUG compute_state_update{scope="sequencer" rollup_height=163 slot_number=163}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:36:30.600284Z DEBUG compute_state_update{scope="sequencer" rollup_height=163 slot_number=163}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e52ab28626cc9f0d2eb8aeb5838a4090c2b670034c8fd858a7ef84243571100546edbefd9b57b72f2c687ca35b5560184a1e0aaa10d98249f0fcf2115727c21 next_version=167 sesssion_starting_time=163.579µs +2026-04-20T15:36:30.603236Z DEBUG manage_blob_submission_inside_task{blob_id=2147897766985666805882426086596585690 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x24a61bac781a3c5f313aee02fda85f73b48b093765f314fdea67bafdff3745ac sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=167 include_at=167 bytes=13 time=1.214902ms +2026-04-20T15:36:30.605473Z DEBUG compute_state_update{scope="sequencer" rollup_height=163 slot_number=163}: sov_state::nomt::prover_storage: computed next state root state_root=376360c17002daf872e5386405c0e1aaefcb03f2dc6edce226e783a20688e11258439b97f2c1015499ccf853f828dc4354f30be84d9c66bc6748c9237fb4b586 next_version=167 time=5.517954ms accesses_build_time=163.189µs finishing_session_time=5.146816ms +2026-04-20T15:36:31.072173Z DEBUG sp1_core_executor_runner::native: CHILD sp1_j_rINYUjRgGXmH0Dum-MXA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:36:31.113562Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:36:31.126347Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1878888 cycles +2026-04-20T15:36:31.129069Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 167, 167, 138, 137, 177, 50, 134, 179, 141, 25, 102, 96, 180, 39, 24, 249, 109, 247, 229, 220, 180, 150, 75, 20, 118, 188, 156, 215, 254, 227, 203, 113, 211, 42, 168, 195, 17, 212, 42, 187, 37, 8, 116, 170, 253, 213, 190, 158, 108, 219, 227, 92, 120, 217, 194, 208, 254, 211, 19, 254, 11, 65, 50, 26, 165, 237, 219, 179, 238, 26, 7, 241, 202, 155, 35, 13, 237, 213, 180, 50, 41, 132, 193, 86, 11, 173, 127, 120, 91, 40, 12, 141, 113, 187, 58, 118, 97, 242, 67, 33, 128, 94, 170, 45, 166, 14, 91, 19, 36, 40, 84, 248, 30, 222, 123, 56, 159, 184, 251, 144, 75, 51, 129, 107, 101, 113, 121, 80, 52, 123, 54, 249, 139, 54, 178, 43, 197, 245, 232, 216, 42, 87, 211, 255, 107, 191, 136, 104, 196, 183, 215, 184, 41, 122, 148, 109, 61, 103, 127, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:36:31.794282Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:36:31.794382Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:36:31.837561Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:36:32.081722Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:36:32.084003Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2607482 cycles +2026-04-20T15:36:32.084381Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [151, 0, 0, 0, 0, 0, 0, 0, 160, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 106, 235, 40, 33, 77, 167, 179, 171, 227, 117, 131, 212, 68, 112, 101, 193, 179, 206, 209, 93, 77, 212, 201, 166, 198, 63, 229, 4, 27, 227, 252, 132, 5, 141, 235, 26, 182, 44, 234, 96, 212, 150, 121, 83, 255, 132, 155, 100, 49, 15, 61, 64, 225, 189, 66, 203, 103, 243, 111, 87, 28, 234, 166, 222, 26, 165, 237, 219, 179, 238, 26, 7, 241, 202, 155, 35, 13, 237, 213, 180, 50, 41, 132, 193, 86, 11, 173, 127, 120, 91, 40, 12, 141, 113, 187, 58, 118, 97, 242, 67, 33, 128, 94, 170, 45, 166, 14, 91, 19, 36, 40, 84, 248, 30, 222, 123, 56, 159, 184, 251, 144, 75, 51, 129, 107, 101, 113, 121, 138, 254, 48, 164, 149, 171, 30, 43, 131, 3, 186, 121, 144, 212, 46, 73, 164, 78, 92, 135, 31, 201, 17, 95, 185, 123, 95, 139, 144, 185, 230, 18, 80, 52, 123, 54, 249, 139, 54, 178, 43, 197, 245, 232, 216, 42, 87, 211, 255, 107, 191, 136, 104, 196, 183, 215, 184, 41, 122, 148, 109, 61, 103, 127, 32, 0, 0, 0, 0, 0, 0, 0, 33, 87, 226, 242, 39, 49, 250, 210, 41, 143, 26, 188, 101, 19, 12, 136, 43, 105, 121, 236, 80, 118, 108, 155, 63, 154, 215, 73, 15, 107, 27, 67, 32, 0, 0, 0, 0, 0, 0, 0, 54, 246, 123, 188, 67, 61, 237, 103, 16, 229, 5, 146, 113, 8, 178, 215, 95, 95, 151, 239, 106, 28, 10, 135, 55, 55, 208, 95, 86, 190, 27, 9, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:36:33.050753Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:36:33.050834Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:36:33.051666Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=1951 +2026-04-20T15:36:33.054288Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:36:33.054817Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:36:33.055305Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=178 blob_id=2147897769953587643699468723620927631 +2026-04-20T15:36:33.553926Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=167 prev_hash=0x3d19d7573e256123e8b12c249a3e30a5db1a95696773de2f05b51cf5d87d8105 hash=0xc6486cec997794d0298aac411a2737c047b80f484b77476d8956ac530997a98d producing_time=2.668673ms +2026-04-20T15:36:33.561309Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=167 current_state_root="2e52ab28626cc9f0d2eb8aeb5838a4090c2b670034c8fd858a7ef84243571100546edbefd9b57b72f2c687ca35b5560184a1e0aaa10d98249f0fcf2115727c21" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x24a61bac781a3c5f313aee02fda85f73b48b093765f314fdea67bafdff3745ac"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd38f8365a176f3b684102e2e6f453647c911efe6a68a84a51cc9e56ed0456b2d, len=2001"] +2026-04-20T15:36:33.569668Z DEBUG StfBlueprint::apply_slot{context=Node da_height=167}: sov_chain_state: Setting next visible slot number next_visible_slot_number=163 +2026-04-20T15:36:33.575990Z DEBUG StfBlueprint::apply_slot{context=Node da_height=167}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x24a61bac781a3c5f313aee02fda85f73b48b093765f314fdea67bafdff3745ac}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:33.578328Z DEBUG StfBlueprint::apply_slot{context=Node da_height=167}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e52ab28626cc9f0d2eb8aeb5838a4090c2b670034c8fd858a7ef84243571100546edbefd9b57b72f2c687ca35b5560184a1e0aaa10d98249f0fcf2115727c21 next_version=167 sesssion_starting_time=256.368µs +2026-04-20T15:36:33.587571Z DEBUG StfBlueprint::apply_slot{context=Node da_height=167}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=376360c17002daf872e5386405c0e1aaefcb03f2dc6edce226e783a20688e11268053ac21743fed1a62c0edc2e5e9210099096eda07362dff75b0173ec56a6a0 next_version=167 time=10.480832ms accesses_build_time=946.944µs finishing_session_time=9.108941ms +2026-04-20T15:36:33.588942Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2def76bed2df7b0cbe77b8d1616a6e837b260e111cc3f61561c373165abbe98821ecdf2ec8d9ac1e1f8bf35fa20595b70c3595d42182213c0c47eb2f15f075fd" next_state_root="376360c17002daf872e5386405c0e1aaefcb03f2dc6edce226e783a20688e11268053ac21743fed1a62c0edc2e5e9210099096eda07362dff75b0173ec56a6a0" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:36:33.593956Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 167, latest_finalized_slot_number: 166, sync_status: Syncing { synced_da_height: 166, target_da_height: 167 }, .. } +2026-04-20T15:36:33.595371Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=163 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 167, latest_finalized_slot_number: 166, sync_status: Syncing { synced_da_height: 166, target_da_height: 167 }, .. } +2026-04-20T15:36:33.596292Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=163 +2026-04-20T15:36:33.598759Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:36:33.599729Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=159 +2026-04-20T15:36:33.601543Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=164 +2026-04-20T15:36:33.602592Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:36:33.606610Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 151. Final slot number 160 +2026-04-20T15:36:33.607305Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=164 sequence_number=179 +2026-04-20T15:36:33.607582Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=179 blob_id=2147897770625730938939748023770035880 visible_slot_number_after_increase=164 visible_slots_to_advance=1 +2026-04-20T15:36:33.607567Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:33.610012Z DEBUG sov_stf_runner::runner: Block execution complete time=3.011888504s +2026-04-20T15:36:33.610125Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:36:33.611819Z DEBUG compute_state_update{scope="sequencer" rollup_height=164 slot_number=164}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:36:33.612149Z DEBUG compute_state_update{scope="sequencer" rollup_height=164 slot_number=164}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=376360c17002daf872e5386405c0e1aaefcb03f2dc6edce226e783a20688e11268053ac21743fed1a62c0edc2e5e9210099096eda07362dff75b0173ec56a6a0 next_version=168 sesssion_starting_time=340.798µs +2026-04-20T15:36:33.612399Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:36:33.613090Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:36:33.614600Z DEBUG manage_blob_submission_inside_task{blob_id=2147897770625730938939748023770035880 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x827d4621ca60fd16284324e26cb964cdcae082253411b6a5d67f89532369369c sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=168 include_at=168 bytes=13 time=1.471421ms +2026-04-20T15:36:33.618626Z DEBUG compute_state_update{scope="sequencer" rollup_height=164 slot_number=164}: sov_state::nomt::prover_storage: computed next state root state_root=071e44b9335a154e6b9e04e5bcd48df2ebe50facc1b25742ab8ba2e066f73f9548c444441e6ea31e7478ad21cae44643aa976e4091ffb50e1001e4e1597a74bd next_version=168 time=7.319563ms accesses_build_time=487.207µs finishing_session_time=6.378709ms +2026-04-20T15:36:36.553513Z DEBUG sp1_core_executor_runner::native: CHILD sp1_z_3lpxh6SYOwZUHRA9dIfA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:36:36.557905Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=168 prev_hash=0xc6486cec997794d0298aac411a2737c047b80f484b77476d8956ac530997a98d hash=0xc005ebfd4b16e5af5f941ac0168af03ca12337473d894c6c61b25f89140ae126 producing_time=2.626583ms +2026-04-20T15:36:36.562696Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=168 current_state_root="376360c17002daf872e5386405c0e1aaefcb03f2dc6edce226e783a20688e11268053ac21743fed1a62c0edc2e5e9210099096eda07362dff75b0173ec56a6a0" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x827d4621ca60fd16284324e26cb964cdcae082253411b6a5d67f89532369369c"] proof_blobs=[] +2026-04-20T15:36:36.571239Z DEBUG StfBlueprint::apply_slot{context=Node da_height=168}: sov_chain_state: Setting next visible slot number next_visible_slot_number=164 +2026-04-20T15:36:36.587818Z DEBUG StfBlueprint::apply_slot{context=Node da_height=168}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 151. Final slot number 160 +2026-04-20T15:36:36.588249Z DEBUG StfBlueprint::apply_slot{context=Node da_height=168}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x827d4621ca60fd16284324e26cb964cdcae082253411b6a5d67f89532369369c}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:36.590567Z DEBUG StfBlueprint::apply_slot{context=Node da_height=168}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=376360c17002daf872e5386405c0e1aaefcb03f2dc6edce226e783a20688e11268053ac21743fed1a62c0edc2e5e9210099096eda07362dff75b0173ec56a6a0 next_version=168 sesssion_starting_time=255.069µs +2026-04-20T15:36:36.593436Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:36:36.600655Z DEBUG StfBlueprint::apply_slot{context=Node da_height=168}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=071e44b9335a154e6b9e04e5bcd48df2ebe50facc1b25742ab8ba2e066f73f953918e10e839690070806739bd24409724b59719cb9c3e213469d29ac16f1aa60 next_version=168 time=11.418175ms accesses_build_time=1.063873ms finishing_session_time=9.968106ms +2026-04-20T15:36:36.601934Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e52ab28626cc9f0d2eb8aeb5838a4090c2b670034c8fd858a7ef84243571100546edbefd9b57b72f2c687ca35b5560184a1e0aaa10d98249f0fcf2115727c21" next_state_root="071e44b9335a154e6b9e04e5bcd48df2ebe50facc1b25742ab8ba2e066f73f953918e10e839690070806739bd24409724b59719cb9c3e213469d29ac16f1aa60" aggregated_proofs=1 proof_receipts=1 +2026-04-20T15:36:36.606681Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1835547 cycles +2026-04-20T15:36:36.607423Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 168, latest_finalized_slot_number: 168, sync_status: Syncing { synced_da_height: 167, target_da_height: 168 }, .. } +2026-04-20T15:36:36.608876Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=164 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 168, latest_finalized_slot_number: 168, sync_status: Syncing { synced_da_height: 167, target_da_height: 168 }, .. } +2026-04-20T15:36:36.609557Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [102, 127, 39, 56, 5, 213, 211, 78, 142, 26, 52, 40, 246, 1, 97, 153, 232, 39, 124, 80, 122, 125, 5, 227, 246, 36, 57, 225, 157, 126, 156, 90, 121, 116, 61, 125, 22, 21, 235, 240, 0, 255, 46, 92, 12, 134, 176, 106, 97, 23, 230, 33, 2, 145, 68, 141, 45, 227, 7, 225, 248, 50, 216, 222, 18, 106, 16, 127, 236, 108, 251, 68, 0, 15, 7, 107, 110, 204, 202, 59, 234, 211, 41, 230, 16, 164, 216, 154, 54, 156, 40, 85, 134, 177, 17, 67, 126, 242, 171, 38, 8, 11, 216, 149, 144, 231, 181, 102, 232, 164, 30, 206, 69, 57, 216, 81, 76, 114, 83, 133, 58, 76, 58, 43, 133, 198, 79, 9, 25, 166, 193, 5, 31, 54, 67, 138, 102, 186, 45, 113, 105, 127, 197, 36, 26, 132, 97, 194, 249, 224, 83, 81, 220, 243, 26, 218, 161, 15, 215, 155, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:36:36.609850Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=164 +2026-04-20T15:36:36.612479Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:36:36.613466Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=160 +2026-04-20T15:36:36.615373Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=165 +2026-04-20T15:36:36.616379Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:36:36.618010Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=165 sequence_number=180 +2026-04-20T15:36:36.618285Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:36.618430Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=180 blob_id=2147897774264624806262426119944743549 visible_slot_number_after_increase=165 visible_slots_to_advance=1 +2026-04-20T15:36:36.622722Z DEBUG compute_state_update{scope="sequencer" rollup_height=165 slot_number=165}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:36:36.623084Z DEBUG compute_state_update{scope="sequencer" rollup_height=165 slot_number=165}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=071e44b9335a154e6b9e04e5bcd48df2ebe50facc1b25742ab8ba2e066f73f953918e10e839690070806739bd24409724b59719cb9c3e213469d29ac16f1aa60 next_version=169 sesssion_starting_time=615.316µs +2026-04-20T15:36:36.624777Z DEBUG manage_blob_submission_inside_task{blob_id=2147897774264624806262426119944743549 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xc220647e50e6eb4691fd149d23e94f7510b34d3b3eed2a8fbc185d7fb0c23d9d sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=169 include_at=169 bytes=13 time=1.54783ms +2026-04-20T15:36:36.628662Z DEBUG compute_state_update{scope="sequencer" rollup_height=165 slot_number=165}: sov_state::nomt::prover_storage: computed next state root state_root=562a086299ccca89250313ca655c7fea0372dde544776013768aa259c326c7602b0098abd7d8ba226fc097a108a1b377ef01d54384e4aa2a99e5cd56bb129272 next_version=169 time=6.635797ms accesses_build_time=417.537µs finishing_session_time=5.451255ms +2026-04-20T15:36:36.635300Z DEBUG sov_stf_runner::runner: Block execution complete time=3.025196648s +2026-04-20T15:36:36.635357Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:36:36.637855Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:36:36.638714Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:36:37.099462Z DEBUG sp1_core_executor_runner::native: CHILD sp1_VYIfGscAQCSE0dBKvYMD3A==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:36:37.138924Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:36:37.151000Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1827412 cycles +2026-04-20T15:36:37.153742Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [126, 249, 254, 122, 242, 4, 28, 127, 37, 70, 1, 125, 187, 45, 223, 110, 116, 80, 213, 24, 228, 252, 172, 196, 137, 3, 7, 48, 216, 127, 35, 124, 48, 164, 169, 152, 144, 60, 55, 142, 47, 71, 213, 133, 90, 118, 110, 181, 0, 101, 215, 187, 36, 243, 135, 204, 76, 66, 42, 60, 192, 85, 193, 37, 123, 47, 109, 54, 227, 237, 252, 197, 15, 158, 47, 237, 195, 20, 83, 107, 143, 11, 147, 69, 71, 51, 233, 109, 204, 187, 224, 238, 247, 77, 99, 202, 18, 23, 17, 147, 85, 87, 178, 72, 246, 66, 19, 203, 133, 155, 175, 6, 88, 35, 150, 205, 129, 192, 76, 85, 212, 137, 206, 226, 23, 93, 254, 187, 114, 230, 25, 155, 87, 216, 255, 112, 94, 100, 171, 4, 83, 47, 48, 91, 8, 108, 220, 214, 108, 217, 230, 148, 12, 173, 19, 144, 47, 152, 38, 143, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:36:37.297924Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:36:37.298004Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:36:37.849498Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:36:37.849575Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:36:39.563085Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=169 prev_hash=0xc005ebfd4b16e5af5f941ac0168af03ca12337473d894c6c61b25f89140ae126 hash=0x911cef95ae5681173faa42a90f0573bb313631360e0946355d1bf5463f0c741a producing_time=3.644816ms +2026-04-20T15:36:39.568104Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=169 current_state_root="071e44b9335a154e6b9e04e5bcd48df2ebe50facc1b25742ab8ba2e066f73f953918e10e839690070806739bd24409724b59719cb9c3e213469d29ac16f1aa60" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc220647e50e6eb4691fd149d23e94f7510b34d3b3eed2a8fbc185d7fb0c23d9d"] proof_blobs=[] +2026-04-20T15:36:39.577293Z DEBUG StfBlueprint::apply_slot{context=Node da_height=169}: sov_chain_state: Setting next visible slot number next_visible_slot_number=165 +2026-04-20T15:36:39.583857Z DEBUG StfBlueprint::apply_slot{context=Node da_height=169}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xc220647e50e6eb4691fd149d23e94f7510b34d3b3eed2a8fbc185d7fb0c23d9d}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:39.586235Z DEBUG StfBlueprint::apply_slot{context=Node da_height=169}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=071e44b9335a154e6b9e04e5bcd48df2ebe50facc1b25742ab8ba2e066f73f953918e10e839690070806739bd24409724b59719cb9c3e213469d29ac16f1aa60 next_version=169 sesssion_starting_time=326.609µs +2026-04-20T15:36:39.595342Z DEBUG StfBlueprint::apply_slot{context=Node da_height=169}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=562a086299ccca89250313ca655c7fea0372dde544776013768aa259c326c7607ada9398ce77a243cc5b9e0fee333ce4b75b252f8cb583adba9de496715fad58 next_version=169 time=10.242293ms accesses_build_time=794.905µs finishing_session_time=8.912052ms +2026-04-20T15:36:39.596638Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="071e44b9335a154e6b9e04e5bcd48df2ebe50facc1b25742ab8ba2e066f73f953918e10e839690070806739bd24409724b59719cb9c3e213469d29ac16f1aa60" next_state_root="562a086299ccca89250313ca655c7fea0372dde544776013768aa259c326c7607ada9398ce77a243cc5b9e0fee333ce4b75b252f8cb583adba9de496715fad58" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:36:39.601585Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 169, latest_finalized_slot_number: 169, sync_status: Syncing { synced_da_height: 168, target_da_height: 169 }, .. } +2026-04-20T15:36:39.603062Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=165 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 169, latest_finalized_slot_number: 169, sync_status: Syncing { synced_da_height: 168, target_da_height: 169 }, .. } +2026-04-20T15:36:39.604047Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=165 +2026-04-20T15:36:39.607043Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:36:39.608152Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=161 +2026-04-20T15:36:39.610048Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=166 +2026-04-20T15:36:39.611025Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:36:39.612869Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=166 sequence_number=181 +2026-04-20T15:36:39.613025Z DEBUG sov_stf_runner::runner: Block execution complete time=2.977676027s +2026-04-20T15:36:39.613074Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:36:39.613163Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:39.613225Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=181 blob_id=2147897777885306577796102141245859856 visible_slot_number_after_increase=166 visible_slots_to_advance=1 +2026-04-20T15:36:39.615645Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:36:39.615944Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:36:39.617396Z DEBUG compute_state_update{scope="sequencer" rollup_height=166 slot_number=166}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:36:39.617695Z DEBUG compute_state_update{scope="sequencer" rollup_height=166 slot_number=166}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=562a086299ccca89250313ca655c7fea0372dde544776013768aa259c326c7607ada9398ce77a243cc5b9e0fee333ce4b75b252f8cb583adba9de496715fad58 next_version=170 sesssion_starting_time=305.218µs +2026-04-20T15:36:39.620823Z DEBUG manage_blob_submission_inside_task{blob_id=2147897777885306577796102141245859856 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x043dfbcc7a35b557edf9b7262fa38d38293c63cb4d56ebc37a77c17f931e6120 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=170 include_at=170 bytes=13 time=1.5724ms +2026-04-20T15:36:39.623604Z DEBUG compute_state_update{scope="sequencer" rollup_height=166 slot_number=166}: sov_state::nomt::prover_storage: computed next state root state_root=7e2d6436a67de8b2956fcdaeca3d8da547c8cac97f39f0c8487066bfe07101263c0e4f577fbb6f5bd849304fe3e1afa47e64b708681899760b28ca37150c50aa next_version=170 time=6.593997ms accesses_build_time=387.178µs finishing_session_time=5.761783ms +2026-04-20T15:36:40.126487Z DEBUG sp1_core_executor_runner::native: CHILD sp1_D37rGn1eTtygaTwezLNCdQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:36:40.169159Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:36:40.181990Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1929789 cycles +2026-04-20T15:36:40.184715Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [5, 167, 56, 38, 25, 213, 91, 164, 80, 73, 176, 117, 154, 110, 86, 144, 230, 170, 22, 242, 23, 96, 74, 91, 23, 176, 180, 183, 19, 236, 52, 26, 74, 219, 192, 209, 19, 146, 8, 235, 171, 218, 12, 203, 188, 229, 247, 238, 107, 69, 226, 100, 198, 55, 50, 23, 163, 166, 45, 14, 93, 36, 197, 144, 44, 71, 181, 225, 197, 158, 102, 148, 202, 99, 151, 251, 81, 60, 110, 68, 41, 158, 107, 220, 167, 134, 228, 228, 171, 83, 249, 125, 43, 91, 61, 204, 78, 251, 103, 61, 86, 180, 20, 25, 179, 149, 134, 203, 205, 112, 125, 176, 112, 226, 71, 160, 34, 74, 247, 205, 183, 232, 21, 249, 23, 27, 41, 142, 165, 16, 230, 195, 233, 131, 252, 122, 211, 70, 130, 176, 44, 119, 110, 117, 215, 129, 118, 175, 180, 12, 83, 228, 59, 122, 115, 29, 24, 75, 12, 142, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:36:40.881423Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:36:40.881502Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:36:42.567366Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=170 prev_hash=0x911cef95ae5681173faa42a90f0573bb313631360e0946355d1bf5463f0c741a hash=0xe6ef7b38d4c266cd089a1186c0523bfc504287a9a2111eeedb2f2bab713110c6 producing_time=2.954141ms +2026-04-20T15:36:42.575294Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=170 current_state_root="562a086299ccca89250313ca655c7fea0372dde544776013768aa259c326c7607ada9398ce77a243cc5b9e0fee333ce4b75b252f8cb583adba9de496715fad58" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x043dfbcc7a35b557edf9b7262fa38d38293c63cb4d56ebc37a77c17f931e6120"] proof_blobs=[] +2026-04-20T15:36:42.583665Z DEBUG StfBlueprint::apply_slot{context=Node da_height=170}: sov_chain_state: Setting next visible slot number next_visible_slot_number=166 +2026-04-20T15:36:42.589762Z DEBUG StfBlueprint::apply_slot{context=Node da_height=170}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x043dfbcc7a35b557edf9b7262fa38d38293c63cb4d56ebc37a77c17f931e6120}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:42.591924Z DEBUG StfBlueprint::apply_slot{context=Node da_height=170}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=562a086299ccca89250313ca655c7fea0372dde544776013768aa259c326c7607ada9398ce77a243cc5b9e0fee333ce4b75b252f8cb583adba9de496715fad58 next_version=170 sesssion_starting_time=256.138µs +2026-04-20T15:36:42.600252Z DEBUG StfBlueprint::apply_slot{context=Node da_height=170}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=7e2d6436a67de8b2956fcdaeca3d8da547c8cac97f39f0c8487066bfe071012607c619e747135389f3e246fd3a730d168b59727c0add03c3a13531d07b46df15 next_version=170 time=9.37552ms accesses_build_time=778.825µs finishing_session_time=8.198077ms +2026-04-20T15:36:42.601561Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="562a086299ccca89250313ca655c7fea0372dde544776013768aa259c326c7607ada9398ce77a243cc5b9e0fee333ce4b75b252f8cb583adba9de496715fad58" next_state_root="7e2d6436a67de8b2956fcdaeca3d8da547c8cac97f39f0c8487066bfe071012607c619e747135389f3e246fd3a730d168b59727c0add03c3a13531d07b46df15" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:36:42.606542Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 170, latest_finalized_slot_number: 170, sync_status: Syncing { synced_da_height: 169, target_da_height: 170 }, .. } +2026-04-20T15:36:42.607946Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=166 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 170, latest_finalized_slot_number: 170, sync_status: Syncing { synced_da_height: 169, target_da_height: 170 }, .. } +2026-04-20T15:36:42.608893Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=166 +2026-04-20T15:36:42.611593Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:36:42.612578Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=162 +2026-04-20T15:36:42.614388Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=167 +2026-04-20T15:36:42.615470Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:36:42.617045Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=167 sequence_number=182 +2026-04-20T15:36:42.617293Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:42.617367Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=182 blob_id=2147897781516950749792787818880010517 visible_slot_number_after_increase=167 visible_slots_to_advance=1 +2026-04-20T15:36:42.621016Z DEBUG compute_state_update{scope="sequencer" rollup_height=167 slot_number=167}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:36:42.621146Z DEBUG compute_state_update{scope="sequencer" rollup_height=167 slot_number=167}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7e2d6436a67de8b2956fcdaeca3d8da547c8cac97f39f0c8487066bfe071012607c619e747135389f3e246fd3a730d168b59727c0add03c3a13531d07b46df15 next_version=171 sesssion_starting_time=134.009µs +2026-04-20T15:36:42.621363Z DEBUG sov_stf_runner::runner: Block execution complete time=3.008296297s +2026-04-20T15:36:42.621411Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:36:42.623869Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:36:42.624423Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:36:42.624556Z DEBUG manage_blob_submission_inside_task{blob_id=2147897781516950749792787818880010517 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x8b58a3b4095d40e2b79e4917a205b1d930dcf6b0846d56d2ae2d049e8c70f1db sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=171 include_at=171 bytes=13 time=1.286562ms +2026-04-20T15:36:42.626147Z DEBUG compute_state_update{scope="sequencer" rollup_height=167 slot_number=167}: sov_state::nomt::prover_storage: computed next state root state_root=009d07acb0e6ce29e3a69dd7c6ce4a6155332e9a1b2331c8a38661ce6140f2ba3ebc0ecbc1f7d10bb7982189720537573cb531757959ffcf97365d28ff80e0d0 next_version=171 time=5.273246ms accesses_build_time=152.889µs finishing_session_time=4.886498ms +2026-04-20T15:36:43.085054Z DEBUG sp1_core_executor_runner::native: CHILD sp1_h54nXsNkRmCO6DFwGEbpUQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:36:43.124772Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:36:43.137041Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1833634 cycles +2026-04-20T15:36:43.139716Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [63, 191, 192, 90, 118, 112, 26, 203, 243, 48, 78, 105, 55, 175, 134, 104, 93, 158, 127, 178, 125, 66, 179, 59, 9, 48, 90, 106, 28, 96, 10, 25, 72, 150, 34, 148, 242, 246, 160, 193, 201, 248, 87, 175, 95, 112, 139, 115, 130, 237, 167, 92, 18, 173, 104, 109, 80, 131, 72, 62, 145, 58, 0, 46, 117, 74, 239, 182, 177, 128, 203, 7, 204, 20, 123, 16, 172, 38, 229, 33, 172, 209, 203, 129, 176, 127, 102, 229, 150, 157, 150, 171, 39, 41, 158, 35, 20, 39, 230, 234, 133, 76, 139, 81, 177, 94, 75, 136, 164, 33, 186, 249, 253, 24, 50, 249, 27, 53, 72, 229, 188, 206, 101, 56, 9, 126, 139, 92, 23, 25, 188, 191, 156, 202, 231, 16, 213, 134, 99, 167, 255, 21, 72, 242, 230, 107, 17, 185, 151, 207, 20, 51, 157, 231, 60, 185, 22, 163, 112, 146, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:36:43.785626Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:36:43.785707Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:36:45.572220Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=171 prev_hash=0xe6ef7b38d4c266cd089a1186c0523bfc504287a9a2111eeedb2f2bab713110c6 hash=0xabc03d3ac30c8881256f45dbac1dc567fceae5d33bbc311ab8bacf76c134bf10 producing_time=3.386508ms +2026-04-20T15:36:45.574191Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=171 current_state_root="7e2d6436a67de8b2956fcdaeca3d8da547c8cac97f39f0c8487066bfe071012607c619e747135389f3e246fd3a730d168b59727c0add03c3a13531d07b46df15" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x8b58a3b4095d40e2b79e4917a205b1d930dcf6b0846d56d2ae2d049e8c70f1db"] proof_blobs=[] +2026-04-20T15:36:45.582531Z DEBUG StfBlueprint::apply_slot{context=Node da_height=171}: sov_chain_state: Setting next visible slot number next_visible_slot_number=167 +2026-04-20T15:36:45.588415Z DEBUG StfBlueprint::apply_slot{context=Node da_height=171}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x8b58a3b4095d40e2b79e4917a205b1d930dcf6b0846d56d2ae2d049e8c70f1db}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:45.590616Z DEBUG StfBlueprint::apply_slot{context=Node da_height=171}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7e2d6436a67de8b2956fcdaeca3d8da547c8cac97f39f0c8487066bfe071012607c619e747135389f3e246fd3a730d168b59727c0add03c3a13531d07b46df15 next_version=171 sesssion_starting_time=293.648µs +2026-04-20T15:36:45.599773Z DEBUG StfBlueprint::apply_slot{context=Node da_height=171}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=009d07acb0e6ce29e3a69dd7c6ce4a6155332e9a1b2331c8a38661ce6140f2ba0eaf0d3a7591454b21d6f14957a67a2ee8c99ee6e7b6f3e43219eb630184a100 next_version=171 time=10.214134ms accesses_build_time=752.055µs finishing_session_time=9.033392ms +2026-04-20T15:36:45.601006Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="7e2d6436a67de8b2956fcdaeca3d8da547c8cac97f39f0c8487066bfe071012607c619e747135389f3e246fd3a730d168b59727c0add03c3a13531d07b46df15" next_state_root="009d07acb0e6ce29e3a69dd7c6ce4a6155332e9a1b2331c8a38661ce6140f2ba0eaf0d3a7591454b21d6f14957a67a2ee8c99ee6e7b6f3e43219eb630184a100" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:36:45.605365Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 171, latest_finalized_slot_number: 171, sync_status: Syncing { synced_da_height: 170, target_da_height: 171 }, .. } +2026-04-20T15:36:45.606388Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=167 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 171, latest_finalized_slot_number: 171, sync_status: Syncing { synced_da_height: 170, target_da_height: 171 }, .. } +2026-04-20T15:36:45.607066Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=167 +2026-04-20T15:36:45.609035Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:36:45.609760Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=163 +2026-04-20T15:36:45.611414Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=168 +2026-04-20T15:36:45.612456Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:36:45.613916Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=168 sequence_number=183 +2026-04-20T15:36:45.614154Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:45.614309Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=183 blob_id=2147897785140088979156648053204616682 visible_slot_number_after_increase=168 visible_slots_to_advance=1 +2026-04-20T15:36:45.620000Z DEBUG compute_state_update{scope="sequencer" rollup_height=168 slot_number=168}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:36:45.620330Z DEBUG sov_stf_runner::runner: Block execution complete time=2.998926558s +2026-04-20T15:36:45.620331Z DEBUG compute_state_update{scope="sequencer" rollup_height=168 slot_number=168}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=009d07acb0e6ce29e3a69dd7c6ce4a6155332e9a1b2331c8a38661ce6140f2ba0eaf0d3a7591454b21d6f14957a67a2ee8c99ee6e7b6f3e43219eb630184a100 next_version=172 sesssion_starting_time=2.213966ms +2026-04-20T15:36:45.620385Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:36:45.620963Z DEBUG manage_blob_submission_inside_task{blob_id=2147897785140088979156648053204616682 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x042435b2fb42cd55d01b5c337bdfb9b68d784ef8af6c1a0e13cd5785c7f60186 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=172 include_at=172 bytes=13 time=1.384681ms +2026-04-20T15:36:45.621502Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:36:45.622006Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:36:45.625763Z DEBUG compute_state_update{scope="sequencer" rollup_height=168 slot_number=168}: sov_state::nomt::prover_storage: computed next state root state_root=026dcd3145b9c9a77b2474b7c37b6d322e01d3758ce287d56dce5dcff4166c2f0f58d4d1d678df3502787e4650086465a8b0f68f8610294cc33c5df8291c61b3 next_version=172 time=8.036678ms accesses_build_time=372.728µs finishing_session_time=5.341345ms +2026-04-20T15:36:46.085893Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3E17ZHeTSdi1-jiKbB1G-w==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:36:46.128190Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:36:46.141532Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1904484 cycles +2026-04-20T15:36:46.144282Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [83, 131, 105, 169, 62, 157, 18, 84, 212, 224, 207, 252, 137, 1, 248, 78, 45, 142, 4, 142, 166, 67, 210, 154, 98, 156, 6, 138, 86, 243, 171, 153, 48, 188, 100, 128, 217, 98, 178, 0, 5, 138, 198, 81, 244, 219, 1, 128, 68, 47, 9, 138, 216, 151, 59, 101, 11, 17, 191, 240, 87, 93, 72, 53, 49, 162, 60, 82, 140, 239, 251, 84, 199, 182, 0, 242, 232, 106, 250, 213, 221, 126, 200, 214, 189, 162, 167, 189, 215, 27, 154, 218, 252, 247, 203, 0, 108, 187, 59, 3, 52, 59, 83, 33, 39, 24, 47, 61, 165, 252, 253, 229, 187, 146, 227, 236, 95, 40, 146, 0, 42, 227, 101, 161, 176, 237, 84, 91, 6, 54, 174, 82, 23, 91, 196, 127, 219, 148, 67, 61, 176, 143, 55, 240, 179, 58, 36, 170, 142, 163, 101, 156, 197, 60, 6, 251, 246, 241, 90, 85, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:36:46.816477Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:36:46.816554Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:36:48.576460Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=172 prev_hash=0xabc03d3ac30c8881256f45dbac1dc567fceae5d33bbc311ab8bacf76c134bf10 hash=0xd02fe13c785df8d65ac520d02fac0522c4547b6ffb4bfb29dc9d692f927d90a2 producing_time=3.00756ms +2026-04-20T15:36:48.582845Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=172 current_state_root="009d07acb0e6ce29e3a69dd7c6ce4a6155332e9a1b2331c8a38661ce6140f2ba0eaf0d3a7591454b21d6f14957a67a2ee8c99ee6e7b6f3e43219eb630184a100" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x042435b2fb42cd55d01b5c337bdfb9b68d784ef8af6c1a0e13cd5785c7f60186"] proof_blobs=[] +2026-04-20T15:36:48.591798Z DEBUG StfBlueprint::apply_slot{context=Node da_height=172}: sov_chain_state: Setting next visible slot number next_visible_slot_number=168 +2026-04-20T15:36:48.598293Z DEBUG StfBlueprint::apply_slot{context=Node da_height=172}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x042435b2fb42cd55d01b5c337bdfb9b68d784ef8af6c1a0e13cd5785c7f60186}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:48.600784Z DEBUG StfBlueprint::apply_slot{context=Node da_height=172}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=009d07acb0e6ce29e3a69dd7c6ce4a6155332e9a1b2331c8a38661ce6140f2ba0eaf0d3a7591454b21d6f14957a67a2ee8c99ee6e7b6f3e43219eb630184a100 next_version=172 sesssion_starting_time=330.548µs +2026-04-20T15:36:48.609209Z DEBUG StfBlueprint::apply_slot{context=Node da_height=172}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=026dcd3145b9c9a77b2474b7c37b6d322e01d3758ce287d56dce5dcff4166c2f0cd966555961fd1b756536d02088f0a057afce3e99af4a7654c25e22d10daae9 next_version=172 time=9.692917ms accesses_build_time=916.784µs finishing_session_time=8.287926ms +2026-04-20T15:36:48.610557Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="009d07acb0e6ce29e3a69dd7c6ce4a6155332e9a1b2331c8a38661ce6140f2ba0eaf0d3a7591454b21d6f14957a67a2ee8c99ee6e7b6f3e43219eb630184a100" next_state_root="026dcd3145b9c9a77b2474b7c37b6d322e01d3758ce287d56dce5dcff4166c2f0cd966555961fd1b756536d02088f0a057afce3e99af4a7654c25e22d10daae9" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:36:48.615597Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 172, latest_finalized_slot_number: 172, sync_status: Synced { synced_da_height: 171 }, .. } +2026-04-20T15:36:48.617171Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=168 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 172, latest_finalized_slot_number: 172, sync_status: Synced { synced_da_height: 171 }, .. } +2026-04-20T15:36:48.618206Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=168 +2026-04-20T15:36:48.620970Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:36:48.621916Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=164 +2026-04-20T15:36:48.623755Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=169 +2026-04-20T15:36:48.624700Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:36:48.626560Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=169 sequence_number=184 +2026-04-20T15:36:48.626865Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:48.626952Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=184 blob_id=2147897788782565649976182643913484944 visible_slot_number_after_increase=169 visible_slots_to_advance=1 +2026-04-20T15:36:48.627386Z DEBUG sov_stf_runner::runner: Block execution complete time=3.007007486s +2026-04-20T15:36:48.627466Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:36:48.630272Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:36:48.631084Z DEBUG compute_state_update{scope="sequencer" rollup_height=169 slot_number=169}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:36:48.631122Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:36:48.631452Z DEBUG compute_state_update{scope="sequencer" rollup_height=169 slot_number=169}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=026dcd3145b9c9a77b2474b7c37b6d322e01d3758ce287d56dce5dcff4166c2f0cd966555961fd1b756536d02088f0a057afce3e99af4a7654c25e22d10daae9 next_version=173 sesssion_starting_time=369.017µs +2026-04-20T15:36:48.634007Z DEBUG manage_blob_submission_inside_task{blob_id=2147897788782565649976182643913484944 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x22819357511d2dd6833259219beca7e7b7420990a3632191159f3dfd89f2c374 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=173 include_at=173 bytes=13 time=1.52958ms +2026-04-20T15:36:48.637116Z DEBUG compute_state_update{scope="sequencer" rollup_height=169 slot_number=169}: sov_state::nomt::prover_storage: computed next state root state_root=1597fe11e7f32a97b48f0b0902f56c024bd27b602a85552dce92344599cf1a5867339c4bae604cb3b891d31171a18b9a969df3cdf39293a5eabcee5f196a6847 next_version=173 time=6.431749ms accesses_build_time=386.528µs finishing_session_time=5.557684ms +2026-04-20T15:36:49.045736Z DEBUG sp1_core_executor_runner::native: CHILD sp1_p6jN0Hn4R7KfQinndjL6Rg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:36:49.085839Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:36:49.097133Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1846880 cycles +2026-04-20T15:36:49.099815Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [45, 239, 118, 190, 210, 223, 123, 12, 190, 119, 184, 209, 97, 106, 110, 131, 123, 38, 14, 17, 28, 195, 246, 21, 97, 195, 115, 22, 90, 187, 233, 136, 33, 236, 223, 46, 200, 217, 172, 30, 31, 139, 243, 95, 162, 5, 149, 183, 12, 53, 149, 212, 33, 130, 33, 60, 12, 71, 235, 47, 21, 240, 117, 253, 120, 164, 144, 2, 210, 2, 222, 239, 108, 241, 69, 236, 34, 208, 252, 71, 40, 228, 121, 166, 82, 242, 178, 108, 128, 219, 163, 100, 127, 36, 196, 183, 5, 192, 96, 232, 161, 181, 178, 250, 30, 144, 63, 203, 36, 84, 241, 104, 1, 130, 22, 8, 44, 105, 242, 125, 197, 161, 182, 36, 32, 127, 65, 161, 61, 25, 215, 87, 62, 37, 97, 35, 232, 177, 44, 36, 154, 62, 48, 165, 219, 26, 149, 105, 103, 115, 222, 47, 5, 181, 28, 245, 216, 125, 129, 5, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:36:49.755660Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:36:49.755750Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:36:51.580949Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=173 prev_hash=0xd02fe13c785df8d65ac520d02fac0522c4547b6ffb4bfb29dc9d692f927d90a2 hash=0x98530fe8c8693a7cb3d351bb4218a735e99e3a0baaa3633e6647d369fcba026a producing_time=2.706492ms +2026-04-20T15:36:51.590553Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=173 current_state_root="026dcd3145b9c9a77b2474b7c37b6d322e01d3758ce287d56dce5dcff4166c2f0cd966555961fd1b756536d02088f0a057afce3e99af4a7654c25e22d10daae9" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x22819357511d2dd6833259219beca7e7b7420990a3632191159f3dfd89f2c374"] proof_blobs=[] +2026-04-20T15:36:51.594905Z DEBUG StfBlueprint::apply_slot{context=Node da_height=173}: sov_chain_state: Setting next visible slot number next_visible_slot_number=169 +2026-04-20T15:36:51.598135Z DEBUG StfBlueprint::apply_slot{context=Node da_height=173}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x22819357511d2dd6833259219beca7e7b7420990a3632191159f3dfd89f2c374}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:51.599180Z DEBUG StfBlueprint::apply_slot{context=Node da_height=173}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=026dcd3145b9c9a77b2474b7c37b6d322e01d3758ce287d56dce5dcff4166c2f0cd966555961fd1b756536d02088f0a057afce3e99af4a7654c25e22d10daae9 next_version=173 sesssion_starting_time=157.279µs +2026-04-20T15:36:51.606143Z DEBUG StfBlueprint::apply_slot{context=Node da_height=173}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=1597fe11e7f32a97b48f0b0902f56c024bd27b602a85552dce92344599cf1a5852b87bd9fc28e03db11a942a908774654bc5c744ce4e19950a519b0d6eca12fb next_version=173 time=7.443382ms accesses_build_time=322.358µs finishing_session_time=6.884886ms +2026-04-20T15:36:51.607327Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="026dcd3145b9c9a77b2474b7c37b6d322e01d3758ce287d56dce5dcff4166c2f0cd966555961fd1b756536d02088f0a057afce3e99af4a7654c25e22d10daae9" next_state_root="1597fe11e7f32a97b48f0b0902f56c024bd27b602a85552dce92344599cf1a5852b87bd9fc28e03db11a942a908774654bc5c744ce4e19950a519b0d6eca12fb" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:36:51.612769Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 173, latest_finalized_slot_number: 173, sync_status: Synced { synced_da_height: 172 }, .. } +2026-04-20T15:36:51.614701Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=169 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 173, latest_finalized_slot_number: 173, sync_status: Synced { synced_da_height: 172 }, .. } +2026-04-20T15:36:51.615863Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=169 +2026-04-20T15:36:51.618613Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:36:51.619550Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=165 +2026-04-20T15:36:51.621367Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=170 +2026-04-20T15:36:51.622391Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:36:51.624144Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=170 sequence_number=185 +2026-04-20T15:36:51.624272Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=185 blob_id=2147897792406951856009916051877765025 visible_slot_number_after_increase=170 visible_slots_to_advance=1 +2026-04-20T15:36:51.624442Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:51.624491Z DEBUG sov_stf_runner::runner: Block execution complete time=2.997038381s +2026-04-20T15:36:51.624623Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:36:51.628583Z DEBUG compute_state_update{scope="sequencer" rollup_height=170 slot_number=170}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:36:51.628757Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:36:51.628922Z DEBUG compute_state_update{scope="sequencer" rollup_height=170 slot_number=170}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1597fe11e7f32a97b48f0b0902f56c024bd27b602a85552dce92344599cf1a5852b87bd9fc28e03db11a942a908774654bc5c744ce4e19950a519b0d6eca12fb next_version=174 sesssion_starting_time=346.518µs +2026-04-20T15:36:51.629877Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:36:51.631383Z DEBUG manage_blob_submission_inside_task{blob_id=2147897792406951856009916051877765025 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xe118c522af69e32625e0d5af5d4ae39080cae2f76766b71b540acfd03a0a89aa sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=174 include_at=174 bytes=13 time=1.604499ms +2026-04-20T15:36:51.634310Z DEBUG compute_state_update{scope="sequencer" rollup_height=170 slot_number=170}: sov_state::nomt::prover_storage: computed next state root state_root=5d24e682356e8f5ede9141d439d73802267b3153d13aa285585bee0afce3d59d109eebee0df2428052986da5926e73907ef44c9ef35ef69f84edeaf995056965 next_version=174 time=6.14767ms accesses_build_time=407.717µs finishing_session_time=5.286435ms +2026-04-20T15:36:52.090395Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PWfHIdDfRZmKpbOqJ1zGKQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:36:52.133596Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:36:52.145728Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1976669 cycles +2026-04-20T15:36:52.148471Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 82, 171, 40, 98, 108, 201, 240, 210, 235, 138, 235, 88, 56, 164, 9, 12, 43, 103, 0, 52, 200, 253, 133, 138, 126, 248, 66, 67, 87, 17, 0, 84, 110, 219, 239, 217, 181, 123, 114, 242, 198, 135, 202, 53, 181, 86, 1, 132, 161, 224, 170, 161, 13, 152, 36, 159, 15, 207, 33, 21, 114, 124, 33, 82, 249, 207, 141, 217, 214, 198, 157, 208, 46, 30, 227, 90, 32, 75, 45, 85, 171, 1, 152, 58, 224, 109, 63, 135, 233, 139, 174, 169, 219, 10, 233, 15, 221, 178, 245, 189, 19, 201, 216, 20, 88, 148, 73, 129, 72, 88, 9, 92, 145, 30, 183, 17, 221, 223, 164, 69, 203, 240, 5, 25, 252, 141, 12, 198, 72, 108, 236, 153, 119, 148, 208, 41, 138, 172, 65, 26, 39, 55, 192, 71, 184, 15, 72, 75, 119, 71, 109, 137, 86, 172, 83, 9, 151, 169, 141, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:36:52.852250Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:36:52.852332Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:36:54.585508Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=174 prev_hash=0x98530fe8c8693a7cb3d351bb4218a735e99e3a0baaa3633e6647d369fcba026a hash=0xbab9248cef7591850017bc093f7bab5ae902cc3c798ee16f6a6eb0e803c0ff17 producing_time=2.966871ms +2026-04-20T15:36:54.587639Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=174 current_state_root="1597fe11e7f32a97b48f0b0902f56c024bd27b602a85552dce92344599cf1a5852b87bd9fc28e03db11a942a908774654bc5c744ce4e19950a519b0d6eca12fb" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe118c522af69e32625e0d5af5d4ae39080cae2f76766b71b540acfd03a0a89aa"] proof_blobs=[] +2026-04-20T15:36:54.596291Z DEBUG StfBlueprint::apply_slot{context=Node da_height=174}: sov_chain_state: Setting next visible slot number next_visible_slot_number=170 +2026-04-20T15:36:54.602596Z DEBUG StfBlueprint::apply_slot{context=Node da_height=174}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xe118c522af69e32625e0d5af5d4ae39080cae2f76766b71b540acfd03a0a89aa}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:54.604946Z DEBUG StfBlueprint::apply_slot{context=Node da_height=174}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1597fe11e7f32a97b48f0b0902f56c024bd27b602a85552dce92344599cf1a5852b87bd9fc28e03db11a942a908774654bc5c744ce4e19950a519b0d6eca12fb next_version=174 sesssion_starting_time=319.028µs +2026-04-20T15:36:54.613079Z DEBUG StfBlueprint::apply_slot{context=Node da_height=174}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=5d24e682356e8f5ede9141d439d73802267b3153d13aa285585bee0afce3d59d38051358855071ed5f1556301b9c82b9a6a4fe2cd1717a9fcbd24e253c98594d next_version=174 time=9.25855ms accesses_build_time=792.435µs finishing_session_time=7.993948ms +2026-04-20T15:36:54.614408Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="1597fe11e7f32a97b48f0b0902f56c024bd27b602a85552dce92344599cf1a5852b87bd9fc28e03db11a942a908774654bc5c744ce4e19950a519b0d6eca12fb" next_state_root="5d24e682356e8f5ede9141d439d73802267b3153d13aa285585bee0afce3d59d38051358855071ed5f1556301b9c82b9a6a4fe2cd1717a9fcbd24e253c98594d" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:36:54.619303Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 174, latest_finalized_slot_number: 174, sync_status: Synced { synced_da_height: 173 }, .. } +2026-04-20T15:36:54.621067Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=170 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 174, latest_finalized_slot_number: 174, sync_status: Synced { synced_da_height: 173 }, .. } +2026-04-20T15:36:54.622186Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=170 +2026-04-20T15:36:54.624875Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:36:54.625806Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=166 +2026-04-20T15:36:54.627684Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=171 +2026-04-20T15:36:54.629015Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:36:54.630800Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=171 sequence_number=186 +2026-04-20T15:36:54.631079Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=186 blob_id=2147897796040973682592246953031645899 visible_slot_number_after_increase=171 visible_slots_to_advance=1 +2026-04-20T15:36:54.631057Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:54.631785Z DEBUG sov_stf_runner::runner: Block execution complete time=3.007177585s +2026-04-20T15:36:54.631867Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:36:54.634255Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:36:54.634987Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:36:54.635246Z DEBUG compute_state_update{scope="sequencer" rollup_height=171 slot_number=171}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:36:54.635569Z DEBUG compute_state_update{scope="sequencer" rollup_height=171 slot_number=171}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5d24e682356e8f5ede9141d439d73802267b3153d13aa285585bee0afce3d59d38051358855071ed5f1556301b9c82b9a6a4fe2cd1717a9fcbd24e253c98594d next_version=175 sesssion_starting_time=326.888µs +2026-04-20T15:36:54.637964Z DEBUG manage_blob_submission_inside_task{blob_id=2147897796040973682592246953031645899 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x535701c1702ec6f81bc6c64c985d02453c4e4cf6827c454684b11de89a91e76a sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=175 include_at=175 bytes=13 time=1.469771ms +2026-04-20T15:36:54.641025Z DEBUG compute_state_update{scope="sequencer" rollup_height=171 slot_number=171}: sov_state::nomt::prover_storage: computed next state root state_root=57887d83934d7f450d9e2b9fac960f06f76e15323d039fac59e0a700bdd28ee51b350ccf74e5f0ce8cdbad2047ae67c2b398a1de595804b488b1113aa84991a0 next_version=175 time=6.18536ms accesses_build_time=392.317µs finishing_session_time=5.361065ms +2026-04-20T15:36:55.118950Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QohJlDo8TOCnSO4jAsux8A==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:36:55.187962Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:36:55.202335Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4258597 cycles +2026-04-20T15:36:55.205093Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [55, 99, 96, 193, 112, 2, 218, 248, 114, 229, 56, 100, 5, 192, 225, 170, 239, 203, 3, 242, 220, 110, 220, 226, 38, 231, 131, 162, 6, 136, 225, 18, 104, 5, 58, 194, 23, 67, 254, 209, 166, 44, 14, 220, 46, 94, 146, 16, 9, 144, 150, 237, 160, 115, 98, 223, 247, 91, 1, 115, 236, 86, 166, 160, 96, 17, 40, 209, 167, 191, 166, 166, 228, 157, 149, 124, 62, 121, 144, 186, 9, 36, 78, 105, 187, 50, 116, 191, 40, 80, 156, 124, 189, 150, 222, 74, 2, 58, 150, 209, 17, 100, 215, 208, 192, 26, 128, 82, 37, 254, 242, 214, 84, 117, 132, 26, 250, 52, 192, 170, 67, 167, 246, 246, 25, 181, 212, 104, 192, 5, 235, 253, 75, 22, 229, 175, 95, 148, 26, 192, 22, 138, 240, 60, 161, 35, 55, 71, 61, 137, 76, 108, 97, 178, 95, 137, 20, 10, 225, 38, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:36:56.699626Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:36:56.699706Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:36:57.590011Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=175 prev_hash=0xbab9248cef7591850017bc093f7bab5ae902cc3c798ee16f6a6eb0e803c0ff17 hash=0xbefa257f67450586de114c5523ddbdf909209ed86589cb17fc22168b4d854ada producing_time=2.930511ms +2026-04-20T15:36:57.594503Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=175 current_state_root="5d24e682356e8f5ede9141d439d73802267b3153d13aa285585bee0afce3d59d38051358855071ed5f1556301b9c82b9a6a4fe2cd1717a9fcbd24e253c98594d" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x535701c1702ec6f81bc6c64c985d02453c4e4cf6827c454684b11de89a91e76a"] proof_blobs=[] +2026-04-20T15:36:57.603048Z DEBUG StfBlueprint::apply_slot{context=Node da_height=175}: sov_chain_state: Setting next visible slot number next_visible_slot_number=171 +2026-04-20T15:36:57.609195Z DEBUG StfBlueprint::apply_slot{context=Node da_height=175}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x535701c1702ec6f81bc6c64c985d02453c4e4cf6827c454684b11de89a91e76a}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:57.611545Z DEBUG StfBlueprint::apply_slot{context=Node da_height=175}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5d24e682356e8f5ede9141d439d73802267b3153d13aa285585bee0afce3d59d38051358855071ed5f1556301b9c82b9a6a4fe2cd1717a9fcbd24e253c98594d next_version=175 sesssion_starting_time=333.958µs +2026-04-20T15:36:57.619547Z DEBUG StfBlueprint::apply_slot{context=Node da_height=175}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=57887d83934d7f450d9e2b9fac960f06f76e15323d039fac59e0a700bdd28ee56c7f1a69258661994dd89eba85a81d96ed3f15295b5a41e1c06c114e02ede241 next_version=175 time=9.11541ms accesses_build_time=767.555µs finishing_session_time=7.868749ms +2026-04-20T15:36:57.620828Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="5d24e682356e8f5ede9141d439d73802267b3153d13aa285585bee0afce3d59d38051358855071ed5f1556301b9c82b9a6a4fe2cd1717a9fcbd24e253c98594d" next_state_root="57887d83934d7f450d9e2b9fac960f06f76e15323d039fac59e0a700bdd28ee56c7f1a69258661994dd89eba85a81d96ed3f15295b5a41e1c06c114e02ede241" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:36:57.625582Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 175, latest_finalized_slot_number: 175, sync_status: Synced { synced_da_height: 174 }, .. } +2026-04-20T15:36:57.627004Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=171 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 175, latest_finalized_slot_number: 175, sync_status: Synced { synced_da_height: 174 }, .. } +2026-04-20T15:36:57.627944Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=171 +2026-04-20T15:36:57.630597Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:36:57.631570Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=167 +2026-04-20T15:36:57.633595Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=172 +2026-04-20T15:36:57.634551Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:36:57.636077Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=172 sequence_number=187 +2026-04-20T15:36:57.636351Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:36:57.636406Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=187 blob_id=2147897799675017427556172450575639171 visible_slot_number_after_increase=172 visible_slots_to_advance=1 +2026-04-20T15:36:57.641019Z DEBUG compute_state_update{scope="sequencer" rollup_height=172 slot_number=172}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:36:57.641281Z DEBUG sov_stf_runner::runner: Block execution complete time=3.0094293s +2026-04-20T15:36:57.641333Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:36:57.641311Z DEBUG compute_state_update{scope="sequencer" rollup_height=172 slot_number=172}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=57887d83934d7f450d9e2b9fac960f06f76e15323d039fac59e0a700bdd28ee56c7f1a69258661994dd89eba85a81d96ed3f15295b5a41e1c06c114e02ede241 next_version=176 sesssion_starting_time=299.088µs +2026-04-20T15:36:57.643914Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:36:57.644122Z DEBUG manage_blob_submission_inside_task{blob_id=2147897799675017427556172450575639171 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x6bb2c4d986b5a138443798f31a0e00bf3be6cfffbc83bc95fb2c66c0ab5b9f07 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=176 include_at=176 bytes=13 time=1.293822ms +2026-04-20T15:36:57.644435Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:36:57.646612Z DEBUG compute_state_update{scope="sequencer" rollup_height=172 slot_number=172}: sov_state::nomt::prover_storage: computed next state root state_root=6223505925fdb4c1d767c489dbf3d1f5f575d598297589ad9bf56bdc26fa56ff487e0f406450dce44c162e001937cd147e15b412c397bf99017a09303d473237 next_version=176 time=6.006511ms accesses_build_time=402.107µs finishing_session_time=5.198096ms +2026-04-20T15:36:58.152616Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4IsKZcCsSnSGSOTSDcPhsg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:36:58.198793Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:36:58.211089Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1997512 cycles +2026-04-20T15:36:58.213764Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [7, 30, 68, 185, 51, 90, 21, 78, 107, 158, 4, 229, 188, 212, 141, 242, 235, 229, 15, 172, 193, 178, 87, 66, 171, 139, 162, 224, 102, 247, 63, 149, 57, 24, 225, 14, 131, 150, 144, 7, 8, 6, 115, 155, 210, 68, 9, 114, 75, 89, 113, 156, 185, 195, 226, 19, 70, 157, 41, 172, 22, 241, 170, 96, 52, 186, 152, 149, 231, 144, 132, 186, 148, 1, 40, 211, 237, 246, 159, 117, 54, 235, 238, 207, 91, 54, 234, 212, 56, 197, 216, 29, 16, 196, 71, 44, 39, 140, 140, 176, 117, 102, 65, 231, 16, 81, 17, 58, 182, 196, 117, 226, 104, 227, 252, 50, 115, 55, 160, 55, 150, 251, 23, 171, 136, 97, 36, 131, 145, 28, 239, 149, 174, 86, 129, 23, 63, 170, 66, 169, 15, 5, 115, 187, 49, 54, 49, 54, 14, 9, 70, 53, 93, 27, 245, 70, 63, 12, 116, 26, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:36:58.919544Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:36:58.919625Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:37:00.594731Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=176 prev_hash=0xbefa257f67450586de114c5523ddbdf909209ed86589cb17fc22168b4d854ada hash=0xd58840c61d59220f6fedfcbaa2c34afcce253e1f8c7558ae9c4d302db26d6ecf producing_time=3.176ms +2026-04-20T15:37:00.604140Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=176 current_state_root="57887d83934d7f450d9e2b9fac960f06f76e15323d039fac59e0a700bdd28ee56c7f1a69258661994dd89eba85a81d96ed3f15295b5a41e1c06c114e02ede241" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x6bb2c4d986b5a138443798f31a0e00bf3be6cfffbc83bc95fb2c66c0ab5b9f07"] proof_blobs=[] +2026-04-20T15:37:00.612501Z DEBUG StfBlueprint::apply_slot{context=Node da_height=176}: sov_chain_state: Setting next visible slot number next_visible_slot_number=172 +2026-04-20T15:37:00.618459Z DEBUG StfBlueprint::apply_slot{context=Node da_height=176}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x6bb2c4d986b5a138443798f31a0e00bf3be6cfffbc83bc95fb2c66c0ab5b9f07}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:00.620767Z DEBUG StfBlueprint::apply_slot{context=Node da_height=176}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=57887d83934d7f450d9e2b9fac960f06f76e15323d039fac59e0a700bdd28ee56c7f1a69258661994dd89eba85a81d96ed3f15295b5a41e1c06c114e02ede241 next_version=176 sesssion_starting_time=310.258µs +2026-04-20T15:37:00.628881Z DEBUG StfBlueprint::apply_slot{context=Node da_height=176}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6223505925fdb4c1d767c489dbf3d1f5f575d598297589ad9bf56bdc26fa56ff693fab8fe568eebe5c73ba8fe50f1f0c22c81b63c45431472e830fa411a3ec53 next_version=176 time=9.21771ms accesses_build_time=780.745µs finishing_session_time=7.975058ms +2026-04-20T15:37:00.630180Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="57887d83934d7f450d9e2b9fac960f06f76e15323d039fac59e0a700bdd28ee56c7f1a69258661994dd89eba85a81d96ed3f15295b5a41e1c06c114e02ede241" next_state_root="6223505925fdb4c1d767c489dbf3d1f5f575d598297589ad9bf56bdc26fa56ff693fab8fe568eebe5c73ba8fe50f1f0c22c81b63c45431472e830fa411a3ec53" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:37:00.635033Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 176, latest_finalized_slot_number: 176, sync_status: Syncing { synced_da_height: 175, target_da_height: 176 }, .. } +2026-04-20T15:37:00.636487Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=172 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 176, latest_finalized_slot_number: 176, sync_status: Syncing { synced_da_height: 175, target_da_height: 176 }, .. } +2026-04-20T15:37:00.637453Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=172 +2026-04-20T15:37:00.640135Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:37:00.641160Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=168 +2026-04-20T15:37:00.642285Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=173 +2026-04-20T15:37:00.642769Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:37:00.643761Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=173 sequence_number=188 +2026-04-20T15:37:00.643971Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:00.644078Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=188 blob_id=2147897803310265610137450477276167195 visible_slot_number_after_increase=173 visible_slots_to_advance=1 +2026-04-20T15:37:00.647148Z DEBUG compute_state_update{scope="sequencer" rollup_height=173 slot_number=173}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:37:00.647526Z DEBUG sov_stf_runner::runner: Block execution complete time=3.006199651s +2026-04-20T15:37:00.647504Z DEBUG compute_state_update{scope="sequencer" rollup_height=173 slot_number=173}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6223505925fdb4c1d767c489dbf3d1f5f575d598297589ad9bf56bdc26fa56ff693fab8fe568eebe5c73ba8fe50f1f0c22c81b63c45431472e830fa411a3ec53 next_version=177 sesssion_starting_time=363.767µs +2026-04-20T15:37:00.647619Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:37:00.649691Z DEBUG manage_blob_submission_inside_task{blob_id=2147897803310265610137450477276167195 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xa7d196db99bb15044b06aeb83b5d3ba9ae192a13844f947ed50c9900530ffbd2 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=177 include_at=177 bytes=13 time=1.44643ms +2026-04-20T15:37:00.653172Z DEBUG compute_state_update{scope="sequencer" rollup_height=173 slot_number=173}: sov_state::nomt::prover_storage: computed next state root state_root=075bf016fabaa7a9e123f6bafc3d2a28f5dc91a174e3e016e8463da44606b36675aebb330f79ba3fecc29a9ccc523c12a826fa8a1a4d47f85a2a1710ce4968bb next_version=177 time=6.451878ms accesses_build_time=411.537µs finishing_session_time=5.539984ms +2026-04-20T15:37:01.119188Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ROzCJ23fTOKQEhbnEV00kg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:37:01.162970Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:37:01.175192Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1961208 cycles +2026-04-20T15:37:01.177978Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [86, 42, 8, 98, 153, 204, 202, 137, 37, 3, 19, 202, 101, 92, 127, 234, 3, 114, 221, 229, 68, 119, 96, 19, 118, 138, 162, 89, 195, 38, 199, 96, 122, 218, 147, 152, 206, 119, 162, 67, 204, 91, 158, 15, 238, 51, 60, 228, 183, 91, 37, 47, 140, 181, 131, 173, 186, 157, 228, 150, 113, 95, 173, 88, 52, 115, 204, 115, 126, 42, 34, 158, 203, 186, 56, 217, 111, 186, 111, 31, 170, 45, 199, 252, 112, 77, 93, 157, 119, 140, 221, 200, 191, 91, 204, 248, 7, 69, 13, 73, 144, 95, 171, 23, 104, 152, 106, 25, 30, 241, 118, 74, 90, 231, 233, 210, 252, 210, 29, 31, 151, 153, 127, 200, 49, 236, 84, 88, 230, 239, 123, 56, 212, 194, 102, 205, 8, 154, 17, 134, 192, 82, 59, 252, 80, 66, 135, 169, 162, 17, 30, 238, 219, 47, 43, 171, 113, 49, 16, 198, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:37:01.872688Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:37:01.872768Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:37:01.894447Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:37:02.138524Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:37:02.140762Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2607482 cycles +2026-04-20T15:37:02.141135Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [161, 0, 0, 0, 0, 0, 0, 0, 170, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 102, 127, 39, 56, 5, 213, 211, 78, 142, 26, 52, 40, 246, 1, 97, 153, 232, 39, 124, 80, 122, 125, 5, 227, 246, 36, 57, 225, 157, 126, 156, 90, 121, 116, 61, 125, 22, 21, 235, 240, 0, 255, 46, 92, 12, 134, 176, 106, 97, 23, 230, 33, 2, 145, 68, 141, 45, 227, 7, 225, 248, 50, 216, 222, 52, 115, 204, 115, 126, 42, 34, 158, 203, 186, 56, 217, 111, 186, 111, 31, 170, 45, 199, 252, 112, 77, 93, 157, 119, 140, 221, 200, 191, 91, 204, 248, 7, 69, 13, 73, 144, 95, 171, 23, 104, 152, 106, 25, 30, 241, 118, 74, 90, 231, 233, 210, 252, 210, 29, 31, 151, 153, 127, 200, 49, 236, 84, 88, 25, 166, 193, 5, 31, 54, 67, 138, 102, 186, 45, 113, 105, 127, 197, 36, 26, 132, 97, 194, 249, 224, 83, 81, 220, 243, 26, 218, 161, 15, 215, 155, 230, 239, 123, 56, 212, 194, 102, 205, 8, 154, 17, 134, 192, 82, 59, 252, 80, 66, 135, 169, 162, 17, 30, 238, 219, 47, 43, 171, 113, 49, 16, 198, 32, 0, 0, 0, 0, 0, 0, 0, 33, 87, 226, 242, 39, 49, 250, 210, 41, 143, 26, 188, 101, 19, 12, 136, 43, 105, 121, 236, 80, 118, 108, 155, 63, 154, 215, 73, 15, 107, 27, 67, 32, 0, 0, 0, 0, 0, 0, 0, 54, 246, 123, 188, 67, 61, 237, 103, 16, 229, 5, 146, 113, 8, 178, 215, 95, 95, 151, 239, 106, 28, 10, 135, 55, 55, 208, 95, 86, 190, 27, 9, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:37:03.058367Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:37:03.058446Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:37:03.059363Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=1951 +2026-04-20T15:37:03.062078Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:37:03.062652Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:37:03.062955Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=189 blob_id=2147897806231005024786600095960371145 +2026-04-20T15:37:03.599642Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=177 prev_hash=0xd58840c61d59220f6fedfcbaa2c34afcce253e1f8c7558ae9c4d302db26d6ecf hash=0x939b04fa9ddc1942e421af6f4300a130c558f19ef0d061724f6c06206844f32e producing_time=3.09087ms +2026-04-20T15:37:03.610948Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=177 current_state_root="6223505925fdb4c1d767c489dbf3d1f5f575d598297589ad9bf56bdc26fa56ff693fab8fe568eebe5c73ba8fe50f1f0c22c81b63c45431472e830fa411a3ec53" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa7d196db99bb15044b06aeb83b5d3ba9ae192a13844f947ed50c9900530ffbd2"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x111d4d7935b79fce3fe7f084ec1b6e083567696c62a38018e74efcdc880c2d7e, len=2001"] +2026-04-20T15:37:03.619914Z DEBUG StfBlueprint::apply_slot{context=Node da_height=177}: sov_chain_state: Setting next visible slot number next_visible_slot_number=173 +2026-04-20T15:37:03.626346Z DEBUG StfBlueprint::apply_slot{context=Node da_height=177}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xa7d196db99bb15044b06aeb83b5d3ba9ae192a13844f947ed50c9900530ffbd2}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:03.628901Z DEBUG StfBlueprint::apply_slot{context=Node da_height=177}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6223505925fdb4c1d767c489dbf3d1f5f575d598297589ad9bf56bdc26fa56ff693fab8fe568eebe5c73ba8fe50f1f0c22c81b63c45431472e830fa411a3ec53 next_version=177 sesssion_starting_time=323.337µs +2026-04-20T15:37:03.637184Z DEBUG StfBlueprint::apply_slot{context=Node da_height=177}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=075bf016fabaa7a9e123f6bafc3d2a28f5dc91a174e3e016e8463da44606b3660a85b62b8baaef18aaaf3fbae0019ac6606de306be989692539c1bac75a429d9 next_version=177 time=9.566968ms accesses_build_time=947.764µs finishing_session_time=8.149897ms +2026-04-20T15:37:03.638485Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6223505925fdb4c1d767c489dbf3d1f5f575d598297589ad9bf56bdc26fa56ff693fab8fe568eebe5c73ba8fe50f1f0c22c81b63c45431472e830fa411a3ec53" next_state_root="075bf016fabaa7a9e123f6bafc3d2a28f5dc91a174e3e016e8463da44606b3660a85b62b8baaef18aaaf3fbae0019ac6606de306be989692539c1bac75a429d9" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:37:03.642929Z DEBUG sov_stf_runner::runner: Block execution complete time=2.995320462s +2026-04-20T15:37:03.643079Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:37:03.643849Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 177, latest_finalized_slot_number: 176, sync_status: Syncing { synced_da_height: 176, target_da_height: 177 }, .. } +2026-04-20T15:37:03.645334Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=173 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 177, latest_finalized_slot_number: 176, sync_status: Syncing { synced_da_height: 176, target_da_height: 177 }, .. } +2026-04-20T15:37:03.645335Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:37:03.646080Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:37:03.646267Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=173 +2026-04-20T15:37:03.648952Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:37:03.649933Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=169 +2026-04-20T15:37:03.651807Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=174 +2026-04-20T15:37:03.652950Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:37:03.657181Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 161. Final slot number 170 +2026-04-20T15:37:03.657838Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=174 sequence_number=190 +2026-04-20T15:37:03.658164Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=190 blob_id=2147897806953926727570488135817902271 visible_slot_number_after_increase=174 visible_slots_to_advance=1 +2026-04-20T15:37:03.658143Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:03.662796Z DEBUG compute_state_update{scope="sequencer" rollup_height=174 slot_number=174}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=075bf016fabaa7a9e123f6bafc3d2a28f5dc91a174e3e016e8463da44606b3660a85b62b8baaef18aaaf3fbae0019ac6606de306be989692539c1bac75a429d9 next_version=178 sesssion_starting_time=279.638µs +2026-04-20T15:37:03.665871Z DEBUG manage_blob_submission_inside_task{blob_id=2147897806953926727570488135817902271 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x25e6dd8c20506562c403b1d27fda2288b3d0bd4baecd76cce04358c2d190a390 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=178 include_at=178 bytes=13 time=1.791718ms +2026-04-20T15:37:03.669452Z DEBUG compute_state_update{scope="sequencer" rollup_height=174 slot_number=174}: sov_state::nomt::prover_storage: computed next state root state_root=3846c6ce10ee444b58118b850defd68bdf73b76eae6a1db616aa30a92f58bcbb7c330a02538477e82636ed6866df51eb0382904f4b51be4ca242b9db072eb32a next_version=178 time=7.415512ms accesses_build_time=469.027µs finishing_session_time=6.521298ms +2026-04-20T15:37:06.543656Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3RvItGIXRay7xtkuQlNvNw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:37:06.586327Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:37:06.597580Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1918158 cycles +2026-04-20T15:37:06.600365Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [126, 45, 100, 54, 166, 125, 232, 178, 149, 111, 205, 174, 202, 61, 141, 165, 71, 200, 202, 201, 127, 57, 240, 200, 72, 112, 102, 191, 224, 113, 1, 38, 7, 198, 25, 231, 71, 19, 83, 137, 243, 226, 70, 253, 58, 115, 13, 22, 139, 89, 114, 124, 10, 221, 3, 195, 161, 53, 49, 208, 123, 70, 223, 21, 65, 170, 143, 162, 70, 140, 77, 240, 16, 97, 130, 54, 206, 201, 246, 127, 24, 13, 139, 116, 230, 60, 63, 119, 13, 156, 16, 143, 111, 220, 194, 220, 63, 152, 236, 218, 127, 247, 214, 201, 197, 65, 88, 67, 63, 140, 93, 233, 210, 248, 31, 20, 114, 103, 198, 175, 170, 52, 129, 128, 51, 53, 167, 100, 171, 192, 61, 58, 195, 12, 136, 129, 37, 111, 69, 219, 172, 29, 197, 103, 252, 234, 229, 211, 59, 188, 49, 26, 184, 186, 207, 118, 193, 52, 191, 16, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:37:06.603859Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=178 prev_hash=0x939b04fa9ddc1942e421af6f4300a130c558f19ef0d061724f6c06206844f32e hash=0x20a759fd9c773b5a47ab287cf4aa696d6a86184737d92bf359556418b0f5315d producing_time=2.752862ms +2026-04-20T15:37:06.615644Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=178 current_state_root="075bf016fabaa7a9e123f6bafc3d2a28f5dc91a174e3e016e8463da44606b3660a85b62b8baaef18aaaf3fbae0019ac6606de306be989692539c1bac75a429d9" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x25e6dd8c20506562c403b1d27fda2288b3d0bd4baecd76cce04358c2d190a390"] proof_blobs=[] +2026-04-20T15:37:06.622520Z DEBUG StfBlueprint::apply_slot{context=Node da_height=178}: sov_chain_state: Setting next visible slot number next_visible_slot_number=174 +2026-04-20T15:37:06.636370Z DEBUG StfBlueprint::apply_slot{context=Node da_height=178}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 161. Final slot number 170 +2026-04-20T15:37:06.636728Z DEBUG StfBlueprint::apply_slot{context=Node da_height=178}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x25e6dd8c20506562c403b1d27fda2288b3d0bd4baecd76cce04358c2d190a390}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:06.638614Z DEBUG StfBlueprint::apply_slot{context=Node da_height=178}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=075bf016fabaa7a9e123f6bafc3d2a28f5dc91a174e3e016e8463da44606b3660a85b62b8baaef18aaaf3fbae0019ac6606de306be989692539c1bac75a429d9 next_version=178 sesssion_starting_time=201.498µs +2026-04-20T15:37:06.645243Z DEBUG StfBlueprint::apply_slot{context=Node da_height=178}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3846c6ce10ee444b58118b850defd68bdf73b76eae6a1db616aa30a92f58bcbb111c678fcceed07df58e56fa2213812e59c957f2777a49abbd4c6656d464963b next_version=178 time=7.70113ms accesses_build_time=857.154µs finishing_session_time=6.527177ms +2026-04-20T15:37:06.646283Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6223505925fdb4c1d767c489dbf3d1f5f575d598297589ad9bf56bdc26fa56ff693fab8fe568eebe5c73ba8fe50f1f0c22c81b63c45431472e830fa411a3ec53" next_state_root="3846c6ce10ee444b58118b850defd68bdf73b76eae6a1db616aa30a92f58bcbb111c678fcceed07df58e56fa2213812e59c957f2777a49abbd4c6656d464963b" aggregated_proofs=1 proof_receipts=1 +2026-04-20T15:37:06.650106Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 178, latest_finalized_slot_number: 178, sync_status: Syncing { synced_da_height: 177, target_da_height: 178 }, .. } +2026-04-20T15:37:06.650865Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=174 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 178, latest_finalized_slot_number: 178, sync_status: Syncing { synced_da_height: 177, target_da_height: 178 }, .. } +2026-04-20T15:37:06.651388Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=174 +2026-04-20T15:37:06.652727Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:37:06.653211Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=170 +2026-04-20T15:37:06.654410Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=175 +2026-04-20T15:37:06.655194Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:37:06.656390Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=175 sequence_number=191 +2026-04-20T15:37:06.656587Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=191 blob_id=2147897810579530401036065430458088517 visible_slot_number_after_increase=175 visible_slots_to_advance=1 +2026-04-20T15:37:06.656567Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:06.661826Z DEBUG manage_blob_submission_inside_task{blob_id=2147897810579530401036065430458088517 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x34a511da4dc5f21adf82cf05a6f7e4871a2c016eca6f95e2dbf08772cb36c17f sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=179 include_at=179 bytes=13 time=1.159662ms +2026-04-20T15:37:06.665425Z DEBUG compute_state_update{scope="sequencer" rollup_height=175 slot_number=175}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:37:06.665564Z DEBUG compute_state_update{scope="sequencer" rollup_height=175 slot_number=175}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3846c6ce10ee444b58118b850defd68bdf73b76eae6a1db616aa30a92f58bcbb111c678fcceed07df58e56fa2213812e59c957f2777a49abbd4c6656d464963b next_version=179 sesssion_starting_time=6.19393ms +2026-04-20T15:37:06.669808Z DEBUG compute_state_update{scope="sequencer" rollup_height=175 slot_number=175}: sov_state::nomt::prover_storage: computed next state root state_root=78674f4509b6f66e379f6264f27584777bbb83d0148c9c90d09c03ec44a912954f1d409366335731ec77710e55d2fd29f87005cc4a9c02ea1d876c88b26aedaa next_version=179 time=10.601371ms accesses_build_time=159.768µs finishing_session_time=4.199143ms +2026-04-20T15:37:06.679141Z DEBUG sov_stf_runner::runner: Block execution complete time=3.036100707s +2026-04-20T15:37:06.679194Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:37:06.680389Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:37:06.681137Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:37:07.173171Z DEBUG sp1_core_executor_runner::native: CHILD sp1_o4q2NXpiSiGme5hT-eIX_A==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:37:07.213780Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:37:07.227509Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1824464 cycles +2026-04-20T15:37:07.230473Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [0, 157, 7, 172, 176, 230, 206, 41, 227, 166, 157, 215, 198, 206, 74, 97, 85, 51, 46, 154, 27, 35, 49, 200, 163, 134, 97, 206, 97, 64, 242, 186, 14, 175, 13, 58, 117, 145, 69, 75, 33, 214, 241, 73, 87, 166, 122, 46, 232, 201, 158, 230, 231, 182, 243, 228, 50, 25, 235, 99, 1, 132, 161, 0, 37, 151, 89, 190, 83, 178, 92, 253, 25, 166, 128, 152, 80, 44, 197, 104, 64, 78, 141, 99, 141, 5, 186, 130, 1, 108, 197, 232, 69, 81, 76, 45, 40, 41, 232, 46, 189, 221, 9, 135, 227, 89, 173, 234, 109, 53, 55, 184, 114, 230, 14, 224, 229, 220, 230, 173, 204, 55, 252, 106, 12, 106, 0, 35, 208, 47, 225, 60, 120, 93, 248, 214, 90, 197, 32, 208, 47, 172, 5, 34, 196, 84, 123, 111, 251, 75, 251, 41, 220, 157, 105, 47, 146, 125, 144, 162, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:37:07.325028Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:37:07.325107Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:37:07.925476Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:37:07.925556Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:37:09.608000Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=179 prev_hash=0x20a759fd9c773b5a47ab287cf4aa696d6a86184737d92bf359556418b0f5315d hash=0x03bc9f8df579300dfe16e1bf530f8fdb05b195cd3e1df5a49e388f3421adfd3b producing_time=2.98455ms +2026-04-20T15:37:09.612121Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=179 current_state_root="3846c6ce10ee444b58118b850defd68bdf73b76eae6a1db616aa30a92f58bcbb111c678fcceed07df58e56fa2213812e59c957f2777a49abbd4c6656d464963b" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x34a511da4dc5f21adf82cf05a6f7e4871a2c016eca6f95e2dbf08772cb36c17f"] proof_blobs=[] +2026-04-20T15:37:09.621013Z DEBUG StfBlueprint::apply_slot{context=Node da_height=179}: sov_chain_state: Setting next visible slot number next_visible_slot_number=175 +2026-04-20T15:37:09.627232Z DEBUG StfBlueprint::apply_slot{context=Node da_height=179}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x34a511da4dc5f21adf82cf05a6f7e4871a2c016eca6f95e2dbf08772cb36c17f}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:09.629422Z DEBUG StfBlueprint::apply_slot{context=Node da_height=179}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3846c6ce10ee444b58118b850defd68bdf73b76eae6a1db616aa30a92f58bcbb111c678fcceed07df58e56fa2213812e59c957f2777a49abbd4c6656d464963b next_version=179 sesssion_starting_time=274.778µs +2026-04-20T15:37:09.637529Z DEBUG StfBlueprint::apply_slot{context=Node da_height=179}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=78674f4509b6f66e379f6264f27584777bbb83d0148c9c90d09c03ec44a912957fd671074e3e65a5f00daddb057c272d2c796dfe990ed85c7c0227886d9a3fac next_version=179 time=9.164891ms accesses_build_time=763.985µs finishing_session_time=7.970108ms +2026-04-20T15:37:09.638802Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3846c6ce10ee444b58118b850defd68bdf73b76eae6a1db616aa30a92f58bcbb111c678fcceed07df58e56fa2213812e59c957f2777a49abbd4c6656d464963b" next_state_root="78674f4509b6f66e379f6264f27584777bbb83d0148c9c90d09c03ec44a912957fd671074e3e65a5f00daddb057c272d2c796dfe990ed85c7c0227886d9a3fac" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:37:09.642646Z DEBUG sov_stf_runner::runner: Block execution complete time=2.963456939s +2026-04-20T15:37:09.642747Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:37:09.643491Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 179, latest_finalized_slot_number: 178, sync_status: Syncing { synced_da_height: 178, target_da_height: 179 }, .. } +2026-04-20T15:37:09.644867Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=175 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 179, latest_finalized_slot_number: 178, sync_status: Syncing { synced_da_height: 178, target_da_height: 179 }, .. } +2026-04-20T15:37:09.645579Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:37:09.645800Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=175 +2026-04-20T15:37:09.646259Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:37:09.648779Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:37:09.649794Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=171 +2026-04-20T15:37:09.651820Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=176 +2026-04-20T15:37:09.653043Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:37:09.654741Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=176 sequence_number=192 +2026-04-20T15:37:09.655024Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=192 blob_id=2147897814203904731986865449209347996 visible_slot_number_after_increase=176 visible_slots_to_advance=1 +2026-04-20T15:37:09.655018Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:09.659273Z DEBUG compute_state_update{scope="sequencer" rollup_height=176 slot_number=176}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=78674f4509b6f66e379f6264f27584777bbb83d0148c9c90d09c03ec44a912957fd671074e3e65a5f00daddb057c272d2c796dfe990ed85c7c0227886d9a3fac next_version=180 sesssion_starting_time=269.548µs +2026-04-20T15:37:09.662518Z DEBUG manage_blob_submission_inside_task{blob_id=2147897814203904731986865449209347996 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xc7d5b2a744d233695f0a0afba3b858d1c45ca4eaa47dab2cebb412b5061f9b9e sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=180 include_at=180 bytes=13 time=1.520261ms +2026-04-20T15:37:09.664945Z DEBUG compute_state_update{scope="sequencer" rollup_height=176 slot_number=176}: sov_state::nomt::prover_storage: computed next state root state_root=6c0eb7fc6a33cb5e29367950819b2d576592cb923aeab5a43f00052cdf32cbcb7d6472ff18a27d8b6506aaa0f4c57ab703eec31012a3ef88377247e6a4921b73 next_version=180 time=6.20906ms accesses_build_time=269.619µs finishing_session_time=5.472454ms +2026-04-20T15:37:10.191781Z DEBUG sp1_core_executor_runner::native: CHILD sp1_veEZw17lQHuy36HuYr4gUQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:37:10.234008Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:37:10.246338Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1897962 cycles +2026-04-20T15:37:10.249089Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [2, 109, 205, 49, 69, 185, 201, 167, 123, 36, 116, 183, 195, 123, 109, 50, 46, 1, 211, 117, 140, 226, 135, 213, 109, 206, 93, 207, 244, 22, 108, 47, 12, 217, 102, 85, 89, 97, 253, 27, 117, 101, 54, 208, 32, 136, 240, 160, 87, 175, 206, 62, 153, 175, 74, 118, 84, 194, 94, 34, 209, 13, 170, 233, 101, 29, 50, 58, 20, 53, 252, 127, 1, 194, 48, 255, 133, 1, 130, 94, 167, 127, 130, 231, 16, 248, 75, 5, 25, 160, 10, 59, 136, 11, 50, 42, 111, 8, 26, 138, 207, 196, 111, 179, 23, 16, 19, 9, 162, 199, 16, 176, 178, 239, 86, 155, 120, 66, 22, 240, 248, 40, 248, 24, 64, 10, 46, 49, 152, 83, 15, 232, 200, 105, 58, 124, 179, 211, 81, 187, 66, 24, 167, 53, 233, 158, 58, 11, 170, 163, 99, 62, 102, 71, 211, 105, 252, 186, 2, 106, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:37:10.916533Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:37:10.916614Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:37:12.612580Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=180 prev_hash=0x03bc9f8df579300dfe16e1bf530f8fdb05b195cd3e1df5a49e388f3421adfd3b hash=0xed165366f1df2572c310597a3de057b18f91a9f68e9a634e2fdeb8f0137b5df2 producing_time=3.04969ms +2026-04-20T15:37:12.615617Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=180 current_state_root="78674f4509b6f66e379f6264f27584777bbb83d0148c9c90d09c03ec44a912957fd671074e3e65a5f00daddb057c272d2c796dfe990ed85c7c0227886d9a3fac" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc7d5b2a744d233695f0a0afba3b858d1c45ca4eaa47dab2cebb412b5061f9b9e"] proof_blobs=[] +2026-04-20T15:37:12.623689Z DEBUG StfBlueprint::apply_slot{context=Node da_height=180}: sov_chain_state: Setting next visible slot number next_visible_slot_number=176 +2026-04-20T15:37:12.629628Z DEBUG StfBlueprint::apply_slot{context=Node da_height=180}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xc7d5b2a744d233695f0a0afba3b858d1c45ca4eaa47dab2cebb412b5061f9b9e}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:12.631793Z DEBUG StfBlueprint::apply_slot{context=Node da_height=180}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=78674f4509b6f66e379f6264f27584777bbb83d0148c9c90d09c03ec44a912957fd671074e3e65a5f00daddb057c272d2c796dfe990ed85c7c0227886d9a3fac next_version=180 sesssion_starting_time=264.298µs +2026-04-20T15:37:12.639910Z DEBUG StfBlueprint::apply_slot{context=Node da_height=180}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6c0eb7fc6a33cb5e29367950819b2d576592cb923aeab5a43f00052cdf32cbcb55e39989011a839094e1a23feec8b61557499514b0d671e848bcb475fae21865 next_version=180 time=9.177351ms accesses_build_time=782.325µs finishing_session_time=7.985208ms +2026-04-20T15:37:12.641291Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3846c6ce10ee444b58118b850defd68bdf73b76eae6a1db616aa30a92f58bcbb111c678fcceed07df58e56fa2213812e59c957f2777a49abbd4c6656d464963b" next_state_root="6c0eb7fc6a33cb5e29367950819b2d576592cb923aeab5a43f00052cdf32cbcb55e39989011a839094e1a23feec8b61557499514b0d671e848bcb475fae21865" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:37:12.646075Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 180, latest_finalized_slot_number: 179, sync_status: Syncing { synced_da_height: 179, target_da_height: 180 }, .. } +2026-04-20T15:37:12.647890Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=176 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 180, latest_finalized_slot_number: 179, sync_status: Syncing { synced_da_height: 179, target_da_height: 180 }, .. } +2026-04-20T15:37:12.648957Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=176 +2026-04-20T15:37:12.651440Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:37:12.652422Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=172 +2026-04-20T15:37:12.654239Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=177 +2026-04-20T15:37:12.655342Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:37:12.656962Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=177 sequence_number=193 +2026-04-20T15:37:12.657234Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=193 blob_id=2147897817833042762794556164037284698 visible_slot_number_after_increase=177 visible_slots_to_advance=1 +2026-04-20T15:37:12.657228Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:12.658179Z DEBUG sov_stf_runner::runner: Block execution complete time=3.015453461s +2026-04-20T15:37:12.658228Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:37:12.660817Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:37:12.661523Z DEBUG compute_state_update{scope="sequencer" rollup_height=177 slot_number=177}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:37:12.661557Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:37:12.661869Z DEBUG compute_state_update{scope="sequencer" rollup_height=177 slot_number=177}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6c0eb7fc6a33cb5e29367950819b2d576592cb923aeab5a43f00052cdf32cbcb55e39989011a839094e1a23feec8b61557499514b0d671e848bcb475fae21865 next_version=181 sesssion_starting_time=369.577µs +2026-04-20T15:37:12.664272Z DEBUG manage_blob_submission_inside_task{blob_id=2147897817833042762794556164037284698 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x28ad59a7dafae57ae0fd2e386d9a78e257442fcb2d335cba5c8ed2d5e03e157b sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=181 include_at=181 bytes=13 time=1.53017ms +2026-04-20T15:37:12.667343Z DEBUG compute_state_update{scope="sequencer" rollup_height=177 slot_number=177}: sov_state::nomt::prover_storage: computed next state root state_root=2d013fc7c4f8255abd043655c1a732eecbf7c2cc55c2c69f50022542ec1c6762188784ac0b73b06dc423110f06f83eb71ffe04ac236d7677072f2f789a91a7f8 next_version=181 time=6.25607ms accesses_build_time=406.018µs finishing_session_time=5.371415ms +2026-04-20T15:37:13.105035Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bzALWJkpQ-CHF4wEkG61EA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:37:13.146364Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:37:13.156617Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1881765 cycles +2026-04-20T15:37:13.159335Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [21, 151, 254, 17, 231, 243, 42, 151, 180, 143, 11, 9, 2, 245, 108, 2, 75, 210, 123, 96, 42, 133, 85, 45, 206, 146, 52, 69, 153, 207, 26, 88, 82, 184, 123, 217, 252, 40, 224, 61, 177, 26, 148, 42, 144, 135, 116, 101, 75, 197, 199, 68, 206, 78, 25, 149, 10, 81, 155, 13, 110, 202, 18, 251, 9, 167, 167, 152, 99, 54, 168, 43, 187, 122, 144, 180, 47, 145, 148, 214, 204, 170, 9, 65, 49, 115, 34, 110, 206, 73, 19, 218, 191, 165, 164, 250, 104, 99, 63, 49, 9, 63, 137, 31, 238, 76, 97, 151, 179, 35, 199, 116, 168, 22, 34, 170, 109, 112, 90, 221, 9, 191, 77, 127, 176, 93, 95, 142, 186, 185, 36, 140, 239, 117, 145, 133, 0, 23, 188, 9, 63, 123, 171, 90, 233, 2, 204, 60, 121, 142, 225, 111, 106, 110, 176, 232, 3, 192, 255, 23, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:37:13.827023Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:37:13.827104Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:37:15.617823Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=181 prev_hash=0xed165366f1df2572c310597a3de057b18f91a9f68e9a634e2fdeb8f0137b5df2 hash=0x2f2bde6639d308b67926adcdcccc778e786968f7d5d82abdb3e73ec59e4873cf producing_time=3.671697ms +2026-04-20T15:37:15.621024Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=181 current_state_root="6c0eb7fc6a33cb5e29367950819b2d576592cb923aeab5a43f00052cdf32cbcb55e39989011a839094e1a23feec8b61557499514b0d671e848bcb475fae21865" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x28ad59a7dafae57ae0fd2e386d9a78e257442fcb2d335cba5c8ed2d5e03e157b"] proof_blobs=[] +2026-04-20T15:37:15.629033Z DEBUG StfBlueprint::apply_slot{context=Node da_height=181}: sov_chain_state: Setting next visible slot number next_visible_slot_number=177 +2026-04-20T15:37:15.635046Z DEBUG StfBlueprint::apply_slot{context=Node da_height=181}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x28ad59a7dafae57ae0fd2e386d9a78e257442fcb2d335cba5c8ed2d5e03e157b}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:15.637236Z DEBUG StfBlueprint::apply_slot{context=Node da_height=181}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6c0eb7fc6a33cb5e29367950819b2d576592cb923aeab5a43f00052cdf32cbcb55e39989011a839094e1a23feec8b61557499514b0d671e848bcb475fae21865 next_version=181 sesssion_starting_time=304.738µs +2026-04-20T15:37:15.645290Z DEBUG StfBlueprint::apply_slot{context=Node da_height=181}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2d013fc7c4f8255abd043655c1a732eecbf7c2cc55c2c69f50022542ec1c676263b3bf5533ffe744cf57e29a7e61ef93bf35b74771c010da6552ec9313b3badc next_version=181 time=9.127931ms accesses_build_time=756.735µs finishing_session_time=7.918159ms +2026-04-20T15:37:15.646535Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="78674f4509b6f66e379f6264f27584777bbb83d0148c9c90d09c03ec44a912957fd671074e3e65a5f00daddb057c272d2c796dfe990ed85c7c0227886d9a3fac" next_state_root="2d013fc7c4f8255abd043655c1a732eecbf7c2cc55c2c69f50022542ec1c676263b3bf5533ffe744cf57e29a7e61ef93bf35b74771c010da6552ec9313b3badc" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:37:15.651310Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 181, latest_finalized_slot_number: 181, sync_status: Syncing { synced_da_height: 180, target_da_height: 181 }, .. } +2026-04-20T15:37:15.652745Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=177 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 181, latest_finalized_slot_number: 181, sync_status: Syncing { synced_da_height: 180, target_da_height: 181 }, .. } +2026-04-20T15:37:15.653686Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=177 +2026-04-20T15:37:15.656415Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:37:15.657404Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=173 +2026-04-20T15:37:15.659211Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=178 +2026-04-20T15:37:15.660309Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:37:15.662044Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=178 sequence_number=194 +2026-04-20T15:37:15.662376Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:15.662408Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=194 blob_id=2147897821465856014735602200175608605 visible_slot_number_after_increase=178 visible_slots_to_advance=1 +2026-04-20T15:37:15.669814Z DEBUG manage_blob_submission_inside_task{blob_id=2147897821465856014735602200175608605 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x2115cdf94fae43bdbd8952f9337246d910d94a33c6f49c0fce95fcc60fc7d869 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=182 include_at=182 bytes=13 time=1.576719ms +2026-04-20T15:37:15.678286Z DEBUG compute_state_update{scope="sequencer" rollup_height=178 slot_number=178}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:37:15.678365Z DEBUG compute_state_update{scope="sequencer" rollup_height=178 slot_number=178}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:37:15.678638Z DEBUG compute_state_update{scope="sequencer" rollup_height=178 slot_number=178}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2d013fc7c4f8255abd043655c1a732eecbf7c2cc55c2c69f50022542ec1c676263b3bf5533ffe744cf57e29a7e61ef93bf35b74771c010da6552ec9313b3badc next_version=182 sesssion_starting_time=11.776184ms +2026-04-20T15:37:15.678953Z DEBUG sov_stf_runner::runner: Block execution complete time=3.020731047s +2026-04-20T15:37:15.679025Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:37:15.681469Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:37:15.682162Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:37:15.684337Z DEBUG compute_state_update{scope="sequencer" rollup_height=178 slot_number=178}: sov_state::nomt::prover_storage: computed next state root state_root=423b0c7824557dee2b2e503655ca2a12f67a5a1711a7fc335e2fb372113a84c44dabfe1d3684b465efdc474092585bf3deea3f0fc320a7fafc6272b3fec1f08a next_version=182 time=17.868625ms accesses_build_time=386.118µs finishing_session_time=5.600984ms +2026-04-20T15:37:16.136565Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QVGvpOT4R6Obbh1R4VBB1w==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:37:16.178462Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:37:16.190293Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1895763 cycles +2026-04-20T15:37:16.193161Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [93, 36, 230, 130, 53, 110, 143, 94, 222, 145, 65, 212, 57, 215, 56, 2, 38, 123, 49, 83, 209, 58, 162, 133, 88, 91, 238, 10, 252, 227, 213, 157, 56, 5, 19, 88, 133, 80, 113, 237, 95, 21, 86, 48, 27, 156, 130, 185, 166, 164, 254, 44, 209, 113, 122, 159, 203, 210, 78, 37, 60, 152, 89, 77, 65, 246, 248, 210, 108, 237, 68, 92, 42, 109, 248, 197, 9, 131, 3, 100, 89, 194, 202, 250, 11, 25, 6, 110, 200, 173, 143, 24, 64, 240, 252, 52, 22, 147, 8, 189, 143, 85, 163, 30, 171, 38, 21, 35, 51, 18, 208, 167, 54, 233, 238, 228, 191, 19, 111, 12, 65, 205, 17, 234, 165, 50, 222, 193, 190, 250, 37, 127, 103, 69, 5, 134, 222, 17, 76, 85, 35, 221, 189, 249, 9, 32, 158, 216, 101, 137, 203, 23, 252, 34, 22, 139, 77, 133, 74, 218, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:37:16.864804Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:37:16.864881Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:37:18.622921Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=182 prev_hash=0x2f2bde6639d308b67926adcdcccc778e786968f7d5d82abdb3e73ec59e4873cf hash=0x86ac42c3bcff2e8454b907472934b9a4f3be7e4723319c4f8da9b3cdbf5b6293 producing_time=3.444227ms +2026-04-20T15:37:18.632251Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=182 current_state_root="2d013fc7c4f8255abd043655c1a732eecbf7c2cc55c2c69f50022542ec1c676263b3bf5533ffe744cf57e29a7e61ef93bf35b74771c010da6552ec9313b3badc" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x2115cdf94fae43bdbd8952f9337246d910d94a33c6f49c0fce95fcc60fc7d869"] proof_blobs=[] +2026-04-20T15:37:18.641339Z DEBUG StfBlueprint::apply_slot{context=Node da_height=182}: sov_chain_state: Setting next visible slot number next_visible_slot_number=178 +2026-04-20T15:37:18.648093Z DEBUG StfBlueprint::apply_slot{context=Node da_height=182}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x2115cdf94fae43bdbd8952f9337246d910d94a33c6f49c0fce95fcc60fc7d869}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:18.650542Z DEBUG StfBlueprint::apply_slot{context=Node da_height=182}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2d013fc7c4f8255abd043655c1a732eecbf7c2cc55c2c69f50022542ec1c676263b3bf5533ffe744cf57e29a7e61ef93bf35b74771c010da6552ec9313b3badc next_version=182 sesssion_starting_time=346.957µs +2026-04-20T15:37:18.658804Z DEBUG StfBlueprint::apply_slot{context=Node da_height=182}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=423b0c7824557dee2b2e503655ca2a12f67a5a1711a7fc335e2fb372113a84c466015e68ec7f22d3b7a9708ae9794adcfa14af51da7350c7b0c06f7145c4c2ee next_version=182 time=9.434259ms accesses_build_time=813.214µs finishing_session_time=8.124067ms +2026-04-20T15:37:18.660158Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2d013fc7c4f8255abd043655c1a732eecbf7c2cc55c2c69f50022542ec1c676263b3bf5533ffe744cf57e29a7e61ef93bf35b74771c010da6552ec9313b3badc" next_state_root="423b0c7824557dee2b2e503655ca2a12f67a5a1711a7fc335e2fb372113a84c466015e68ec7f22d3b7a9708ae9794adcfa14af51da7350c7b0c06f7145c4c2ee" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:37:18.665491Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 182, latest_finalized_slot_number: 182, sync_status: Syncing { synced_da_height: 181, target_da_height: 182 }, .. } +2026-04-20T15:37:18.666975Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=178 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 182, latest_finalized_slot_number: 182, sync_status: Syncing { synced_da_height: 181, target_da_height: 182 }, .. } +2026-04-20T15:37:18.667918Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=178 +2026-04-20T15:37:18.670643Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:37:18.671635Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=174 +2026-04-20T15:37:18.673157Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=179 +2026-04-20T15:37:18.673944Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:37:18.675248Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=179 sequence_number=195 +2026-04-20T15:37:18.675506Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:18.675587Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=195 blob_id=2147897825109595957378429629010568790 visible_slot_number_after_increase=179 visible_slots_to_advance=1 +2026-04-20T15:37:18.678557Z DEBUG compute_state_update{scope="sequencer" rollup_height=179 slot_number=179}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:37:18.678693Z DEBUG compute_state_update{scope="sequencer" rollup_height=179 slot_number=179}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=423b0c7824557dee2b2e503655ca2a12f67a5a1711a7fc335e2fb372113a84c466015e68ec7f22d3b7a9708ae9794adcfa14af51da7350c7b0c06f7145c4c2ee next_version=183 sesssion_starting_time=138.929µs +2026-04-20T15:37:18.678943Z DEBUG sov_stf_runner::runner: Block execution complete time=2.999927122s +2026-04-20T15:37:18.679028Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:37:18.681222Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:37:18.682076Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:37:18.682671Z DEBUG manage_blob_submission_inside_task{blob_id=2147897825109595957378429629010568790 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xa351330b39c6087945b8211f7b3403a36910564fe5c826ebc0f69ba803f9500f sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=183 include_at=183 bytes=13 time=1.55925ms +2026-04-20T15:37:18.683684Z DEBUG compute_state_update{scope="sequencer" rollup_height=179 slot_number=179}: sov_state::nomt::prover_storage: computed next state root state_root=5ddceaa1076b89cc35f4db1172d6796a432b71c5d192ce06a0a4cc9d766cfa0f3718c723f00e76c835320edf048adb4685406a3d0bb36b64cc242475e822a752 next_version=183 time=5.285115ms accesses_build_time=153.089µs finishing_session_time=4.951668ms +2026-04-20T15:37:19.151122Z DEBUG sp1_core_executor_runner::native: CHILD sp1_akcV4P5lSJS7V8PrK_XW1g==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:37:19.192742Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:37:19.205023Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1889331 cycles +2026-04-20T15:37:19.207917Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [87, 136, 125, 131, 147, 77, 127, 69, 13, 158, 43, 159, 172, 150, 15, 6, 247, 110, 21, 50, 61, 3, 159, 172, 89, 224, 167, 0, 189, 210, 142, 229, 108, 127, 26, 105, 37, 134, 97, 153, 77, 216, 158, 186, 133, 168, 29, 150, 237, 63, 21, 41, 91, 90, 65, 225, 192, 108, 17, 78, 2, 237, 226, 65, 102, 206, 30, 222, 176, 63, 153, 189, 119, 197, 98, 130, 107, 77, 131, 180, 20, 216, 113, 101, 151, 96, 95, 181, 210, 154, 14, 58, 181, 224, 36, 12, 87, 40, 40, 108, 49, 100, 147, 53, 113, 52, 153, 172, 177, 218, 49, 37, 140, 1, 21, 174, 72, 96, 3, 122, 211, 42, 119, 158, 75, 44, 72, 108, 213, 136, 64, 198, 29, 89, 34, 15, 111, 237, 252, 186, 162, 195, 74, 252, 206, 37, 62, 31, 140, 117, 88, 174, 156, 77, 48, 45, 178, 109, 110, 207, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:37:19.878708Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:37:19.878793Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:37:21.626577Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=183 prev_hash=0x86ac42c3bcff2e8454b907472934b9a4f3be7e4723319c4f8da9b3cdbf5b6293 hash=0x456d234762ec5a036effc66321c66fe7260333878825ec0565899ba284576fe8 producing_time=2.769802ms +2026-04-20T15:37:21.631827Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=183 current_state_root="423b0c7824557dee2b2e503655ca2a12f67a5a1711a7fc335e2fb372113a84c466015e68ec7f22d3b7a9708ae9794adcfa14af51da7350c7b0c06f7145c4c2ee" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa351330b39c6087945b8211f7b3403a36910564fe5c826ebc0f69ba803f9500f"] proof_blobs=[] +2026-04-20T15:37:21.640094Z DEBUG StfBlueprint::apply_slot{context=Node da_height=183}: sov_chain_state: Setting next visible slot number next_visible_slot_number=179 +2026-04-20T15:37:21.645859Z DEBUG StfBlueprint::apply_slot{context=Node da_height=183}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xa351330b39c6087945b8211f7b3403a36910564fe5c826ebc0f69ba803f9500f}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:21.648009Z DEBUG StfBlueprint::apply_slot{context=Node da_height=183}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=423b0c7824557dee2b2e503655ca2a12f67a5a1711a7fc335e2fb372113a84c466015e68ec7f22d3b7a9708ae9794adcfa14af51da7350c7b0c06f7145c4c2ee next_version=183 sesssion_starting_time=241.209µs +2026-04-20T15:37:21.656619Z DEBUG StfBlueprint::apply_slot{context=Node da_height=183}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=5ddceaa1076b89cc35f4db1172d6796a432b71c5d192ce06a0a4cc9d766cfa0f7d102f010aa6448734894b5b4ad1fd7ec82145e5fae4efb90b6976bf22bdcd03 next_version=183 time=9.630078ms accesses_build_time=766.905µs finishing_session_time=8.485545ms +2026-04-20T15:37:21.657839Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="423b0c7824557dee2b2e503655ca2a12f67a5a1711a7fc335e2fb372113a84c466015e68ec7f22d3b7a9708ae9794adcfa14af51da7350c7b0c06f7145c4c2ee" next_state_root="5ddceaa1076b89cc35f4db1172d6796a432b71c5d192ce06a0a4cc9d766cfa0f7d102f010aa6448734894b5b4ad1fd7ec82145e5fae4efb90b6976bf22bdcd03" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:37:21.662540Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 183, latest_finalized_slot_number: 183, sync_status: Synced { synced_da_height: 182 }, .. } +2026-04-20T15:37:21.663938Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=179 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 183, latest_finalized_slot_number: 183, sync_status: Synced { synced_da_height: 182 }, .. } +2026-04-20T15:37:21.664896Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=179 +2026-04-20T15:37:21.667569Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:37:21.668577Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=175 +2026-04-20T15:37:21.670402Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=180 +2026-04-20T15:37:21.671308Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:37:21.672947Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=180 sequence_number=196 +2026-04-20T15:37:21.673205Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:21.673230Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=196 blob_id=2147897828732743965799590134112856175 visible_slot_number_after_increase=180 visible_slots_to_advance=1 +2026-04-20T15:37:21.677063Z DEBUG compute_state_update{scope="sequencer" rollup_height=180 slot_number=180}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:37:21.677404Z DEBUG sov_stf_runner::runner: Block execution complete time=2.998399112s +2026-04-20T15:37:21.677458Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:37:21.677466Z DEBUG compute_state_update{scope="sequencer" rollup_height=180 slot_number=180}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5ddceaa1076b89cc35f4db1172d6796a432b71c5d192ce06a0a4cc9d766cfa0f7d102f010aa6448734894b5b4ad1fd7ec82145e5fae4efb90b6976bf22bdcd03 next_version=184 sesssion_starting_time=563.057µs +2026-04-20T15:37:21.679115Z DEBUG manage_blob_submission_inside_task{blob_id=2147897828732743965799590134112856175 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x2b7fc492ce6f85c4f7afb84251ef6be6ff022c413e57f9801d58261ae93b478d sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=184 include_at=184 bytes=13 time=1.684099ms +2026-04-20T15:37:21.682184Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:37:21.683463Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:37:21.683973Z DEBUG compute_state_update{scope="sequencer" rollup_height=180 slot_number=180}: sov_state::nomt::prover_storage: computed next state root state_root=55fc0d6682b516564443fa00e2820577a69e81fb3359d150cc3000d6e4e55a19252b9a194fddd761fde954e576beb5dcbbaeaced553e699414730844023f8cfb next_version=184 time=7.473781ms accesses_build_time=384.887µs finishing_session_time=6.348819ms +2026-04-20T15:37:22.157208Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ue3fRuYzTg--_m9Kebk2vQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:37:22.201114Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:37:22.212829Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1984442 cycles +2026-04-20T15:37:22.215510Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 35, 80, 89, 37, 253, 180, 193, 215, 103, 196, 137, 219, 243, 209, 245, 245, 117, 213, 152, 41, 117, 137, 173, 155, 245, 107, 220, 38, 250, 86, 255, 105, 63, 171, 143, 229, 104, 238, 190, 92, 115, 186, 143, 229, 15, 31, 12, 34, 200, 27, 99, 196, 84, 49, 71, 46, 131, 15, 164, 17, 163, 236, 83, 81, 91, 210, 193, 222, 203, 18, 152, 5, 128, 38, 252, 192, 57, 191, 27, 210, 129, 67, 150, 73, 2, 174, 29, 209, 214, 71, 147, 27, 31, 65, 176, 107, 171, 53, 30, 132, 248, 143, 94, 109, 200, 176, 110, 79, 248, 4, 135, 21, 244, 215, 216, 6, 21, 80, 158, 185, 123, 112, 210, 99, 122, 30, 162, 147, 155, 4, 250, 157, 220, 25, 66, 228, 33, 175, 111, 67, 0, 161, 48, 197, 88, 241, 158, 240, 208, 97, 114, 79, 108, 6, 32, 104, 68, 243, 46, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:37:22.921613Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:37:22.921691Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:37:24.631607Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=184 prev_hash=0x456d234762ec5a036effc66321c66fe7260333878825ec0565899ba284576fe8 hash=0x866851b53bbb83c0aaf4cdf9d3e9de977fe1fad3bec132e84bd6eae1faf3b8df producing_time=3.08585ms +2026-04-20T15:37:24.639874Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=184 current_state_root="5ddceaa1076b89cc35f4db1172d6796a432b71c5d192ce06a0a4cc9d766cfa0f7d102f010aa6448734894b5b4ad1fd7ec82145e5fae4efb90b6976bf22bdcd03" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x2b7fc492ce6f85c4f7afb84251ef6be6ff022c413e57f9801d58261ae93b478d"] proof_blobs=[] +2026-04-20T15:37:24.648594Z DEBUG StfBlueprint::apply_slot{context=Node da_height=184}: sov_chain_state: Setting next visible slot number next_visible_slot_number=180 +2026-04-20T15:37:24.654766Z DEBUG StfBlueprint::apply_slot{context=Node da_height=184}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x2b7fc492ce6f85c4f7afb84251ef6be6ff022c413e57f9801d58261ae93b478d}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:24.657072Z DEBUG StfBlueprint::apply_slot{context=Node da_height=184}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5ddceaa1076b89cc35f4db1172d6796a432b71c5d192ce06a0a4cc9d766cfa0f7d102f010aa6448734894b5b4ad1fd7ec82145e5fae4efb90b6976bf22bdcd03 next_version=184 sesssion_starting_time=263.889µs +2026-04-20T15:37:24.665733Z DEBUG StfBlueprint::apply_slot{context=Node da_height=184}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=55fc0d6682b516564443fa00e2820577a69e81fb3359d150cc3000d6e4e55a19011391ced99aab0cc63b9aa68476e8d2bc1fa3907f7e9bd90107f2a22d9a2dcf next_version=184 time=9.716418ms accesses_build_time=780.155µs finishing_session_time=8.526275ms +2026-04-20T15:37:24.667070Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="5ddceaa1076b89cc35f4db1172d6796a432b71c5d192ce06a0a4cc9d766cfa0f7d102f010aa6448734894b5b4ad1fd7ec82145e5fae4efb90b6976bf22bdcd03" next_state_root="55fc0d6682b516564443fa00e2820577a69e81fb3359d150cc3000d6e4e55a19011391ced99aab0cc63b9aa68476e8d2bc1fa3907f7e9bd90107f2a22d9a2dcf" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:37:24.672191Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 184, latest_finalized_slot_number: 184, sync_status: Synced { synced_da_height: 183 }, .. } +2026-04-20T15:37:24.673605Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=180 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 184, latest_finalized_slot_number: 184, sync_status: Synced { synced_da_height: 183 }, .. } +2026-04-20T15:37:24.674550Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=180 +2026-04-20T15:37:24.677297Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:37:24.678342Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=176 +2026-04-20T15:37:24.680299Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=181 +2026-04-20T15:37:24.681468Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:37:24.683112Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=181 sequence_number=197 +2026-04-20T15:37:24.683441Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:24.683494Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=197 blob_id=2147897832372840875339251977323459533 visible_slot_number_after_increase=181 visible_slots_to_advance=1 +2026-04-20T15:37:24.685488Z DEBUG sov_stf_runner::runner: Block execution complete time=3.008040169s +2026-04-20T15:37:24.685606Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:37:24.687770Z DEBUG compute_state_update{scope="sequencer" rollup_height=181 slot_number=181}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:37:24.688124Z DEBUG compute_state_update{scope="sequencer" rollup_height=181 slot_number=181}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=55fc0d6682b516564443fa00e2820577a69e81fb3359d150cc3000d6e4e55a19011391ced99aab0cc63b9aa68476e8d2bc1fa3907f7e9bd90107f2a22d9a2dcf next_version=185 sesssion_starting_time=360.417µs +2026-04-20T15:37:24.688149Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:37:24.688873Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:37:24.691036Z DEBUG manage_blob_submission_inside_task{blob_id=2147897832372840875339251977323459533 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xe6569f2d96b373361fa8a943827fb714709cc17cba6c37eb114672f50ec2cccf sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=185 include_at=185 bytes=13 time=1.769529ms +2026-04-20T15:37:24.694148Z DEBUG compute_state_update{scope="sequencer" rollup_height=181 slot_number=181}: sov_state::nomt::prover_storage: computed next state root state_root=6288840922e0ba6df407a2612a72fc0852e02f17b37dc1bced61d10c216298ab0d89d21c5fb1b739e79b0e2a81f123a01441e8817936016f4d9d3226809efe69 next_version=185 time=6.775416ms accesses_build_time=383.747µs finishing_session_time=5.926271ms +2026-04-20T15:37:25.145712Z DEBUG sp1_core_executor_runner::native: CHILD sp1_LIYA0EybSbqkPjBZfaUI7g==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:37:25.215345Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:37:25.228365Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4259787 cycles +2026-04-20T15:37:25.231118Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [7, 91, 240, 22, 250, 186, 167, 169, 225, 35, 246, 186, 252, 61, 42, 40, 245, 220, 145, 161, 116, 227, 224, 22, 232, 70, 61, 164, 70, 6, 179, 102, 10, 133, 182, 43, 139, 170, 239, 24, 170, 175, 63, 186, 224, 1, 154, 198, 96, 109, 227, 6, 190, 152, 150, 146, 83, 156, 27, 172, 117, 164, 41, 217, 10, 92, 186, 217, 90, 180, 145, 110, 63, 148, 125, 8, 218, 63, 138, 52, 96, 153, 6, 105, 163, 228, 189, 182, 220, 228, 31, 53, 140, 56, 185, 66, 73, 48, 28, 98, 57, 215, 145, 87, 155, 34, 147, 48, 38, 174, 141, 46, 81, 1, 184, 91, 57, 98, 199, 158, 130, 200, 180, 174, 164, 108, 38, 42, 32, 167, 89, 253, 156, 119, 59, 90, 71, 171, 40, 124, 244, 170, 105, 109, 106, 134, 24, 71, 55, 217, 43, 243, 89, 85, 100, 24, 176, 245, 49, 93, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:37:26.717166Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:37:26.717243Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:37:27.636301Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=185 prev_hash=0x866851b53bbb83c0aaf4cdf9d3e9de977fe1fad3bec132e84bd6eae1faf3b8df hash=0x256b1154ac2116d6d9d6e8498167f398dffe2631e327ebb493a8d1b2c2df1b9d producing_time=3.11568ms +2026-04-20T15:37:27.638409Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=185 current_state_root="55fc0d6682b516564443fa00e2820577a69e81fb3359d150cc3000d6e4e55a19011391ced99aab0cc63b9aa68476e8d2bc1fa3907f7e9bd90107f2a22d9a2dcf" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe6569f2d96b373361fa8a943827fb714709cc17cba6c37eb114672f50ec2cccf"] proof_blobs=[] +2026-04-20T15:37:27.646801Z DEBUG StfBlueprint::apply_slot{context=Node da_height=185}: sov_chain_state: Setting next visible slot number next_visible_slot_number=181 +2026-04-20T15:37:27.652530Z DEBUG StfBlueprint::apply_slot{context=Node da_height=185}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xe6569f2d96b373361fa8a943827fb714709cc17cba6c37eb114672f50ec2cccf}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:27.654694Z DEBUG StfBlueprint::apply_slot{context=Node da_height=185}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=55fc0d6682b516564443fa00e2820577a69e81fb3359d150cc3000d6e4e55a19011391ced99aab0cc63b9aa68476e8d2bc1fa3907f7e9bd90107f2a22d9a2dcf next_version=185 sesssion_starting_time=239.899µs +2026-04-20T15:37:27.662331Z DEBUG StfBlueprint::apply_slot{context=Node da_height=185}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6288840922e0ba6df407a2612a72fc0852e02f17b37dc1bced61d10c216298ab462146c9043fabb19ea254f5920f6b5031f2fe9ddde0992d622c1de4c5bef533 next_version=185 time=8.667264ms accesses_build_time=778.435µs finishing_session_time=7.504652ms +2026-04-20T15:37:27.663514Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="55fc0d6682b516564443fa00e2820577a69e81fb3359d150cc3000d6e4e55a19011391ced99aab0cc63b9aa68476e8d2bc1fa3907f7e9bd90107f2a22d9a2dcf" next_state_root="6288840922e0ba6df407a2612a72fc0852e02f17b37dc1bced61d10c216298ab462146c9043fabb19ea254f5920f6b5031f2fe9ddde0992d622c1de4c5bef533" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:37:27.668296Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 185, latest_finalized_slot_number: 185, sync_status: Synced { synced_da_height: 184 }, .. } +2026-04-20T15:37:27.669729Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=181 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 185, latest_finalized_slot_number: 185, sync_status: Synced { synced_da_height: 184 }, .. } +2026-04-20T15:37:27.670707Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=181 +2026-04-20T15:37:27.673491Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:37:27.674491Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=177 +2026-04-20T15:37:27.676358Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=182 +2026-04-20T15:37:27.677306Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:37:27.679032Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=182 sequence_number=198 +2026-04-20T15:37:27.679307Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:27.679511Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=198 blob_id=2147897835993514362273422122964282324 visible_slot_number_after_increase=182 visible_slots_to_advance=1 +2026-04-20T15:37:27.683701Z DEBUG compute_state_update{scope="sequencer" rollup_height=182 slot_number=182}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:37:27.683740Z DEBUG sov_stf_runner::runner: Block execution complete time=2.998165173s +2026-04-20T15:37:27.683814Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:37:27.684051Z DEBUG compute_state_update{scope="sequencer" rollup_height=182 slot_number=182}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6288840922e0ba6df407a2612a72fc0852e02f17b37dc1bced61d10c216298ab462146c9043fabb19ea254f5920f6b5031f2fe9ddde0992d622c1de4c5bef533 next_version=186 sesssion_starting_time=334.928µs +2026-04-20T15:37:27.686324Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:37:27.686613Z DEBUG manage_blob_submission_inside_task{blob_id=2147897835993514362273422122964282324 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xf42601348683cbfa6734cdd66cb138aa9a998b00975b78c4a9b6acf1764640ba sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=186 include_at=186 bytes=13 time=1.55758ms +2026-04-20T15:37:27.687108Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:37:27.689599Z DEBUG compute_state_update{scope="sequencer" rollup_height=182 slot_number=182}: sov_state::nomt::prover_storage: computed next state root state_root=576f4d1004fa49b2cf935c74cbd9a2b5b2e69db27fc551b2bbbf4c5f08b105d1032234bad52f296aca20f50650e2b7fd975fcc4efaceaffbb500c6628ff7a338 next_version=186 time=6.298709ms accesses_build_time=403.537µs finishing_session_time=5.440815ms +2026-04-20T15:37:28.153834Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Ehv3waLFReSc4UAacmAC2Q==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:37:28.193719Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:37:28.206435Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1845654 cycles +2026-04-20T15:37:28.209175Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [56, 70, 198, 206, 16, 238, 68, 75, 88, 17, 139, 133, 13, 239, 214, 139, 223, 115, 183, 110, 174, 106, 29, 182, 22, 170, 48, 169, 47, 88, 188, 187, 17, 28, 103, 143, 204, 238, 208, 125, 245, 142, 86, 250, 34, 19, 129, 46, 89, 201, 87, 242, 119, 122, 73, 171, 189, 76, 102, 86, 212, 100, 150, 59, 98, 157, 86, 190, 186, 2, 5, 121, 49, 137, 209, 56, 11, 195, 97, 10, 96, 205, 171, 64, 35, 17, 109, 176, 102, 172, 185, 90, 0, 61, 55, 30, 35, 4, 111, 26, 93, 146, 111, 185, 18, 255, 76, 78, 168, 213, 101, 75, 61, 63, 162, 135, 254, 133, 74, 1, 149, 249, 6, 140, 139, 71, 57, 218, 3, 188, 159, 141, 245, 121, 48, 13, 254, 22, 225, 191, 83, 15, 143, 219, 5, 177, 149, 205, 62, 29, 245, 164, 158, 56, 143, 52, 33, 173, 253, 59, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:37:28.856897Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:37:28.856975Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:37:30.640281Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=186 prev_hash=0x256b1154ac2116d6d9d6e8498167f398dffe2631e327ebb493a8d1b2c2df1b9d hash=0x0c2dfa7ac47b98d784dece76b9105803febaa485a486013c4473f793556cc972 producing_time=3.198039ms +2026-04-20T15:37:30.646501Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=186 current_state_root="6288840922e0ba6df407a2612a72fc0852e02f17b37dc1bced61d10c216298ab462146c9043fabb19ea254f5920f6b5031f2fe9ddde0992d622c1de4c5bef533" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf42601348683cbfa6734cdd66cb138aa9a998b00975b78c4a9b6acf1764640ba"] proof_blobs=[] +2026-04-20T15:37:30.655262Z DEBUG StfBlueprint::apply_slot{context=Node da_height=186}: sov_chain_state: Setting next visible slot number next_visible_slot_number=182 +2026-04-20T15:37:30.661341Z DEBUG StfBlueprint::apply_slot{context=Node da_height=186}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xf42601348683cbfa6734cdd66cb138aa9a998b00975b78c4a9b6acf1764640ba}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:30.663600Z DEBUG StfBlueprint::apply_slot{context=Node da_height=186}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6288840922e0ba6df407a2612a72fc0852e02f17b37dc1bced61d10c216298ab462146c9043fabb19ea254f5920f6b5031f2fe9ddde0992d622c1de4c5bef533 next_version=186 sesssion_starting_time=277.818µs +2026-04-20T15:37:30.671875Z DEBUG StfBlueprint::apply_slot{context=Node da_height=186}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=576f4d1004fa49b2cf935c74cbd9a2b5b2e69db27fc551b2bbbf4c5f08b105d142708742e5c932d4f25b653d9e53b3966759e35bd7538992734404736e4b28b9 next_version=186 time=9.325369ms accesses_build_time=761.135µs finishing_session_time=8.142087ms +2026-04-20T15:37:30.673159Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6288840922e0ba6df407a2612a72fc0852e02f17b37dc1bced61d10c216298ab462146c9043fabb19ea254f5920f6b5031f2fe9ddde0992d622c1de4c5bef533" next_state_root="576f4d1004fa49b2cf935c74cbd9a2b5b2e69db27fc551b2bbbf4c5f08b105d142708742e5c932d4f25b653d9e53b3966759e35bd7538992734404736e4b28b9" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:37:30.677811Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 186, latest_finalized_slot_number: 186, sync_status: Syncing { synced_da_height: 185, target_da_height: 186 }, .. } +2026-04-20T15:37:30.679210Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=182 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 186, latest_finalized_slot_number: 186, sync_status: Syncing { synced_da_height: 185, target_da_height: 186 }, .. } +2026-04-20T15:37:30.680145Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=182 +2026-04-20T15:37:30.682754Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:37:30.683777Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=178 +2026-04-20T15:37:30.685781Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=183 +2026-04-20T15:37:30.687046Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:37:30.688649Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=183 sequence_number=199 +2026-04-20T15:37:30.688931Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:30.688996Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=199 blob_id=2147897839632421792489770657948433743 visible_slot_number_after_increase=183 visible_slots_to_advance=1 +2026-04-20T15:37:30.693374Z DEBUG compute_state_update{scope="sequencer" rollup_height=183 slot_number=183}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:37:30.693616Z DEBUG sov_stf_runner::runner: Block execution complete time=3.009806709s +2026-04-20T15:37:30.693703Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:37:30.693678Z DEBUG compute_state_update{scope="sequencer" rollup_height=183 slot_number=183}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=576f4d1004fa49b2cf935c74cbd9a2b5b2e69db27fc551b2bbbf4c5f08b105d142708742e5c932d4f25b653d9e53b3966759e35bd7538992734404736e4b28b9 next_version=187 sesssion_starting_time=314.858µs +2026-04-20T15:37:30.696386Z DEBUG manage_blob_submission_inside_task{blob_id=2147897839632421792489770657948433743 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x6117bf46569c6da89ece881a36aea8f30d5b1704b959276c4141f92a47c74796 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=187 include_at=187 bytes=13 time=1.534821ms +2026-04-20T15:37:30.698961Z DEBUG compute_state_update{scope="sequencer" rollup_height=183 slot_number=183}: sov_state::nomt::prover_storage: computed next state root state_root=7e75d47868c21328ef82be6f1bd8cabc33ce66cb5228e39875832077c369fa583eda57f1dac7c9d22aa591d79ac631674f03b5ba1bcb4f8b127497bea944dc6c next_version=187 time=5.995601ms accesses_build_time=392.127µs finishing_session_time=5.193336ms +2026-04-20T15:37:31.152424Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Mn7oAtmBQK2_xF9cJSFo7g==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:37:31.193419Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:37:31.205311Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1873846 cycles +2026-04-20T15:37:31.207972Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [120, 103, 79, 69, 9, 182, 246, 110, 55, 159, 98, 100, 242, 117, 132, 119, 123, 187, 131, 208, 20, 140, 156, 144, 208, 156, 3, 236, 68, 169, 18, 149, 127, 214, 113, 7, 78, 62, 101, 165, 240, 13, 173, 219, 5, 124, 39, 45, 44, 121, 109, 254, 153, 14, 216, 92, 124, 2, 39, 136, 109, 154, 63, 172, 82, 192, 223, 206, 120, 79, 223, 201, 169, 2, 76, 137, 239, 173, 3, 185, 229, 116, 53, 95, 200, 198, 117, 62, 122, 73, 2, 143, 47, 86, 228, 49, 57, 83, 199, 115, 92, 244, 34, 59, 92, 130, 186, 144, 104, 129, 52, 245, 152, 102, 37, 179, 129, 242, 135, 70, 161, 184, 158, 130, 171, 85, 11, 118, 237, 22, 83, 102, 241, 223, 37, 114, 195, 16, 89, 122, 61, 224, 87, 177, 143, 145, 169, 246, 142, 154, 99, 78, 47, 222, 184, 240, 19, 123, 93, 242, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:37:31.871147Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:37:31.871222Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:37:31.933743Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:37:32.182891Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:37:32.185209Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2607482 cycles +2026-04-20T15:37:32.185588Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [171, 0, 0, 0, 0, 0, 0, 0, 180, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 126, 45, 100, 54, 166, 125, 232, 178, 149, 111, 205, 174, 202, 61, 141, 165, 71, 200, 202, 201, 127, 57, 240, 200, 72, 112, 102, 191, 224, 113, 1, 38, 7, 198, 25, 231, 71, 19, 83, 137, 243, 226, 70, 253, 58, 115, 13, 22, 139, 89, 114, 124, 10, 221, 3, 195, 161, 53, 49, 208, 123, 70, 223, 21, 82, 192, 223, 206, 120, 79, 223, 201, 169, 2, 76, 137, 239, 173, 3, 185, 229, 116, 53, 95, 200, 198, 117, 62, 122, 73, 2, 143, 47, 86, 228, 49, 57, 83, 199, 115, 92, 244, 34, 59, 92, 130, 186, 144, 104, 129, 52, 245, 152, 102, 37, 179, 129, 242, 135, 70, 161, 184, 158, 130, 171, 85, 11, 118, 171, 192, 61, 58, 195, 12, 136, 129, 37, 111, 69, 219, 172, 29, 197, 103, 252, 234, 229, 211, 59, 188, 49, 26, 184, 186, 207, 118, 193, 52, 191, 16, 237, 22, 83, 102, 241, 223, 37, 114, 195, 16, 89, 122, 61, 224, 87, 177, 143, 145, 169, 246, 142, 154, 99, 78, 47, 222, 184, 240, 19, 123, 93, 242, 32, 0, 0, 0, 0, 0, 0, 0, 33, 87, 226, 242, 39, 49, 250, 210, 41, 143, 26, 188, 101, 19, 12, 136, 43, 105, 121, 236, 80, 118, 108, 155, 63, 154, 215, 73, 15, 107, 27, 67, 32, 0, 0, 0, 0, 0, 0, 0, 54, 246, 123, 188, 67, 61, 237, 103, 16, 229, 5, 146, 113, 8, 178, 215, 95, 95, 151, 239, 106, 28, 10, 135, 55, 55, 208, 95, 86, 190, 27, 9, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:37:33.154287Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:37:33.154376Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:37:33.155283Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=1951 +2026-04-20T15:37:33.158004Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:37:33.158588Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:37:33.158984Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=200 blob_id=2147897842614821107616924718325876357 +2026-04-20T15:37:33.644270Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=187 prev_hash=0x0c2dfa7ac47b98d784dece76b9105803febaa485a486013c4473f793556cc972 hash=0xa9347c3070e192c811daeab60a6ff40ace7f83c747cda120beda2736422d5d79 producing_time=3.299529ms +2026-04-20T15:37:33.646664Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=187 current_state_root="576f4d1004fa49b2cf935c74cbd9a2b5b2e69db27fc551b2bbbf4c5f08b105d142708742e5c932d4f25b653d9e53b3966759e35bd7538992734404736e4b28b9" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x6117bf46569c6da89ece881a36aea8f30d5b1704b959276c4141f92a47c74796"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa9339a9bea41c692e7a70ce336e9623d702a2d66710cd19a27ab6d0b5103ab0a, len=2001"] +2026-04-20T15:37:33.655752Z DEBUG StfBlueprint::apply_slot{context=Node da_height=187}: sov_chain_state: Setting next visible slot number next_visible_slot_number=183 +2026-04-20T15:37:33.661953Z DEBUG StfBlueprint::apply_slot{context=Node da_height=187}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x6117bf46569c6da89ece881a36aea8f30d5b1704b959276c4141f92a47c74796}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:33.664449Z DEBUG StfBlueprint::apply_slot{context=Node da_height=187}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=576f4d1004fa49b2cf935c74cbd9a2b5b2e69db27fc551b2bbbf4c5f08b105d142708742e5c932d4f25b653d9e53b3966759e35bd7538992734404736e4b28b9 next_version=187 sesssion_starting_time=275.889µs +2026-04-20T15:37:33.673026Z DEBUG StfBlueprint::apply_slot{context=Node da_height=187}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=7e75d47868c21328ef82be6f1bd8cabc33ce66cb5228e39875832077c369fa5841a39c5eb2947c1e2344e3ebac0dded91a49f54b1d17dd6b426b6e89ea2b5d5c next_version=187 time=9.817026ms accesses_build_time=950.374µs finishing_session_time=8.442275ms +2026-04-20T15:37:33.674382Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="576f4d1004fa49b2cf935c74cbd9a2b5b2e69db27fc551b2bbbf4c5f08b105d142708742e5c932d4f25b653d9e53b3966759e35bd7538992734404736e4b28b9" next_state_root="7e75d47868c21328ef82be6f1bd8cabc33ce66cb5228e39875832077c369fa5841a39c5eb2947c1e2344e3ebac0dded91a49f54b1d17dd6b426b6e89ea2b5d5c" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:37:33.679549Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 187, latest_finalized_slot_number: 187, sync_status: Syncing { synced_da_height: 186, target_da_height: 187 }, .. } +2026-04-20T15:37:33.680945Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=183 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 187, latest_finalized_slot_number: 187, sync_status: Syncing { synced_da_height: 186, target_da_height: 187 }, .. } +2026-04-20T15:37:33.681883Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=183 +2026-04-20T15:37:33.684483Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:37:33.685483Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=179 +2026-04-20T15:37:33.687350Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=184 +2026-04-20T15:37:33.688593Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:37:33.692937Z DEBUG sov_stf_runner::runner: Block execution complete time=2.999251527s +2026-04-20T15:37:33.693037Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:37:33.693339Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 171. Final slot number 180 +2026-04-20T15:37:33.694017Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=184 sequence_number=201 +2026-04-20T15:37:33.694283Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=201 blob_id=2147897843265250391783755794066969045 visible_slot_number_after_increase=184 visible_slots_to_advance=1 +2026-04-20T15:37:33.694258Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:33.695470Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:37:33.696230Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:37:33.698632Z DEBUG compute_state_update{scope="sequencer" rollup_height=184 slot_number=184}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:37:33.698962Z DEBUG compute_state_update{scope="sequencer" rollup_height=184 slot_number=184}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7e75d47868c21328ef82be6f1bd8cabc33ce66cb5228e39875832077c369fa5841a39c5eb2947c1e2344e3ebac0dded91a49f54b1d17dd6b426b6e89ea2b5d5c next_version=188 sesssion_starting_time=337.838µs +2026-04-20T15:37:33.701236Z DEBUG manage_blob_submission_inside_task{blob_id=2147897843265250391783755794066969045 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x49df3023b7f6110babc93b9ad903798b8f1faa4b680e627426067d07965cc378 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=188 include_at=188 bytes=13 time=1.50096ms +2026-04-20T15:37:33.705597Z DEBUG compute_state_update{scope="sequencer" rollup_height=184 slot_number=184}: sov_state::nomt::prover_storage: computed next state root state_root=66c9544bc71520674ed4fa7cffcd062f6b4d5ed8cab706f46eec7b33abbe50a97becc5ae055443624789826d68f4334708db30c381ffb1cde00142fbd462452c next_version=188 time=7.458772ms accesses_build_time=478.327µs finishing_session_time=6.541958ms +2026-04-20T15:37:36.631785Z DEBUG sp1_core_executor_runner::native: CHILD sp1_MWRJkYp8T6WUWfY0_kp7DQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:37:36.648118Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=188 prev_hash=0xa9347c3070e192c811daeab60a6ff40ace7f83c747cda120beda2736422d5d79 hash=0x0359f7c5a1fb72efa6836b6b7c61930f6af93dd207771d5c9b822fd9d57d09be producing_time=2.686592ms +2026-04-20T15:37:36.656076Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=188 current_state_root="7e75d47868c21328ef82be6f1bd8cabc33ce66cb5228e39875832077c369fa5841a39c5eb2947c1e2344e3ebac0dded91a49f54b1d17dd6b426b6e89ea2b5d5c" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x49df3023b7f6110babc93b9ad903798b8f1faa4b680e627426067d07965cc378"] proof_blobs=[] +2026-04-20T15:37:36.665306Z DEBUG StfBlueprint::apply_slot{context=Node da_height=188}: sov_chain_state: Setting next visible slot number next_visible_slot_number=184 +2026-04-20T15:37:36.672224Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:37:36.682469Z DEBUG StfBlueprint::apply_slot{context=Node da_height=188}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 171. Final slot number 180 +2026-04-20T15:37:36.682911Z DEBUG StfBlueprint::apply_slot{context=Node da_height=188}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x49df3023b7f6110babc93b9ad903798b8f1faa4b680e627426067d07965cc378}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:36.684973Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1850478 cycles +2026-04-20T15:37:36.685326Z DEBUG StfBlueprint::apply_slot{context=Node da_height=188}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7e75d47868c21328ef82be6f1bd8cabc33ce66cb5228e39875832077c369fa5841a39c5eb2947c1e2344e3ebac0dded91a49f54b1d17dd6b426b6e89ea2b5d5c next_version=188 sesssion_starting_time=224.608µs +2026-04-20T15:37:36.687650Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [108, 14, 183, 252, 106, 51, 203, 94, 41, 54, 121, 80, 129, 155, 45, 87, 101, 146, 203, 146, 58, 234, 181, 164, 63, 0, 5, 44, 223, 50, 203, 203, 85, 227, 153, 137, 1, 26, 131, 144, 148, 225, 162, 63, 238, 200, 182, 21, 87, 73, 149, 20, 176, 214, 113, 232, 72, 188, 180, 117, 250, 226, 24, 101, 44, 29, 160, 252, 228, 69, 245, 21, 61, 48, 232, 60, 132, 139, 205, 96, 85, 128, 248, 168, 167, 29, 125, 33, 200, 36, 204, 216, 88, 171, 33, 211, 64, 113, 215, 248, 149, 199, 241, 220, 159, 98, 84, 152, 123, 150, 125, 27, 252, 146, 12, 195, 94, 88, 159, 26, 182, 14, 9, 170, 248, 196, 75, 108, 47, 43, 222, 102, 57, 211, 8, 182, 121, 38, 173, 205, 204, 204, 119, 142, 120, 105, 104, 247, 213, 216, 42, 189, 179, 231, 62, 197, 158, 72, 115, 207, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:37:36.696250Z DEBUG StfBlueprint::apply_slot{context=Node da_height=188}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=66c9544bc71520674ed4fa7cffcd062f6b4d5ed8cab706f46eec7b33abbe50a92b33ee6784b3665528303e8c2e681172efbcc5a3d5f2b1489867b9f44ca49cb5 next_version=188 time=12.23917ms accesses_build_time=1.068613ms finishing_session_time=10.78529ms +2026-04-20T15:37:36.697488Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="7e75d47868c21328ef82be6f1bd8cabc33ce66cb5228e39875832077c369fa5841a39c5eb2947c1e2344e3ebac0dded91a49f54b1d17dd6b426b6e89ea2b5d5c" next_state_root="66c9544bc71520674ed4fa7cffcd062f6b4d5ed8cab706f46eec7b33abbe50a92b33ee6784b3665528303e8c2e681172efbcc5a3d5f2b1489867b9f44ca49cb5" aggregated_proofs=1 proof_receipts=1 +2026-04-20T15:37:36.703255Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 188, latest_finalized_slot_number: 188, sync_status: Syncing { synced_da_height: 187, target_da_height: 188 }, .. } +2026-04-20T15:37:36.704678Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=184 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 188, latest_finalized_slot_number: 188, sync_status: Syncing { synced_da_height: 187, target_da_height: 188 }, .. } +2026-04-20T15:37:36.705626Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=184 +2026-04-20T15:37:36.708336Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:37:36.709342Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=180 +2026-04-20T15:37:36.711161Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=185 +2026-04-20T15:37:36.712253Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:37:36.713978Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=185 sequence_number=202 +2026-04-20T15:37:36.714251Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=202 blob_id=2147897846916188657617426101824724981 visible_slot_number_after_increase=185 visible_slots_to_advance=1 +2026-04-20T15:37:36.714246Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:36.718733Z DEBUG compute_state_update{scope="sequencer" rollup_height=185 slot_number=185}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:37:36.719098Z DEBUG compute_state_update{scope="sequencer" rollup_height=185 slot_number=185}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=66c9544bc71520674ed4fa7cffcd062f6b4d5ed8cab706f46eec7b33abbe50a92b33ee6784b3665528303e8c2e681172efbcc5a3d5f2b1489867b9f44ca49cb5 next_version=189 sesssion_starting_time=415.817µs +2026-04-20T15:37:36.719272Z DEBUG sov_stf_runner::runner: Block execution complete time=3.026261092s +2026-04-20T15:37:36.719327Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:37:36.721732Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:37:36.721785Z DEBUG manage_blob_submission_inside_task{blob_id=2147897846916188657617426101824724981 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xdc1e43158fdfca7353dcabb6e04e70ccc66e5e2dd1a9806a3115d730cf9eef29 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=189 include_at=189 bytes=13 time=1.851038ms +2026-04-20T15:37:36.722490Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:37:36.724951Z DEBUG compute_state_update{scope="sequencer" rollup_height=185 slot_number=185}: sov_state::nomt::prover_storage: computed next state root state_root=7f58fb4e5fe0a792bc4ee656322b29ba4a13b4b00f927ca35c38cb8d49a12cad0536cb49e090cf99dd6d8be449f04b62b859a9b91e45b508d574eab0b7d86baf next_version=189 time=6.791176ms accesses_build_time=505.627µs finishing_session_time=5.748573ms +2026-04-20T15:37:37.175429Z DEBUG sp1_core_executor_runner::native: CHILD sp1_w2r1sbCvQgik-eYPYJnDMA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:37:37.217350Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:37:37.229401Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1899278 cycles +2026-04-20T15:37:37.232036Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [45, 1, 63, 199, 196, 248, 37, 90, 189, 4, 54, 85, 193, 167, 50, 238, 203, 247, 194, 204, 85, 194, 198, 159, 80, 2, 37, 66, 236, 28, 103, 98, 99, 179, 191, 85, 51, 255, 231, 68, 207, 87, 226, 154, 126, 97, 239, 147, 191, 53, 183, 71, 113, 192, 16, 218, 101, 82, 236, 147, 19, 179, 186, 220, 101, 76, 6, 248, 50, 169, 233, 10, 134, 56, 191, 183, 129, 16, 23, 46, 178, 75, 114, 97, 137, 221, 234, 135, 145, 81, 137, 246, 205, 104, 154, 120, 17, 193, 196, 255, 213, 231, 203, 225, 24, 232, 3, 160, 153, 1, 67, 245, 106, 128, 21, 8, 99, 108, 123, 100, 214, 153, 103, 87, 148, 231, 134, 107, 134, 172, 66, 195, 188, 255, 46, 132, 84, 185, 7, 71, 41, 52, 185, 164, 243, 190, 126, 71, 35, 49, 156, 79, 141, 169, 179, 205, 191, 91, 98, 147, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:37:37.372837Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:37:37.372918Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:37:37.951922Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:37:37.952000Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:37:39.651753Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=189 prev_hash=0x0359f7c5a1fb72efa6836b6b7c61930f6af93dd207771d5c9b822fd9d57d09be hash=0x3bd677f5a8be87b8598adf66529644aef53fe740b8c006115467b18ffb1aa36c producing_time=2.992961ms +2026-04-20T15:37:39.661667Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=189 current_state_root="66c9544bc71520674ed4fa7cffcd062f6b4d5ed8cab706f46eec7b33abbe50a92b33ee6784b3665528303e8c2e681172efbcc5a3d5f2b1489867b9f44ca49cb5" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xdc1e43158fdfca7353dcabb6e04e70ccc66e5e2dd1a9806a3115d730cf9eef29"] proof_blobs=[] +2026-04-20T15:37:39.670080Z DEBUG StfBlueprint::apply_slot{context=Node da_height=189}: sov_chain_state: Setting next visible slot number next_visible_slot_number=185 +2026-04-20T15:37:39.676139Z DEBUG StfBlueprint::apply_slot{context=Node da_height=189}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xdc1e43158fdfca7353dcabb6e04e70ccc66e5e2dd1a9806a3115d730cf9eef29}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:39.678397Z DEBUG StfBlueprint::apply_slot{context=Node da_height=189}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=66c9544bc71520674ed4fa7cffcd062f6b4d5ed8cab706f46eec7b33abbe50a92b33ee6784b3665528303e8c2e681172efbcc5a3d5f2b1489867b9f44ca49cb5 next_version=189 sesssion_starting_time=310.687µs +2026-04-20T15:37:39.686579Z DEBUG StfBlueprint::apply_slot{context=Node da_height=189}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=7f58fb4e5fe0a792bc4ee656322b29ba4a13b4b00f927ca35c38cb8d49a12cad0124943e6f20080923f7265c2c18d0081b26e68eccdb8c8fb0ec2d5d312a7337 next_version=189 time=9.270059ms accesses_build_time=765.164µs finishing_session_time=8.060808ms +2026-04-20T15:37:39.687752Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="66c9544bc71520674ed4fa7cffcd062f6b4d5ed8cab706f46eec7b33abbe50a92b33ee6784b3665528303e8c2e681172efbcc5a3d5f2b1489867b9f44ca49cb5" next_state_root="7f58fb4e5fe0a792bc4ee656322b29ba4a13b4b00f927ca35c38cb8d49a12cad0124943e6f20080923f7265c2c18d0081b26e68eccdb8c8fb0ec2d5d312a7337" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:37:39.691519Z DEBUG sov_stf_runner::runner: Block execution complete time=2.972207172s +2026-04-20T15:37:39.691628Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:37:39.692548Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 189, latest_finalized_slot_number: 188, sync_status: Syncing { synced_da_height: 188, target_da_height: 189 }, .. } +2026-04-20T15:37:39.693260Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:37:39.693972Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=185 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 189, latest_finalized_slot_number: 188, sync_status: Syncing { synced_da_height: 188, target_da_height: 189 }, .. } +2026-04-20T15:37:39.694003Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:37:39.694968Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=185 +2026-04-20T15:37:39.697967Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:37:39.699009Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=181 +2026-04-20T15:37:39.700853Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=186 +2026-04-20T15:37:39.701733Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:37:39.703176Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=186 sequence_number=203 +2026-04-20T15:37:39.703342Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=203 blob_id=2147897850530871547248484226251072161 visible_slot_number_after_increase=186 visible_slots_to_advance=1 +2026-04-20T15:37:39.703448Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:39.708001Z DEBUG compute_state_update{scope="sequencer" rollup_height=186 slot_number=186}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7f58fb4e5fe0a792bc4ee656322b29ba4a13b4b00f927ca35c38cb8d49a12cad0124943e6f20080923f7265c2c18d0081b26e68eccdb8c8fb0ec2d5d312a7337 next_version=190 sesssion_starting_time=285.089µs +2026-04-20T15:37:39.710964Z DEBUG manage_blob_submission_inside_task{blob_id=2147897850530871547248484226251072161 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xf3b058f695f13f2410c74b6c4f457cbdce13bdc7235bd590c39002b99ca94fd9 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=190 include_at=190 bytes=13 time=1.807078ms +2026-04-20T15:37:39.713278Z DEBUG compute_state_update{scope="sequencer" rollup_height=186 slot_number=186}: sov_state::nomt::prover_storage: computed next state root state_root=4d5bfda8d8adec9a40e46f172ed42e2690d1ab586cc1098bf830fe22dba8d1615d8556079f8f79bf114cc49aca76f2a955b35ec86a5a5833ba11de75bea12971 next_version=190 time=5.975471ms accesses_build_time=399.908µs finishing_session_time=5.120847ms +2026-04-20T15:37:40.217993Z DEBUG sp1_core_executor_runner::native: CHILD sp1_M34u311jTnOI7zS4IzLkvw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:37:40.257439Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:37:40.269693Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1830487 cycles +2026-04-20T15:37:40.272379Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [66, 59, 12, 120, 36, 85, 125, 238, 43, 46, 80, 54, 85, 202, 42, 18, 246, 122, 90, 23, 17, 167, 252, 51, 94, 47, 179, 114, 17, 58, 132, 196, 102, 1, 94, 104, 236, 127, 34, 211, 183, 169, 112, 138, 233, 121, 74, 220, 250, 20, 175, 81, 218, 115, 80, 199, 176, 192, 111, 113, 69, 196, 194, 238, 110, 213, 116, 178, 218, 99, 20, 13, 175, 162, 86, 208, 62, 170, 212, 168, 247, 80, 232, 123, 32, 178, 122, 218, 248, 189, 73, 69, 216, 39, 121, 68, 119, 245, 211, 74, 99, 73, 225, 15, 22, 153, 118, 177, 125, 101, 102, 89, 18, 192, 17, 212, 235, 145, 98, 107, 236, 96, 188, 225, 221, 20, 148, 83, 69, 109, 35, 71, 98, 236, 90, 3, 110, 255, 198, 99, 33, 198, 111, 231, 38, 3, 51, 135, 136, 37, 236, 5, 101, 137, 155, 162, 132, 87, 111, 232, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:37:40.918467Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:37:40.918553Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:37:42.655898Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=190 prev_hash=0x3bd677f5a8be87b8598adf66529644aef53fe740b8c006115467b18ffb1aa36c hash=0xcc0833229c08d340057094b103e24d110322bb453d46b34ec8d5d881b6ea67e3 producing_time=2.967161ms +2026-04-20T15:37:42.665132Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=190 current_state_root="7f58fb4e5fe0a792bc4ee656322b29ba4a13b4b00f927ca35c38cb8d49a12cad0124943e6f20080923f7265c2c18d0081b26e68eccdb8c8fb0ec2d5d312a7337" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf3b058f695f13f2410c74b6c4f457cbdce13bdc7235bd590c39002b99ca94fd9"] proof_blobs=[] +2026-04-20T15:37:42.673928Z DEBUG StfBlueprint::apply_slot{context=Node da_height=190}: sov_chain_state: Setting next visible slot number next_visible_slot_number=186 +2026-04-20T15:37:42.680183Z DEBUG StfBlueprint::apply_slot{context=Node da_height=190}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xf3b058f695f13f2410c74b6c4f457cbdce13bdc7235bd590c39002b99ca94fd9}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:42.682494Z DEBUG StfBlueprint::apply_slot{context=Node da_height=190}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7f58fb4e5fe0a792bc4ee656322b29ba4a13b4b00f927ca35c38cb8d49a12cad0124943e6f20080923f7265c2c18d0081b26e68eccdb8c8fb0ec2d5d312a7337 next_version=190 sesssion_starting_time=325.868µs +2026-04-20T15:37:42.690031Z DEBUG StfBlueprint::apply_slot{context=Node da_height=190}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4d5bfda8d8adec9a40e46f172ed42e2690d1ab586cc1098bf830fe22dba8d16156149344fc04a070c0c1779ff12a18d8dc75f6535f4bcc9f3f3c9f72e6e8e9b2 next_version=190 time=8.641274ms accesses_build_time=767.405µs finishing_session_time=7.393023ms +2026-04-20T15:37:42.691800Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="66c9544bc71520674ed4fa7cffcd062f6b4d5ed8cab706f46eec7b33abbe50a92b33ee6784b3665528303e8c2e681172efbcc5a3d5f2b1489867b9f44ca49cb5" next_state_root="4d5bfda8d8adec9a40e46f172ed42e2690d1ab586cc1098bf830fe22dba8d16156149344fc04a070c0c1779ff12a18d8dc75f6535f4bcc9f3f3c9f72e6e8e9b2" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:37:42.697625Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 190, latest_finalized_slot_number: 189, sync_status: Syncing { synced_da_height: 189, target_da_height: 190 }, .. } +2026-04-20T15:37:42.699109Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=186 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 190, latest_finalized_slot_number: 189, sync_status: Syncing { synced_da_height: 189, target_da_height: 190 }, .. } +2026-04-20T15:37:42.700084Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=186 +2026-04-20T15:37:42.702729Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:37:42.703679Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=182 +2026-04-20T15:37:42.705563Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=187 +2026-04-20T15:37:42.706775Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:37:42.707713Z DEBUG sov_stf_runner::runner: Block execution complete time=3.016114938s +2026-04-20T15:37:42.707759Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:37:42.708497Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=187 sequence_number=204 +2026-04-20T15:37:42.708783Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:42.708867Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=204 blob_id=2147897854163737017754048096067786716 visible_slot_number_after_increase=187 visible_slots_to_advance=1 +2026-04-20T15:37:42.710150Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:37:42.710780Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:37:42.712997Z DEBUG compute_state_update{scope="sequencer" rollup_height=187 slot_number=187}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:37:42.713350Z DEBUG compute_state_update{scope="sequencer" rollup_height=187 slot_number=187}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4d5bfda8d8adec9a40e46f172ed42e2690d1ab586cc1098bf830fe22dba8d16156149344fc04a070c0c1779ff12a18d8dc75f6535f4bcc9f3f3c9f72e6e8e9b2 next_version=191 sesssion_starting_time=362.308µs +2026-04-20T15:37:42.716230Z DEBUG manage_blob_submission_inside_task{blob_id=2147897854163737017754048096067786716 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xea74d844b3da4cf519a58904db465a903ea5cee93e60c6de761f140a8f5f8e43 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=191 include_at=191 bytes=13 time=1.679559ms +2026-04-20T15:37:42.719378Z DEBUG compute_state_update{scope="sequencer" rollup_height=187 slot_number=187}: sov_state::nomt::prover_storage: computed next state root state_root=423225b7d14cdd89302d09bba8a604a04999d527e1861006f687a6ccd407140826a4de9518b0914717bbcedfb07a34ae94ba7475de0d8bc43832073f7bcee564 next_version=191 time=6.767586ms accesses_build_time=369.337µs finishing_session_time=5.928191ms +2026-04-20T15:37:43.159414Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xgK6wfywRW26UHoMgb6Ysw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:37:43.201392Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:37:43.213956Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1902804 cycles +2026-04-20T15:37:43.216644Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [93, 220, 234, 161, 7, 107, 137, 204, 53, 244, 219, 17, 114, 214, 121, 106, 67, 43, 113, 197, 209, 146, 206, 6, 160, 164, 204, 157, 118, 108, 250, 15, 125, 16, 47, 1, 10, 166, 68, 135, 52, 137, 75, 91, 74, 209, 253, 126, 200, 33, 69, 229, 250, 228, 239, 185, 11, 105, 118, 191, 34, 189, 205, 3, 12, 56, 164, 240, 179, 225, 127, 130, 44, 162, 176, 55, 82, 254, 69, 220, 90, 58, 153, 114, 120, 164, 5, 44, 181, 122, 253, 1, 15, 152, 181, 128, 114, 162, 92, 10, 248, 96, 198, 31, 26, 129, 159, 25, 179, 116, 208, 87, 139, 79, 92, 86, 128, 15, 232, 148, 122, 96, 63, 199, 135, 49, 90, 169, 134, 104, 81, 181, 59, 187, 131, 192, 170, 244, 205, 249, 211, 233, 222, 151, 127, 225, 250, 211, 190, 193, 50, 232, 75, 214, 234, 225, 250, 243, 184, 223, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:37:43.886009Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:37:43.886091Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:37:45.660230Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=191 prev_hash=0xcc0833229c08d340057094b103e24d110322bb453d46b34ec8d5d881b6ea67e3 hash=0x5c14b150f7d661ba8acdfc4fa558bc068047566322dad40ea3bc0568baf03298 producing_time=3.17169ms +2026-04-20T15:37:45.671777Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=191 current_state_root="4d5bfda8d8adec9a40e46f172ed42e2690d1ab586cc1098bf830fe22dba8d16156149344fc04a070c0c1779ff12a18d8dc75f6535f4bcc9f3f3c9f72e6e8e9b2" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xea74d844b3da4cf519a58904db465a903ea5cee93e60c6de761f140a8f5f8e43"] proof_blobs=[] +2026-04-20T15:37:45.682386Z DEBUG StfBlueprint::apply_slot{context=Node da_height=191}: sov_chain_state: Setting next visible slot number next_visible_slot_number=187 +2026-04-20T15:37:45.690466Z DEBUG StfBlueprint::apply_slot{context=Node da_height=191}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xea74d844b3da4cf519a58904db465a903ea5cee93e60c6de761f140a8f5f8e43}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:45.693517Z DEBUG StfBlueprint::apply_slot{context=Node da_height=191}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4d5bfda8d8adec9a40e46f172ed42e2690d1ab586cc1098bf830fe22dba8d16156149344fc04a070c0c1779ff12a18d8dc75f6535f4bcc9f3f3c9f72e6e8e9b2 next_version=191 sesssion_starting_time=420.717µs +2026-04-20T15:37:45.702665Z DEBUG StfBlueprint::apply_slot{context=Node da_height=191}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=423225b7d14cdd89302d09bba8a604a04999d527e1861006f687a6ccd407140868428196f7b2f46869358ea1e7000e60d7d66158a01057f0df55f6e27f3323ff next_version=191 time=10.68726ms accesses_build_time=1.074473ms finishing_session_time=8.945082ms +2026-04-20T15:37:45.704693Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="7f58fb4e5fe0a792bc4ee656322b29ba4a13b4b00f927ca35c38cb8d49a12cad0124943e6f20080923f7265c2c18d0081b26e68eccdb8c8fb0ec2d5d312a7337" next_state_root="423225b7d14cdd89302d09bba8a604a04999d527e1861006f687a6ccd407140868428196f7b2f46869358ea1e7000e60d7d66158a01057f0df55f6e27f3323ff" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:37:45.710794Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 191, latest_finalized_slot_number: 191, sync_status: Syncing { synced_da_height: 190, target_da_height: 191 }, .. } +2026-04-20T15:37:45.712176Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=187 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 191, latest_finalized_slot_number: 191, sync_status: Syncing { synced_da_height: 190, target_da_height: 191 }, .. } +2026-04-20T15:37:45.713111Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=187 +2026-04-20T15:37:45.715676Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:37:45.716659Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=183 +2026-04-20T15:37:45.717776Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=188 +2026-04-20T15:37:45.718175Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:37:45.718932Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=188 sequence_number=205 +2026-04-20T15:37:45.719095Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:45.719350Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=205 blob_id=2147897857802610803493997856230440105 visible_slot_number_after_increase=188 visible_slots_to_advance=1 +2026-04-20T15:37:45.725980Z DEBUG manage_blob_submission_inside_task{blob_id=2147897857802610803493997856230440105 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xb0f3f8c1c2b31f8607e7f1ccb2e14592c4b92635b803983264c01f57a89f83cf sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=192 include_at=192 bytes=13 time=1.834128ms +2026-04-20T15:37:45.726951Z DEBUG compute_state_update{scope="sequencer" rollup_height=188 slot_number=188}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:37:45.727261Z DEBUG compute_state_update{scope="sequencer" rollup_height=188 slot_number=188}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=423225b7d14cdd89302d09bba8a604a04999d527e1861006f687a6ccd407140868428196f7b2f46869358ea1e7000e60d7d66158a01057f0df55f6e27f3323ff next_version=192 sesssion_starting_time=5.149197ms +2026-04-20T15:37:45.732850Z DEBUG compute_state_update{scope="sequencer" rollup_height=188 slot_number=188}: sov_state::nomt::prover_storage: computed next state root state_root=7bcfb77697a11f8950c6f0935aa869e83272af4a20e09154ae7fc4f386c67f17609eafb6f6db7777d461c3bc450551ada19b41eeb319ba5ac7c2405a9c544843 next_version=192 time=11.108298ms accesses_build_time=363.267µs finishing_session_time=5.504644ms +2026-04-20T15:37:45.740219Z DEBUG sov_stf_runner::runner: Block execution complete time=3.032465482s +2026-04-20T15:37:45.740303Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:37:45.742933Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:37:45.743702Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:37:46.171912Z DEBUG sp1_core_executor_runner::native: CHILD sp1_g85mW21sQlSty4P2RkrZGg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:37:46.212700Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:37:46.224734Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1861841 cycles +2026-04-20T15:37:46.227596Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [85, 252, 13, 102, 130, 181, 22, 86, 68, 67, 250, 0, 226, 130, 5, 119, 166, 158, 129, 251, 51, 89, 209, 80, 204, 48, 0, 214, 228, 229, 90, 25, 1, 19, 145, 206, 217, 154, 171, 12, 198, 59, 154, 166, 132, 118, 232, 210, 188, 31, 163, 144, 127, 126, 155, 217, 1, 7, 242, 162, 45, 154, 45, 207, 28, 123, 51, 144, 74, 75, 233, 136, 192, 164, 229, 110, 28, 156, 55, 248, 63, 60, 187, 87, 46, 116, 86, 47, 38, 153, 206, 112, 131, 14, 95, 21, 102, 241, 156, 50, 199, 228, 162, 214, 131, 254, 170, 111, 34, 96, 170, 116, 29, 24, 199, 1, 182, 72, 51, 18, 103, 244, 54, 145, 111, 195, 9, 29, 37, 107, 17, 84, 172, 33, 22, 214, 217, 214, 232, 73, 129, 103, 243, 152, 223, 254, 38, 49, 227, 39, 235, 180, 147, 168, 209, 178, 194, 223, 27, 157, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:37:46.889310Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:37:46.889400Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:37:48.670650Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=192 prev_hash=0x5c14b150f7d661ba8acdfc4fa558bc068047566322dad40ea3bc0568baf03298 hash=0xa54e249453e71f538277040430ff5cc33a7bd6bff5e69e1359de97571ffacc93 producing_time=9.27324ms +2026-04-20T15:37:48.682954Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=192 current_state_root="423225b7d14cdd89302d09bba8a604a04999d527e1861006f687a6ccd407140868428196f7b2f46869358ea1e7000e60d7d66158a01057f0df55f6e27f3323ff" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xb0f3f8c1c2b31f8607e7f1ccb2e14592c4b92635b803983264c01f57a89f83cf"] proof_blobs=[] +2026-04-20T15:37:48.690999Z DEBUG StfBlueprint::apply_slot{context=Node da_height=192}: sov_chain_state: Setting next visible slot number next_visible_slot_number=188 +2026-04-20T15:37:48.696893Z DEBUG StfBlueprint::apply_slot{context=Node da_height=192}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xb0f3f8c1c2b31f8607e7f1ccb2e14592c4b92635b803983264c01f57a89f83cf}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:48.699052Z DEBUG StfBlueprint::apply_slot{context=Node da_height=192}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=423225b7d14cdd89302d09bba8a604a04999d527e1861006f687a6ccd407140868428196f7b2f46869358ea1e7000e60d7d66158a01057f0df55f6e27f3323ff next_version=192 sesssion_starting_time=221.878µs +2026-04-20T15:37:48.705740Z DEBUG StfBlueprint::apply_slot{context=Node da_height=192}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=7bcfb77697a11f8950c6f0935aa869e83272af4a20e09154ae7fc4f386c67f176f54189643105363426a1d1cda32a57ac1ef6db9006ae70845a26cef7bf57b34 next_version=192 time=7.6965ms accesses_build_time=775.015µs finishing_session_time=6.544747ms +2026-04-20T15:37:48.706996Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="423225b7d14cdd89302d09bba8a604a04999d527e1861006f687a6ccd407140868428196f7b2f46869358ea1e7000e60d7d66158a01057f0df55f6e27f3323ff" next_state_root="7bcfb77697a11f8950c6f0935aa869e83272af4a20e09154ae7fc4f386c67f176f54189643105363426a1d1cda32a57ac1ef6db9006ae70845a26cef7bf57b34" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:37:48.711387Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 192, latest_finalized_slot_number: 192, sync_status: Syncing { synced_da_height: 191, target_da_height: 192 }, .. } +2026-04-20T15:37:48.712793Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=188 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 192, latest_finalized_slot_number: 192, sync_status: Syncing { synced_da_height: 191, target_da_height: 192 }, .. } +2026-04-20T15:37:48.713701Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=188 +2026-04-20T15:37:48.716186Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:37:48.717178Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=184 +2026-04-20T15:37:48.718536Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=189 +2026-04-20T15:37:48.719190Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:37:48.720146Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=189 sequence_number=206 +2026-04-20T15:37:48.720337Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:48.720433Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=206 blob_id=2147897861431749774244515254071299564 visible_slot_number_after_increase=189 visible_slots_to_advance=1 +2026-04-20T15:37:48.726055Z DEBUG compute_state_update{scope="sequencer" rollup_height=189 slot_number=189}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:37:48.726367Z DEBUG compute_state_update{scope="sequencer" rollup_height=189 slot_number=189}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7bcfb77697a11f8950c6f0935aa869e83272af4a20e09154ae7fc4f386c67f176f54189643105363426a1d1cda32a57ac1ef6db9006ae70845a26cef7bf57b34 next_version=193 sesssion_starting_time=2.841101ms +2026-04-20T15:37:48.726561Z DEBUG manage_blob_submission_inside_task{blob_id=2147897861431749774244515254071299564 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x4459a32ca60f6885def8126e9c8ae7d61815ebf1f4021d59f6c6da6898b9364a sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=193 include_at=193 bytes=13 time=1.668059ms +2026-04-20T15:37:48.726761Z DEBUG sov_stf_runner::runner: Block execution complete time=2.98647196s +2026-04-20T15:37:48.726833Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:37:48.729607Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:37:48.730017Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:37:48.731201Z DEBUG compute_state_update{scope="sequencer" rollup_height=189 slot_number=189}: sov_state::nomt::prover_storage: computed next state root state_root=3edde1eeb60083f7a9b1b45a3354fa87e400fed4a78b6c4ac08924702d7eeaef53400e10a30c845201a07da06d2d8749ae640377a50b339229b7ba66ae535152 next_version=193 time=8.061818ms accesses_build_time=377.758µs finishing_session_time=4.736649ms +2026-04-20T15:37:49.297130Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RuIfUOEWS92aRLR1wa_4Iw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:37:49.339697Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:37:49.351505Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1908115 cycles +2026-04-20T15:37:49.354096Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [98, 136, 132, 9, 34, 224, 186, 109, 244, 7, 162, 97, 42, 114, 252, 8, 82, 224, 47, 23, 179, 125, 193, 188, 237, 97, 209, 12, 33, 98, 152, 171, 70, 33, 70, 201, 4, 63, 171, 177, 158, 162, 84, 245, 146, 15, 107, 80, 49, 242, 254, 157, 221, 224, 153, 45, 98, 44, 29, 228, 197, 190, 245, 51, 26, 40, 150, 250, 47, 245, 41, 133, 43, 121, 48, 104, 62, 92, 208, 156, 87, 137, 26, 23, 59, 118, 217, 198, 188, 91, 49, 228, 241, 223, 74, 226, 95, 126, 246, 79, 124, 11, 205, 0, 145, 187, 120, 86, 60, 209, 72, 138, 73, 1, 144, 80, 26, 210, 96, 222, 18, 2, 59, 19, 230, 94, 12, 253, 12, 45, 250, 122, 196, 123, 152, 215, 132, 222, 206, 118, 185, 16, 88, 3, 254, 186, 164, 133, 164, 134, 1, 60, 68, 115, 247, 147, 85, 108, 201, 114, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:37:50.027422Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:37:50.027501Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:37:51.679982Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=193 prev_hash=0xa54e249453e71f538277040430ff5cc33a7bd6bff5e69e1359de97571ffacc93 hash=0x6e51fad157b9ddab5fd634b4bef40a646fe363e3f172d55286cfd58be08353ce producing_time=7.64621ms +2026-04-20T15:37:51.689827Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=193 current_state_root="7bcfb77697a11f8950c6f0935aa869e83272af4a20e09154ae7fc4f386c67f176f54189643105363426a1d1cda32a57ac1ef6db9006ae70845a26cef7bf57b34" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x4459a32ca60f6885def8126e9c8ae7d61815ebf1f4021d59f6c6da6898b9364a"] proof_blobs=[] +2026-04-20T15:37:51.697812Z DEBUG StfBlueprint::apply_slot{context=Node da_height=193}: sov_chain_state: Setting next visible slot number next_visible_slot_number=189 +2026-04-20T15:37:51.703570Z DEBUG StfBlueprint::apply_slot{context=Node da_height=193}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x4459a32ca60f6885def8126e9c8ae7d61815ebf1f4021d59f6c6da6898b9364a}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:51.705752Z DEBUG StfBlueprint::apply_slot{context=Node da_height=193}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7bcfb77697a11f8950c6f0935aa869e83272af4a20e09154ae7fc4f386c67f176f54189643105363426a1d1cda32a57ac1ef6db9006ae70845a26cef7bf57b34 next_version=193 sesssion_starting_time=229.278µs +2026-04-20T15:37:51.713208Z DEBUG StfBlueprint::apply_slot{context=Node da_height=193}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3edde1eeb60083f7a9b1b45a3354fa87e400fed4a78b6c4ac08924702d7eeaef171e12cdf0bdf26e55533ae4f9bf317477d204f9cf45c08df47dc1a22b003279 next_version=193 time=8.465055ms accesses_build_time=763.605µs finishing_session_time=7.315263ms +2026-04-20T15:37:51.714482Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="7bcfb77697a11f8950c6f0935aa869e83272af4a20e09154ae7fc4f386c67f176f54189643105363426a1d1cda32a57ac1ef6db9006ae70845a26cef7bf57b34" next_state_root="3edde1eeb60083f7a9b1b45a3354fa87e400fed4a78b6c4ac08924702d7eeaef171e12cdf0bdf26e55533ae4f9bf317477d204f9cf45c08df47dc1a22b003279" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:37:51.718979Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 193, latest_finalized_slot_number: 193, sync_status: Synced { synced_da_height: 192 }, .. } +2026-04-20T15:37:51.720434Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=189 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 193, latest_finalized_slot_number: 193, sync_status: Synced { synced_da_height: 192 }, .. } +2026-04-20T15:37:51.721390Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=189 +2026-04-20T15:37:51.723968Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:37:51.724926Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=185 +2026-04-20T15:37:51.726895Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=190 +2026-04-20T15:37:51.728130Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:37:51.729694Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=190 sequence_number=207 +2026-04-20T15:37:51.729975Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=207 blob_id=2147897865069443575780961089248781486 visible_slot_number_after_increase=190 visible_slots_to_advance=1 +2026-04-20T15:37:51.729948Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:51.734274Z DEBUG compute_state_update{scope="sequencer" rollup_height=190 slot_number=190}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:37:51.734586Z DEBUG compute_state_update{scope="sequencer" rollup_height=190 slot_number=190}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3edde1eeb60083f7a9b1b45a3354fa87e400fed4a78b6c4ac08924702d7eeaef171e12cdf0bdf26e55533ae4f9bf317477d204f9cf45c08df47dc1a22b003279 next_version=194 sesssion_starting_time=372.517µs +2026-04-20T15:37:51.734945Z DEBUG sov_stf_runner::runner: Block execution complete time=3.00812533s +2026-04-20T15:37:51.735030Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:37:51.737311Z DEBUG manage_blob_submission_inside_task{blob_id=2147897865069443575780961089248781486 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x8b510bb2bae3303b3860d10248e9148f49285cd6b79e050c61915b59cee155aa sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=194 include_at=194 bytes=13 time=1.723169ms +2026-04-20T15:37:51.739264Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:37:51.740511Z DEBUG compute_state_update{scope="sequencer" rollup_height=190 slot_number=190}: sov_state::nomt::prover_storage: computed next state root state_root=0a99fa6eac1dc2a78acc39fdf6e28747b664469126cf6c3fe62510075036785d070fd8bf70c87115a7cb15fd4588285a89c142fb68fbd7209bc5fac41ad41291 next_version=194 time=6.680177ms accesses_build_time=376.128µs finishing_session_time=5.835302ms +2026-04-20T15:37:51.740620Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:37:52.172489Z DEBUG sp1_core_executor_runner::native: CHILD sp1_oDAHCQHNTumFR9WctRDKzg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:37:52.215276Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:37:52.224893Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1952976 cycles +2026-04-20T15:37:52.227740Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [87, 111, 77, 16, 4, 250, 73, 178, 207, 147, 92, 116, 203, 217, 162, 181, 178, 230, 157, 178, 127, 197, 81, 178, 187, 191, 76, 95, 8, 177, 5, 209, 66, 112, 135, 66, 229, 201, 50, 212, 242, 91, 101, 61, 158, 83, 179, 150, 103, 89, 227, 91, 215, 83, 137, 146, 115, 68, 4, 115, 110, 75, 40, 185, 14, 156, 148, 44, 57, 160, 178, 152, 60, 113, 126, 37, 52, 130, 113, 80, 153, 6, 246, 161, 55, 8, 207, 243, 243, 40, 135, 158, 227, 164, 161, 96, 6, 115, 230, 44, 162, 122, 77, 253, 149, 69, 149, 205, 242, 111, 91, 205, 179, 180, 248, 152, 235, 196, 122, 246, 180, 80, 23, 149, 11, 114, 39, 193, 169, 52, 124, 48, 112, 225, 146, 200, 17, 218, 234, 182, 10, 111, 244, 10, 206, 127, 131, 199, 71, 205, 161, 32, 190, 218, 39, 54, 66, 45, 93, 121, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:37:52.919653Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:37:52.919764Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:37:54.684145Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=194 prev_hash=0x6e51fad157b9ddab5fd634b4bef40a646fe363e3f172d55286cfd58be08353ce hash=0x4497b871748a3272a0ec6165b480eafb22625330d5e4c971fea0bc497f5b9ed0 producing_time=3.186789ms +2026-04-20T15:37:54.688124Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=194 current_state_root="3edde1eeb60083f7a9b1b45a3354fa87e400fed4a78b6c4ac08924702d7eeaef171e12cdf0bdf26e55533ae4f9bf317477d204f9cf45c08df47dc1a22b003279" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x8b510bb2bae3303b3860d10248e9148f49285cd6b79e050c61915b59cee155aa"] proof_blobs=[] +2026-04-20T15:37:54.696512Z DEBUG StfBlueprint::apply_slot{context=Node da_height=194}: sov_chain_state: Setting next visible slot number next_visible_slot_number=190 +2026-04-20T15:37:54.702467Z DEBUG StfBlueprint::apply_slot{context=Node da_height=194}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x8b510bb2bae3303b3860d10248e9148f49285cd6b79e050c61915b59cee155aa}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:54.704727Z DEBUG StfBlueprint::apply_slot{context=Node da_height=194}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3edde1eeb60083f7a9b1b45a3354fa87e400fed4a78b6c4ac08924702d7eeaef171e12cdf0bdf26e55533ae4f9bf317477d204f9cf45c08df47dc1a22b003279 next_version=194 sesssion_starting_time=241.198µs +2026-04-20T15:37:54.712643Z DEBUG StfBlueprint::apply_slot{context=Node da_height=194}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=0a99fa6eac1dc2a78acc39fdf6e28747b664469126cf6c3fe62510075036785d3f56568ec2ad67a2fb14a1bb36d07d7e4ce8de1bccab033b84fee8ed398b54f1 next_version=194 time=8.934342ms accesses_build_time=763.165µs finishing_session_time=7.76247ms +2026-04-20T15:37:54.713957Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3edde1eeb60083f7a9b1b45a3354fa87e400fed4a78b6c4ac08924702d7eeaef171e12cdf0bdf26e55533ae4f9bf317477d204f9cf45c08df47dc1a22b003279" next_state_root="0a99fa6eac1dc2a78acc39fdf6e28747b664469126cf6c3fe62510075036785d3f56568ec2ad67a2fb14a1bb36d07d7e4ce8de1bccab033b84fee8ed398b54f1" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:37:54.717677Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 194, latest_finalized_slot_number: 194, sync_status: Synced { synced_da_height: 193 }, .. } +2026-04-20T15:37:54.718383Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=190 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 194, latest_finalized_slot_number: 194, sync_status: Synced { synced_da_height: 193 }, .. } +2026-04-20T15:37:54.718840Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=190 +2026-04-20T15:37:54.720134Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:37:54.720605Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=186 +2026-04-20T15:37:54.722018Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=191 +2026-04-20T15:37:54.722897Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:37:54.724236Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=191 sequence_number=208 +2026-04-20T15:37:54.724466Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:54.724636Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=208 blob_id=2147897868690147150477981614681919609 visible_slot_number_after_increase=191 visible_slots_to_advance=1 +2026-04-20T15:37:54.729742Z DEBUG compute_state_update{scope="sequencer" rollup_height=191 slot_number=191}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:37:54.729918Z DEBUG compute_state_update{scope="sequencer" rollup_height=191 slot_number=191}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0a99fa6eac1dc2a78acc39fdf6e28747b664469126cf6c3fe62510075036785d3f56568ec2ad67a2fb14a1bb36d07d7e4ce8de1bccab033b84fee8ed398b54f1 next_version=195 sesssion_starting_time=1.838528ms +2026-04-20T15:37:54.730283Z DEBUG sov_stf_runner::runner: Block execution complete time=2.995277223s +2026-04-20T15:37:54.730333Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:37:54.731422Z DEBUG manage_blob_submission_inside_task{blob_id=2147897868690147150477981614681919609 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xc0b6d6c8b3bbc8cd4502e0f9b573cdcd27efacdd5d4cff4ff1f44597c32c3102 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=195 include_at=195 bytes=13 time=1.587689ms +2026-04-20T15:37:54.732713Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:37:54.733407Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:37:54.735205Z DEBUG compute_state_update{scope="sequencer" rollup_height=191 slot_number=191}: sov_state::nomt::prover_storage: computed next state root state_root=4ddfdb154d6aed167768ff89b3194ff2b18f126ec4fc1c34f529b5f2f9f6dcbb562e139acff0931a6b8242961030b7d0232d7c440416c80e4fd6c834c09ba6d1 next_version=195 time=7.339623ms accesses_build_time=207.709µs finishing_session_time=5.235116ms +2026-04-20T15:37:55.237989Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gNLFDyWsT3C-XLDKuU4mgw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:37:55.307488Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:37:55.319387Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4284700 cycles +2026-04-20T15:37:55.320655Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [126, 117, 212, 120, 104, 194, 19, 40, 239, 130, 190, 111, 27, 216, 202, 188, 51, 206, 102, 203, 82, 40, 227, 152, 117, 131, 32, 119, 195, 105, 250, 88, 65, 163, 156, 94, 178, 148, 124, 30, 35, 68, 227, 235, 172, 13, 222, 217, 26, 73, 245, 75, 29, 23, 221, 107, 66, 107, 110, 137, 234, 43, 93, 92, 71, 88, 131, 129, 115, 93, 237, 203, 179, 96, 236, 187, 155, 173, 42, 128, 83, 142, 145, 72, 23, 52, 179, 219, 93, 195, 74, 46, 29, 231, 197, 113, 112, 123, 9, 123, 100, 251, 127, 118, 131, 169, 176, 120, 57, 212, 253, 198, 77, 235, 64, 131, 148, 164, 131, 146, 139, 141, 72, 125, 24, 135, 176, 196, 3, 89, 247, 197, 161, 251, 114, 239, 166, 131, 107, 107, 124, 97, 147, 15, 106, 249, 61, 210, 7, 119, 29, 92, 155, 130, 47, 217, 213, 125, 9, 190, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:37:56.820181Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:37:56.820263Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:37:57.688936Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=195 prev_hash=0x4497b871748a3272a0ec6165b480eafb22625330d5e4c971fea0bc497f5b9ed0 hash=0x1faa729f393d31c8ddcb48615c5a0d94b86754ec23bf0f79aeb2c556314ae4b4 producing_time=3.256509ms +2026-04-20T15:37:57.693169Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=195 current_state_root="0a99fa6eac1dc2a78acc39fdf6e28747b664469126cf6c3fe62510075036785d3f56568ec2ad67a2fb14a1bb36d07d7e4ce8de1bccab033b84fee8ed398b54f1" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc0b6d6c8b3bbc8cd4502e0f9b573cdcd27efacdd5d4cff4ff1f44597c32c3102"] proof_blobs=[] +2026-04-20T15:37:57.701376Z DEBUG StfBlueprint::apply_slot{context=Node da_height=195}: sov_chain_state: Setting next visible slot number next_visible_slot_number=191 +2026-04-20T15:37:57.707171Z DEBUG StfBlueprint::apply_slot{context=Node da_height=195}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xc0b6d6c8b3bbc8cd4502e0f9b573cdcd27efacdd5d4cff4ff1f44597c32c3102}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:57.709357Z DEBUG StfBlueprint::apply_slot{context=Node da_height=195}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0a99fa6eac1dc2a78acc39fdf6e28747b664469126cf6c3fe62510075036785d3f56568ec2ad67a2fb14a1bb36d07d7e4ce8de1bccab033b84fee8ed398b54f1 next_version=195 sesssion_starting_time=292.908µs +2026-04-20T15:37:57.717512Z DEBUG StfBlueprint::apply_slot{context=Node da_height=195}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4ddfdb154d6aed167768ff89b3194ff2b18f126ec4fc1c34f529b5f2f9f6dcbb2753fb2f5301a390416b5476a92250f546dd22eb1f02e8903c2e7ee5b92eedaf next_version=195 time=9.22363ms accesses_build_time=764.695µs finishing_session_time=8.031148ms +2026-04-20T15:37:57.718773Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="0a99fa6eac1dc2a78acc39fdf6e28747b664469126cf6c3fe62510075036785d3f56568ec2ad67a2fb14a1bb36d07d7e4ce8de1bccab033b84fee8ed398b54f1" next_state_root="4ddfdb154d6aed167768ff89b3194ff2b18f126ec4fc1c34f529b5f2f9f6dcbb2753fb2f5301a390416b5476a92250f546dd22eb1f02e8903c2e7ee5b92eedaf" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:37:57.723567Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 195, latest_finalized_slot_number: 195, sync_status: Synced { synced_da_height: 194 }, .. } +2026-04-20T15:37:57.725052Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=191 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 195, latest_finalized_slot_number: 195, sync_status: Synced { synced_da_height: 194 }, .. } +2026-04-20T15:37:57.726046Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=191 +2026-04-20T15:37:57.728959Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:37:57.729936Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=187 +2026-04-20T15:37:57.731707Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=192 +2026-04-20T15:37:57.732646Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:37:57.734327Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=192 sequence_number=209 +2026-04-20T15:37:57.734613Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:37:57.734670Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=209 blob_id=2147897872329027163644027548264827267 visible_slot_number_after_increase=192 visible_slots_to_advance=1 +2026-04-20T15:37:57.738838Z DEBUG sov_stf_runner::runner: Block execution complete time=3.008508858s +2026-04-20T15:37:57.738895Z DEBUG compute_state_update{scope="sequencer" rollup_height=192 slot_number=192}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:37:57.738958Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:37:57.739202Z DEBUG compute_state_update{scope="sequencer" rollup_height=192 slot_number=192}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4ddfdb154d6aed167768ff89b3194ff2b18f126ec4fc1c34f529b5f2f9f6dcbb2753fb2f5301a390416b5476a92250f546dd22eb1f02e8903c2e7ee5b92eedaf next_version=196 sesssion_starting_time=313.758µs +2026-04-20T15:37:57.741447Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:37:57.741549Z DEBUG manage_blob_submission_inside_task{blob_id=2147897872329027163644027548264827267 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x594ac73fe117b0a83eb096f8dc5775e702e4937bbcebb81e2f97eaaba95aa1bf sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=196 include_at=196 bytes=13 time=1.404641ms +2026-04-20T15:37:57.742225Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:37:57.744893Z DEBUG compute_state_update{scope="sequencer" rollup_height=192 slot_number=192}: sov_state::nomt::prover_storage: computed next state root state_root=7425ea9311d171964008b7b08ab916cb7c18d5f268044346f2326bb7161f4a8c0033c12dd603f839e485f2587ba9fb3f63d51d6f89ddd7ed47c779c6c9c66102 next_version=196 time=6.404368ms accesses_build_time=391.487µs finishing_session_time=5.605564ms +2026-04-20T15:37:58.183805Z DEBUG sp1_core_executor_runner::native: CHILD sp1_PMsAdyu8TLewRBorLdYRFw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:37:58.225568Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:37:58.236875Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1896315 cycles +2026-04-20T15:37:58.239436Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [102, 201, 84, 75, 199, 21, 32, 103, 78, 212, 250, 124, 255, 205, 6, 47, 107, 77, 94, 216, 202, 183, 6, 244, 110, 236, 123, 51, 171, 190, 80, 169, 43, 51, 238, 103, 132, 179, 102, 85, 40, 48, 62, 140, 46, 104, 17, 114, 239, 188, 197, 163, 213, 242, 177, 72, 152, 103, 185, 244, 76, 164, 156, 181, 11, 79, 127, 22, 96, 133, 29, 193, 115, 131, 156, 223, 77, 42, 228, 189, 92, 84, 53, 2, 173, 137, 156, 56, 209, 162, 26, 173, 172, 103, 10, 236, 28, 118, 73, 1, 108, 192, 183, 211, 168, 130, 13, 209, 147, 177, 186, 2, 155, 61, 178, 49, 95, 183, 168, 178, 164, 161, 148, 102, 237, 244, 97, 112, 59, 214, 119, 245, 168, 190, 135, 184, 89, 138, 223, 102, 82, 150, 68, 174, 245, 63, 231, 64, 184, 192, 6, 17, 84, 103, 177, 143, 251, 26, 163, 108, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:37:58.910258Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:37:58.910356Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:38:00.693682Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=196 prev_hash=0x1faa729f393d31c8ddcb48615c5a0d94b86754ec23bf0f79aeb2c556314ae4b4 hash=0xa54319cef1c4957dc70c39e6e7142b2f0f1882b9d0611892b2f5fb2d797d090a producing_time=3.441878ms +2026-04-20T15:38:00.701599Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=196 current_state_root="4ddfdb154d6aed167768ff89b3194ff2b18f126ec4fc1c34f529b5f2f9f6dcbb2753fb2f5301a390416b5476a92250f546dd22eb1f02e8903c2e7ee5b92eedaf" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x594ac73fe117b0a83eb096f8dc5775e702e4937bbcebb81e2f97eaaba95aa1bf"] proof_blobs=[] +2026-04-20T15:38:00.710606Z DEBUG StfBlueprint::apply_slot{context=Node da_height=196}: sov_chain_state: Setting next visible slot number next_visible_slot_number=192 +2026-04-20T15:38:00.716949Z DEBUG StfBlueprint::apply_slot{context=Node da_height=196}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x594ac73fe117b0a83eb096f8dc5775e702e4937bbcebb81e2f97eaaba95aa1bf}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:00.719329Z DEBUG StfBlueprint::apply_slot{context=Node da_height=196}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4ddfdb154d6aed167768ff89b3194ff2b18f126ec4fc1c34f529b5f2f9f6dcbb2753fb2f5301a390416b5476a92250f546dd22eb1f02e8903c2e7ee5b92eedaf next_version=196 sesssion_starting_time=331.538µs +2026-04-20T15:38:00.726936Z DEBUG StfBlueprint::apply_slot{context=Node da_height=196}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=7425ea9311d171964008b7b08ab916cb7c18d5f268044346f2326bb7161f4a8c201e042feffb55cec3d5ee92acf69a111477e0c7d8349f687c8a6ed2aeb042db next_version=196 time=8.748143ms accesses_build_time=781.505µs finishing_session_time=7.474792ms +2026-04-20T15:38:00.728222Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4ddfdb154d6aed167768ff89b3194ff2b18f126ec4fc1c34f529b5f2f9f6dcbb2753fb2f5301a390416b5476a92250f546dd22eb1f02e8903c2e7ee5b92eedaf" next_state_root="7425ea9311d171964008b7b08ab916cb7c18d5f268044346f2326bb7161f4a8c201e042feffb55cec3d5ee92acf69a111477e0c7d8349f687c8a6ed2aeb042db" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:38:00.732815Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 196, latest_finalized_slot_number: 196, sync_status: Syncing { synced_da_height: 195, target_da_height: 196 }, .. } +2026-04-20T15:38:00.734186Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=192 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 196, latest_finalized_slot_number: 196, sync_status: Syncing { synced_da_height: 195, target_da_height: 196 }, .. } +2026-04-20T15:38:00.735093Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=192 +2026-04-20T15:38:00.737903Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:38:00.738867Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=188 +2026-04-20T15:38:00.740860Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=193 +2026-04-20T15:38:00.741837Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:38:00.743543Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=193 sequence_number=210 +2026-04-20T15:38:00.743666Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=210 blob_id=2147897875966679016084195224086285283 visible_slot_number_after_increase=193 visible_slots_to_advance=1 +2026-04-20T15:38:00.743812Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:00.748223Z DEBUG compute_state_update{scope="sequencer" rollup_height=193 slot_number=193}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:38:00.748531Z DEBUG sov_stf_runner::runner: Block execution complete time=3.00959921s +2026-04-20T15:38:00.748599Z DEBUG compute_state_update{scope="sequencer" rollup_height=193 slot_number=193}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7425ea9311d171964008b7b08ab916cb7c18d5f268044346f2326bb7161f4a8c201e042feffb55cec3d5ee92acf69a111477e0c7d8349f687c8a6ed2aeb042db next_version=197 sesssion_starting_time=372.388µs +2026-04-20T15:38:00.748656Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:38:00.750446Z DEBUG manage_blob_submission_inside_task{blob_id=2147897875966679016084195224086285283 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x1e28d0142fdc9a8fe4ec712ba28c51ae66c7fe8fea077f84f2ade61e7680470c sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=197 include_at=197 bytes=13 time=1.413761ms +2026-04-20T15:38:00.753620Z DEBUG compute_state_update{scope="sequencer" rollup_height=193 slot_number=193}: sov_state::nomt::prover_storage: computed next state root state_root=68e0d4f9607dabae149f3ed09e62b06861addbc555647df27242520ec7434e6a23483e7f74e8897e5a409cdef8cfe9ec68012467d857e4756d0c9bff3cd0cfc3 next_version=197 time=5.913961ms accesses_build_time=501.147µs finishing_session_time=4.889669ms +2026-04-20T15:38:01.215773Z DEBUG sp1_core_executor_runner::native: CHILD sp1_0fsJHBxuS6uksXwsyWEtTg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:38:01.257991Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:38:01.268828Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1902392 cycles +2026-04-20T15:38:01.271360Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [127, 88, 251, 78, 95, 224, 167, 146, 188, 78, 230, 86, 50, 43, 41, 186, 74, 19, 180, 176, 15, 146, 124, 163, 92, 56, 203, 141, 73, 161, 44, 173, 1, 36, 148, 62, 111, 32, 8, 9, 35, 247, 38, 92, 44, 24, 208, 8, 27, 38, 230, 142, 204, 219, 140, 143, 176, 236, 45, 93, 49, 42, 115, 55, 21, 238, 199, 181, 66, 227, 97, 175, 49, 207, 121, 146, 8, 118, 212, 230, 246, 103, 56, 48, 194, 155, 10, 248, 180, 251, 253, 144, 171, 189, 249, 160, 1, 137, 9, 44, 215, 234, 0, 194, 121, 222, 242, 172, 246, 193, 118, 92, 217, 10, 207, 252, 1, 67, 112, 99, 159, 195, 249, 199, 185, 241, 58, 68, 204, 8, 51, 34, 156, 8, 211, 64, 5, 112, 148, 177, 3, 226, 77, 17, 3, 34, 187, 69, 61, 70, 179, 78, 200, 213, 216, 129, 182, 234, 103, 227, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:38:01.943073Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:38:01.943156Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:38:01.992020Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:38:02.234967Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:38:02.237228Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2607482 cycles +2026-04-20T15:38:02.237734Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [181, 0, 0, 0, 0, 0, 0, 0, 190, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 108, 14, 183, 252, 106, 51, 203, 94, 41, 54, 121, 80, 129, 155, 45, 87, 101, 146, 203, 146, 58, 234, 181, 164, 63, 0, 5, 44, 223, 50, 203, 203, 85, 227, 153, 137, 1, 26, 131, 144, 148, 225, 162, 63, 238, 200, 182, 21, 87, 73, 149, 20, 176, 214, 113, 232, 72, 188, 180, 117, 250, 226, 24, 101, 21, 238, 199, 181, 66, 227, 97, 175, 49, 207, 121, 146, 8, 118, 212, 230, 246, 103, 56, 48, 194, 155, 10, 248, 180, 251, 253, 144, 171, 189, 249, 160, 1, 137, 9, 44, 215, 234, 0, 194, 121, 222, 242, 172, 246, 193, 118, 92, 217, 10, 207, 252, 1, 67, 112, 99, 159, 195, 249, 199, 185, 241, 58, 68, 47, 43, 222, 102, 57, 211, 8, 182, 121, 38, 173, 205, 204, 204, 119, 142, 120, 105, 104, 247, 213, 216, 42, 189, 179, 231, 62, 197, 158, 72, 115, 207, 204, 8, 51, 34, 156, 8, 211, 64, 5, 112, 148, 177, 3, 226, 77, 17, 3, 34, 187, 69, 61, 70, 179, 78, 200, 213, 216, 129, 182, 234, 103, 227, 32, 0, 0, 0, 0, 0, 0, 0, 33, 87, 226, 242, 39, 49, 250, 210, 41, 143, 26, 188, 101, 19, 12, 136, 43, 105, 121, 236, 80, 118, 108, 155, 63, 154, 215, 73, 15, 107, 27, 67, 32, 0, 0, 0, 0, 0, 0, 0, 54, 246, 123, 188, 67, 61, 237, 103, 16, 229, 5, 146, 113, 8, 178, 215, 95, 95, 151, 239, 106, 28, 10, 135, 55, 55, 208, 95, 86, 190, 27, 9, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:38:03.148098Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:38:03.148174Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:38:03.149094Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=1951 +2026-04-20T15:38:03.151779Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:38:03.152355Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:38:03.152695Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=211 blob_id=2147897878875335058531949808858726708 +2026-04-20T15:38:03.698076Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=197 prev_hash=0xa54319cef1c4957dc70c39e6e7142b2f0f1882b9d0611892b2f5fb2d797d090a hash=0x47ab78bdd3a1cbbc19092c14a67d949c47e233a586c127e75538835e89a6a4ea producing_time=3.07703ms +2026-04-20T15:38:03.702005Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=197 current_state_root="7425ea9311d171964008b7b08ab916cb7c18d5f268044346f2326bb7161f4a8c201e042feffb55cec3d5ee92acf69a111477e0c7d8349f687c8a6ed2aeb042db" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1e28d0142fdc9a8fe4ec712ba28c51ae66c7fe8fea077f84f2ade61e7680470c"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x09cc01c6688563e112e58bf4d47686e9cefc003a16aadf4ccc444215733d90a5, len=2001"] +2026-04-20T15:38:03.710306Z DEBUG StfBlueprint::apply_slot{context=Node da_height=197}: sov_chain_state: Setting next visible slot number next_visible_slot_number=193 +2026-04-20T15:38:03.715835Z DEBUG StfBlueprint::apply_slot{context=Node da_height=197}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x1e28d0142fdc9a8fe4ec712ba28c51ae66c7fe8fea077f84f2ade61e7680470c}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:03.718160Z DEBUG StfBlueprint::apply_slot{context=Node da_height=197}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7425ea9311d171964008b7b08ab916cb7c18d5f268044346f2326bb7161f4a8c201e042feffb55cec3d5ee92acf69a111477e0c7d8349f687c8a6ed2aeb042db next_version=197 sesssion_starting_time=283.748µs +2026-04-20T15:38:03.726846Z DEBUG StfBlueprint::apply_slot{context=Node da_height=197}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=68e0d4f9607dabae149f3ed09e62b06861addbc555647df27242520ec7434e6a6b46a831b42093ae57d46d78e1b524d38a7864fee7a3c6c472c0fe4726bb1388 next_version=197 time=9.901416ms accesses_build_time=920.924µs finishing_session_time=8.558214ms +2026-04-20T15:38:03.728177Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="7425ea9311d171964008b7b08ab916cb7c18d5f268044346f2326bb7161f4a8c201e042feffb55cec3d5ee92acf69a111477e0c7d8349f687c8a6ed2aeb042db" next_state_root="68e0d4f9607dabae149f3ed09e62b06861addbc555647df27242520ec7434e6a6b46a831b42093ae57d46d78e1b524d38a7864fee7a3c6c472c0fe4726bb1388" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:38:03.732466Z DEBUG sov_stf_runner::runner: Block execution complete time=2.983838547s +2026-04-20T15:38:03.732604Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:38:03.733335Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 197, latest_finalized_slot_number: 196, sync_status: Syncing { synced_da_height: 196, target_da_height: 197 }, .. } +2026-04-20T15:38:03.734763Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=193 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 197, latest_finalized_slot_number: 196, sync_status: Syncing { synced_da_height: 196, target_da_height: 197 }, .. } +2026-04-20T15:38:03.734840Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:38:03.735554Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:38:03.735677Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=193 +2026-04-20T15:38:03.738245Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:38:03.739178Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=189 +2026-04-20T15:38:03.741069Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=194 +2026-04-20T15:38:03.742251Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:38:03.746204Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 181. Final slot number 190 +2026-04-20T15:38:03.746874Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=194 sequence_number=212 +2026-04-20T15:38:03.747104Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:03.747195Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=212 blob_id=2147897879597066189673742923512829862 visible_slot_number_after_increase=194 visible_slots_to_advance=1 +2026-04-20T15:38:03.751577Z DEBUG compute_state_update{scope="sequencer" rollup_height=194 slot_number=194}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=68e0d4f9607dabae149f3ed09e62b06861addbc555647df27242520ec7434e6a6b46a831b42093ae57d46d78e1b524d38a7864fee7a3c6c472c0fe4726bb1388 next_version=198 sesssion_starting_time=275.958µs +2026-04-20T15:38:03.754575Z DEBUG manage_blob_submission_inside_task{blob_id=2147897879597066189673742923512829862 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x483a2a82f49b780ca43a9d9b475299b1d0e94bfd8f128c5b9a47a322dd7604cd sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=198 include_at=198 bytes=13 time=1.61296ms +2026-04-20T15:38:03.758098Z DEBUG compute_state_update{scope="sequencer" rollup_height=194 slot_number=194}: sov_state::nomt::prover_storage: computed next state root state_root=3cc7fa70c637faea816f564cda33465a1b35370042192aef3972b85ff68550ac5b4c67880c03b987d1c7e55724ad3498e0963114e177c665bb19f9b7837042cc next_version=198 time=7.262443ms accesses_build_time=456.277µs finishing_session_time=6.398128ms +2026-04-20T15:38:06.657872Z DEBUG sp1_core_executor_runner::native: CHILD sp1_mAQyXHTeQribUJyEUF9eiQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:38:06.699079Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:38:06.702561Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=198 prev_hash=0x47ab78bdd3a1cbbc19092c14a67d949c47e233a586c127e75538835e89a6a4ea hash=0x98cb53ebbb02f0a75c09f1c791454403d2574ad620c4de8bef22611b91b4239c producing_time=2.944091ms +2026-04-20T15:38:06.705610Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=198 current_state_root="68e0d4f9607dabae149f3ed09e62b06861addbc555647df27242520ec7434e6a6b46a831b42093ae57d46d78e1b524d38a7864fee7a3c6c472c0fe4726bb1388" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x483a2a82f49b780ca43a9d9b475299b1d0e94bfd8f128c5b9a47a322dd7604cd"] proof_blobs=[] +2026-04-20T15:38:06.711994Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1876304 cycles +2026-04-20T15:38:06.714572Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [77, 91, 253, 168, 216, 173, 236, 154, 64, 228, 111, 23, 46, 212, 46, 38, 144, 209, 171, 88, 108, 193, 9, 139, 248, 48, 254, 34, 219, 168, 209, 97, 86, 20, 147, 68, 252, 4, 160, 112, 192, 193, 119, 159, 241, 42, 24, 216, 220, 117, 246, 83, 95, 75, 204, 159, 63, 60, 159, 114, 230, 232, 233, 178, 35, 18, 174, 5, 9, 219, 25, 114, 253, 38, 11, 18, 225, 18, 85, 12, 245, 66, 100, 60, 201, 190, 238, 232, 53, 79, 29, 232, 98, 19, 221, 101, 73, 36, 124, 190, 176, 206, 175, 111, 29, 34, 212, 184, 54, 84, 114, 28, 64, 99, 8, 108, 146, 105, 193, 184, 0, 153, 84, 145, 14, 131, 26, 167, 92, 20, 177, 80, 247, 214, 97, 186, 138, 205, 252, 79, 165, 88, 188, 6, 128, 71, 86, 99, 34, 218, 212, 14, 163, 188, 5, 104, 186, 240, 50, 152, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:38:06.715194Z DEBUG StfBlueprint::apply_slot{context=Node da_height=198}: sov_chain_state: Setting next visible slot number next_visible_slot_number=194 +2026-04-20T15:38:06.733919Z DEBUG StfBlueprint::apply_slot{context=Node da_height=198}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 181. Final slot number 190 +2026-04-20T15:38:06.734422Z DEBUG StfBlueprint::apply_slot{context=Node da_height=198}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x483a2a82f49b780ca43a9d9b475299b1d0e94bfd8f128c5b9a47a322dd7604cd}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:06.737022Z DEBUG StfBlueprint::apply_slot{context=Node da_height=198}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=68e0d4f9607dabae149f3ed09e62b06861addbc555647df27242520ec7434e6a6b46a831b42093ae57d46d78e1b524d38a7864fee7a3c6c472c0fe4726bb1388 next_version=198 sesssion_starting_time=308.278µs +2026-04-20T15:38:06.746901Z DEBUG StfBlueprint::apply_slot{context=Node da_height=198}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3cc7fa70c637faea816f564cda33465a1b35370042192aef3972b85ff68550ac307eca40c3b779f1a5554ba20d64f976a60d09396cefca35bc0dc38440a132d4 next_version=198 time=11.304927ms accesses_build_time=1.104333ms finishing_session_time=9.748316ms +2026-04-20T15:38:06.748352Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="7425ea9311d171964008b7b08ab916cb7c18d5f268044346f2326bb7161f4a8c201e042feffb55cec3d5ee92acf69a111477e0c7d8349f687c8a6ed2aeb042db" next_state_root="3cc7fa70c637faea816f564cda33465a1b35370042192aef3972b85ff68550ac307eca40c3b779f1a5554ba20d64f976a60d09396cefca35bc0dc38440a132d4" aggregated_proofs=1 proof_receipts=1 +2026-04-20T15:38:06.754108Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 198, latest_finalized_slot_number: 198, sync_status: Syncing { synced_da_height: 197, target_da_height: 198 }, .. } +2026-04-20T15:38:06.755544Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=194 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 198, latest_finalized_slot_number: 198, sync_status: Syncing { synced_da_height: 197, target_da_height: 198 }, .. } +2026-04-20T15:38:06.756497Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=194 +2026-04-20T15:38:06.759122Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:38:06.760208Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=190 +2026-04-20T15:38:06.761372Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=195 +2026-04-20T15:38:06.761756Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:38:06.762708Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=195 sequence_number=213 +2026-04-20T15:38:06.762893Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:06.762977Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=213 blob_id=2147897883243213617588449497972462951 visible_slot_number_after_increase=195 visible_slots_to_advance=1 +2026-04-20T15:38:06.765816Z DEBUG compute_state_update{scope="sequencer" rollup_height=195 slot_number=195}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:38:06.766117Z DEBUG compute_state_update{scope="sequencer" rollup_height=195 slot_number=195}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3cc7fa70c637faea816f564cda33465a1b35370042192aef3972b85ff68550ac307eca40c3b779f1a5554ba20d64f976a60d09396cefca35bc0dc38440a132d4 next_version=199 sesssion_starting_time=589.156µs +2026-04-20T15:38:06.767351Z DEBUG manage_blob_submission_inside_task{blob_id=2147897883243213617588449497972462951 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xb8bf07d1ee574009b0e4259558c62175e0acbdaafa59d8eca1c25659d2218d8c sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=199 include_at=199 bytes=13 time=1.132493ms +2026-04-20T15:38:06.772074Z DEBUG compute_state_update{scope="sequencer" rollup_height=195 slot_number=195}: sov_state::nomt::prover_storage: computed next state root state_root=296b3d3c5a8ebff8dbcb442d541797c1b7c793df527b7cf95c092a6a155c364b49cf34a3fbbdf2e11a17de0e63301a67f7cb45e5fb1100decc1942bebc9f77e4 next_version=199 time=6.939425ms accesses_build_time=384.248µs finishing_session_time=5.856982ms +2026-04-20T15:38:06.786080Z DEBUG sov_stf_runner::runner: Block execution complete time=3.053510475s +2026-04-20T15:38:06.786169Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:38:06.788775Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:38:06.789546Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:38:07.210360Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QxPCdcx6QE22lIuU_R-MIg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:38:07.249942Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:38:07.262719Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1819120 cycles +2026-04-20T15:38:07.265765Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [66, 50, 37, 183, 209, 76, 221, 137, 48, 45, 9, 187, 168, 166, 4, 160, 73, 153, 213, 39, 225, 134, 16, 6, 246, 135, 166, 204, 212, 7, 20, 8, 104, 66, 129, 150, 247, 178, 244, 104, 105, 53, 142, 161, 231, 0, 14, 96, 215, 214, 97, 88, 160, 16, 87, 240, 223, 85, 246, 226, 127, 51, 35, 255, 94, 201, 30, 139, 174, 85, 49, 14, 232, 225, 146, 10, 238, 134, 44, 238, 3, 8, 54, 36, 57, 102, 112, 9, 25, 224, 102, 163, 205, 232, 63, 25, 47, 127, 178, 121, 227, 235, 70, 203, 68, 8, 92, 58, 101, 252, 87, 182, 86, 130, 94, 190, 70, 144, 180, 58, 14, 3, 102, 75, 59, 98, 81, 189, 165, 78, 36, 148, 83, 231, 31, 83, 130, 119, 4, 4, 48, 255, 92, 195, 58, 123, 214, 191, 245, 230, 158, 19, 89, 222, 151, 87, 31, 250, 204, 147, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:38:07.460576Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:38:07.460658Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:38:07.957103Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:38:07.957179Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:38:09.709653Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=199 prev_hash=0x98cb53ebbb02f0a75c09f1c791454403d2574ad620c4de8bef22611b91b4239c hash=0x1eb33accf58b0c3d1cb9bfe6a8292426c83143f36cae97d51dd9e6eb19ee317c producing_time=4.931917ms +2026-04-20T15:38:09.718833Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=199 current_state_root="3cc7fa70c637faea816f564cda33465a1b35370042192aef3972b85ff68550ac307eca40c3b779f1a5554ba20d64f976a60d09396cefca35bc0dc38440a132d4" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xb8bf07d1ee574009b0e4259558c62175e0acbdaafa59d8eca1c25659d2218d8c"] proof_blobs=[] +2026-04-20T15:38:09.727728Z DEBUG StfBlueprint::apply_slot{context=Node da_height=199}: sov_chain_state: Setting next visible slot number next_visible_slot_number=195 +2026-04-20T15:38:09.733913Z DEBUG StfBlueprint::apply_slot{context=Node da_height=199}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xb8bf07d1ee574009b0e4259558c62175e0acbdaafa59d8eca1c25659d2218d8c}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:09.736184Z DEBUG StfBlueprint::apply_slot{context=Node da_height=199}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3cc7fa70c637faea816f564cda33465a1b35370042192aef3972b85ff68550ac307eca40c3b779f1a5554ba20d64f976a60d09396cefca35bc0dc38440a132d4 next_version=199 sesssion_starting_time=308.687µs +2026-04-20T15:38:09.744257Z DEBUG StfBlueprint::apply_slot{context=Node da_height=199}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=296b3d3c5a8ebff8dbcb442d541797c1b7c793df527b7cf95c092a6a155c364b365eece87d101dc536c714d2c7d8b2838f85b377be050cdfadc7c62e89b50c95 next_version=199 time=9.17199ms accesses_build_time=779.015µs finishing_session_time=7.937789ms +2026-04-20T15:38:09.745577Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3cc7fa70c637faea816f564cda33465a1b35370042192aef3972b85ff68550ac307eca40c3b779f1a5554ba20d64f976a60d09396cefca35bc0dc38440a132d4" next_state_root="296b3d3c5a8ebff8dbcb442d541797c1b7c793df527b7cf95c092a6a155c364b365eece87d101dc536c714d2c7d8b2838f85b377be050cdfadc7c62e89b50c95" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:38:09.750123Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 199, latest_finalized_slot_number: 199, sync_status: Syncing { synced_da_height: 198, target_da_height: 199 }, .. } +2026-04-20T15:38:09.751599Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=195 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 199, latest_finalized_slot_number: 199, sync_status: Syncing { synced_da_height: 198, target_da_height: 199 }, .. } +2026-04-20T15:38:09.752583Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=195 +2026-04-20T15:38:09.755343Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:38:09.756300Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=191 +2026-04-20T15:38:09.758058Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=196 +2026-04-20T15:38:09.759057Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:38:09.760509Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=196 sequence_number=214 +2026-04-20T15:38:09.760632Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=214 blob_id=2147897886867556400330712477970104471 visible_slot_number_after_increase=196 visible_slots_to_advance=1 +2026-04-20T15:38:09.760751Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:09.762119Z DEBUG sov_stf_runner::runner: Block execution complete time=2.975964438s +2026-04-20T15:38:09.762187Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:38:09.763859Z DEBUG compute_state_update{scope="sequencer" rollup_height=196 slot_number=196}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:38:09.763997Z DEBUG compute_state_update{scope="sequencer" rollup_height=196 slot_number=196}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=296b3d3c5a8ebff8dbcb442d541797c1b7c793df527b7cf95c092a6a155c364b365eece87d101dc536c714d2c7d8b2838f85b377be050cdfadc7c62e89b50c95 next_version=200 sesssion_starting_time=140.359µs +2026-04-20T15:38:09.764578Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:38:09.765340Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:38:09.767219Z DEBUG manage_blob_submission_inside_task{blob_id=2147897886867556400330712477970104471 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x82aece9e54c63dc7e0d86f8533d0ca5d2397662a9e07352417e291ee2691e6b6 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=200 include_at=200 bytes=13 time=1.40118ms +2026-04-20T15:38:09.769349Z DEBUG compute_state_update{scope="sequencer" rollup_height=196 slot_number=196}: sov_state::nomt::prover_storage: computed next state root state_root=777d05c36ee19eb722d4023d387e9be30a1edd8581db78f4c47e047b73aafcdf1da2d16af5015554b6509e33c3b47126782520d21bde4fbad3f8fe878b4328d6 next_version=200 time=5.641374ms accesses_build_time=150.119µs finishing_session_time=5.290836ms +2026-04-20T15:38:10.291866Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hn0qdBZPQ2K2fpbHjwI98Q==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:38:10.334311Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:38:10.348256Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1892569 cycles +2026-04-20T15:38:10.351021Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [123, 207, 183, 118, 151, 161, 31, 137, 80, 198, 240, 147, 90, 168, 105, 232, 50, 114, 175, 74, 32, 224, 145, 84, 174, 127, 196, 243, 134, 198, 127, 23, 111, 84, 24, 150, 67, 16, 83, 99, 66, 106, 29, 28, 218, 50, 165, 122, 193, 239, 109, 185, 0, 106, 231, 8, 69, 162, 108, 239, 123, 245, 123, 52, 123, 24, 76, 120, 221, 251, 230, 18, 230, 98, 232, 194, 221, 54, 210, 186, 2, 91, 76, 50, 93, 40, 5, 3, 171, 30, 214, 104, 120, 138, 236, 124, 59, 161, 158, 55, 158, 27, 42, 68, 46, 127, 140, 30, 0, 239, 38, 5, 40, 146, 193, 125, 57, 91, 87, 62, 23, 125, 132, 112, 25, 4, 46, 21, 110, 81, 250, 209, 87, 185, 221, 171, 95, 214, 52, 180, 190, 244, 10, 100, 111, 227, 99, 227, 241, 114, 213, 82, 134, 207, 213, 139, 224, 131, 83, 206, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:38:11.017885Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:38:11.017972Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:38:12.713909Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=200 prev_hash=0x1eb33accf58b0c3d1cb9bfe6a8292426c83143f36cae97d51dd9e6eb19ee317c hash=0x1df3a1bff8a902c5f35956c6957921aef40dedc8a47ea5faa1b158ddf63161b7 producing_time=2.950291ms +2026-04-20T15:38:12.724912Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=200 current_state_root="296b3d3c5a8ebff8dbcb442d541797c1b7c793df527b7cf95c092a6a155c364b365eece87d101dc536c714d2c7d8b2838f85b377be050cdfadc7c62e89b50c95" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x82aece9e54c63dc7e0d86f8533d0ca5d2397662a9e07352417e291ee2691e6b6"] proof_blobs=[] +2026-04-20T15:38:12.734516Z DEBUG StfBlueprint::apply_slot{context=Node da_height=200}: sov_chain_state: Setting next visible slot number next_visible_slot_number=196 +2026-04-20T15:38:12.741422Z DEBUG StfBlueprint::apply_slot{context=Node da_height=200}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x82aece9e54c63dc7e0d86f8533d0ca5d2397662a9e07352417e291ee2691e6b6}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:12.743892Z DEBUG StfBlueprint::apply_slot{context=Node da_height=200}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=296b3d3c5a8ebff8dbcb442d541797c1b7c793df527b7cf95c092a6a155c364b365eece87d101dc536c714d2c7d8b2838f85b377be050cdfadc7c62e89b50c95 next_version=200 sesssion_starting_time=311.448µs +2026-04-20T15:38:12.752341Z DEBUG StfBlueprint::apply_slot{context=Node da_height=200}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=777d05c36ee19eb722d4023d387e9be30a1edd8581db78f4c47e047b73aafcdf623deea5090c97715e119ac59b317f77a4bd674d7e85feaa0dea8cebda3f2a11 next_version=200 time=9.609178ms accesses_build_time=835.215µs finishing_session_time=8.303626ms +2026-04-20T15:38:12.753668Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="296b3d3c5a8ebff8dbcb442d541797c1b7c793df527b7cf95c092a6a155c364b365eece87d101dc536c714d2c7d8b2838f85b377be050cdfadc7c62e89b50c95" next_state_root="777d05c36ee19eb722d4023d387e9be30a1edd8581db78f4c47e047b73aafcdf623deea5090c97715e119ac59b317f77a4bd674d7e85feaa0dea8cebda3f2a11" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:38:12.758268Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 200, latest_finalized_slot_number: 200, sync_status: Syncing { synced_da_height: 199, target_da_height: 200 }, .. } +2026-04-20T15:38:12.759751Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=196 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 200, latest_finalized_slot_number: 200, sync_status: Syncing { synced_da_height: 199, target_da_height: 200 }, .. } +2026-04-20T15:38:12.760734Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=196 +2026-04-20T15:38:12.763539Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:38:12.764520Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=192 +2026-04-20T15:38:12.766262Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=197 +2026-04-20T15:38:12.767234Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:38:12.768853Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=197 sequence_number=215 +2026-04-20T15:38:12.769059Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=215 blob_id=2147897890504031219002659075833065794 visible_slot_number_after_increase=197 visible_slots_to_advance=1 +2026-04-20T15:38:12.769132Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:12.771455Z DEBUG sov_stf_runner::runner: Block execution complete time=3.009274983s +2026-04-20T15:38:12.771520Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:38:12.772505Z DEBUG compute_state_update{scope="sequencer" rollup_height=197 slot_number=197}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:38:12.772801Z DEBUG compute_state_update{scope="sequencer" rollup_height=197 slot_number=197}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=777d05c36ee19eb722d4023d387e9be30a1edd8581db78f4c47e047b73aafcdf623deea5090c97715e119ac59b317f77a4bd674d7e85feaa0dea8cebda3f2a11 next_version=201 sesssion_starting_time=301.178µs +2026-04-20T15:38:12.773447Z DEBUG manage_blob_submission_inside_task{blob_id=2147897890504031219002659075833065794 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x8e5ad470ed889611758777cd314adad36008bee0777a64550e5c0df1c907334f sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=201 include_at=201 bytes=13 time=940.484µs +2026-04-20T15:38:12.774127Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:38:12.774884Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:38:12.778010Z DEBUG compute_state_update{scope="sequencer" rollup_height=197 slot_number=197}: sov_state::nomt::prover_storage: computed next state root state_root=3bded5099315809d042c133e05f438506d8875dab8ed0b1c09d4ce9d57a57b804d9b6a289ef61be44ac24761ed1d4a9b9f9702eb5d1d969cea9543e402ce9c1f next_version=201 time=5.898752ms accesses_build_time=383.688µs finishing_session_time=5.112277ms +2026-04-20T15:38:13.248247Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ZFy0iyBaSe62KKsJMVb6dA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:38:13.289556Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:38:13.302333Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1887213 cycles +2026-04-20T15:38:13.305094Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [62, 221, 225, 238, 182, 0, 131, 247, 169, 177, 180, 90, 51, 84, 250, 135, 228, 0, 254, 212, 167, 139, 108, 74, 192, 137, 36, 112, 45, 126, 234, 239, 23, 30, 18, 205, 240, 189, 242, 110, 85, 83, 58, 228, 249, 191, 49, 116, 119, 210, 4, 249, 207, 69, 192, 141, 244, 125, 193, 162, 43, 0, 50, 121, 67, 89, 163, 156, 149, 206, 93, 68, 51, 180, 25, 108, 198, 177, 26, 110, 212, 209, 171, 245, 123, 229, 131, 21, 123, 125, 149, 3, 7, 153, 252, 24, 121, 12, 33, 96, 161, 82, 233, 24, 31, 179, 222, 197, 129, 252, 33, 165, 127, 23, 177, 84, 174, 39, 176, 141, 73, 58, 112, 136, 242, 72, 59, 34, 68, 151, 184, 113, 116, 138, 50, 114, 160, 236, 97, 101, 180, 128, 234, 251, 34, 98, 83, 48, 213, 228, 201, 113, 254, 160, 188, 73, 127, 91, 158, 208, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:38:13.967501Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:38:13.967575Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:38:15.718549Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=201 prev_hash=0x1df3a1bff8a902c5f35956c6957921aef40dedc8a47ea5faa1b158ddf63161b7 hash=0xd09134e67e5b4263f661e85da00fcac11d07add16111149dcfac813759af5475 producing_time=3.1145ms +2026-04-20T15:38:15.724446Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=201 current_state_root="777d05c36ee19eb722d4023d387e9be30a1edd8581db78f4c47e047b73aafcdf623deea5090c97715e119ac59b317f77a4bd674d7e85feaa0dea8cebda3f2a11" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x8e5ad470ed889611758777cd314adad36008bee0777a64550e5c0df1c907334f"] proof_blobs=[] +2026-04-20T15:38:15.733194Z DEBUG StfBlueprint::apply_slot{context=Node da_height=201}: sov_chain_state: Setting next visible slot number next_visible_slot_number=197 +2026-04-20T15:38:15.739411Z DEBUG StfBlueprint::apply_slot{context=Node da_height=201}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x8e5ad470ed889611758777cd314adad36008bee0777a64550e5c0df1c907334f}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:15.741711Z DEBUG StfBlueprint::apply_slot{context=Node da_height=201}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=777d05c36ee19eb722d4023d387e9be30a1edd8581db78f4c47e047b73aafcdf623deea5090c97715e119ac59b317f77a4bd674d7e85feaa0dea8cebda3f2a11 next_version=201 sesssion_starting_time=286.668µs +2026-04-20T15:38:15.748985Z DEBUG StfBlueprint::apply_slot{context=Node da_height=201}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3bded5099315809d042c133e05f438506d8875dab8ed0b1c09d4ce9d57a57b807b0730e8225115a12609d82701ac12c7de31227424bd3007bbad33ff8e7a157f next_version=201 time=8.350646ms accesses_build_time=777.015µs finishing_session_time=7.123653ms +2026-04-20T15:38:15.750280Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="777d05c36ee19eb722d4023d387e9be30a1edd8581db78f4c47e047b73aafcdf623deea5090c97715e119ac59b317f77a4bd674d7e85feaa0dea8cebda3f2a11" next_state_root="3bded5099315809d042c133e05f438506d8875dab8ed0b1c09d4ce9d57a57b807b0730e8225115a12609d82701ac12c7de31227424bd3007bbad33ff8e7a157f" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:38:15.755011Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 201, latest_finalized_slot_number: 201, sync_status: Syncing { synced_da_height: 200, target_da_height: 201 }, .. } +2026-04-20T15:38:15.756413Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=197 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 201, latest_finalized_slot_number: 201, sync_status: Syncing { synced_da_height: 200, target_da_height: 201 }, .. } +2026-04-20T15:38:15.757356Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=197 +2026-04-20T15:38:15.759977Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:38:15.760515Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=193 +2026-04-20T15:38:15.761907Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=198 +2026-04-20T15:38:15.762780Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:38:15.764221Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=198 sequence_number=216 +2026-04-20T15:38:15.764431Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:15.764567Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=216 blob_id=2147897894125954046982362976782444398 visible_slot_number_after_increase=198 visible_slots_to_advance=1 +2026-04-20T15:38:15.767763Z DEBUG sov_stf_runner::runner: Block execution complete time=2.996258487s +2026-04-20T15:38:15.767808Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:38:15.768826Z DEBUG compute_state_update{scope="sequencer" rollup_height=198 slot_number=198}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:38:15.769161Z DEBUG compute_state_update{scope="sequencer" rollup_height=198 slot_number=198}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3bded5099315809d042c133e05f438506d8875dab8ed0b1c09d4ce9d57a57b807b0730e8225115a12609d82701ac12c7de31227424bd3007bbad33ff8e7a157f next_version=202 sesssion_starting_time=338.177µs +2026-04-20T15:38:15.770229Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:38:15.770799Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:38:15.771834Z DEBUG manage_blob_submission_inside_task{blob_id=2147897894125954046982362976782444398 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x54d47828466701800161ae3dd1f47ebe7b7e2ad16561873dd016e6ae54f2cd76 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=202 include_at=202 bytes=13 time=1.345511ms +2026-04-20T15:38:15.774679Z DEBUG compute_state_update{scope="sequencer" rollup_height=198 slot_number=198}: sov_state::nomt::prover_storage: computed next state root state_root=1e4aa0cb8f44a1c3cde958851dddb313f1f5708b17b6031dc423241d891a36c5772443db5b8fc3f92d0811c74391e9a8a24f6dd23cf4d363d368c3df3f5fd1a3 next_version=202 time=6.23217ms accesses_build_time=363.348µs finishing_session_time=5.440425ms +2026-04-20T15:38:16.264090Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jyO-o0DPQLuO_-sp8CwYog==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:38:16.305211Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:38:16.317019Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1868063 cycles +2026-04-20T15:38:16.319698Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [10, 153, 250, 110, 172, 29, 194, 167, 138, 204, 57, 253, 246, 226, 135, 71, 182, 100, 70, 145, 38, 207, 108, 63, 230, 37, 16, 7, 80, 54, 120, 93, 63, 86, 86, 142, 194, 173, 103, 162, 251, 20, 161, 187, 54, 208, 125, 126, 76, 232, 222, 27, 204, 171, 3, 59, 132, 254, 232, 237, 57, 139, 84, 241, 10, 76, 119, 232, 206, 0, 99, 143, 214, 232, 120, 194, 104, 200, 142, 205, 51, 253, 182, 129, 186, 127, 79, 87, 155, 83, 250, 1, 169, 110, 130, 19, 90, 65, 112, 74, 251, 104, 100, 250, 144, 220, 208, 134, 88, 235, 211, 188, 242, 30, 46, 196, 40, 212, 197, 232, 183, 245, 187, 139, 143, 78, 102, 47, 31, 170, 114, 159, 57, 61, 49, 200, 221, 203, 72, 97, 92, 90, 13, 148, 184, 103, 84, 236, 35, 191, 15, 121, 174, 178, 197, 86, 49, 74, 228, 180, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:38:16.994593Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:38:16.994668Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:38:18.722754Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=202 prev_hash=0xd09134e67e5b4263f661e85da00fcac11d07add16111149dcfac813759af5475 hash=0xfae08730ca17a399f79ba23d345ed8cd93e857adf9e06684198062e7f51a7f76 producing_time=2.181826ms +2026-04-20T15:38:18.730983Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=202 current_state_root="3bded5099315809d042c133e05f438506d8875dab8ed0b1c09d4ce9d57a57b807b0730e8225115a12609d82701ac12c7de31227424bd3007bbad33ff8e7a157f" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x54d47828466701800161ae3dd1f47ebe7b7e2ad16561873dd016e6ae54f2cd76"] proof_blobs=[] +2026-04-20T15:38:18.739939Z DEBUG StfBlueprint::apply_slot{context=Node da_height=202}: sov_chain_state: Setting next visible slot number next_visible_slot_number=198 +2026-04-20T15:38:18.746439Z DEBUG StfBlueprint::apply_slot{context=Node da_height=202}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x54d47828466701800161ae3dd1f47ebe7b7e2ad16561873dd016e6ae54f2cd76}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:18.748818Z DEBUG StfBlueprint::apply_slot{context=Node da_height=202}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3bded5099315809d042c133e05f438506d8875dab8ed0b1c09d4ce9d57a57b807b0730e8225115a12609d82701ac12c7de31227424bd3007bbad33ff8e7a157f next_version=202 sesssion_starting_time=327.028µs +2026-04-20T15:38:18.758019Z DEBUG StfBlueprint::apply_slot{context=Node da_height=202}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=1e4aa0cb8f44a1c3cde958851dddb313f1f5708b17b6031dc423241d891a36c512d5dca3c6dcc6fff688b7b0eb2602f425e0d0bed22772e5aa9ff49ebe2d0437 next_version=202 time=10.365563ms accesses_build_time=824.314µs finishing_session_time=9.067881ms +2026-04-20T15:38:18.759364Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3bded5099315809d042c133e05f438506d8875dab8ed0b1c09d4ce9d57a57b807b0730e8225115a12609d82701ac12c7de31227424bd3007bbad33ff8e7a157f" next_state_root="1e4aa0cb8f44a1c3cde958851dddb313f1f5708b17b6031dc423241d891a36c512d5dca3c6dcc6fff688b7b0eb2602f425e0d0bed22772e5aa9ff49ebe2d0437" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:38:18.764078Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 202, latest_finalized_slot_number: 202, sync_status: Syncing { synced_da_height: 201, target_da_height: 202 }, .. } +2026-04-20T15:38:18.765507Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=198 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 202, latest_finalized_slot_number: 202, sync_status: Syncing { synced_da_height: 201, target_da_height: 202 }, .. } +2026-04-20T15:38:18.766444Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=198 +2026-04-20T15:38:18.769064Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:38:18.770076Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=194 +2026-04-20T15:38:18.771841Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=199 +2026-04-20T15:38:18.772718Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:38:18.774235Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=199 sequence_number=217 +2026-04-20T15:38:18.774361Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=217 blob_id=2147897897764834949038829975211288762 visible_slot_number_after_increase=199 visible_slots_to_advance=1 +2026-04-20T15:38:18.774548Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:18.776374Z DEBUG sov_stf_runner::runner: Block execution complete time=3.008566748s +2026-04-20T15:38:18.776523Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:38:18.778960Z DEBUG compute_state_update{scope="sequencer" rollup_height=199 slot_number=199}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:38:18.779339Z DEBUG compute_state_update{scope="sequencer" rollup_height=199 slot_number=199}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1e4aa0cb8f44a1c3cde958851dddb313f1f5708b17b6031dc423241d891a36c512d5dca3c6dcc6fff688b7b0eb2602f425e0d0bed22772e5aa9ff49ebe2d0437 next_version=203 sesssion_starting_time=384.817µs +2026-04-20T15:38:18.780248Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:38:18.781167Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:38:18.781206Z DEBUG manage_blob_submission_inside_task{blob_id=2147897897764834949038829975211288762 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xa706e4662110a908a9f53d27858d227502a44366b0be1d0d7f8869d550e62e61 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=203 include_at=203 bytes=13 time=1.170102ms +2026-04-20T15:38:18.785421Z DEBUG compute_state_update{scope="sequencer" rollup_height=199 slot_number=199}: sov_state::nomt::prover_storage: computed next state root state_root=2ccfdcd27d30d6fbe505089d564cc3ac7b0263393bfd03f9c217d4d4faaf8dae4c2ef292a6ad55973cd9a4bb337c3ddf6f505b713453334d352c2ac997cc6563 next_version=203 time=6.977675ms accesses_build_time=501.667µs finishing_session_time=5.958391ms +2026-04-20T15:38:19.221698Z DEBUG sp1_core_executor_runner::native: CHILD sp1_ueuTuY2sTr-eiPEd4p4Lrw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:38:19.262782Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:38:19.274434Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1876120 cycles +2026-04-20T15:38:19.277283Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [77, 223, 219, 21, 77, 106, 237, 22, 119, 104, 255, 137, 179, 25, 79, 242, 177, 143, 18, 110, 196, 252, 28, 52, 245, 41, 181, 242, 249, 246, 220, 187, 39, 83, 251, 47, 83, 1, 163, 144, 65, 107, 84, 118, 169, 34, 80, 245, 70, 221, 34, 235, 31, 2, 232, 144, 60, 46, 126, 229, 185, 46, 237, 175, 66, 61, 113, 145, 199, 12, 127, 59, 246, 236, 43, 177, 162, 225, 69, 236, 59, 254, 122, 217, 174, 237, 178, 200, 92, 78, 42, 200, 49, 67, 113, 235, 70, 78, 212, 210, 131, 206, 221, 200, 166, 26, 224, 34, 2, 140, 111, 255, 169, 39, 160, 220, 88, 126, 125, 199, 94, 158, 13, 159, 3, 165, 63, 120, 165, 67, 25, 206, 241, 196, 149, 125, 199, 12, 57, 230, 231, 20, 43, 47, 15, 24, 130, 185, 208, 97, 24, 146, 178, 245, 251, 45, 121, 125, 9, 10, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:38:19.942503Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:38:19.942577Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:38:21.732043Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=203 prev_hash=0xfae08730ca17a399f79ba23d345ed8cd93e857adf9e06684198062e7f51a7f76 hash=0x5d0c4d750749da3f83e54922d1eac92ae7cc3d01cb5279418b515e3627efaed1 producing_time=7.978668ms +2026-04-20T15:38:21.739842Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=203 current_state_root="1e4aa0cb8f44a1c3cde958851dddb313f1f5708b17b6031dc423241d891a36c512d5dca3c6dcc6fff688b7b0eb2602f425e0d0bed22772e5aa9ff49ebe2d0437" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa706e4662110a908a9f53d27858d227502a44366b0be1d0d7f8869d550e62e61"] proof_blobs=[] +2026-04-20T15:38:21.748413Z DEBUG StfBlueprint::apply_slot{context=Node da_height=203}: sov_chain_state: Setting next visible slot number next_visible_slot_number=199 +2026-04-20T15:38:21.754555Z DEBUG StfBlueprint::apply_slot{context=Node da_height=203}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xa706e4662110a908a9f53d27858d227502a44366b0be1d0d7f8869d550e62e61}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:21.756861Z DEBUG StfBlueprint::apply_slot{context=Node da_height=203}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1e4aa0cb8f44a1c3cde958851dddb313f1f5708b17b6031dc423241d891a36c512d5dca3c6dcc6fff688b7b0eb2602f425e0d0bed22772e5aa9ff49ebe2d0437 next_version=203 sesssion_starting_time=289.398µs +2026-04-20T15:38:21.764664Z DEBUG StfBlueprint::apply_slot{context=Node da_height=203}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2ccfdcd27d30d6fbe505089d564cc3ac7b0263393bfd03f9c217d4d4faaf8dae33d3e3e5fe540b9e0ae0b70aef18bb13dab5aa8ce3aff2ec077fcf764889bcf9 next_version=203 time=8.882973ms accesses_build_time=775.025µs finishing_session_time=7.654891ms +2026-04-20T15:38:21.766041Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="1e4aa0cb8f44a1c3cde958851dddb313f1f5708b17b6031dc423241d891a36c512d5dca3c6dcc6fff688b7b0eb2602f425e0d0bed22772e5aa9ff49ebe2d0437" next_state_root="2ccfdcd27d30d6fbe505089d564cc3ac7b0263393bfd03f9c217d4d4faaf8dae33d3e3e5fe540b9e0ae0b70aef18bb13dab5aa8ce3aff2ec077fcf764889bcf9" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:38:21.770455Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 203, latest_finalized_slot_number: 203, sync_status: Synced { synced_da_height: 202 }, .. } +2026-04-20T15:38:21.771816Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=199 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 203, latest_finalized_slot_number: 203, sync_status: Synced { synced_da_height: 202 }, .. } +2026-04-20T15:38:21.772710Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=199 +2026-04-20T15:38:21.775126Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:38:21.776042Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=195 +2026-04-20T15:38:21.777306Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=200 +2026-04-20T15:38:21.777905Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:38:21.778862Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=200 sequence_number=218 +2026-04-20T15:38:21.779051Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:21.779166Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=218 blob_id=2147897901396474952649485755037195511 visible_slot_number_after_increase=200 visible_slots_to_advance=1 +2026-04-20T15:38:21.785421Z DEBUG manage_blob_submission_inside_task{blob_id=2147897901396474952649485755037195511 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x04cc7a72b84678c1c659d2078824b8a73e20a4c9001d995fb9135c96b657f8b1 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=204 include_at=204 bytes=13 time=1.436511ms +2026-04-20T15:38:21.789086Z DEBUG compute_state_update{scope="sequencer" rollup_height=200 slot_number=200}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:38:21.789401Z DEBUG compute_state_update{scope="sequencer" rollup_height=200 slot_number=200}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2ccfdcd27d30d6fbe505089d564cc3ac7b0263393bfd03f9c217d4d4faaf8dae33d3e3e5fe540b9e0ae0b70aef18bb13dab5aa8ce3aff2ec077fcf764889bcf9 next_version=204 sesssion_starting_time=6.828586ms +2026-04-20T15:38:21.789523Z DEBUG sov_stf_runner::runner: Block execution complete time=3.013025808s +2026-04-20T15:38:21.789576Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:38:21.794120Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:38:21.794583Z DEBUG compute_state_update{scope="sequencer" rollup_height=200 slot_number=200}: sov_state::nomt::prover_storage: computed next state root state_root=4603d4eedd1015cb19475ec767cfa2495dc831b5fa864fb0d7f547af46b5f1b740c64c519a62b35917c3bb7bdeffec86a4a4defcb1f407783afeeda8f2553027 next_version=204 time=12.49843ms accesses_build_time=470.628µs finishing_session_time=5.072217ms +2026-04-20T15:38:21.795357Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:38:22.270433Z DEBUG sp1_core_executor_runner::native: CHILD sp1_qZhfALfKTjayRGp7OnU8tA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:38:22.315385Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:38:22.328294Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2006075 cycles +2026-04-20T15:38:22.330596Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [116, 37, 234, 147, 17, 209, 113, 150, 64, 8, 183, 176, 138, 185, 22, 203, 124, 24, 213, 242, 104, 4, 67, 70, 242, 50, 107, 183, 22, 31, 74, 140, 32, 30, 4, 47, 239, 251, 85, 206, 195, 213, 238, 146, 172, 246, 154, 17, 20, 119, 224, 199, 216, 52, 159, 104, 124, 138, 110, 210, 174, 176, 66, 219, 103, 97, 20, 230, 123, 41, 93, 218, 63, 147, 243, 223, 22, 55, 227, 224, 67, 193, 123, 164, 78, 100, 23, 176, 235, 193, 113, 45, 49, 208, 1, 102, 117, 109, 161, 3, 139, 41, 253, 24, 240, 15, 128, 84, 185, 245, 133, 217, 251, 129, 157, 223, 7, 183, 77, 87, 7, 221, 181, 90, 115, 159, 114, 193, 71, 171, 120, 189, 211, 161, 203, 188, 25, 9, 44, 20, 166, 125, 148, 156, 71, 226, 51, 165, 134, 193, 39, 231, 85, 56, 131, 94, 137, 166, 164, 234, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:38:23.036969Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:38:23.037039Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:38:24.761478Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=204 prev_hash=0x5d0c4d750749da3f83e54922d1eac92ae7cc3d01cb5279418b515e3627efaed1 hash=0x077a8db26afbdbf21d91db6cb79e923101231cfe97057a1c4882242bb6cb09c6 producing_time=28.835763ms +2026-04-20T15:38:24.771907Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=204 current_state_root="2ccfdcd27d30d6fbe505089d564cc3ac7b0263393bfd03f9c217d4d4faaf8dae33d3e3e5fe540b9e0ae0b70aef18bb13dab5aa8ce3aff2ec077fcf764889bcf9" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x04cc7a72b84678c1c659d2078824b8a73e20a4c9001d995fb9135c96b657f8b1"] proof_blobs=[] +2026-04-20T15:38:24.777326Z DEBUG StfBlueprint::apply_slot{context=Node da_height=204}: sov_chain_state: Setting next visible slot number next_visible_slot_number=200 +2026-04-20T15:38:24.780940Z DEBUG StfBlueprint::apply_slot{context=Node da_height=204}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x04cc7a72b84678c1c659d2078824b8a73e20a4c9001d995fb9135c96b657f8b1}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:24.782151Z DEBUG StfBlueprint::apply_slot{context=Node da_height=204}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2ccfdcd27d30d6fbe505089d564cc3ac7b0263393bfd03f9c217d4d4faaf8dae33d3e3e5fe540b9e0ae0b70aef18bb13dab5aa8ce3aff2ec077fcf764889bcf9 next_version=204 sesssion_starting_time=127.389µs +2026-04-20T15:38:24.787378Z DEBUG StfBlueprint::apply_slot{context=Node da_height=204}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4603d4eedd1015cb19475ec767cfa2495dc831b5fa864fb0d7f547af46b5f1b71a4c12f5699064631bac92125f597cf0b26eda15fbb00dc4a996e25340434811 next_version=204 time=5.764303ms accesses_build_time=400.378µs finishing_session_time=5.158637ms +2026-04-20T15:38:24.788265Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2ccfdcd27d30d6fbe505089d564cc3ac7b0263393bfd03f9c217d4d4faaf8dae33d3e3e5fe540b9e0ae0b70aef18bb13dab5aa8ce3aff2ec077fcf764889bcf9" next_state_root="4603d4eedd1015cb19475ec767cfa2495dc831b5fa864fb0d7f547af46b5f1b71a4c12f5699064631bac92125f597cf0b26eda15fbb00dc4a996e25340434811" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:38:24.791883Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 204, latest_finalized_slot_number: 204, sync_status: Syncing { synced_da_height: 203, target_da_height: 204 }, .. } +2026-04-20T15:38:24.793580Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=200 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 204, latest_finalized_slot_number: 204, sync_status: Syncing { synced_da_height: 203, target_da_height: 204 }, .. } +2026-04-20T15:38:24.794511Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=200 +2026-04-20T15:38:24.797053Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:38:24.798056Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=196 +2026-04-20T15:38:24.800059Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=201 +2026-04-20T15:38:24.801023Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:38:24.802735Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=201 sequence_number=219 +2026-04-20T15:38:24.802962Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:24.803016Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=219 blob_id=2147897905052265192838900033315988116 visible_slot_number_after_increase=201 visible_slots_to_advance=1 +2026-04-20T15:38:24.804452Z  INFO sov_db::storage_manager::nomt_based::groups: Starting pruner task iteration versions_to_keep=20 +2026-04-20T15:38:24.804648Z  WARN sov_db::storage_manager::nomt_based::groups: Pruning temporarily disabled +2026-04-20T15:38:24.805022Z DEBUG sov_stf_runner::runner: Block execution complete time=3.015456063s +2026-04-20T15:38:24.805078Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:38:24.806163Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:38:24.806755Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:38:24.807050Z DEBUG compute_state_update{scope="sequencer" rollup_height=201 slot_number=201}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:38:24.807446Z DEBUG compute_state_update{scope="sequencer" rollup_height=201 slot_number=201}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4603d4eedd1015cb19475ec767cfa2495dc831b5fa864fb0d7f547af46b5f1b71a4c12f5699064631bac92125f597cf0b26eda15fbb00dc4a996e25340434811 next_version=205 sesssion_starting_time=393.707µs +2026-04-20T15:38:24.809657Z DEBUG manage_blob_submission_inside_task{blob_id=2147897905052265192838900033315988116 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x26679f3aa32bf6b533b976adc64a86e72f606b16f6826de0869dd0dfe47b05f1 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=205 include_at=205 bytes=13 time=1.437661ms +2026-04-20T15:38:24.812051Z DEBUG compute_state_update{scope="sequencer" rollup_height=201 slot_number=201}: sov_state::nomt::prover_storage: computed next state root state_root=200fb5ff990ff3bffdc12adb87076bf83d9384f3d56e2c48e6a8d2fec7256aa361b99bea6985dd98932178ed8a687106985834d436d984d1ce2bb7706df2d050 next_version=205 time=5.463704ms accesses_build_time=435.547µs finishing_session_time=4.469311ms +2026-04-20T15:38:25.388539Z DEBUG sp1_core_executor_runner::native: CHILD sp1_QC6WTEvCRd-6f-yLzW4U-A==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:38:25.474337Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:38:25.485851Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4235998 cycles +2026-04-20T15:38:25.488462Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [104, 224, 212, 249, 96, 125, 171, 174, 20, 159, 62, 208, 158, 98, 176, 104, 97, 173, 219, 197, 85, 100, 125, 242, 114, 66, 82, 14, 199, 67, 78, 106, 107, 70, 168, 49, 180, 32, 147, 174, 87, 212, 109, 120, 225, 181, 36, 211, 138, 120, 100, 254, 231, 163, 198, 196, 114, 192, 254, 71, 38, 187, 19, 136, 66, 48, 45, 83, 243, 87, 38, 164, 209, 136, 143, 112, 217, 174, 238, 26, 24, 137, 249, 102, 13, 169, 206, 219, 224, 21, 163, 221, 91, 102, 92, 223, 85, 233, 244, 123, 6, 91, 223, 160, 185, 5, 69, 145, 138, 219, 52, 253, 161, 250, 40, 159, 48, 242, 103, 106, 200, 232, 79, 32, 57, 175, 207, 195, 152, 203, 83, 235, 187, 2, 240, 167, 92, 9, 241, 199, 145, 69, 68, 3, 210, 87, 74, 214, 32, 196, 222, 139, 239, 34, 97, 27, 145, 180, 35, 156, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:38:26.982065Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:38:26.982137Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:38:27.766906Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=205 prev_hash=0x077a8db26afbdbf21d91db6cb79e923101231cfe97057a1c4882242bb6cb09c6 hash=0xd273a1f7880d84ecff84989ea08aab3d75b1fa0e1f5fd143da8e18b39cee8687 producing_time=3.666086ms +2026-04-20T15:38:27.777805Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=205 current_state_root="4603d4eedd1015cb19475ec767cfa2495dc831b5fa864fb0d7f547af46b5f1b71a4c12f5699064631bac92125f597cf0b26eda15fbb00dc4a996e25340434811" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x26679f3aa32bf6b533b976adc64a86e72f606b16f6826de0869dd0dfe47b05f1"] proof_blobs=[] +2026-04-20T15:38:27.785867Z DEBUG StfBlueprint::apply_slot{context=Node da_height=205}: sov_chain_state: Setting next visible slot number next_visible_slot_number=201 +2026-04-20T15:38:27.791552Z DEBUG StfBlueprint::apply_slot{context=Node da_height=205}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x26679f3aa32bf6b533b976adc64a86e72f606b16f6826de0869dd0dfe47b05f1}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:27.793773Z DEBUG StfBlueprint::apply_slot{context=Node da_height=205}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4603d4eedd1015cb19475ec767cfa2495dc831b5fa864fb0d7f547af46b5f1b71a4c12f5699064631bac92125f597cf0b26eda15fbb00dc4a996e25340434811 next_version=205 sesssion_starting_time=293.168µs +2026-04-20T15:38:27.801508Z DEBUG StfBlueprint::apply_slot{context=Node da_height=205}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=200fb5ff990ff3bffdc12adb87076bf83d9384f3d56e2c48e6a8d2fec7256aa375aeb122709be7cbcd779425a6d652668bd03065608ec5a5ded5602b0f3a3e9d next_version=205 time=8.809973ms accesses_build_time=768.885µs finishing_session_time=7.613781ms +2026-04-20T15:38:27.802702Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4603d4eedd1015cb19475ec767cfa2495dc831b5fa864fb0d7f547af46b5f1b71a4c12f5699064631bac92125f597cf0b26eda15fbb00dc4a996e25340434811" next_state_root="200fb5ff990ff3bffdc12adb87076bf83d9384f3d56e2c48e6a8d2fec7256aa375aeb122709be7cbcd779425a6d652668bd03065608ec5a5ded5602b0f3a3e9d" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:38:27.807010Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 205, latest_finalized_slot_number: 205, sync_status: Syncing { synced_da_height: 204, target_da_height: 205 }, .. } +2026-04-20T15:38:27.808370Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=201 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 205, latest_finalized_slot_number: 205, sync_status: Syncing { synced_da_height: 204, target_da_height: 205 }, .. } +2026-04-20T15:38:27.809330Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=201 +2026-04-20T15:38:27.811895Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:38:27.812872Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=197 +2026-04-20T15:38:27.814649Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=202 +2026-04-20T15:38:27.815710Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:38:27.817276Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=202 sequence_number=220 +2026-04-20T15:38:27.817499Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:27.817573Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=220 blob_id=2147897908697162962042341257295275521 visible_slot_number_after_increase=202 visible_slots_to_advance=1 +2026-04-20T15:38:27.818285Z  INFO sov_db::storage_manager::nomt_based::groups: Pruner task has completed historical_state.hit_size_limit=false accessory_state.hit_size_limit=false +2026-04-20T15:38:27.818998Z DEBUG sov_stf_runner::runner: Block execution complete time=3.013932562s +2026-04-20T15:38:27.819045Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:38:27.821259Z DEBUG compute_state_update{scope="sequencer" rollup_height=202 slot_number=202}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:38:27.821518Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:38:27.821610Z DEBUG compute_state_update{scope="sequencer" rollup_height=202 slot_number=202}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=200fb5ff990ff3bffdc12adb87076bf83d9384f3d56e2c48e6a8d2fec7256aa375aeb122709be7cbcd779425a6d652668bd03065608ec5a5ded5602b0f3a3e9d next_version=206 sesssion_starting_time=350.857µs +2026-04-20T15:38:27.822254Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:38:27.823823Z DEBUG manage_blob_submission_inside_task{blob_id=2147897908697162962042341257295275521 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x468e91b213e555d5d84cbb68c8fb810588fa70500a6a0215727a438e345b53e5 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=206 include_at=206 bytes=13 time=1.738839ms +2026-04-20T15:38:27.826721Z DEBUG compute_state_update{scope="sequencer" rollup_height=202 slot_number=202}: sov_state::nomt::prover_storage: computed next state root state_root=1886d9f990c3877d3d418c178d111f05d09a657382940adc24d75beedf94123a2741faaf221c38ce7e3a2ddded3b9f1142dbc98b48b153e44e2f700171d2bd53 next_version=206 time=5.839842ms accesses_build_time=366.868µs finishing_session_time=4.994007ms +2026-04-20T15:38:28.305956Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NxP1m0uvQdyAIM6ZVt8-DA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:38:28.347375Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:38:28.358847Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1885726 cycles +2026-04-20T15:38:28.361589Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [60, 199, 250, 112, 198, 55, 250, 234, 129, 111, 86, 76, 218, 51, 70, 90, 27, 53, 55, 0, 66, 25, 42, 239, 57, 114, 184, 95, 246, 133, 80, 172, 48, 126, 202, 64, 195, 183, 121, 241, 165, 85, 75, 162, 13, 100, 249, 118, 166, 13, 9, 57, 108, 239, 202, 53, 188, 13, 195, 132, 64, 161, 50, 212, 84, 198, 88, 87, 167, 108, 164, 233, 175, 128, 84, 128, 112, 28, 77, 233, 87, 31, 175, 52, 19, 147, 207, 14, 208, 224, 223, 149, 128, 119, 52, 173, 57, 190, 119, 71, 97, 114, 239, 228, 208, 212, 238, 40, 70, 49, 162, 146, 131, 114, 56, 91, 97, 162, 111, 243, 158, 120, 241, 30, 20, 132, 7, 8, 30, 179, 58, 204, 245, 139, 12, 61, 28, 185, 191, 230, 168, 41, 36, 38, 200, 49, 67, 243, 108, 174, 151, 213, 29, 217, 230, 235, 25, 238, 49, 124, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:38:29.029342Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:38:29.029465Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:38:30.772257Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=206 prev_hash=0xd273a1f7880d84ecff84989ea08aab3d75b1fa0e1f5fd143da8e18b39cee8687 hash=0x48e70043549200a327cc36005c2bffd464ed5ed01697f55de2e3a967f7ed6e24 producing_time=4.189602ms +2026-04-20T15:38:30.781241Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=206 current_state_root="200fb5ff990ff3bffdc12adb87076bf83d9384f3d56e2c48e6a8d2fec7256aa375aeb122709be7cbcd779425a6d652668bd03065608ec5a5ded5602b0f3a3e9d" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x468e91b213e555d5d84cbb68c8fb810588fa70500a6a0215727a438e345b53e5"] proof_blobs=[] +2026-04-20T15:38:30.788978Z DEBUG StfBlueprint::apply_slot{context=Node da_height=206}: sov_chain_state: Setting next visible slot number next_visible_slot_number=202 +2026-04-20T15:38:30.794656Z DEBUG StfBlueprint::apply_slot{context=Node da_height=206}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x468e91b213e555d5d84cbb68c8fb810588fa70500a6a0215727a438e345b53e5}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:30.796721Z DEBUG StfBlueprint::apply_slot{context=Node da_height=206}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=200fb5ff990ff3bffdc12adb87076bf83d9384f3d56e2c48e6a8d2fec7256aa375aeb122709be7cbcd779425a6d652668bd03065608ec5a5ded5602b0f3a3e9d next_version=206 sesssion_starting_time=244.848µs +2026-04-20T15:38:30.804688Z DEBUG StfBlueprint::apply_slot{context=Node da_height=206}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=1886d9f990c3877d3d418c178d111f05d09a657382940adc24d75beedf94123a5d0db2eefab411b27450b8ca68c500c599c032fb6954b08809b00c4fbc6ca4cb next_version=206 time=8.988702ms accesses_build_time=760.066µs finishing_session_time=7.83792ms +2026-04-20T15:38:30.806000Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="200fb5ff990ff3bffdc12adb87076bf83d9384f3d56e2c48e6a8d2fec7256aa375aeb122709be7cbcd779425a6d652668bd03065608ec5a5ded5602b0f3a3e9d" next_state_root="1886d9f990c3877d3d418c178d111f05d09a657382940adc24d75beedf94123a5d0db2eefab411b27450b8ca68c500c599c032fb6954b08809b00c4fbc6ca4cb" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:38:30.810781Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 206, latest_finalized_slot_number: 206, sync_status: Syncing { synced_da_height: 205, target_da_height: 206 }, .. } +2026-04-20T15:38:30.812232Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=202 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 206, latest_finalized_slot_number: 206, sync_status: Syncing { synced_da_height: 205, target_da_height: 206 }, .. } +2026-04-20T15:38:30.813235Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=202 +2026-04-20T15:38:30.815994Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:38:30.817134Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=198 +2026-04-20T15:38:30.819106Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=203 +2026-04-20T15:38:30.820299Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:38:30.821971Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=203 sequence_number=221 +2026-04-20T15:38:30.822241Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:30.822279Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=221 blob_id=2147897912328774076736795301124346000 visible_slot_number_after_increase=203 visible_slots_to_advance=1 +2026-04-20T15:38:30.826524Z DEBUG compute_state_update{scope="sequencer" rollup_height=203 slot_number=203}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:38:30.826687Z DEBUG sov_stf_runner::runner: Block execution complete time=3.007649454s +2026-04-20T15:38:30.826731Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:38:30.826844Z DEBUG compute_state_update{scope="sequencer" rollup_height=203 slot_number=203}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1886d9f990c3877d3d418c178d111f05d09a657382940adc24d75beedf94123a5d0db2eefab411b27450b8ca68c500c599c032fb6954b08809b00c4fbc6ca4cb next_version=207 sesssion_starting_time=330.668µs +2026-04-20T15:38:30.829207Z DEBUG manage_blob_submission_inside_task{blob_id=2147897912328774076736795301124346000 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x836a283d1552586127191b75f0033b5c9eb6432a4b798c46e423139a0ad4197b sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=207 include_at=207 bytes=13 time=1.580769ms +2026-04-20T15:38:30.832555Z DEBUG compute_state_update{scope="sequencer" rollup_height=203 slot_number=203}: sov_state::nomt::prover_storage: computed next state root state_root=289aacedf27195765ff339dc12591d2a85e36a8cfe98fedddd6bda60d10500fa641de0d439a55f8e1cb6a6454f7c5982a55ebab05a191331b1946db78d8237c6 next_version=207 time=6.459519ms accesses_build_time=408.338µs finishing_session_time=5.625694ms +2026-04-20T15:38:31.321802Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RkHKjK9rR6OaArahNBE4mg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:38:31.363501Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:38:31.374687Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1895838 cycles +2026-04-20T15:38:31.376948Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [41, 107, 61, 60, 90, 142, 191, 248, 219, 203, 68, 45, 84, 23, 151, 193, 183, 199, 147, 223, 82, 123, 124, 249, 92, 9, 42, 106, 21, 92, 54, 75, 54, 94, 236, 232, 125, 16, 29, 197, 54, 199, 20, 210, 199, 216, 178, 131, 143, 133, 179, 119, 190, 5, 12, 223, 173, 199, 198, 46, 137, 181, 12, 149, 88, 8, 60, 255, 218, 115, 154, 94, 104, 208, 221, 211, 95, 176, 142, 100, 28, 199, 66, 148, 249, 198, 190, 184, 11, 113, 178, 69, 239, 147, 68, 222, 92, 187, 55, 24, 214, 26, 116, 242, 224, 32, 226, 128, 96, 186, 240, 127, 76, 71, 214, 123, 158, 27, 178, 222, 64, 83, 231, 249, 118, 198, 23, 210, 29, 243, 161, 191, 248, 169, 2, 197, 243, 89, 86, 198, 149, 121, 33, 174, 244, 13, 237, 200, 164, 126, 165, 250, 161, 177, 88, 221, 246, 49, 97, 183, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:38:32.044804Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:38:32.044880Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:38:32.067403Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:38:32.309039Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:38:32.311359Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2607482 cycles +2026-04-20T15:38:32.311725Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [191, 0, 0, 0, 0, 0, 0, 0, 200, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 77, 91, 253, 168, 216, 173, 236, 154, 64, 228, 111, 23, 46, 212, 46, 38, 144, 209, 171, 88, 108, 193, 9, 139, 248, 48, 254, 34, 219, 168, 209, 97, 86, 20, 147, 68, 252, 4, 160, 112, 192, 193, 119, 159, 241, 42, 24, 216, 220, 117, 246, 83, 95, 75, 204, 159, 63, 60, 159, 114, 230, 232, 233, 178, 88, 8, 60, 255, 218, 115, 154, 94, 104, 208, 221, 211, 95, 176, 142, 100, 28, 199, 66, 148, 249, 198, 190, 184, 11, 113, 178, 69, 239, 147, 68, 222, 92, 187, 55, 24, 214, 26, 116, 242, 224, 32, 226, 128, 96, 186, 240, 127, 76, 71, 214, 123, 158, 27, 178, 222, 64, 83, 231, 249, 118, 198, 23, 210, 92, 20, 177, 80, 247, 214, 97, 186, 138, 205, 252, 79, 165, 88, 188, 6, 128, 71, 86, 99, 34, 218, 212, 14, 163, 188, 5, 104, 186, 240, 50, 152, 29, 243, 161, 191, 248, 169, 2, 197, 243, 89, 86, 198, 149, 121, 33, 174, 244, 13, 237, 200, 164, 126, 165, 250, 161, 177, 88, 221, 246, 49, 97, 183, 32, 0, 0, 0, 0, 0, 0, 0, 33, 87, 226, 242, 39, 49, 250, 210, 41, 143, 26, 188, 101, 19, 12, 136, 43, 105, 121, 236, 80, 118, 108, 155, 63, 154, 215, 73, 15, 107, 27, 67, 32, 0, 0, 0, 0, 0, 0, 0, 54, 246, 123, 188, 67, 61, 237, 103, 16, 229, 5, 146, 113, 8, 178, 215, 95, 95, 151, 239, 106, 28, 10, 135, 55, 55, 208, 95, 86, 190, 27, 9, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:38:33.275035Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:38:33.275112Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:38:33.275752Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=1951 +2026-04-20T15:38:33.278399Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:38:33.278980Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:38:33.279875Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=222 blob_id=2147897915295448782165773436695703152 +2026-04-20T15:38:33.775833Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=207 prev_hash=0x48e70043549200a327cc36005c2bffd464ed5ed01697f55de2e3a967f7ed6e24 hash=0x3e02cbf96af0a4034a97d559c8a603cd058bc4d17acdca38ee8592a1a47f1c2b producing_time=2.823162ms +2026-04-20T15:38:33.779833Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=207 current_state_root="1886d9f990c3877d3d418c178d111f05d09a657382940adc24d75beedf94123a5d0db2eefab411b27450b8ca68c500c599c032fb6954b08809b00c4fbc6ca4cb" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x836a283d1552586127191b75f0033b5c9eb6432a4b798c46e423139a0ad4197b"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x46d0932a6848f1216b52b1e3d431e8da209ddc117a9e7bb47e9a14051a4a2ec0, len=2001"] +2026-04-20T15:38:33.788507Z DEBUG StfBlueprint::apply_slot{context=Node da_height=207}: sov_chain_state: Setting next visible slot number next_visible_slot_number=203 +2026-04-20T15:38:33.794517Z DEBUG StfBlueprint::apply_slot{context=Node da_height=207}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x836a283d1552586127191b75f0033b5c9eb6432a4b798c46e423139a0ad4197b}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:33.796954Z DEBUG StfBlueprint::apply_slot{context=Node da_height=207}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1886d9f990c3877d3d418c178d111f05d09a657382940adc24d75beedf94123a5d0db2eefab411b27450b8ca68c500c599c032fb6954b08809b00c4fbc6ca4cb next_version=207 sesssion_starting_time=310.258µs +2026-04-20T15:38:33.805972Z DEBUG StfBlueprint::apply_slot{context=Node da_height=207}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=289aacedf27195765ff339dc12591d2a85e36a8cfe98fedddd6bda60d10500fa05da96b07e438f7fc4b1e6688b5f7242cdf621dd19e6c05581b07d401517ad01 next_version=207 time=10.276983ms accesses_build_time=936.994µs finishing_session_time=8.887403ms +2026-04-20T15:38:33.807260Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="1886d9f990c3877d3d418c178d111f05d09a657382940adc24d75beedf94123a5d0db2eefab411b27450b8ca68c500c599c032fb6954b08809b00c4fbc6ca4cb" next_state_root="289aacedf27195765ff339dc12591d2a85e36a8cfe98fedddd6bda60d10500fa05da96b07e438f7fc4b1e6688b5f7242cdf621dd19e6c05581b07d401517ad01" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:38:33.812129Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 207, latest_finalized_slot_number: 207, sync_status: Synced { synced_da_height: 206 }, .. } +2026-04-20T15:38:33.813577Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=203 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 207, latest_finalized_slot_number: 207, sync_status: Synced { synced_da_height: 206 }, .. } +2026-04-20T15:38:33.814550Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=203 +2026-04-20T15:38:33.817101Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:38:33.818070Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=199 +2026-04-20T15:38:33.819886Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=204 +2026-04-20T15:38:33.820935Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:38:33.826956Z DEBUG sov_stf_runner::runner: Block execution complete time=3.000226811s +2026-04-20T15:38:33.827097Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:38:33.827699Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 191. Final slot number 200 +2026-04-20T15:38:33.828338Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=204 sequence_number=223 +2026-04-20T15:38:33.828587Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:33.828644Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=223 blob_id=2147897915964010473119360598866745010 visible_slot_number_after_increase=204 visible_slots_to_advance=1 +2026-04-20T15:38:33.829403Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:38:33.830329Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:38:33.833010Z DEBUG compute_state_update{scope="sequencer" rollup_height=204 slot_number=204}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:38:33.833355Z DEBUG compute_state_update{scope="sequencer" rollup_height=204 slot_number=204}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=289aacedf27195765ff339dc12591d2a85e36a8cfe98fedddd6bda60d10500fa05da96b07e438f7fc4b1e6688b5f7242cdf621dd19e6c05581b07d401517ad01 next_version=208 sesssion_starting_time=350.398µs +2026-04-20T15:38:33.835946Z DEBUG manage_blob_submission_inside_task{blob_id=2147897915964010473119360598866745010 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x0b14edaa3aba4afc6e2629dc4097b340d5447f6f9a9bdf89e41ab54ed294b3c2 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=208 include_at=208 bytes=13 time=1.705939ms +2026-04-20T15:38:33.840447Z DEBUG compute_state_update{scope="sequencer" rollup_height=204 slot_number=204}: sov_state::nomt::prover_storage: computed next state root state_root=7e14f5fca39cdb1d2cd5193b019aa2256f24099b7abc1d65003e543c514f575544118f7eb5189c709934d83fa1edae433ccd30a0a9efa1f529c9abde9bd10e5c next_version=208 time=7.915789ms accesses_build_time=464.937µs finishing_session_time=6.999265ms +2026-04-20T15:38:36.774412Z DEBUG sp1_core_executor_runner::native: CHILD sp1_bUUk0CprQ5-yEZXAqK1_yQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:38:36.780080Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=208 prev_hash=0x3e02cbf96af0a4034a97d559c8a603cd058bc4d17acdca38ee8592a1a47f1c2b hash=0x8209828099873646094765ead99824c84e412cdb71c38650dda11dbde28469fb producing_time=3.00027ms +2026-04-20T15:38:36.790125Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=208 current_state_root="289aacedf27195765ff339dc12591d2a85e36a8cfe98fedddd6bda60d10500fa05da96b07e438f7fc4b1e6688b5f7242cdf621dd19e6c05581b07d401517ad01" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0b14edaa3aba4afc6e2629dc4097b340d5447f6f9a9bdf89e41ab54ed294b3c2"] proof_blobs=[] +2026-04-20T15:38:36.800003Z DEBUG StfBlueprint::apply_slot{context=Node da_height=208}: sov_chain_state: Setting next visible slot number next_visible_slot_number=204 +2026-04-20T15:38:36.814691Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:38:36.817684Z DEBUG StfBlueprint::apply_slot{context=Node da_height=208}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 191. Final slot number 200 +2026-04-20T15:38:36.818185Z DEBUG StfBlueprint::apply_slot{context=Node da_height=208}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x0b14edaa3aba4afc6e2629dc4097b340d5447f6f9a9bdf89e41ab54ed294b3c2}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:36.820780Z DEBUG StfBlueprint::apply_slot{context=Node da_height=208}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=289aacedf27195765ff339dc12591d2a85e36a8cfe98fedddd6bda60d10500fa05da96b07e438f7fc4b1e6688b5f7242cdf621dd19e6c05581b07d401517ad01 next_version=208 sesssion_starting_time=265.768µs +2026-04-20T15:38:36.827469Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1840061 cycles +2026-04-20T15:38:36.830200Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [119, 125, 5, 195, 110, 225, 158, 183, 34, 212, 2, 61, 56, 126, 155, 227, 10, 30, 221, 133, 129, 219, 120, 244, 196, 126, 4, 123, 115, 170, 252, 223, 98, 61, 238, 165, 9, 12, 151, 113, 94, 17, 154, 197, 155, 49, 127, 119, 164, 189, 103, 77, 126, 133, 254, 170, 13, 234, 140, 235, 218, 63, 42, 17, 78, 180, 143, 39, 194, 161, 1, 8, 217, 103, 245, 139, 165, 255, 191, 12, 30, 253, 117, 158, 191, 231, 246, 143, 212, 106, 192, 214, 98, 165, 238, 71, 83, 91, 120, 144, 37, 152, 131, 248, 188, 194, 94, 101, 33, 147, 92, 132, 186, 73, 243, 131, 172, 112, 222, 227, 207, 135, 66, 47, 14, 255, 161, 37, 208, 145, 52, 230, 126, 91, 66, 99, 246, 97, 232, 93, 160, 15, 202, 193, 29, 7, 173, 209, 97, 17, 20, 157, 207, 172, 129, 55, 89, 175, 84, 117, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:38:36.830549Z DEBUG StfBlueprint::apply_slot{context=Node da_height=208}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=7e14f5fca39cdb1d2cd5193b019aa2256f24099b7abc1d65003e543c514f57557ceb241a58c69787b38751b160a165586c0fc0235025fe9033c30121586a11d4 next_version=208 time=11.201577ms accesses_build_time=1.153902ms finishing_session_time=9.610788ms +2026-04-20T15:38:36.831871Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="289aacedf27195765ff339dc12591d2a85e36a8cfe98fedddd6bda60d10500fa05da96b07e438f7fc4b1e6688b5f7242cdf621dd19e6c05581b07d401517ad01" next_state_root="7e14f5fca39cdb1d2cd5193b019aa2256f24099b7abc1d65003e543c514f57557ceb241a58c69787b38751b160a165586c0fc0235025fe9033c30121586a11d4" aggregated_proofs=1 proof_receipts=1 +2026-04-20T15:38:36.837016Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 208, latest_finalized_slot_number: 208, sync_status: Syncing { synced_da_height: 207, target_da_height: 208 }, .. } +2026-04-20T15:38:36.837850Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=204 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 208, latest_finalized_slot_number: 208, sync_status: Syncing { synced_da_height: 207, target_da_height: 208 }, .. } +2026-04-20T15:38:36.838395Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=204 +2026-04-20T15:38:36.839914Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:38:36.840450Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=200 +2026-04-20T15:38:36.842157Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=205 +2026-04-20T15:38:36.843307Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:38:36.844799Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=205 sequence_number=224 +2026-04-20T15:38:36.845049Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=224 blob_id=2147897919610085866310323237085714273 visible_slot_number_after_increase=205 visible_slots_to_advance=1 +2026-04-20T15:38:36.845043Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:36.852205Z DEBUG manage_blob_submission_inside_task{blob_id=2147897919610085866310323237085714273 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x1796783396b61f7ceafb71369e7a4ba3046e0283defb8105a367105c78c714ab sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=209 include_at=209 bytes=13 time=1.60563ms +2026-04-20T15:38:36.855617Z DEBUG compute_state_update{scope="sequencer" rollup_height=205 slot_number=205}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:38:36.855948Z DEBUG compute_state_update{scope="sequencer" rollup_height=205 slot_number=205}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7e14f5fca39cdb1d2cd5193b019aa2256f24099b7abc1d65003e543c514f57557ceb241a58c69787b38751b160a165586c0fc0235025fe9033c30121586a11d4 next_version=209 sesssion_starting_time=6.805846ms +2026-04-20T15:38:36.856252Z DEBUG sov_stf_runner::runner: Block execution complete time=3.029186834s +2026-04-20T15:38:36.856341Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:38:36.858627Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:38:36.858930Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:38:36.861368Z DEBUG compute_state_update{scope="sequencer" rollup_height=205 slot_number=205}: sov_state::nomt::prover_storage: computed next state root state_root=3efc3974a815f85a793028ce6e8a93dd4ac05ca686d7ba7d3836903b39cb5a042fda1dee479367e56a0c25d6e8568d99dae1f8536ed6c37bc319dd6b9b23144a next_version=209 time=12.612988ms accesses_build_time=378.608µs finishing_session_time=5.299326ms +2026-04-20T15:38:37.318239Z DEBUG sp1_core_executor_runner::native: CHILD sp1_iKIZeOmMQoWOp6Qr9-to9Q==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:38:37.361190Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:38:37.373861Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1936903 cycles +2026-04-20T15:38:37.376663Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [59, 222, 213, 9, 147, 21, 128, 157, 4, 44, 19, 62, 5, 244, 56, 80, 109, 136, 117, 218, 184, 237, 11, 28, 9, 212, 206, 157, 87, 165, 123, 128, 123, 7, 48, 232, 34, 81, 21, 161, 38, 9, 216, 39, 1, 172, 18, 199, 222, 49, 34, 116, 36, 189, 48, 7, 187, 173, 51, 255, 142, 122, 21, 127, 68, 22, 34, 117, 240, 143, 143, 48, 118, 198, 193, 198, 169, 205, 189, 162, 186, 207, 52, 41, 152, 189, 171, 29, 205, 197, 47, 141, 134, 120, 120, 3, 120, 196, 129, 229, 139, 46, 151, 252, 140, 255, 157, 66, 74, 97, 164, 29, 174, 185, 75, 53, 101, 202, 8, 8, 132, 24, 106, 202, 112, 41, 147, 77, 250, 224, 135, 48, 202, 23, 163, 153, 247, 155, 162, 61, 52, 94, 216, 205, 147, 232, 87, 173, 249, 224, 102, 132, 25, 128, 98, 231, 245, 26, 127, 118, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:38:37.515334Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:38:37.515412Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:38:38.111767Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:38:38.111848Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:38:39.784513Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=209 prev_hash=0x8209828099873646094765ead99824c84e412cdb71c38650dda11dbde28469fb hash=0xc4d38a5dfe01179fb7d8f0e3e8933fd34e58790f2496404da0ca119f852e99c3 producing_time=3.598997ms +2026-04-20T15:38:39.788481Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=209 current_state_root="7e14f5fca39cdb1d2cd5193b019aa2256f24099b7abc1d65003e543c514f57557ceb241a58c69787b38751b160a165586c0fc0235025fe9033c30121586a11d4" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1796783396b61f7ceafb71369e7a4ba3046e0283defb8105a367105c78c714ab"] proof_blobs=[] +2026-04-20T15:38:39.797653Z DEBUG StfBlueprint::apply_slot{context=Node da_height=209}: sov_chain_state: Setting next visible slot number next_visible_slot_number=205 +2026-04-20T15:38:39.804097Z DEBUG StfBlueprint::apply_slot{context=Node da_height=209}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x1796783396b61f7ceafb71369e7a4ba3046e0283defb8105a367105c78c714ab}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:39.806444Z DEBUG StfBlueprint::apply_slot{context=Node da_height=209}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7e14f5fca39cdb1d2cd5193b019aa2256f24099b7abc1d65003e543c514f57557ceb241a58c69787b38751b160a165586c0fc0235025fe9033c30121586a11d4 next_version=209 sesssion_starting_time=333.218µs +2026-04-20T15:38:39.815352Z DEBUG StfBlueprint::apply_slot{context=Node da_height=209}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3efc3974a815f85a793028ce6e8a93dd4ac05ca686d7ba7d3836903b39cb5a0433526afec6e7ed40f7c0fba30bed361f9a47ef1c12f549506ba5892451059414 next_version=209 time=10.011765ms accesses_build_time=757.135µs finishing_session_time=8.765093ms +2026-04-20T15:38:39.816633Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="7e14f5fca39cdb1d2cd5193b019aa2256f24099b7abc1d65003e543c514f57557ceb241a58c69787b38751b160a165586c0fc0235025fe9033c30121586a11d4" next_state_root="3efc3974a815f85a793028ce6e8a93dd4ac05ca686d7ba7d3836903b39cb5a0433526afec6e7ed40f7c0fba30bed361f9a47ef1c12f549506ba5892451059414" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:38:39.821588Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 209, latest_finalized_slot_number: 209, sync_status: Synced { synced_da_height: 208 }, .. } +2026-04-20T15:38:39.823191Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=205 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 209, latest_finalized_slot_number: 209, sync_status: Synced { synced_da_height: 208 }, .. } +2026-04-20T15:38:39.824227Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=205 +2026-04-20T15:38:39.827082Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:38:39.828085Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=201 +2026-04-20T15:38:39.829253Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=206 +2026-04-20T15:38:39.829722Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:38:39.830557Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=206 sequence_number=225 +2026-04-20T15:38:39.830724Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:39.830836Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=225 blob_id=2147897923219977615870822633398886106 visible_slot_number_after_increase=206 visible_slots_to_advance=1 +2026-04-20T15:38:39.836493Z DEBUG compute_state_update{scope="sequencer" rollup_height=206 slot_number=206}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:38:39.836797Z DEBUG compute_state_update{scope="sequencer" rollup_height=206 slot_number=206}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3efc3974a815f85a793028ce6e8a93dd4ac05ca686d7ba7d3836903b39cb5a0433526afec6e7ed40f7c0fba30bed361f9a47ef1c12f549506ba5892451059414 next_version=210 sesssion_starting_time=3.05976ms +2026-04-20T15:38:39.836991Z DEBUG manage_blob_submission_inside_task{blob_id=2147897923219977615870822633398886106 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x23d724b916b4f8989527d1d8ec323a06d76c4749d2d537c3b78ec5bb472e0717 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=210 include_at=210 bytes=13 time=1.59918ms +2026-04-20T15:38:39.837309Z DEBUG sov_stf_runner::runner: Block execution complete time=2.980993927s +2026-04-20T15:38:39.837436Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:38:39.840091Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:38:39.840871Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:38:39.842161Z DEBUG compute_state_update{scope="sequencer" rollup_height=206 slot_number=206}: sov_state::nomt::prover_storage: computed next state root state_root=10e601765ac92a66b6657419f62c99783e2c58c6a7edd219ee2bec86a2d197fc1ffa30d1f5de5f4d1f0e77c2b801fb30ea73f6219d7d49356164457226462ee1 next_version=210 time=8.804913ms accesses_build_time=374.748µs finishing_session_time=5.270806ms +2026-04-20T15:38:40.303736Z DEBUG sp1_core_executor_runner::native: CHILD sp1_YtOZ6rhjS6uZOJ1DpvOiQw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:38:40.346968Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:38:40.358924Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1941498 cycles +2026-04-20T15:38:40.360141Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [30, 74, 160, 203, 143, 68, 161, 195, 205, 233, 88, 133, 29, 221, 179, 19, 241, 245, 112, 139, 23, 182, 3, 29, 196, 35, 36, 29, 137, 26, 54, 197, 18, 213, 220, 163, 198, 220, 198, 255, 246, 136, 183, 176, 235, 38, 2, 244, 37, 224, 208, 190, 210, 39, 114, 229, 170, 159, 244, 158, 190, 45, 4, 55, 30, 176, 95, 50, 229, 12, 150, 66, 46, 216, 202, 136, 251, 46, 204, 66, 184, 10, 80, 102, 171, 208, 103, 254, 68, 166, 150, 56, 92, 213, 27, 161, 107, 181, 2, 31, 250, 188, 35, 219, 35, 200, 199, 120, 117, 163, 54, 181, 218, 169, 158, 59, 199, 32, 243, 116, 183, 107, 27, 80, 246, 73, 122, 251, 93, 12, 77, 117, 7, 73, 218, 63, 131, 229, 73, 34, 209, 234, 201, 42, 231, 204, 61, 1, 203, 82, 121, 65, 139, 81, 94, 54, 39, 239, 174, 209, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:38:41.048396Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:38:41.048479Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:38:42.789340Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=210 prev_hash=0xc4d38a5dfe01179fb7d8f0e3e8933fd34e58790f2496404da0ca119f852e99c3 hash=0x2f6f021711cf797681219af75d41e021ab3af58add31e849f66e08828e35c20c producing_time=3.130529ms +2026-04-20T15:38:42.800418Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=210 current_state_root="3efc3974a815f85a793028ce6e8a93dd4ac05ca686d7ba7d3836903b39cb5a0433526afec6e7ed40f7c0fba30bed361f9a47ef1c12f549506ba5892451059414" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x23d724b916b4f8989527d1d8ec323a06d76c4749d2d537c3b78ec5bb472e0717"] proof_blobs=[] +2026-04-20T15:38:42.808815Z DEBUG StfBlueprint::apply_slot{context=Node da_height=210}: sov_chain_state: Setting next visible slot number next_visible_slot_number=206 +2026-04-20T15:38:42.814796Z DEBUG StfBlueprint::apply_slot{context=Node da_height=210}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x23d724b916b4f8989527d1d8ec323a06d76c4749d2d537c3b78ec5bb472e0717}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:42.817024Z DEBUG StfBlueprint::apply_slot{context=Node da_height=210}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3efc3974a815f85a793028ce6e8a93dd4ac05ca686d7ba7d3836903b39cb5a0433526afec6e7ed40f7c0fba30bed361f9a47ef1c12f549506ba5892451059414 next_version=210 sesssion_starting_time=241.849µs +2026-04-20T15:38:42.825005Z DEBUG StfBlueprint::apply_slot{context=Node da_height=210}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=10e601765ac92a66b6657419f62c99783e2c58c6a7edd219ee2bec86a2d197fc2d0b8406cf30b1ba2802b4cff1ff09763487e49da7a7d2663c0433c690cfcdfe next_version=210 time=9.011942ms accesses_build_time=773.575µs finishing_session_time=7.833859ms +2026-04-20T15:38:42.826332Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3efc3974a815f85a793028ce6e8a93dd4ac05ca686d7ba7d3836903b39cb5a0433526afec6e7ed40f7c0fba30bed361f9a47ef1c12f549506ba5892451059414" next_state_root="10e601765ac92a66b6657419f62c99783e2c58c6a7edd219ee2bec86a2d197fc2d0b8406cf30b1ba2802b4cff1ff09763487e49da7a7d2663c0433c690cfcdfe" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:38:42.830802Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 210, latest_finalized_slot_number: 210, sync_status: Syncing { synced_da_height: 209, target_da_height: 210 }, .. } +2026-04-20T15:38:42.832917Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=206 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 210, latest_finalized_slot_number: 210, sync_status: Syncing { synced_da_height: 209, target_da_height: 210 }, .. } +2026-04-20T15:38:42.833827Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=206 +2026-04-20T15:38:42.836512Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:38:42.837618Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=202 +2026-04-20T15:38:42.839048Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=207 +2026-04-20T15:38:42.839619Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:38:42.840558Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=207 sequence_number=226 +2026-04-20T15:38:42.840764Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:42.840849Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=226 blob_id=2147897926858837839312546098445906679 visible_slot_number_after_increase=207 visible_slots_to_advance=1 +2026-04-20T15:38:42.846814Z DEBUG manage_blob_submission_inside_task{blob_id=2147897926858837839312546098445906679 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xacddf2a0300faa7ea992592a9a05b2b5e18d50698035a1e01f04bbb0e0723b46 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=211 include_at=211 bytes=13 time=1.52909ms +2026-04-20T15:38:42.848287Z DEBUG compute_state_update{scope="sequencer" rollup_height=207 slot_number=207}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:38:42.848652Z DEBUG compute_state_update{scope="sequencer" rollup_height=207 slot_number=207}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=10e601765ac92a66b6657419f62c99783e2c58c6a7edd219ee2bec86a2d197fc2d0b8406cf30b1ba2802b4cff1ff09763487e49da7a7d2663c0433c690cfcdfe next_version=211 sesssion_starting_time=4.69579ms +2026-04-20T15:38:42.848916Z DEBUG sov_stf_runner::runner: Block execution complete time=3.011501499s +2026-04-20T15:38:42.849006Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:38:42.850267Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:38:42.850827Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:38:42.854434Z DEBUG compute_state_update{scope="sequencer" rollup_height=207 slot_number=207}: sov_state::nomt::prover_storage: computed next state root state_root=3933b0a442e025456509b11de5da7ba9ec40786f46bb9bd9b783c7e662c463f70487928ecb514e60c48f7cb9a1b97f5098900eadb915c0b866dd815026958f77 next_version=211 time=10.859899ms accesses_build_time=374.467µs finishing_session_time=5.674794ms +2026-04-20T15:38:43.325514Z DEBUG sp1_core_executor_runner::native: CHILD sp1_WxxYO6UHQD6KK5eHlP6I-Q==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:38:43.368125Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:38:43.380001Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1926172 cycles +2026-04-20T15:38:43.382932Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [44, 207, 220, 210, 125, 48, 214, 251, 229, 5, 8, 157, 86, 76, 195, 172, 123, 2, 99, 57, 59, 253, 3, 249, 194, 23, 212, 212, 250, 175, 141, 174, 51, 211, 227, 229, 254, 84, 11, 158, 10, 224, 183, 10, 239, 24, 187, 19, 218, 181, 170, 140, 227, 175, 242, 236, 7, 127, 207, 118, 72, 137, 188, 249, 5, 215, 86, 251, 73, 136, 98, 252, 98, 249, 1, 235, 135, 173, 242, 27, 212, 23, 86, 134, 8, 45, 82, 167, 183, 145, 179, 147, 54, 71, 207, 94, 89, 196, 25, 30, 122, 32, 251, 3, 19, 3, 181, 21, 50, 27, 12, 242, 157, 224, 139, 230, 123, 41, 38, 1, 118, 229, 146, 214, 22, 181, 242, 131, 7, 122, 141, 178, 106, 251, 219, 242, 29, 145, 219, 108, 183, 158, 146, 49, 1, 35, 28, 254, 151, 5, 122, 28, 72, 130, 36, 43, 182, 203, 9, 198, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:38:44.061709Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:38:44.061790Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:38:45.793875Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=211 prev_hash=0x2f6f021711cf797681219af75d41e021ab3af58add31e849f66e08828e35c20c hash=0xb8939d085a04798475dbcea4f88fa54e6cb7cfb1dd584f5d4c1b839138daf0fc producing_time=3.788436ms +2026-04-20T15:38:45.802116Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=211 current_state_root="10e601765ac92a66b6657419f62c99783e2c58c6a7edd219ee2bec86a2d197fc2d0b8406cf30b1ba2802b4cff1ff09763487e49da7a7d2663c0433c690cfcdfe" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xacddf2a0300faa7ea992592a9a05b2b5e18d50698035a1e01f04bbb0e0723b46"] proof_blobs=[] +2026-04-20T15:38:45.811287Z DEBUG StfBlueprint::apply_slot{context=Node da_height=211}: sov_chain_state: Setting next visible slot number next_visible_slot_number=207 +2026-04-20T15:38:45.817685Z DEBUG StfBlueprint::apply_slot{context=Node da_height=211}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xacddf2a0300faa7ea992592a9a05b2b5e18d50698035a1e01f04bbb0e0723b46}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:45.820029Z DEBUG StfBlueprint::apply_slot{context=Node da_height=211}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=10e601765ac92a66b6657419f62c99783e2c58c6a7edd219ee2bec86a2d197fc2d0b8406cf30b1ba2802b4cff1ff09763487e49da7a7d2663c0433c690cfcdfe next_version=211 sesssion_starting_time=262.808µs +2026-04-20T15:38:45.829119Z DEBUG StfBlueprint::apply_slot{context=Node da_height=211}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3933b0a442e025456509b11de5da7ba9ec40786f46bb9bd9b783c7e662c463f73c2808a889a35e4d02e700c9f180f71264de606bd9066c02be615034fbc7af91 next_version=211 time=10.166324ms accesses_build_time=796.685µs finishing_session_time=8.924512ms +2026-04-20T15:38:45.830430Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="10e601765ac92a66b6657419f62c99783e2c58c6a7edd219ee2bec86a2d197fc2d0b8406cf30b1ba2802b4cff1ff09763487e49da7a7d2663c0433c690cfcdfe" next_state_root="3933b0a442e025456509b11de5da7ba9ec40786f46bb9bd9b783c7e662c463f73c2808a889a35e4d02e700c9f180f71264de606bd9066c02be615034fbc7af91" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:38:45.835289Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 211, latest_finalized_slot_number: 211, sync_status: Syncing { synced_da_height: 210, target_da_height: 211 }, .. } +2026-04-20T15:38:45.836934Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=207 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 211, latest_finalized_slot_number: 211, sync_status: Syncing { synced_da_height: 210, target_da_height: 211 }, .. } +2026-04-20T15:38:45.838005Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=207 +2026-04-20T15:38:45.841035Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:38:45.842113Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=203 +2026-04-20T15:38:45.844242Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=208 +2026-04-20T15:38:45.845345Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:38:45.847169Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=208 sequence_number=227 +2026-04-20T15:38:45.847391Z DEBUG sov_stf_runner::runner: Block execution complete time=2.998403003s +2026-04-20T15:38:45.847442Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:38:45.847447Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:45.847512Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=227 blob_id=2147897930494046513459156406233185004 visible_slot_number_after_increase=208 visible_slots_to_advance=1 +2026-04-20T15:38:45.849948Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:38:45.850944Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:38:45.851447Z DEBUG compute_state_update{scope="sequencer" rollup_height=208 slot_number=208}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:38:45.851777Z DEBUG compute_state_update{scope="sequencer" rollup_height=208 slot_number=208}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3933b0a442e025456509b11de5da7ba9ec40786f46bb9bd9b783c7e662c463f73c2808a889a35e4d02e700c9f180f71264de606bd9066c02be615034fbc7af91 next_version=212 sesssion_starting_time=336.208µs +2026-04-20T15:38:45.854380Z DEBUG manage_blob_submission_inside_task{blob_id=2147897930494046513459156406233185004 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xf435bc18b9a2407fd4eefb5da9fe8be95fcd23d47140d6171e39c13a7284cdbe sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=212 include_at=212 bytes=13 time=1.51424ms +2026-04-20T15:38:45.857523Z DEBUG compute_state_update{scope="sequencer" rollup_height=208 slot_number=208}: sov_state::nomt::prover_storage: computed next state root state_root=5348ffbab4ea99d31b79906cd5efe5fdcd1d2323705cb625846d5ce17ee4a1be3fe1353c0f65dd985f862f21ab3a697959378cb1465a436c8ac30155ab79373e next_version=212 time=6.482108ms accesses_build_time=390.587µs finishing_session_time=5.644974ms +2026-04-20T15:38:46.334578Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1BGljG_mRQGB3wnh9JI_GQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:38:46.375395Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:38:46.386296Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1852685 cycles +2026-04-20T15:38:46.389137Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [70, 3, 212, 238, 221, 16, 21, 203, 25, 71, 94, 199, 103, 207, 162, 73, 93, 200, 49, 181, 250, 134, 79, 176, 215, 245, 71, 175, 70, 181, 241, 183, 26, 76, 18, 245, 105, 144, 100, 99, 27, 172, 146, 18, 95, 89, 124, 240, 178, 110, 218, 21, 251, 176, 13, 196, 169, 150, 226, 83, 64, 67, 72, 17, 73, 168, 129, 138, 18, 68, 166, 144, 175, 121, 65, 107, 170, 166, 16, 150, 155, 217, 162, 225, 53, 87, 123, 97, 136, 142, 228, 88, 71, 1, 35, 108, 2, 132, 105, 167, 17, 252, 120, 211, 210, 185, 202, 134, 161, 189, 173, 141, 117, 10, 45, 1, 9, 174, 34, 224, 171, 84, 159, 204, 48, 216, 61, 66, 210, 115, 161, 247, 136, 13, 132, 236, 255, 132, 152, 158, 160, 138, 171, 61, 117, 177, 250, 14, 31, 95, 209, 67, 218, 142, 24, 179, 156, 238, 134, 135, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:38:47.066007Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:38:47.066105Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:38:48.797953Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=212 prev_hash=0xb8939d085a04798475dbcea4f88fa54e6cb7cfb1dd584f5d4c1b839138daf0fc hash=0xeac8808b267c16a1d284d0088090bbc1d7b4e59f8a1024d893f872e036feb19b producing_time=2.997401ms +2026-04-20T15:38:48.800242Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=212 current_state_root="3933b0a442e025456509b11de5da7ba9ec40786f46bb9bd9b783c7e662c463f73c2808a889a35e4d02e700c9f180f71264de606bd9066c02be615034fbc7af91" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf435bc18b9a2407fd4eefb5da9fe8be95fcd23d47140d6171e39c13a7284cdbe"] proof_blobs=[] +2026-04-20T15:38:48.808972Z DEBUG StfBlueprint::apply_slot{context=Node da_height=212}: sov_chain_state: Setting next visible slot number next_visible_slot_number=208 +2026-04-20T15:38:48.815292Z DEBUG StfBlueprint::apply_slot{context=Node da_height=212}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xf435bc18b9a2407fd4eefb5da9fe8be95fcd23d47140d6171e39c13a7284cdbe}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:48.817597Z DEBUG StfBlueprint::apply_slot{context=Node da_height=212}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3933b0a442e025456509b11de5da7ba9ec40786f46bb9bd9b783c7e662c463f73c2808a889a35e4d02e700c9f180f71264de606bd9066c02be615034fbc7af91 next_version=212 sesssion_starting_time=330.918µs +2026-04-20T15:38:48.826744Z DEBUG StfBlueprint::apply_slot{context=Node da_height=212}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=5348ffbab4ea99d31b79906cd5efe5fdcd1d2323705cb625846d5ce17ee4a1be3552ee45fec5f5380656660cffcf275ffc3003b0a148bc8c06b17a47d5f5a17e next_version=212 time=10.246784ms accesses_build_time=754.476µs finishing_session_time=9.014301ms +2026-04-20T15:38:48.828074Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3933b0a442e025456509b11de5da7ba9ec40786f46bb9bd9b783c7e662c463f73c2808a889a35e4d02e700c9f180f71264de606bd9066c02be615034fbc7af91" next_state_root="5348ffbab4ea99d31b79906cd5efe5fdcd1d2323705cb625846d5ce17ee4a1be3552ee45fec5f5380656660cffcf275ffc3003b0a148bc8c06b17a47d5f5a17e" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:38:48.832086Z DEBUG sov_stf_runner::runner: Block execution complete time=2.984648963s +2026-04-20T15:38:48.832192Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:38:48.833060Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 212, latest_finalized_slot_number: 211, sync_status: Syncing { synced_da_height: 211, target_da_height: 212 }, .. } +2026-04-20T15:38:48.834508Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=208 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 212, latest_finalized_slot_number: 211, sync_status: Syncing { synced_da_height: 211, target_da_height: 212 }, .. } +2026-04-20T15:38:48.835083Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:38:48.835557Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=208 +2026-04-20T15:38:48.835822Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:38:48.838361Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:38:48.839348Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=204 +2026-04-20T15:38:48.841209Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=209 +2026-04-20T15:38:48.842149Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:38:48.843714Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=209 sequence_number=228 +2026-04-20T15:38:48.844033Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=228 blob_id=2147897934115981721105795009808103078 visible_slot_number_after_increase=209 visible_slots_to_advance=1 +2026-04-20T15:38:48.844179Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:48.849026Z DEBUG compute_state_update{scope="sequencer" rollup_height=209 slot_number=209}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5348ffbab4ea99d31b79906cd5efe5fdcd1d2323705cb625846d5ce17ee4a1be3552ee45fec5f5380656660cffcf275ffc3003b0a148bc8c06b17a47d5f5a17e next_version=213 sesssion_starting_time=308.458µs +2026-04-20T15:38:48.852295Z DEBUG manage_blob_submission_inside_task{blob_id=2147897934115981721105795009808103078 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xcd09cd3b8f881c883a90ff4d49c0edcd2051d6dbe887901df0df3b5772d850c4 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=213 include_at=213 bytes=13 time=1.902797ms +2026-04-20T15:38:48.854893Z DEBUG compute_state_update{scope="sequencer" rollup_height=209 slot_number=209}: sov_state::nomt::prover_storage: computed next state root state_root=0d645e5f4bfd87c0745903d96b7ae8b154328db9b587a95df4010aa9707c8f5b19c714aca58a086cd0e8d23f31645795e2e9e489da92b592068a73b74df7f86c next_version=213 time=6.615918ms accesses_build_time=427.608µs finishing_session_time=5.719463ms +2026-04-20T15:38:49.302578Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eCl7I4EuQNac2hlHplPmfQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:38:49.345369Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:38:49.357177Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1925502 cycles +2026-04-20T15:38:49.359724Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [32, 15, 181, 255, 153, 15, 243, 191, 253, 193, 42, 219, 135, 7, 107, 248, 61, 147, 132, 243, 213, 110, 44, 72, 230, 168, 210, 254, 199, 37, 106, 163, 117, 174, 177, 34, 112, 155, 231, 203, 205, 119, 148, 37, 166, 214, 82, 102, 139, 208, 48, 101, 96, 142, 197, 165, 222, 213, 96, 43, 15, 58, 62, 157, 26, 115, 124, 165, 116, 64, 192, 191, 41, 83, 5, 236, 75, 12, 224, 69, 142, 46, 250, 224, 68, 243, 128, 134, 11, 211, 177, 64, 13, 99, 176, 237, 99, 209, 25, 169, 51, 177, 119, 10, 111, 18, 179, 115, 136, 96, 176, 225, 34, 236, 90, 29, 229, 151, 94, 178, 72, 169, 217, 47, 64, 210, 130, 74, 72, 231, 0, 67, 84, 146, 0, 163, 39, 204, 54, 0, 92, 43, 255, 212, 100, 237, 94, 208, 22, 151, 245, 93, 226, 227, 169, 103, 247, 237, 110, 36, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:38:50.040721Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:38:50.040797Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:38:51.802085Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=213 prev_hash=0xeac8808b267c16a1d284d0088090bbc1d7b4e59f8a1024d893f872e036feb19b hash=0x0c592c19f6163e08c896256702a08be0bca3bf9d8fbfb6e8954818b87dbb3006 producing_time=2.961741ms +2026-04-20T15:38:51.805066Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=213 current_state_root="5348ffbab4ea99d31b79906cd5efe5fdcd1d2323705cb625846d5ce17ee4a1be3552ee45fec5f5380656660cffcf275ffc3003b0a148bc8c06b17a47d5f5a17e" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xcd09cd3b8f881c883a90ff4d49c0edcd2051d6dbe887901df0df3b5772d850c4"] proof_blobs=[] +2026-04-20T15:38:51.812636Z DEBUG StfBlueprint::apply_slot{context=Node da_height=213}: sov_chain_state: Setting next visible slot number next_visible_slot_number=209 +2026-04-20T15:38:51.818394Z DEBUG StfBlueprint::apply_slot{context=Node da_height=213}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xcd09cd3b8f881c883a90ff4d49c0edcd2051d6dbe887901df0df3b5772d850c4}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:51.820444Z DEBUG StfBlueprint::apply_slot{context=Node da_height=213}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5348ffbab4ea99d31b79906cd5efe5fdcd1d2323705cb625846d5ce17ee4a1be3552ee45fec5f5380656660cffcf275ffc3003b0a148bc8c06b17a47d5f5a17e next_version=213 sesssion_starting_time=243.839µs +2026-04-20T15:38:51.828493Z DEBUG StfBlueprint::apply_slot{context=Node da_height=213}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=0d645e5f4bfd87c0745903d96b7ae8b154328db9b587a95df4010aa9707c8f5b009d70dff8a9bd7e4511989fdec1c401b0035be4c608a1fd192b68a033f97cd0 next_version=213 time=9.060161ms accesses_build_time=749.775µs finishing_session_time=7.919618ms +2026-04-20T15:38:51.829801Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3933b0a442e025456509b11de5da7ba9ec40786f46bb9bd9b783c7e662c463f73c2808a889a35e4d02e700c9f180f71264de606bd9066c02be615034fbc7af91" next_state_root="0d645e5f4bfd87c0745903d96b7ae8b154328db9b587a95df4010aa9707c8f5b009d70dff8a9bd7e4511989fdec1c401b0035be4c608a1fd192b68a033f97cd0" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:38:51.834358Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 213, latest_finalized_slot_number: 212, sync_status: Syncing { synced_da_height: 212, target_da_height: 213 }, .. } +2026-04-20T15:38:51.835749Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=209 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 213, latest_finalized_slot_number: 212, sync_status: Syncing { synced_da_height: 212, target_da_height: 213 }, .. } +2026-04-20T15:38:51.836659Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=209 +2026-04-20T15:38:51.839110Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:38:51.840076Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=205 +2026-04-20T15:38:51.841401Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=210 +2026-04-20T15:38:51.842007Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:38:51.843006Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=210 sequence_number=229 +2026-04-20T15:38:51.843200Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:51.843297Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=229 blob_id=2147897937741562076706562084633030987 visible_slot_number_after_increase=210 visible_slots_to_advance=1 +2026-04-20T15:38:51.845698Z DEBUG sov_stf_runner::runner: Block execution complete time=3.013526196s +2026-04-20T15:38:51.845749Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:38:51.846782Z DEBUG compute_state_update{scope="sequencer" rollup_height=210 slot_number=210}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:38:51.847183Z DEBUG compute_state_update{scope="sequencer" rollup_height=210 slot_number=210}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0d645e5f4bfd87c0745903d96b7ae8b154328db9b587a95df4010aa9707c8f5b009d70dff8a9bd7e4511989fdec1c401b0035be4c608a1fd192b68a033f97cd0 next_version=214 sesssion_starting_time=411.337µs +2026-04-20T15:38:51.849493Z DEBUG manage_blob_submission_inside_task{blob_id=2147897937741562076706562084633030987 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x018596f00cfa5fdd98b9d406bd107aff4af58a2415123e7d501411f57b2c7b01 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=214 include_at=214 bytes=13 time=1.660849ms +2026-04-20T15:38:51.849965Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:38:51.851025Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:38:51.852289Z DEBUG compute_state_update{scope="sequencer" rollup_height=210 slot_number=210}: sov_state::nomt::prover_storage: computed next state root state_root=33657835b997e57fc28a85a25d7b445e47330bff3c63d76c9683044238ab9fcb7601fc19056ac73b260182105c230f273fc6e5cee189b7abe32b46b7be627fd0 next_version=214 time=5.928142ms accesses_build_time=394.678µs finishing_session_time=5.007907ms +2026-04-20T15:38:52.316407Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5sEBzdp8Sn-MAeQVoWCklQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:38:52.362870Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:38:52.375184Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2056864 cycles +2026-04-20T15:38:52.377969Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [24, 134, 217, 249, 144, 195, 135, 125, 61, 65, 140, 23, 141, 17, 31, 5, 208, 154, 101, 115, 130, 148, 10, 220, 36, 215, 91, 238, 223, 148, 18, 58, 93, 13, 178, 238, 250, 180, 17, 178, 116, 80, 184, 202, 104, 197, 0, 197, 153, 192, 50, 251, 105, 84, 176, 136, 9, 176, 12, 79, 188, 108, 164, 203, 78, 209, 138, 126, 195, 108, 119, 153, 97, 249, 117, 14, 0, 27, 169, 157, 140, 104, 113, 39, 127, 211, 238, 21, 157, 124, 70, 19, 77, 187, 17, 104, 94, 255, 139, 184, 116, 157, 239, 51, 128, 57, 164, 126, 118, 25, 100, 154, 205, 229, 202, 113, 176, 1, 116, 244, 143, 122, 81, 17, 42, 10, 205, 65, 62, 2, 203, 249, 106, 240, 164, 3, 74, 151, 213, 89, 200, 166, 3, 205, 5, 139, 196, 209, 122, 205, 202, 56, 238, 133, 146, 161, 164, 127, 28, 43, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:38:53.106121Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:38:53.106198Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:38:54.806508Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=214 prev_hash=0x0c592c19f6163e08c896256702a08be0bca3bf9d8fbfb6e8954818b87dbb3006 hash=0xb979b8cad893f6169d3844784670061ef21a4be8808d5dd3914b118d0e10f616 producing_time=3.142019ms +2026-04-20T15:38:54.808495Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=214 current_state_root="0d645e5f4bfd87c0745903d96b7ae8b154328db9b587a95df4010aa9707c8f5b009d70dff8a9bd7e4511989fdec1c401b0035be4c608a1fd192b68a033f97cd0" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x018596f00cfa5fdd98b9d406bd107aff4af58a2415123e7d501411f57b2c7b01"] proof_blobs=[] +2026-04-20T15:38:54.816593Z DEBUG StfBlueprint::apply_slot{context=Node da_height=214}: sov_chain_state: Setting next visible slot number next_visible_slot_number=210 +2026-04-20T15:38:54.822726Z DEBUG StfBlueprint::apply_slot{context=Node da_height=214}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x018596f00cfa5fdd98b9d406bd107aff4af58a2415123e7d501411f57b2c7b01}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:54.824962Z DEBUG StfBlueprint::apply_slot{context=Node da_height=214}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0d645e5f4bfd87c0745903d96b7ae8b154328db9b587a95df4010aa9707c8f5b009d70dff8a9bd7e4511989fdec1c401b0035be4c608a1fd192b68a033f97cd0 next_version=214 sesssion_starting_time=241.589µs +2026-04-20T15:38:54.833660Z DEBUG StfBlueprint::apply_slot{context=Node da_height=214}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=33657835b997e57fc28a85a25d7b445e47330bff3c63d76c9683044238ab9fcb022941537e901bcea23143fbe3f6cb3162437205113b6d7a63da8957c4698e1a next_version=214 time=9.749026ms accesses_build_time=788.294µs finishing_session_time=8.564715ms +2026-04-20T15:38:54.835043Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="5348ffbab4ea99d31b79906cd5efe5fdcd1d2323705cb625846d5ce17ee4a1be3552ee45fec5f5380656660cffcf275ffc3003b0a148bc8c06b17a47d5f5a17e" next_state_root="33657835b997e57fc28a85a25d7b445e47330bff3c63d76c9683044238ab9fcb022941537e901bcea23143fbe3f6cb3162437205113b6d7a63da8957c4698e1a" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:38:54.839658Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 214, latest_finalized_slot_number: 213, sync_status: Syncing { synced_da_height: 213, target_da_height: 214 }, .. } +2026-04-20T15:38:54.841040Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=210 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 214, latest_finalized_slot_number: 213, sync_status: Syncing { synced_da_height: 213, target_da_height: 214 }, .. } +2026-04-20T15:38:54.841971Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=210 +2026-04-20T15:38:54.844647Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:38:54.845694Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=206 +2026-04-20T15:38:54.847621Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=211 +2026-04-20T15:38:54.848778Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:38:54.850410Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=211 sequence_number=230 +2026-04-20T15:38:54.850715Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=230 blob_id=2147897941378045182580126929729346925 visible_slot_number_after_increase=211 visible_slots_to_advance=1 +2026-04-20T15:38:54.850683Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:54.852760Z DEBUG sov_stf_runner::runner: Block execution complete time=3.007015248s +2026-04-20T15:38:54.852868Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:38:54.855165Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:38:54.855488Z DEBUG compute_state_update{scope="sequencer" rollup_height=211 slot_number=211}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:38:54.855784Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:38:54.855852Z DEBUG compute_state_update{scope="sequencer" rollup_height=211 slot_number=211}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=33657835b997e57fc28a85a25d7b445e47330bff3c63d76c9683044238ab9fcb022941537e901bcea23143fbe3f6cb3162437205113b6d7a63da8957c4698e1a next_version=215 sesssion_starting_time=377.118µs +2026-04-20T15:38:54.858459Z DEBUG manage_blob_submission_inside_task{blob_id=2147897941378045182580126929729346925 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x78ccfaaba0267dbd62b1bb346ed81994c9bf3b902fa0324dfbf0bdff8f606f7f sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=215 include_at=215 bytes=13 time=1.695419ms +2026-04-20T15:38:54.861774Z DEBUG compute_state_update{scope="sequencer" rollup_height=211 slot_number=211}: sov_state::nomt::prover_storage: computed next state root state_root=4cbe569f3447e095305eaebc94972d582a4b0377a69df7f9bb14da1239db447a4ab69ef3b36877c1dae4faada883615c063aac19bc85109182b3474b9af1ea3d next_version=215 time=6.806846ms accesses_build_time=480.017µs finishing_session_time=5.807552ms +2026-04-20T15:38:55.310773Z DEBUG sp1_core_executor_runner::native: CHILD sp1_nvYUOe34SGepllbwY5dS2A==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:38:55.381751Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:38:55.395101Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4329100 cycles +2026-04-20T15:38:55.398003Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [40, 154, 172, 237, 242, 113, 149, 118, 95, 243, 57, 220, 18, 89, 29, 42, 133, 227, 106, 140, 254, 152, 254, 221, 221, 107, 218, 96, 209, 5, 0, 250, 5, 218, 150, 176, 126, 67, 143, 127, 196, 177, 230, 104, 139, 95, 114, 66, 205, 246, 33, 221, 25, 230, 192, 85, 129, 176, 125, 64, 21, 23, 173, 1, 73, 247, 26, 208, 224, 15, 227, 135, 191, 146, 117, 132, 77, 127, 111, 46, 160, 79, 235, 122, 183, 194, 93, 78, 44, 187, 140, 223, 232, 104, 20, 240, 14, 201, 117, 46, 8, 109, 67, 42, 232, 8, 106, 53, 92, 130, 86, 84, 177, 229, 139, 62, 224, 6, 57, 70, 67, 123, 66, 150, 94, 229, 9, 95, 130, 9, 130, 128, 153, 135, 54, 70, 9, 71, 101, 234, 217, 152, 36, 200, 78, 65, 44, 219, 113, 195, 134, 80, 221, 161, 29, 189, 226, 132, 105, 251, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:38:56.920818Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:38:56.920900Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:38:57.818634Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=215 prev_hash=0xb979b8cad893f6169d3844784670061ef21a4be8808d5dd3914b118d0e10f616 hash=0xe3a9de2f2f0a2987ead56518186965fa134088137661ed5c078840999ecba7ab producing_time=10.86722ms +2026-04-20T15:38:57.825672Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=215 current_state_root="33657835b997e57fc28a85a25d7b445e47330bff3c63d76c9683044238ab9fcb022941537e901bcea23143fbe3f6cb3162437205113b6d7a63da8957c4698e1a" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x78ccfaaba0267dbd62b1bb346ed81994c9bf3b902fa0324dfbf0bdff8f606f7f"] proof_blobs=[] +2026-04-20T15:38:57.833251Z DEBUG StfBlueprint::apply_slot{context=Node da_height=215}: sov_chain_state: Setting next visible slot number next_visible_slot_number=211 +2026-04-20T15:38:57.838633Z DEBUG StfBlueprint::apply_slot{context=Node da_height=215}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x78ccfaaba0267dbd62b1bb346ed81994c9bf3b902fa0324dfbf0bdff8f606f7f}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:57.840663Z DEBUG StfBlueprint::apply_slot{context=Node da_height=215}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=33657835b997e57fc28a85a25d7b445e47330bff3c63d76c9683044238ab9fcb022941537e901bcea23143fbe3f6cb3162437205113b6d7a63da8957c4698e1a next_version=215 sesssion_starting_time=243.429µs +2026-04-20T15:38:57.848961Z DEBUG StfBlueprint::apply_slot{context=Node da_height=215}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4cbe569f3447e095305eaebc94972d582a4b0377a69df7f9bb14da1239db447a402847e68010d05256d8be581c84e394d729ad9b13ae31102315716a6852a113 next_version=215 time=9.31727ms accesses_build_time=764.506µs finishing_session_time=8.174437ms +2026-04-20T15:38:57.850218Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="0d645e5f4bfd87c0745903d96b7ae8b154328db9b587a95df4010aa9707c8f5b009d70dff8a9bd7e4511989fdec1c401b0035be4c608a1fd192b68a033f97cd0" next_state_root="4cbe569f3447e095305eaebc94972d582a4b0377a69df7f9bb14da1239db447a402847e68010d05256d8be581c84e394d729ad9b13ae31102315716a6852a113" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:38:57.854753Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 215, latest_finalized_slot_number: 215, sync_status: Syncing { synced_da_height: 214, target_da_height: 215 }, .. } +2026-04-20T15:38:57.856176Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=211 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 215, latest_finalized_slot_number: 215, sync_status: Syncing { synced_da_height: 214, target_da_height: 215 }, .. } +2026-04-20T15:38:57.857109Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=211 +2026-04-20T15:38:57.859759Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:38:57.860707Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=207 +2026-04-20T15:38:57.862557Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=212 +2026-04-20T15:38:57.863454Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:38:57.864948Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=212 sequence_number=231 +2026-04-20T15:38:57.865237Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:38:57.865271Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=231 blob_id=2147897945021705377758389152449403406 visible_slot_number_after_increase=212 visible_slots_to_advance=1 +2026-04-20T15:38:57.871492Z DEBUG manage_blob_submission_inside_task{blob_id=2147897945021705377758389152449403406 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x72885e02fc898d32e68f1c702285d87fcc5f8a553818337a9a38828ed96ee53b sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=216 include_at=216 bytes=13 time=1.736089ms +2026-04-20T15:38:57.872956Z DEBUG compute_state_update{scope="sequencer" rollup_height=212 slot_number=212}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:38:57.873291Z DEBUG compute_state_update{scope="sequencer" rollup_height=212 slot_number=212}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4cbe569f3447e095305eaebc94972d582a4b0377a69df7f9bb14da1239db447a402847e68010d05256d8be581c84e394d729ad9b13ae31102315716a6852a113 next_version=216 sesssion_starting_time=4.806449ms +2026-04-20T15:38:57.878602Z DEBUG compute_state_update{scope="sequencer" rollup_height=212 slot_number=212}: sov_state::nomt::prover_storage: computed next state root state_root=3b128af392f260baaa321b551f8f7ada85755fad4b640fd888b1dc1303cc94930135d644feb55e2f6e506d7184cc1993bb85a363aa7c12a4954f50b8f5a0b348 next_version=216 time=10.516492ms accesses_build_time=391.547µs finishing_session_time=5.198726ms +2026-04-20T15:38:57.895309Z DEBUG sov_stf_runner::runner: Block execution complete time=3.042460129s +2026-04-20T15:38:57.895430Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:38:57.897288Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:38:57.897883Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:38:58.334717Z DEBUG sp1_core_executor_runner::native: CHILD sp1_eCZnVhUPQsu2U9rkqLrYWw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:38:58.375906Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:38:58.387575Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1878236 cycles +2026-04-20T15:38:58.390331Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [126, 20, 245, 252, 163, 156, 219, 29, 44, 213, 25, 59, 1, 154, 162, 37, 111, 36, 9, 155, 122, 188, 29, 101, 0, 62, 84, 60, 81, 79, 87, 85, 124, 235, 36, 26, 88, 198, 151, 135, 179, 135, 81, 177, 96, 161, 101, 88, 108, 15, 192, 35, 80, 37, 254, 144, 51, 195, 1, 33, 88, 106, 17, 212, 57, 240, 253, 169, 233, 67, 173, 184, 42, 147, 56, 157, 251, 124, 155, 65, 128, 92, 219, 255, 151, 17, 236, 23, 138, 163, 232, 79, 41, 11, 94, 187, 114, 248, 108, 87, 237, 249, 214, 192, 210, 104, 3, 197, 121, 25, 110, 115, 135, 81, 85, 39, 33, 10, 50, 55, 69, 247, 209, 142, 89, 195, 200, 110, 196, 211, 138, 93, 254, 1, 23, 159, 183, 216, 240, 227, 232, 147, 63, 211, 78, 88, 121, 15, 36, 150, 64, 77, 160, 202, 17, 159, 133, 46, 153, 195, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:38:59.052768Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:38:59.052849Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:39:00.823729Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=216 prev_hash=0xe3a9de2f2f0a2987ead56518186965fa134088137661ed5c078840999ecba7ab hash=0x136fe8b5d11d885484dbfcdbb1be4c7d1d615ff9583593f6abd8fa297c410cd5 producing_time=3.12038ms +2026-04-20T15:39:00.827915Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=216 current_state_root="4cbe569f3447e095305eaebc94972d582a4b0377a69df7f9bb14da1239db447a402847e68010d05256d8be581c84e394d729ad9b13ae31102315716a6852a113" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x72885e02fc898d32e68f1c702285d87fcc5f8a553818337a9a38828ed96ee53b"] proof_blobs=[] +2026-04-20T15:39:00.836086Z DEBUG StfBlueprint::apply_slot{context=Node da_height=216}: sov_chain_state: Setting next visible slot number next_visible_slot_number=212 +2026-04-20T15:39:00.841834Z DEBUG StfBlueprint::apply_slot{context=Node da_height=216}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x72885e02fc898d32e68f1c702285d87fcc5f8a553818337a9a38828ed96ee53b}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:00.843924Z DEBUG StfBlueprint::apply_slot{context=Node da_height=216}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4cbe569f3447e095305eaebc94972d582a4b0377a69df7f9bb14da1239db447a402847e68010d05256d8be581c84e394d729ad9b13ae31102315716a6852a113 next_version=216 sesssion_starting_time=246.228µs +2026-04-20T15:39:00.851947Z DEBUG StfBlueprint::apply_slot{context=Node da_height=216}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3b128af392f260baaa321b551f8f7ada85755fad4b640fd888b1dc1303cc94932c930e81019febe6e37692df6f97dc5855bf715cb2292817f1f318a09158329a next_version=216 time=9.049311ms accesses_build_time=761.624µs finishing_session_time=7.895659ms +2026-04-20T15:39:00.853145Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4cbe569f3447e095305eaebc94972d582a4b0377a69df7f9bb14da1239db447a402847e68010d05256d8be581c84e394d729ad9b13ae31102315716a6852a113" next_state_root="3b128af392f260baaa321b551f8f7ada85755fad4b640fd888b1dc1303cc94932c930e81019febe6e37692df6f97dc5855bf715cb2292817f1f318a09158329a" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:39:00.857814Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 216, latest_finalized_slot_number: 216, sync_status: Syncing { synced_da_height: 215, target_da_height: 216 }, .. } +2026-04-20T15:39:00.859226Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=212 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 216, latest_finalized_slot_number: 216, sync_status: Syncing { synced_da_height: 215, target_da_height: 216 }, .. } +2026-04-20T15:39:00.860172Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=212 +2026-04-20T15:39:00.862841Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:39:00.863826Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=208 +2026-04-20T15:39:00.865628Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=213 +2026-04-20T15:39:00.866529Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:39:00.868038Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=213 sequence_number=232 +2026-04-20T15:39:00.868358Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=232 blob_id=2147897948652118483530426276881376881 visible_slot_number_after_increase=213 visible_slots_to_advance=1 +2026-04-20T15:39:00.868336Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:00.869876Z DEBUG sov_stf_runner::runner: Block execution complete time=2.974469s +2026-04-20T15:39:00.869928Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:39:00.872438Z DEBUG compute_state_update{scope="sequencer" rollup_height=213 slot_number=213}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:39:00.872737Z DEBUG compute_state_update{scope="sequencer" rollup_height=213 slot_number=213}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3b128af392f260baaa321b551f8f7ada85755fad4b640fd888b1dc1303cc94932c930e81019febe6e37692df6f97dc5855bf715cb2292817f1f318a09158329a next_version=217 sesssion_starting_time=304.028µs +2026-04-20T15:39:00.875620Z DEBUG manage_blob_submission_inside_task{blob_id=2147897948652118483530426276881376881 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xc2edc3f6876300d2ea6ea2d8f73de2576314f11c48db152a78635877e0f41382 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=217 include_at=217 bytes=13 time=1.66248ms +2026-04-20T15:39:00.878155Z DEBUG compute_state_update{scope="sequencer" rollup_height=213 slot_number=213}: sov_state::nomt::prover_storage: computed next state root state_root=023d3a5fd721e7a9e7b4fad979a3d6b5d139176b356e24c1749f727ea73eee2033b38898bd4cc6104fe4d4a60fdc01e95fd960985751fb53980f3dc1e3314a44 next_version=217 time=6.11068ms accesses_build_time=382.007µs finishing_session_time=5.333445ms +2026-04-20T15:39:01.394452Z DEBUG sp1_core_executor_runner::native: CHILD sp1_cjyr8w1uTGG8_pFZwmP0fg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:39:01.433847Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:39:01.445504Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1816085 cycles +2026-04-20T15:39:01.448327Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [62, 252, 57, 116, 168, 21, 248, 90, 121, 48, 40, 206, 110, 138, 147, 221, 74, 192, 92, 166, 134, 215, 186, 125, 56, 54, 144, 59, 57, 203, 90, 4, 51, 82, 106, 254, 198, 231, 237, 64, 247, 192, 251, 163, 11, 237, 54, 31, 154, 71, 239, 28, 18, 245, 73, 80, 107, 165, 137, 36, 81, 5, 148, 20, 126, 254, 135, 94, 50, 138, 148, 194, 45, 95, 65, 141, 86, 90, 177, 157, 76, 34, 212, 96, 91, 42, 5, 33, 212, 72, 183, 198, 214, 166, 228, 104, 103, 24, 204, 11, 50, 164, 225, 2, 147, 181, 121, 245, 56, 133, 211, 253, 1, 146, 230, 49, 143, 24, 167, 5, 219, 15, 76, 209, 157, 126, 174, 35, 47, 111, 2, 23, 17, 207, 121, 118, 129, 33, 154, 247, 93, 65, 224, 33, 171, 58, 245, 138, 221, 49, 232, 73, 246, 110, 8, 130, 142, 53, 194, 12, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:39:02.086734Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:39:02.086814Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:39:02.148227Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:39:02.389299Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:39:02.391569Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2607482 cycles +2026-04-20T15:39:02.391935Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [201, 0, 0, 0, 0, 0, 0, 0, 210, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 119, 125, 5, 195, 110, 225, 158, 183, 34, 212, 2, 61, 56, 126, 155, 227, 10, 30, 221, 133, 129, 219, 120, 244, 196, 126, 4, 123, 115, 170, 252, 223, 98, 61, 238, 165, 9, 12, 151, 113, 94, 17, 154, 197, 155, 49, 127, 119, 164, 189, 103, 77, 126, 133, 254, 170, 13, 234, 140, 235, 218, 63, 42, 17, 126, 254, 135, 94, 50, 138, 148, 194, 45, 95, 65, 141, 86, 90, 177, 157, 76, 34, 212, 96, 91, 42, 5, 33, 212, 72, 183, 198, 214, 166, 228, 104, 103, 24, 204, 11, 50, 164, 225, 2, 147, 181, 121, 245, 56, 133, 211, 253, 1, 146, 230, 49, 143, 24, 167, 5, 219, 15, 76, 209, 157, 126, 174, 35, 208, 145, 52, 230, 126, 91, 66, 99, 246, 97, 232, 93, 160, 15, 202, 193, 29, 7, 173, 209, 97, 17, 20, 157, 207, 172, 129, 55, 89, 175, 84, 117, 47, 111, 2, 23, 17, 207, 121, 118, 129, 33, 154, 247, 93, 65, 224, 33, 171, 58, 245, 138, 221, 49, 232, 73, 246, 110, 8, 130, 142, 53, 194, 12, 32, 0, 0, 0, 0, 0, 0, 0, 33, 87, 226, 242, 39, 49, 250, 210, 41, 143, 26, 188, 101, 19, 12, 136, 43, 105, 121, 236, 80, 118, 108, 155, 63, 154, 215, 73, 15, 107, 27, 67, 32, 0, 0, 0, 0, 0, 0, 0, 54, 246, 123, 188, 67, 61, 237, 103, 16, 229, 5, 146, 113, 8, 178, 215, 95, 95, 151, 239, 106, 28, 10, 135, 55, 55, 208, 95, 86, 190, 27, 9, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:39:03.303572Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:39:03.303650Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:39:03.304521Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=1951 +2026-04-20T15:39:03.307185Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:39:03.307900Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:39:03.308609Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=233 blob_id=2147897951598273992130052325790721590 +2026-04-20T15:39:03.828821Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=217 prev_hash=0x136fe8b5d11d885484dbfcdbb1be4c7d1d615ff9583593f6abd8fa297c410cd5 hash=0xc17bd4056700f8047a8ad00b0259d765adac5acb37b142ea082148625b8bf2ee producing_time=3.279408ms +2026-04-20T15:39:03.832606Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=217 current_state_root="3b128af392f260baaa321b551f8f7ada85755fad4b640fd888b1dc1303cc94932c930e81019febe6e37692df6f97dc5855bf715cb2292817f1f318a09158329a" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc2edc3f6876300d2ea6ea2d8f73de2576314f11c48db152a78635877e0f41382"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe1229048fe555ada137162cda72c57bf2c8961e0a6b9e62906d0a708200efdad, len=2001"] +2026-04-20T15:39:03.841166Z DEBUG StfBlueprint::apply_slot{context=Node da_height=217}: sov_chain_state: Setting next visible slot number next_visible_slot_number=213 +2026-04-20T15:39:03.847069Z DEBUG StfBlueprint::apply_slot{context=Node da_height=217}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xc2edc3f6876300d2ea6ea2d8f73de2576314f11c48db152a78635877e0f41382}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:03.849439Z DEBUG StfBlueprint::apply_slot{context=Node da_height=217}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3b128af392f260baaa321b551f8f7ada85755fad4b640fd888b1dc1303cc94932c930e81019febe6e37692df6f97dc5855bf715cb2292817f1f318a09158329a next_version=217 sesssion_starting_time=305.498µs +2026-04-20T15:39:03.857698Z DEBUG StfBlueprint::apply_slot{context=Node da_height=217}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=023d3a5fd721e7a9e7b4fad979a3d6b5d139176b356e24c1749f727ea73eee201eaaef60cf08206c13f93a3e0c762710274f30e88c12c0be21eba4662d713dc9 next_version=217 time=9.492558ms accesses_build_time=915.294µs finishing_session_time=8.134408ms +2026-04-20T15:39:03.858948Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3b128af392f260baaa321b551f8f7ada85755fad4b640fd888b1dc1303cc94932c930e81019febe6e37692df6f97dc5855bf715cb2292817f1f318a09158329a" next_state_root="023d3a5fd721e7a9e7b4fad979a3d6b5d139176b356e24c1749f727ea73eee201eaaef60cf08206c13f93a3e0c762710274f30e88c12c0be21eba4662d713dc9" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:39:03.863772Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 217, latest_finalized_slot_number: 217, sync_status: Synced { synced_da_height: 216 }, .. } +2026-04-20T15:39:03.865201Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=213 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 217, latest_finalized_slot_number: 217, sync_status: Synced { synced_da_height: 216 }, .. } +2026-04-20T15:39:03.866151Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=213 +2026-04-20T15:39:03.868967Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:39:03.869952Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=209 +2026-04-20T15:39:03.871821Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=214 +2026-04-20T15:39:03.872931Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:39:03.875344Z DEBUG sov_stf_runner::runner: Block execution complete time=3.005419459s +2026-04-20T15:39:03.875416Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:39:03.877286Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 201. Final slot number 210 +2026-04-20T15:39:03.877810Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:39:03.877937Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=214 sequence_number=234 +2026-04-20T15:39:03.878173Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:03.878227Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=234 blob_id=2147897952290985219786034776842388438 visible_slot_number_after_increase=214 visible_slots_to_advance=1 +2026-04-20T15:39:03.878561Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:39:03.882717Z DEBUG compute_state_update{scope="sequencer" rollup_height=214 slot_number=214}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:39:03.883030Z DEBUG compute_state_update{scope="sequencer" rollup_height=214 slot_number=214}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=023d3a5fd721e7a9e7b4fad979a3d6b5d139176b356e24c1749f727ea73eee201eaaef60cf08206c13f93a3e0c762710274f30e88c12c0be21eba4662d713dc9 next_version=218 sesssion_starting_time=314.988µs +2026-04-20T15:39:03.885590Z DEBUG manage_blob_submission_inside_task{blob_id=2147897952290985219786034776842388438 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xcbf029cae7200cfb2e33815fbac7d7b122b017b7ea3c77a52715fd85b4190665 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=218 include_at=218 bytes=13 time=1.817759ms +2026-04-20T15:39:03.889676Z DEBUG compute_state_update{scope="sequencer" rollup_height=214 slot_number=214}: sov_state::nomt::prover_storage: computed next state root state_root=1ad6cef2d76fcd364fb2935e86efd16e21635eb7e64cae2d46762b5a201f74f53971c4698015e4301dc468e2553b2abe387b38d15b26a2dba8bc21fa279a6949 next_version=218 time=7.569491ms accesses_build_time=584.206µs finishing_session_time=6.547117ms +2026-04-20T15:39:06.786793Z DEBUG sp1_core_executor_runner::native: CHILD sp1_NqxKYnr9QB2ZSW2OHBHcZg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:39:06.829702Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:39:06.832898Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=218 prev_hash=0xc17bd4056700f8047a8ad00b0259d765adac5acb37b142ea082148625b8bf2ee hash=0xf398719835fbbc7442e2deb5fb1dfa832dec16aff0898df18e51c7e2a58fa5c1 producing_time=2.804162ms +2026-04-20T15:39:06.837725Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=218 current_state_root="023d3a5fd721e7a9e7b4fad979a3d6b5d139176b356e24c1749f727ea73eee201eaaef60cf08206c13f93a3e0c762710274f30e88c12c0be21eba4662d713dc9" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xcbf029cae7200cfb2e33815fbac7d7b122b017b7ea3c77a52715fd85b4190665"] proof_blobs=[] +2026-04-20T15:39:06.840915Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1934179 cycles +2026-04-20T15:39:06.843757Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [16, 230, 1, 118, 90, 201, 42, 102, 182, 101, 116, 25, 246, 44, 153, 120, 62, 44, 88, 198, 167, 237, 210, 25, 238, 43, 236, 134, 162, 209, 151, 252, 45, 11, 132, 6, 207, 48, 177, 186, 40, 2, 180, 207, 241, 255, 9, 118, 52, 135, 228, 157, 167, 167, 210, 102, 60, 4, 51, 198, 144, 207, 205, 254, 82, 214, 113, 78, 33, 87, 20, 203, 241, 157, 217, 91, 250, 190, 248, 78, 133, 147, 53, 79, 110, 202, 52, 239, 189, 116, 245, 134, 252, 19, 104, 202, 1, 227, 136, 220, 240, 74, 158, 177, 221, 19, 116, 187, 158, 62, 244, 102, 5, 16, 175, 214, 177, 252, 165, 61, 240, 101, 54, 177, 254, 78, 219, 93, 184, 147, 157, 8, 90, 4, 121, 132, 117, 219, 206, 164, 248, 143, 165, 78, 108, 183, 207, 177, 221, 88, 79, 93, 76, 27, 131, 145, 56, 218, 240, 252, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:39:06.846972Z DEBUG StfBlueprint::apply_slot{context=Node da_height=218}: sov_chain_state: Setting next visible slot number next_visible_slot_number=214 +2026-04-20T15:39:06.864784Z DEBUG StfBlueprint::apply_slot{context=Node da_height=218}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 201. Final slot number 210 +2026-04-20T15:39:06.865222Z DEBUG StfBlueprint::apply_slot{context=Node da_height=218}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xcbf029cae7200cfb2e33815fbac7d7b122b017b7ea3c77a52715fd85b4190665}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:06.867762Z DEBUG StfBlueprint::apply_slot{context=Node da_height=218}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=023d3a5fd721e7a9e7b4fad979a3d6b5d139176b356e24c1749f727ea73eee201eaaef60cf08206c13f93a3e0c762710274f30e88c12c0be21eba4662d713dc9 next_version=218 sesssion_starting_time=296.728µs +2026-04-20T15:39:06.877942Z DEBUG StfBlueprint::apply_slot{context=Node da_height=218}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=1ad6cef2d76fcd364fb2935e86efd16e21635eb7e64cae2d46762b5a201f74f55e17affae6d4e18f14dfaf7de60bd5a246dd37535d2d8ddfb8d651fbeda12103 next_version=218 time=11.547935ms accesses_build_time=1.060133ms finishing_session_time=10.051644ms +2026-04-20T15:39:06.879219Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="023d3a5fd721e7a9e7b4fad979a3d6b5d139176b356e24c1749f727ea73eee201eaaef60cf08206c13f93a3e0c762710274f30e88c12c0be21eba4662d713dc9" next_state_root="1ad6cef2d76fcd364fb2935e86efd16e21635eb7e64cae2d46762b5a201f74f55e17affae6d4e18f14dfaf7de60bd5a246dd37535d2d8ddfb8d651fbeda12103" aggregated_proofs=1 proof_receipts=1 +2026-04-20T15:39:06.884853Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 218, latest_finalized_slot_number: 218, sync_status: Syncing { synced_da_height: 217, target_da_height: 218 }, .. } +2026-04-20T15:39:06.886283Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=214 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 218, latest_finalized_slot_number: 218, sync_status: Syncing { synced_da_height: 217, target_da_height: 218 }, .. } +2026-04-20T15:39:06.887216Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=214 +2026-04-20T15:39:06.889969Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:39:06.890958Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=210 +2026-04-20T15:39:06.892864Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=215 +2026-04-20T15:39:06.893907Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:39:06.895680Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=215 sequence_number=235 +2026-04-20T15:39:06.895943Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=235 blob_id=2147897955939519230870314395964695451 visible_slot_number_after_increase=215 visible_slots_to_advance=1 +2026-04-20T15:39:06.895961Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:06.896803Z DEBUG sov_stf_runner::runner: Block execution complete time=3.021397145s +2026-04-20T15:39:06.896906Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:39:06.899261Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:39:06.900434Z DEBUG compute_state_update{scope="sequencer" rollup_height=215 slot_number=215}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:39:06.900478Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:39:06.900807Z DEBUG compute_state_update{scope="sequencer" rollup_height=215 slot_number=215}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1ad6cef2d76fcd364fb2935e86efd16e21635eb7e64cae2d46762b5a201f74f55e17affae6d4e18f14dfaf7de60bd5a246dd37535d2d8ddfb8d651fbeda12103 next_version=219 sesssion_starting_time=373.028µs +2026-04-20T15:39:06.902813Z DEBUG manage_blob_submission_inside_task{blob_id=2147897955939519230870314395964695451 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xa8c4890cfb503cf6c4a3f3dd2f2386e717cad677fd35bd12435a3460a8d77b12 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=219 include_at=219 bytes=13 time=1.455351ms +2026-04-20T15:39:06.907356Z DEBUG compute_state_update{scope="sequencer" rollup_height=215 slot_number=215}: sov_state::nomt::prover_storage: computed next state root state_root=4ad8a46f73ac63bed36e19da0de1c442cad03e2859c068535b388eb7a477fe6d17efddbcf7f5737bd44dc5b2bc61b2414b573eb42c4b546abb6fb650818cf7cf next_version=219 time=7.461301ms accesses_build_time=522.676µs finishing_session_time=6.412119ms +2026-04-20T15:39:07.356607Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4fbuh-3HQN62kmfuW1myew==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:39:07.399594Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:39:07.410951Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1943791 cycles +2026-04-20T15:39:07.413822Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [57, 51, 176, 164, 66, 224, 37, 69, 101, 9, 177, 29, 229, 218, 123, 169, 236, 64, 120, 111, 70, 187, 155, 217, 183, 131, 199, 230, 98, 196, 99, 247, 60, 40, 8, 168, 137, 163, 94, 77, 2, 231, 0, 201, 241, 128, 247, 18, 100, 222, 96, 107, 217, 6, 108, 2, 190, 97, 80, 52, 251, 199, 175, 145, 49, 235, 183, 118, 215, 16, 79, 9, 44, 162, 73, 197, 32, 141, 125, 104, 33, 62, 215, 162, 107, 28, 167, 254, 61, 85, 210, 174, 228, 217, 53, 234, 14, 113, 91, 77, 154, 233, 148, 94, 203, 48, 76, 53, 4, 59, 179, 181, 137, 29, 4, 72, 111, 171, 21, 201, 123, 110, 249, 118, 127, 29, 51, 195, 234, 200, 128, 139, 38, 124, 22, 161, 210, 132, 208, 8, 128, 144, 187, 193, 215, 180, 229, 159, 138, 16, 36, 216, 147, 248, 114, 224, 54, 254, 177, 155, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:39:07.563922Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:39:07.564003Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:39:08.150458Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:39:08.150539Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:39:09.837529Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=219 prev_hash=0xf398719835fbbc7442e2deb5fb1dfa832dec16aff0898df18e51c7e2a58fa5c1 hash=0xbb16b3db9ffce6e364d079cd956031f96608b0cd46915b84147b4a689e0d8137 producing_time=2.823372ms +2026-04-20T15:39:09.839464Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=219 current_state_root="1ad6cef2d76fcd364fb2935e86efd16e21635eb7e64cae2d46762b5a201f74f55e17affae6d4e18f14dfaf7de60bd5a246dd37535d2d8ddfb8d651fbeda12103" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa8c4890cfb503cf6c4a3f3dd2f2386e717cad677fd35bd12435a3460a8d77b12"] proof_blobs=[] +2026-04-20T15:39:09.847842Z DEBUG StfBlueprint::apply_slot{context=Node da_height=219}: sov_chain_state: Setting next visible slot number next_visible_slot_number=215 +2026-04-20T15:39:09.853883Z DEBUG StfBlueprint::apply_slot{context=Node da_height=219}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xa8c4890cfb503cf6c4a3f3dd2f2386e717cad677fd35bd12435a3460a8d77b12}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:09.856063Z DEBUG StfBlueprint::apply_slot{context=Node da_height=219}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=1ad6cef2d76fcd364fb2935e86efd16e21635eb7e64cae2d46762b5a201f74f55e17affae6d4e18f14dfaf7de60bd5a246dd37535d2d8ddfb8d651fbeda12103 next_version=219 sesssion_starting_time=256.818µs +2026-04-20T15:39:09.864589Z DEBUG StfBlueprint::apply_slot{context=Node da_height=219}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4ad8a46f73ac63bed36e19da0de1c442cad03e2859c068535b388eb7a477fe6d7c1dd6dce89e2420125a97bec5d22fa8092adc7d06e30fa75735dae4c824cff7 next_version=219 time=9.564247ms accesses_build_time=769.695µs finishing_session_time=8.390436ms +2026-04-20T15:39:09.865891Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="1ad6cef2d76fcd364fb2935e86efd16e21635eb7e64cae2d46762b5a201f74f55e17affae6d4e18f14dfaf7de60bd5a246dd37535d2d8ddfb8d651fbeda12103" next_state_root="4ad8a46f73ac63bed36e19da0de1c442cad03e2859c068535b388eb7a477fe6d7c1dd6dce89e2420125a97bec5d22fa8092adc7d06e30fa75735dae4c824cff7" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:39:09.870583Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 219, latest_finalized_slot_number: 219, sync_status: Synced { synced_da_height: 218 }, .. } +2026-04-20T15:39:09.871961Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=215 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 219, latest_finalized_slot_number: 219, sync_status: Synced { synced_da_height: 218 }, .. } +2026-04-20T15:39:09.872889Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=215 +2026-04-20T15:39:09.875556Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:39:09.876537Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=211 +2026-04-20T15:39:09.878353Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=216 +2026-04-20T15:39:09.879403Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:39:09.881090Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=216 sequence_number=236 +2026-04-20T15:39:09.881437Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:09.881472Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=236 blob_id=2147897959549417476538139865152380834 visible_slot_number_after_increase=216 visible_slots_to_advance=1 +2026-04-20T15:39:09.885573Z DEBUG sov_stf_runner::runner: Block execution complete time=2.988685687s +2026-04-20T15:39:09.885649Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:39:09.885992Z DEBUG compute_state_update{scope="sequencer" rollup_height=216 slot_number=216}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:39:09.886336Z DEBUG compute_state_update{scope="sequencer" rollup_height=216 slot_number=216}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4ad8a46f73ac63bed36e19da0de1c442cad03e2859c068535b388eb7a477fe6d7c1dd6dce89e2420125a97bec5d22fa8092adc7d06e30fa75735dae4c824cff7 next_version=220 sesssion_starting_time=355.328µs +2026-04-20T15:39:09.888375Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:39:09.888464Z DEBUG manage_blob_submission_inside_task{blob_id=2147897959549417476538139865152380834 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x15aeb1f577654ebefdbf69c6b2f4188115220e405c0b14434dbc697d6634390a sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=220 include_at=220 bytes=13 time=1.401611ms +2026-04-20T15:39:09.889112Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:39:09.892198Z DEBUG compute_state_update{scope="sequencer" rollup_height=216 slot_number=216}: sov_state::nomt::prover_storage: computed next state root state_root=172f9044207d0ebb6dc75566bc15c35ebcded208c1d6f6575ff6387006faea846fdeae1d38b704d52841477404dcef708d6d998e58e6c6e798ce3f72d9a5ad12 next_version=220 time=6.610097ms accesses_build_time=386.038µs finishing_session_time=5.764653ms +2026-04-20T15:39:10.396538Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SNVBLjksRDe4CFG-GXuMHA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:39:10.437461Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:39:10.448793Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1888050 cycles +2026-04-20T15:39:10.451635Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [83, 72, 255, 186, 180, 234, 153, 211, 27, 121, 144, 108, 213, 239, 229, 253, 205, 29, 35, 35, 112, 92, 182, 37, 132, 109, 92, 225, 126, 228, 161, 190, 53, 82, 238, 69, 254, 197, 245, 56, 6, 86, 102, 12, 255, 207, 39, 95, 252, 48, 3, 176, 161, 72, 188, 140, 6, 177, 122, 71, 213, 245, 161, 126, 60, 132, 184, 179, 143, 228, 149, 53, 233, 128, 64, 10, 147, 220, 75, 155, 37, 155, 174, 200, 82, 59, 10, 253, 52, 243, 238, 235, 181, 26, 228, 94, 91, 87, 198, 123, 63, 97, 147, 165, 69, 67, 218, 118, 133, 225, 196, 2, 173, 210, 49, 145, 48, 246, 21, 157, 57, 54, 196, 190, 212, 133, 123, 23, 12, 89, 44, 25, 246, 22, 62, 8, 200, 150, 37, 103, 2, 160, 139, 224, 188, 163, 191, 157, 143, 191, 182, 232, 149, 72, 24, 184, 125, 187, 48, 6, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:39:11.118104Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:39:11.118184Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:39:12.841863Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=220 prev_hash=0xbb16b3db9ffce6e364d079cd956031f96608b0cd46915b84147b4a689e0d8137 hash=0x45c6fcfe3e3385206db0597f5a5d51ac3a59946c86eb1aca5cb465edf1ac0f57 producing_time=3.07138ms +2026-04-20T15:39:12.849002Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=220 current_state_root="4ad8a46f73ac63bed36e19da0de1c442cad03e2859c068535b388eb7a477fe6d7c1dd6dce89e2420125a97bec5d22fa8092adc7d06e30fa75735dae4c824cff7" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x15aeb1f577654ebefdbf69c6b2f4188115220e405c0b14434dbc697d6634390a"] proof_blobs=[] +2026-04-20T15:39:12.857436Z DEBUG StfBlueprint::apply_slot{context=Node da_height=220}: sov_chain_state: Setting next visible slot number next_visible_slot_number=216 +2026-04-20T15:39:12.863583Z DEBUG StfBlueprint::apply_slot{context=Node da_height=220}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x15aeb1f577654ebefdbf69c6b2f4188115220e405c0b14434dbc697d6634390a}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:12.865792Z DEBUG StfBlueprint::apply_slot{context=Node da_height=220}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4ad8a46f73ac63bed36e19da0de1c442cad03e2859c068535b388eb7a477fe6d7c1dd6dce89e2420125a97bec5d22fa8092adc7d06e30fa75735dae4c824cff7 next_version=220 sesssion_starting_time=263.228µs +2026-04-20T15:39:12.874274Z DEBUG StfBlueprint::apply_slot{context=Node da_height=220}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=172f9044207d0ebb6dc75566bc15c35ebcded208c1d6f6575ff6387006faea84003c6569115c12bf52e06a55aed512673f3bcc64c64351d2464c28d6ecb3429a next_version=220 time=9.547938ms accesses_build_time=786.044µs finishing_session_time=8.344416ms +2026-04-20T15:39:12.875585Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4ad8a46f73ac63bed36e19da0de1c442cad03e2859c068535b388eb7a477fe6d7c1dd6dce89e2420125a97bec5d22fa8092adc7d06e30fa75735dae4c824cff7" next_state_root="172f9044207d0ebb6dc75566bc15c35ebcded208c1d6f6575ff6387006faea84003c6569115c12bf52e06a55aed512673f3bcc64c64351d2464c28d6ecb3429a" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:39:12.880119Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 220, latest_finalized_slot_number: 220, sync_status: Syncing { synced_da_height: 219, target_da_height: 220 }, .. } +2026-04-20T15:39:12.881517Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=216 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 220, latest_finalized_slot_number: 220, sync_status: Syncing { synced_da_height: 219, target_da_height: 220 }, .. } +2026-04-20T15:39:12.882455Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=216 +2026-04-20T15:39:12.884975Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:39:12.885984Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=212 +2026-04-20T15:39:12.887803Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=217 +2026-04-20T15:39:12.888732Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:39:12.890339Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=217 sequence_number=237 +2026-04-20T15:39:12.890638Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=237 blob_id=2147897963187030386408107707890189241 visible_slot_number_after_increase=217 visible_slots_to_advance=1 +2026-04-20T15:39:12.890668Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:12.895851Z DEBUG compute_state_update{scope="sequencer" rollup_height=217 slot_number=217}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:39:12.896177Z DEBUG compute_state_update{scope="sequencer" rollup_height=217 slot_number=217}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=172f9044207d0ebb6dc75566bc15c35ebcded208c1d6f6575ff6387006faea84003c6569115c12bf52e06a55aed512673f3bcc64c64351d2464c28d6ecb3429a next_version=221 sesssion_starting_time=994.694µs +2026-04-20T15:39:12.896959Z DEBUG sov_stf_runner::runner: Block execution complete time=3.011317041s +2026-04-20T15:39:12.897096Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:39:12.898002Z DEBUG manage_blob_submission_inside_task{blob_id=2147897963187030386408107707890189241 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xd6e1fbdc36fa9bd63e91fc7f5d30ad0006450da04a405854be7b0525639ab426 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=221 include_at=221 bytes=13 time=1.61564ms +2026-04-20T15:39:12.898152Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:39:12.898749Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:39:12.902256Z DEBUG compute_state_update{scope="sequencer" rollup_height=217 slot_number=217}: sov_state::nomt::prover_storage: computed next state root state_root=6d35e243b797fd6d714ac225b1c26fbcf99f9541e4c4f52de7157b844fd05d37716a973cacc6f85da06f6ac9c663d2c05bb14c846cdc42202cdbc95c67183c31 next_version=221 time=7.467811ms accesses_build_time=386.527µs finishing_session_time=5.993502ms +2026-04-20T15:39:13.353250Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vHwQZEGZTP6x7o0vbrXrDQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:39:13.394481Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:39:13.404737Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1878771 cycles +2026-04-20T15:39:13.407571Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [13, 100, 94, 95, 75, 253, 135, 192, 116, 89, 3, 217, 107, 122, 232, 177, 84, 50, 141, 185, 181, 135, 169, 93, 244, 1, 10, 169, 112, 124, 143, 91, 0, 157, 112, 223, 248, 169, 189, 126, 69, 17, 152, 159, 222, 193, 196, 1, 176, 3, 91, 228, 198, 8, 161, 253, 25, 43, 104, 160, 51, 249, 124, 208, 1, 87, 182, 8, 149, 164, 163, 236, 89, 45, 59, 191, 101, 81, 233, 207, 57, 251, 201, 72, 27, 70, 77, 102, 210, 52, 142, 56, 198, 172, 143, 95, 96, 230, 29, 52, 78, 238, 6, 31, 50, 60, 234, 65, 164, 8, 96, 17, 35, 116, 150, 193, 224, 247, 154, 64, 240, 176, 233, 240, 27, 74, 135, 135, 185, 121, 184, 202, 216, 147, 246, 22, 157, 56, 68, 120, 70, 112, 6, 30, 242, 26, 75, 232, 128, 141, 93, 211, 145, 75, 17, 141, 14, 16, 246, 22, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:39:14.071576Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:39:14.071656Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:39:15.845584Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=221 prev_hash=0x45c6fcfe3e3385206db0597f5a5d51ac3a59946c86eb1aca5cb465edf1ac0f57 hash=0xd4b462e5b687803b26a0538259805be10abacb961a1cb5ac6d886cb6c4f5245f producing_time=2.815732ms +2026-04-20T15:39:15.849557Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=221 current_state_root="172f9044207d0ebb6dc75566bc15c35ebcded208c1d6f6575ff6387006faea84003c6569115c12bf52e06a55aed512673f3bcc64c64351d2464c28d6ecb3429a" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xd6e1fbdc36fa9bd63e91fc7f5d30ad0006450da04a405854be7b0525639ab426"] proof_blobs=[] +2026-04-20T15:39:15.857818Z DEBUG StfBlueprint::apply_slot{context=Node da_height=221}: sov_chain_state: Setting next visible slot number next_visible_slot_number=217 +2026-04-20T15:39:15.863571Z DEBUG StfBlueprint::apply_slot{context=Node da_height=221}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xd6e1fbdc36fa9bd63e91fc7f5d30ad0006450da04a405854be7b0525639ab426}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:15.865741Z DEBUG StfBlueprint::apply_slot{context=Node da_height=221}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=172f9044207d0ebb6dc75566bc15c35ebcded208c1d6f6575ff6387006faea84003c6569115c12bf52e06a55aed512673f3bcc64c64351d2464c28d6ecb3429a next_version=221 sesssion_starting_time=289.758µs +2026-04-20T15:39:15.874889Z DEBUG StfBlueprint::apply_slot{context=Node da_height=221}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6d35e243b797fd6d714ac225b1c26fbcf99f9541e4c4f52de7157b844fd05d375bf7359b930c9a39c8ad4bace98e002435ecdd6a24b669d12b44980f05871882 next_version=221 time=10.210324ms accesses_build_time=761.315µs finishing_session_time=9.007172ms +2026-04-20T15:39:15.876098Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="172f9044207d0ebb6dc75566bc15c35ebcded208c1d6f6575ff6387006faea84003c6569115c12bf52e06a55aed512673f3bcc64c64351d2464c28d6ecb3429a" next_state_root="6d35e243b797fd6d714ac225b1c26fbcf99f9541e4c4f52de7157b844fd05d375bf7359b930c9a39c8ad4bace98e002435ecdd6a24b669d12b44980f05871882" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:39:15.879800Z DEBUG sov_stf_runner::runner: Block execution complete time=2.982724386s +2026-04-20T15:39:15.879899Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:39:15.880657Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 221, latest_finalized_slot_number: 220, sync_status: Syncing { synced_da_height: 220, target_da_height: 221 }, .. } +2026-04-20T15:39:15.882016Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=217 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 221, latest_finalized_slot_number: 220, sync_status: Syncing { synced_da_height: 220, target_da_height: 221 }, .. } +2026-04-20T15:39:15.882270Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:39:15.883029Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=217 +2026-04-20T15:39:15.883054Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:39:15.885503Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:39:15.886242Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=213 +2026-04-20T15:39:15.887686Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=218 +2026-04-20T15:39:15.888449Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:39:15.889754Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=218 sequence_number=238 +2026-04-20T15:39:15.889958Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:15.890055Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=238 blob_id=2147897966812655863102517456732603736 visible_slot_number_after_increase=218 visible_slots_to_advance=1 +2026-04-20T15:39:15.894006Z DEBUG compute_state_update{scope="sequencer" rollup_height=218 slot_number=218}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6d35e243b797fd6d714ac225b1c26fbcf99f9541e4c4f52de7157b844fd05d375bf7359b930c9a39c8ad4bace98e002435ecdd6a24b669d12b44980f05871882 next_version=222 sesssion_starting_time=259.608µs +2026-04-20T15:39:15.896776Z DEBUG manage_blob_submission_inside_task{blob_id=2147897966812655863102517456732603736 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xee9292e75df756005d75484f6ce4b345e76cd5e8850bed229dc69108e108b1f2 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=222 include_at=222 bytes=13 time=1.410851ms +2026-04-20T15:39:15.899340Z DEBUG compute_state_update{scope="sequencer" rollup_height=218 slot_number=218}: sov_state::nomt::prover_storage: computed next state root state_root=5bfe2badaeeb76712038dc0ac4749b6743094fe188587547529356054fb92eb75f105cb896fe35e2acec5c11cd93a89982d9a478a75b7ee9bb3adf6e776cdbd3 next_version=222 time=5.979681ms accesses_build_time=375.888µs finishing_session_time=5.205887ms +2026-04-20T15:39:16.368535Z DEBUG sp1_core_executor_runner::native: CHILD sp1_r7Emo7v0QWumIe-k6xuGhw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:39:16.409941Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:39:16.420640Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1888656 cycles +2026-04-20T15:39:16.423459Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [51, 101, 120, 53, 185, 151, 229, 127, 194, 138, 133, 162, 93, 123, 68, 94, 71, 51, 11, 255, 60, 99, 215, 108, 150, 131, 4, 66, 56, 171, 159, 203, 2, 41, 65, 83, 126, 144, 27, 206, 162, 49, 67, 251, 227, 246, 203, 49, 98, 67, 114, 5, 17, 59, 109, 122, 99, 218, 137, 87, 196, 105, 142, 26, 49, 127, 198, 153, 47, 82, 110, 94, 154, 203, 126, 110, 91, 58, 103, 41, 221, 22, 75, 130, 226, 63, 15, 178, 167, 8, 11, 165, 66, 91, 232, 76, 93, 225, 192, 147, 98, 74, 202, 239, 79, 204, 109, 0, 138, 5, 241, 139, 221, 235, 190, 66, 141, 187, 200, 183, 70, 87, 46, 110, 150, 161, 252, 207, 227, 169, 222, 47, 47, 10, 41, 135, 234, 213, 101, 24, 24, 105, 101, 250, 19, 64, 136, 19, 118, 97, 237, 92, 7, 136, 64, 153, 158, 203, 167, 171, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:39:17.089276Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:39:17.089358Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:39:18.858808Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=222 prev_hash=0xd4b462e5b687803b26a0538259805be10abacb961a1cb5ac6d886cb6c4f5245f hash=0x014535729f67a01a64bdfd2f939bf484afba92dd021c265f9c5dcb2e8f084d74 producing_time=11.957942ms +2026-04-20T15:39:18.862376Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=222 current_state_root="6d35e243b797fd6d714ac225b1c26fbcf99f9541e4c4f52de7157b844fd05d375bf7359b930c9a39c8ad4bace98e002435ecdd6a24b669d12b44980f05871882" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xee9292e75df756005d75484f6ce4b345e76cd5e8850bed229dc69108e108b1f2"] proof_blobs=[] +2026-04-20T15:39:18.869177Z DEBUG StfBlueprint::apply_slot{context=Node da_height=222}: sov_chain_state: Setting next visible slot number next_visible_slot_number=218 +2026-04-20T15:39:18.874144Z DEBUG StfBlueprint::apply_slot{context=Node da_height=222}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xee9292e75df756005d75484f6ce4b345e76cd5e8850bed229dc69108e108b1f2}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:18.875894Z DEBUG StfBlueprint::apply_slot{context=Node da_height=222}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6d35e243b797fd6d714ac225b1c26fbcf99f9541e4c4f52de7157b844fd05d375bf7359b930c9a39c8ad4bace98e002435ecdd6a24b669d12b44980f05871882 next_version=222 sesssion_starting_time=246.038µs +2026-04-20T15:39:18.883078Z DEBUG StfBlueprint::apply_slot{context=Node da_height=222}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=5bfe2badaeeb76712038dc0ac4749b6743094fe188587547529356054fb92eb70e7d9dfe19d9064a915cc62cd6fccb90e7fae54e9b23732f10b089901703ddbc next_version=222 time=8.061018ms accesses_build_time=620.806µs finishing_session_time=7.073964ms +2026-04-20T15:39:18.884163Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="172f9044207d0ebb6dc75566bc15c35ebcded208c1d6f6575ff6387006faea84003c6569115c12bf52e06a55aed512673f3bcc64c64351d2464c28d6ecb3429a" next_state_root="5bfe2badaeeb76712038dc0ac4749b6743094fe188587547529356054fb92eb70e7d9dfe19d9064a915cc62cd6fccb90e7fae54e9b23732f10b089901703ddbc" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:39:18.888205Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 222, latest_finalized_slot_number: 221, sync_status: Syncing { synced_da_height: 221, target_da_height: 222 }, .. } +2026-04-20T15:39:18.889725Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=218 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 222, latest_finalized_slot_number: 221, sync_status: Syncing { synced_da_height: 221, target_da_height: 222 }, .. } +2026-04-20T15:39:18.890679Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=218 +2026-04-20T15:39:18.893180Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:39:18.894162Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=214 +2026-04-20T15:39:18.895629Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=219 +2026-04-20T15:39:18.896499Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:39:18.897552Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=219 sequence_number=239 +2026-04-20T15:39:18.897763Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:18.897899Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=239 blob_id=2147897970449098825417493727592519850 visible_slot_number_after_increase=219 visible_slots_to_advance=1 +2026-04-20T15:39:18.907802Z DEBUG manage_blob_submission_inside_task{blob_id=2147897970449098825417493727592519850 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x413e4b2631f6de8ca5983219cfba653d0668ac7bb7b42dd6592457099264df4b sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=223 include_at=223 bytes=13 time=1.552409ms +2026-04-20T15:39:18.910782Z DEBUG compute_state_update{scope="sequencer" rollup_height=219 slot_number=219}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:39:18.910966Z DEBUG compute_state_update{scope="sequencer" rollup_height=219 slot_number=219}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5bfe2badaeeb76712038dc0ac4749b6743094fe188587547529356054fb92eb70e7d9dfe19d9064a915cc62cd6fccb90e7fae54e9b23732f10b089901703ddbc next_version=223 sesssion_starting_time=10.438912ms +2026-04-20T15:39:18.911276Z DEBUG sov_stf_runner::runner: Block execution complete time=3.031393431s +2026-04-20T15:39:18.911350Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:39:18.912678Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:39:18.913032Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:39:18.916008Z DEBUG compute_state_update{scope="sequencer" rollup_height=219 slot_number=219}: sov_state::nomt::prover_storage: computed next state root state_root=16430f2b2a7acb63d392e7a49b8e69a23036529253d8daf7a4a466dc5d1ea75f706b88fb4c44339aa2c1442846895354cea7b0cb20fd4638b5e5c27a2a39140b next_version=223 time=15.649238ms accesses_build_time=163.099µs finishing_session_time=4.987948ms +2026-04-20T15:39:19.366847Z DEBUG sp1_core_executor_runner::native: CHILD sp1_EWehmg0NSeqXiw_H0WyI_w==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:39:19.408240Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:39:19.421577Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1880961 cycles +2026-04-20T15:39:19.424370Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [76, 190, 86, 159, 52, 71, 224, 149, 48, 94, 174, 188, 148, 151, 45, 88, 42, 75, 3, 119, 166, 157, 247, 249, 187, 20, 218, 18, 57, 219, 68, 122, 64, 40, 71, 230, 128, 16, 208, 82, 86, 216, 190, 88, 28, 132, 227, 148, 215, 41, 173, 155, 19, 174, 49, 16, 35, 21, 113, 106, 104, 82, 161, 19, 10, 99, 252, 181, 139, 163, 74, 155, 153, 29, 100, 195, 85, 34, 59, 241, 233, 213, 70, 217, 184, 217, 129, 199, 243, 159, 246, 108, 95, 175, 164, 231, 84, 82, 134, 4, 55, 13, 153, 166, 186, 199, 74, 234, 14, 68, 123, 1, 150, 202, 202, 130, 53, 71, 83, 159, 161, 61, 248, 32, 222, 162, 14, 203, 19, 111, 232, 181, 209, 29, 136, 84, 132, 219, 252, 219, 177, 190, 76, 125, 29, 97, 95, 249, 88, 53, 147, 246, 171, 216, 250, 41, 124, 65, 12, 213, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:39:20.086430Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:39:20.086548Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:39:21.864363Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=223 prev_hash=0x014535729f67a01a64bdfd2f939bf484afba92dd021c265f9c5dcb2e8f084d74 hash=0xebb29975e5be57629a8e62942a162a2ef1780a5f3dff4a6fb224cf704d044673 producing_time=4.169713ms +2026-04-20T15:39:21.873448Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=223 current_state_root="5bfe2badaeeb76712038dc0ac4749b6743094fe188587547529356054fb92eb70e7d9dfe19d9064a915cc62cd6fccb90e7fae54e9b23732f10b089901703ddbc" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x413e4b2631f6de8ca5983219cfba653d0668ac7bb7b42dd6592457099264df4b"] proof_blobs=[] +2026-04-20T15:39:21.881239Z DEBUG StfBlueprint::apply_slot{context=Node da_height=223}: sov_chain_state: Setting next visible slot number next_visible_slot_number=219 +2026-04-20T15:39:21.887106Z DEBUG StfBlueprint::apply_slot{context=Node da_height=223}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x413e4b2631f6de8ca5983219cfba653d0668ac7bb7b42dd6592457099264df4b}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:21.889241Z DEBUG StfBlueprint::apply_slot{context=Node da_height=223}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=5bfe2badaeeb76712038dc0ac4749b6743094fe188587547529356054fb92eb70e7d9dfe19d9064a915cc62cd6fccb90e7fae54e9b23732f10b089901703ddbc next_version=223 sesssion_starting_time=226.838µs +2026-04-20T15:39:21.894687Z DEBUG StfBlueprint::apply_slot{context=Node da_height=223}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=16430f2b2a7acb63d392e7a49b8e69a23036529253d8daf7a4a466dc5d1ea75f09cce48d3b10684341dfe9ea87887f78ab27398d2171f66127dc53fade6b5eda next_version=223 time=6.444978ms accesses_build_time=761.655µs finishing_session_time=5.249236ms +2026-04-20T15:39:21.895661Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6d35e243b797fd6d714ac225b1c26fbcf99f9541e4c4f52de7157b844fd05d375bf7359b930c9a39c8ad4bace98e002435ecdd6a24b669d12b44980f05871882" next_state_root="16430f2b2a7acb63d392e7a49b8e69a23036529253d8daf7a4a466dc5d1ea75f09cce48d3b10684341dfe9ea87887f78ab27398d2171f66127dc53fade6b5eda" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:39:21.897990Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 223, latest_finalized_slot_number: 223, sync_status: Syncing { synced_da_height: 222, target_da_height: 223 }, .. } +2026-04-20T15:39:21.898815Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=219 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 223, latest_finalized_slot_number: 223, sync_status: Syncing { synced_da_height: 222, target_da_height: 223 }, .. } +2026-04-20T15:39:21.899335Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=219 +2026-04-20T15:39:21.900840Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:39:21.901361Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=215 +2026-04-20T15:39:21.902909Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=220 +2026-04-20T15:39:21.904075Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:39:21.905771Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=220 sequence_number=240 +2026-04-20T15:39:21.905918Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=240 blob_id=2147897974085507257774072323296374438 visible_slot_number_after_increase=220 visible_slots_to_advance=1 +2026-04-20T15:39:21.905983Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:21.912003Z DEBUG manage_blob_submission_inside_task{blob_id=2147897974085507257774072323296374438 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x5a41e8d68de8a311df7c9d664b4b13610144005e1e4e48153ebd072aa0456030 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=224 include_at=224 bytes=13 time=1.344472ms +2026-04-20T15:39:21.913150Z DEBUG compute_state_update{scope="sequencer" rollup_height=220 slot_number=220}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:39:21.913450Z DEBUG compute_state_update{scope="sequencer" rollup_height=220 slot_number=220}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=16430f2b2a7acb63d392e7a49b8e69a23036529253d8daf7a4a466dc5d1ea75f09cce48d3b10684341dfe9ea87887f78ab27398d2171f66127dc53fade6b5eda next_version=224 sesssion_starting_time=3.692536ms +2026-04-20T15:39:21.917531Z DEBUG compute_state_update{scope="sequencer" rollup_height=220 slot_number=220}: sov_state::nomt::prover_storage: computed next state root state_root=4a6257b1542824f8ddafec5410ad0772dcbc0830506c30164d7abceb2294900d79bbe57c68b42c15adab85704ec6b200fe07a3e02a76adf2f87e900728155d5c next_version=224 time=8.173377ms accesses_build_time=374.137µs finishing_session_time=3.976315ms +2026-04-20T15:39:21.930782Z DEBUG sov_stf_runner::runner: Block execution complete time=3.019438618s +2026-04-20T15:39:21.930852Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:39:21.934731Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:39:21.935288Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:39:22.448098Z DEBUG sp1_core_executor_runner::native: CHILD sp1_21yQMSfcT-OzxAA523OXRw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:39:22.493548Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:39:22.506790Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2026506 cycles +2026-04-20T15:39:22.509489Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [59, 18, 138, 243, 146, 242, 96, 186, 170, 50, 27, 85, 31, 143, 122, 218, 133, 117, 95, 173, 75, 100, 15, 216, 136, 177, 220, 19, 3, 204, 148, 147, 44, 147, 14, 129, 1, 159, 235, 230, 227, 118, 146, 223, 111, 151, 220, 88, 85, 191, 113, 92, 178, 41, 40, 23, 241, 243, 24, 160, 145, 88, 50, 154, 4, 91, 28, 203, 18, 207, 20, 116, 67, 197, 55, 98, 233, 185, 206, 38, 208, 223, 14, 124, 216, 49, 198, 148, 148, 144, 211, 94, 99, 173, 37, 13, 30, 176, 52, 164, 237, 218, 124, 28, 100, 197, 173, 153, 146, 235, 35, 112, 4, 114, 127, 131, 188, 12, 67, 169, 70, 191, 17, 110, 208, 196, 141, 114, 193, 123, 212, 5, 103, 0, 248, 4, 122, 138, 208, 11, 2, 89, 215, 101, 173, 172, 90, 203, 55, 177, 66, 234, 8, 33, 72, 98, 91, 139, 242, 238, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:39:23.227052Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:39:23.227125Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:39:24.868614Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=224 prev_hash=0xebb29975e5be57629a8e62942a162a2ef1780a5f3dff4a6fb224cf704d044673 hash=0x4db9eddcf3e56080c5a6e511b02021008017769def5dfb6e0fe8b34287e16aee producing_time=3.751656ms +2026-04-20T15:39:24.873719Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=224 current_state_root="16430f2b2a7acb63d392e7a49b8e69a23036529253d8daf7a4a466dc5d1ea75f09cce48d3b10684341dfe9ea87887f78ab27398d2171f66127dc53fade6b5eda" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x5a41e8d68de8a311df7c9d664b4b13610144005e1e4e48153ebd072aa0456030"] proof_blobs=[] +2026-04-20T15:39:24.881679Z DEBUG StfBlueprint::apply_slot{context=Node da_height=224}: sov_chain_state: Setting next visible slot number next_visible_slot_number=220 +2026-04-20T15:39:24.887225Z DEBUG StfBlueprint::apply_slot{context=Node da_height=224}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x5a41e8d68de8a311df7c9d664b4b13610144005e1e4e48153ebd072aa0456030}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:24.889481Z DEBUG StfBlueprint::apply_slot{context=Node da_height=224}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=16430f2b2a7acb63d392e7a49b8e69a23036529253d8daf7a4a466dc5d1ea75f09cce48d3b10684341dfe9ea87887f78ab27398d2171f66127dc53fade6b5eda next_version=224 sesssion_starting_time=337.748µs +2026-04-20T15:39:24.897383Z DEBUG StfBlueprint::apply_slot{context=Node da_height=224}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4a6257b1542824f8ddafec5410ad0772dcbc0830506c30164d7abceb2294900d60a4b5c22b7d92c9fbf975f73cbd5a8c13f2bd6592735630cabe0bfd6a8d6c2a next_version=224 time=9.070702ms accesses_build_time=815.345µs finishing_session_time=7.76522ms +2026-04-20T15:39:24.898726Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="16430f2b2a7acb63d392e7a49b8e69a23036529253d8daf7a4a466dc5d1ea75f09cce48d3b10684341dfe9ea87887f78ab27398d2171f66127dc53fade6b5eda" next_state_root="4a6257b1542824f8ddafec5410ad0772dcbc0830506c30164d7abceb2294900d60a4b5c22b7d92c9fbf975f73cbd5a8c13f2bd6592735630cabe0bfd6a8d6c2a" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:39:24.902622Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 224, latest_finalized_slot_number: 224, sync_status: Syncing { synced_da_height: 223, target_da_height: 224 }, .. } +2026-04-20T15:39:24.903975Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=220 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 224, latest_finalized_slot_number: 224, sync_status: Syncing { synced_da_height: 223, target_da_height: 224 }, .. } +2026-04-20T15:39:24.904871Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=220 +2026-04-20T15:39:24.907385Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:39:24.908302Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=216 +2026-04-20T15:39:24.909445Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=221 +2026-04-20T15:39:24.910581Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:39:24.912441Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=221 sequence_number=241 +2026-04-20T15:39:24.912734Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=241 blob_id=2147897977720744557204879144641051132 visible_slot_number_after_increase=221 visible_slots_to_advance=1 +2026-04-20T15:39:24.912739Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:24.919168Z DEBUG compute_state_update{scope="sequencer" rollup_height=221 slot_number=221}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:39:24.919520Z DEBUG compute_state_update{scope="sequencer" rollup_height=221 slot_number=221}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4a6257b1542824f8ddafec5410ad0772dcbc0830506c30164d7abceb2294900d60a4b5c22b7d92c9fbf975f73cbd5a8c13f2bd6592735630cabe0bfd6a8d6c2a next_version=225 sesssion_starting_time=1.855048ms +2026-04-20T15:39:24.919689Z DEBUG sov_stf_runner::runner: Block execution complete time=2.988844957s +2026-04-20T15:39:24.919738Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:39:24.920576Z DEBUG manage_blob_submission_inside_task{blob_id=2147897977720744557204879144641051132 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x68b7ae3a4c1c495bd600d0ebf6511c61af34eaada2c7cb5833209cd1124b14c7 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=225 include_at=225 bytes=13 time=1.52358ms +2026-04-20T15:39:24.922432Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:39:24.922730Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:39:24.924616Z DEBUG compute_state_update{scope="sequencer" rollup_height=221 slot_number=221}: sov_state::nomt::prover_storage: computed next state root state_root=593cd32a87b672ee9352dcbe42064eebddc7aeed393852aeb81b6df7b172c5af21518f259456cab2fc41213bab37ab48c3a70b359ca29181ae40c5df36f5d08c next_version=225 time=7.484702ms accesses_build_time=505.647µs finishing_session_time=4.986078ms +2026-04-20T15:39:25.427726Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xOCjLWadSmeVwS7EdZKUig==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:39:25.494768Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:39:25.506969Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4201204 cycles +2026-04-20T15:39:25.509857Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [2, 61, 58, 95, 215, 33, 231, 169, 231, 180, 250, 217, 121, 163, 214, 181, 209, 57, 23, 107, 53, 110, 36, 193, 116, 159, 114, 126, 167, 62, 238, 32, 30, 170, 239, 96, 207, 8, 32, 108, 19, 249, 58, 62, 12, 118, 39, 16, 39, 79, 48, 232, 140, 18, 192, 190, 33, 235, 164, 102, 45, 113, 61, 201, 0, 179, 57, 81, 163, 53, 175, 201, 181, 198, 152, 217, 59, 165, 0, 216, 188, 197, 87, 56, 146, 53, 232, 132, 238, 226, 45, 98, 166, 145, 207, 219, 52, 15, 29, 87, 85, 118, 252, 67, 217, 212, 58, 48, 73, 98, 243, 155, 255, 38, 202, 203, 133, 38, 114, 93, 209, 1, 170, 79, 143, 12, 244, 204, 243, 152, 113, 152, 53, 251, 188, 116, 66, 226, 222, 181, 251, 29, 250, 131, 45, 236, 22, 175, 240, 137, 141, 241, 142, 81, 199, 226, 165, 143, 165, 193, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:39:26.995930Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:39:26.996008Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:39:27.874344Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=225 prev_hash=0x4db9eddcf3e56080c5a6e511b02021008017769def5dfb6e0fe8b34287e16aee hash=0x1799c8d245df5e63cab281fa8f1093ab6e241ca04b9978f5d72d3c4c095c5051 producing_time=4.258922ms +2026-04-20T15:39:27.882163Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=225 current_state_root="4a6257b1542824f8ddafec5410ad0772dcbc0830506c30164d7abceb2294900d60a4b5c22b7d92c9fbf975f73cbd5a8c13f2bd6592735630cabe0bfd6a8d6c2a" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x68b7ae3a4c1c495bd600d0ebf6511c61af34eaada2c7cb5833209cd1124b14c7"] proof_blobs=[] +2026-04-20T15:39:27.890179Z DEBUG StfBlueprint::apply_slot{context=Node da_height=225}: sov_chain_state: Setting next visible slot number next_visible_slot_number=221 +2026-04-20T15:39:27.895964Z DEBUG StfBlueprint::apply_slot{context=Node da_height=225}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x68b7ae3a4c1c495bd600d0ebf6511c61af34eaada2c7cb5833209cd1124b14c7}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:27.898069Z DEBUG StfBlueprint::apply_slot{context=Node da_height=225}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4a6257b1542824f8ddafec5410ad0772dcbc0830506c30164d7abceb2294900d60a4b5c22b7d92c9fbf975f73cbd5a8c13f2bd6592735630cabe0bfd6a8d6c2a next_version=225 sesssion_starting_time=223.478µs +2026-04-20T15:39:27.906112Z DEBUG StfBlueprint::apply_slot{context=Node da_height=225}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=593cd32a87b672ee9352dcbe42064eebddc7aeed393852aeb81b6df7b172c5af14591295ebd6a761fbabb2d5af47faacf1bf2e2a54d69a1330600937998ee694 next_version=225 time=9.049331ms accesses_build_time=767.365µs finishing_session_time=7.920908ms +2026-04-20T15:39:27.907338Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4a6257b1542824f8ddafec5410ad0772dcbc0830506c30164d7abceb2294900d60a4b5c22b7d92c9fbf975f73cbd5a8c13f2bd6592735630cabe0bfd6a8d6c2a" next_state_root="593cd32a87b672ee9352dcbe42064eebddc7aeed393852aeb81b6df7b172c5af14591295ebd6a761fbabb2d5af47faacf1bf2e2a54d69a1330600937998ee694" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:39:27.911696Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 225, latest_finalized_slot_number: 225, sync_status: Synced { synced_da_height: 224 }, .. } +2026-04-20T15:39:27.913030Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=221 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 225, latest_finalized_slot_number: 225, sync_status: Synced { synced_da_height: 224 }, .. } +2026-04-20T15:39:27.913917Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=221 +2026-04-20T15:39:27.916381Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:39:27.917285Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=217 +2026-04-20T15:39:27.918568Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=222 +2026-04-20T15:39:27.919286Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:39:27.920369Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=222 sequence_number=242 +2026-04-20T15:39:27.920605Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:27.920665Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=242 blob_id=2147897981357228530735974272925374158 visible_slot_number_after_increase=222 visible_slots_to_advance=1 +2026-04-20T15:39:27.926549Z DEBUG compute_state_update{scope="sequencer" rollup_height=222 slot_number=222}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:39:27.926886Z DEBUG compute_state_update{scope="sequencer" rollup_height=222 slot_number=222}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=593cd32a87b672ee9352dcbe42064eebddc7aeed393852aeb81b6df7b172c5af14591295ebd6a761fbabb2d5af47faacf1bf2e2a54d69a1330600937998ee694 next_version=226 sesssion_starting_time=2.773742ms +2026-04-20T15:39:27.927057Z DEBUG manage_blob_submission_inside_task{blob_id=2147897981357228530735974272925374158 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x158b632b39ce94055081ecc9075b81e8e0a29b88d5583521550594002b903468 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=226 include_at=226 bytes=13 time=1.613489ms +2026-04-20T15:39:27.927166Z DEBUG sov_stf_runner::runner: Block execution complete time=3.007433667s +2026-04-20T15:39:27.927234Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:39:27.930597Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:39:27.931310Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:39:27.932898Z DEBUG compute_state_update{scope="sequencer" rollup_height=222 slot_number=222}: sov_state::nomt::prover_storage: computed next state root state_root=17e60a60d922a5c2b021566585830c754ddeb257e1968640cb14063ee90a010460e34591d14fb5f8fd9ec20a20db3e9590f3ba80eb8745a14804160fbad9d941 next_version=226 time=9.224091ms accesses_build_time=415.838µs finishing_session_time=5.900992ms +2026-04-20T15:39:28.337349Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9ExkjjASRGeX5x0Lpu98zA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:39:28.377976Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:39:28.389055Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1865055 cycles +2026-04-20T15:39:28.391331Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [26, 214, 206, 242, 215, 111, 205, 54, 79, 178, 147, 94, 134, 239, 209, 110, 33, 99, 94, 183, 230, 76, 174, 45, 70, 118, 43, 90, 32, 31, 116, 245, 94, 23, 175, 250, 230, 212, 225, 143, 20, 223, 175, 125, 230, 11, 213, 162, 70, 221, 55, 83, 93, 45, 141, 223, 184, 214, 81, 251, 237, 161, 33, 3, 7, 3, 135, 141, 63, 161, 254, 29, 70, 70, 181, 8, 201, 80, 40, 85, 211, 228, 145, 31, 198, 7, 69, 238, 132, 81, 212, 182, 190, 93, 193, 70, 20, 140, 105, 133, 188, 69, 101, 13, 177, 49, 149, 145, 106, 100, 142, 40, 155, 19, 177, 216, 5, 234, 157, 136, 224, 9, 96, 241, 160, 79, 92, 241, 187, 22, 179, 219, 159, 252, 230, 227, 100, 208, 121, 205, 149, 96, 49, 249, 102, 8, 176, 205, 70, 145, 91, 132, 20, 123, 74, 104, 158, 13, 129, 55, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:39:29.056740Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:39:29.056821Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:39:30.879543Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=226 prev_hash=0x1799c8d245df5e63cab281fa8f1093ab6e241ca04b9978f5d72d3c4c095c5051 hash=0x00d1dfd2f247ca89d76fc2cbad804593f65bcdad96f43aa049c78d556cae073b producing_time=4.174613ms +2026-04-20T15:39:30.889873Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=226 current_state_root="593cd32a87b672ee9352dcbe42064eebddc7aeed393852aeb81b6df7b172c5af14591295ebd6a761fbabb2d5af47faacf1bf2e2a54d69a1330600937998ee694" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x158b632b39ce94055081ecc9075b81e8e0a29b88d5583521550594002b903468"] proof_blobs=[] +2026-04-20T15:39:30.898593Z DEBUG StfBlueprint::apply_slot{context=Node da_height=226}: sov_chain_state: Setting next visible slot number next_visible_slot_number=222 +2026-04-20T15:39:30.904742Z DEBUG StfBlueprint::apply_slot{context=Node da_height=226}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x158b632b39ce94055081ecc9075b81e8e0a29b88d5583521550594002b903468}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:30.906979Z DEBUG StfBlueprint::apply_slot{context=Node da_height=226}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=593cd32a87b672ee9352dcbe42064eebddc7aeed393852aeb81b6df7b172c5af14591295ebd6a761fbabb2d5af47faacf1bf2e2a54d69a1330600937998ee694 next_version=226 sesssion_starting_time=231.799µs +2026-04-20T15:39:30.915075Z DEBUG StfBlueprint::apply_slot{context=Node da_height=226}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=17e60a60d922a5c2b021566585830c754ddeb257e1968640cb14063ee90a010462f724056eaad08b349f5783c6fb9f39f92b8bdb2d50dec6a4eac9cf94033fe7 next_version=226 time=9.1367ms accesses_build_time=790.864µs finishing_session_time=7.963019ms +2026-04-20T15:39:30.916371Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="593cd32a87b672ee9352dcbe42064eebddc7aeed393852aeb81b6df7b172c5af14591295ebd6a761fbabb2d5af47faacf1bf2e2a54d69a1330600937998ee694" next_state_root="17e60a60d922a5c2b021566585830c754ddeb257e1968640cb14063ee90a010462f724056eaad08b349f5783c6fb9f39f92b8bdb2d50dec6a4eac9cf94033fe7" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:39:30.921206Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 226, latest_finalized_slot_number: 226, sync_status: Synced { synced_da_height: 225 }, .. } +2026-04-20T15:39:30.922611Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=222 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 226, latest_finalized_slot_number: 226, sync_status: Synced { synced_da_height: 225 }, .. } +2026-04-20T15:39:30.923548Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=222 +2026-04-20T15:39:30.926080Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:39:30.927052Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=218 +2026-04-20T15:39:30.929103Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=223 +2026-04-20T15:39:30.930476Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:39:30.932349Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=223 sequence_number=243 +2026-04-20T15:39:30.932632Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:30.932709Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=243 blob_id=2147897984998483583014854920926696887 visible_slot_number_after_increase=223 visible_slots_to_advance=1 +2026-04-20T15:39:30.937514Z DEBUG compute_state_update{scope="sequencer" rollup_height=223 slot_number=223}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:39:30.937837Z DEBUG compute_state_update{scope="sequencer" rollup_height=223 slot_number=223}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=17e60a60d922a5c2b021566585830c754ddeb257e1968640cb14063ee90a010462f724056eaad08b349f5783c6fb9f39f92b8bdb2d50dec6a4eac9cf94033fe7 next_version=227 sesssion_starting_time=679.916µs +2026-04-20T15:39:30.938597Z DEBUG sov_stf_runner::runner: Block execution complete time=3.011373131s +2026-04-20T15:39:30.938738Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:39:30.940375Z DEBUG manage_blob_submission_inside_task{blob_id=2147897984998483583014854920926696887 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x6084b0bffda2a6d0f1578aeea8d52f14a0670ccaf073d67ecb3ee86ce95d0074 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=227 include_at=227 bytes=13 time=1.672349ms +2026-04-20T15:39:30.943095Z DEBUG compute_state_update{scope="sequencer" rollup_height=223 slot_number=223}: sov_state::nomt::prover_storage: computed next state root state_root=6ef44f78f3cc8fc0148de07701a56219b98e550f698bacae5047393234800be42646f77aba4f9285dfa496b587c90cb9c2b222f256443ad15b1dce879bd07fe8 next_version=227 time=6.322919ms accesses_build_time=375.847µs finishing_session_time=5.148507ms +2026-04-20T15:39:31.405957Z DEBUG sp1_core_executor_runner::native: CHILD sp1__UNIU6vVTwmaX2COtTrQ0w==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:39:31.449008Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:39:31.459405Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1938295 cycles +2026-04-20T15:39:31.462283Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [74, 216, 164, 111, 115, 172, 99, 190, 211, 110, 25, 218, 13, 225, 196, 66, 202, 208, 62, 40, 89, 192, 104, 83, 91, 56, 142, 183, 164, 119, 254, 109, 124, 29, 214, 220, 232, 158, 36, 32, 18, 90, 151, 190, 197, 210, 47, 168, 9, 42, 220, 125, 6, 227, 15, 167, 87, 53, 218, 228, 200, 36, 207, 247, 41, 0, 134, 71, 55, 55, 125, 137, 255, 131, 203, 130, 132, 14, 31, 39, 206, 55, 113, 174, 128, 63, 17, 165, 78, 231, 214, 8, 7, 216, 132, 179, 88, 146, 239, 139, 56, 62, 80, 76, 3, 59, 232, 19, 240, 89, 27, 195, 212, 71, 229, 135, 27, 98, 168, 225, 203, 171, 199, 218, 178, 60, 165, 114, 69, 198, 252, 254, 62, 51, 133, 32, 109, 176, 89, 127, 90, 93, 81, 172, 58, 89, 148, 108, 134, 235, 26, 202, 92, 180, 101, 237, 241, 172, 15, 87, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:39:32.149803Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:39:32.149886Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:39:32.180561Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:39:32.418675Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:39:32.420937Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2607482 cycles +2026-04-20T15:39:32.421307Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [211, 0, 0, 0, 0, 0, 0, 0, 220, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 16, 230, 1, 118, 90, 201, 42, 102, 182, 101, 116, 25, 246, 44, 153, 120, 62, 44, 88, 198, 167, 237, 210, 25, 238, 43, 236, 134, 162, 209, 151, 252, 45, 11, 132, 6, 207, 48, 177, 186, 40, 2, 180, 207, 241, 255, 9, 118, 52, 135, 228, 157, 167, 167, 210, 102, 60, 4, 51, 198, 144, 207, 205, 254, 41, 0, 134, 71, 55, 55, 125, 137, 255, 131, 203, 130, 132, 14, 31, 39, 206, 55, 113, 174, 128, 63, 17, 165, 78, 231, 214, 8, 7, 216, 132, 179, 88, 146, 239, 139, 56, 62, 80, 76, 3, 59, 232, 19, 240, 89, 27, 195, 212, 71, 229, 135, 27, 98, 168, 225, 203, 171, 199, 218, 178, 60, 165, 114, 184, 147, 157, 8, 90, 4, 121, 132, 117, 219, 206, 164, 248, 143, 165, 78, 108, 183, 207, 177, 221, 88, 79, 93, 76, 27, 131, 145, 56, 218, 240, 252, 69, 198, 252, 254, 62, 51, 133, 32, 109, 176, 89, 127, 90, 93, 81, 172, 58, 89, 148, 108, 134, 235, 26, 202, 92, 180, 101, 237, 241, 172, 15, 87, 32, 0, 0, 0, 0, 0, 0, 0, 33, 87, 226, 242, 39, 49, 250, 210, 41, 143, 26, 188, 101, 19, 12, 136, 43, 105, 121, 236, 80, 118, 108, 155, 63, 154, 215, 73, 15, 107, 27, 67, 32, 0, 0, 0, 0, 0, 0, 0, 54, 246, 123, 188, 67, 61, 237, 103, 16, 229, 5, 146, 113, 8, 178, 215, 95, 95, 151, 239, 106, 28, 10, 135, 55, 55, 208, 95, 86, 190, 27, 9, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:39:33.335660Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:39:33.335739Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:39:33.336658Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=1951 +2026-04-20T15:39:33.339471Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:39:33.340158Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:39:33.340439Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=244 blob_id=2147897987904766633944529707465899911 +2026-04-20T15:39:33.884148Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=227 prev_hash=0x00d1dfd2f247ca89d76fc2cbad804593f65bcdad96f43aa049c78d556cae073b hash=0x114a9efbf1c435ffd3650909b2d0809b2c347584511553c98a3b5f11adbc7b98 producing_time=3.12779ms +2026-04-20T15:39:33.892436Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=227 current_state_root="17e60a60d922a5c2b021566585830c754ddeb257e1968640cb14063ee90a010462f724056eaad08b349f5783c6fb9f39f92b8bdb2d50dec6a4eac9cf94033fe7" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x6084b0bffda2a6d0f1578aeea8d52f14a0670ccaf073d67ecb3ee86ce95d0074"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9abf5bfd0a70c62253513aa36637df04ba56905efcca92253f87a49a4446b115, len=2001"] +2026-04-20T15:39:33.900682Z DEBUG StfBlueprint::apply_slot{context=Node da_height=227}: sov_chain_state: Setting next visible slot number next_visible_slot_number=223 +2026-04-20T15:39:33.906498Z DEBUG StfBlueprint::apply_slot{context=Node da_height=227}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x6084b0bffda2a6d0f1578aeea8d52f14a0670ccaf073d67ecb3ee86ce95d0074}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:33.908813Z DEBUG StfBlueprint::apply_slot{context=Node da_height=227}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=17e60a60d922a5c2b021566585830c754ddeb257e1968640cb14063ee90a010462f724056eaad08b349f5783c6fb9f39f92b8bdb2d50dec6a4eac9cf94033fe7 next_version=227 sesssion_starting_time=298.368µs +2026-04-20T15:39:33.916990Z DEBUG StfBlueprint::apply_slot{context=Node da_height=227}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6ef44f78f3cc8fc0148de07701a56219b98e550f698bacae5047393234800be45ecc103cdca93ec4e8060b68f3f1d1a66531101db9da69f48bf7e68b551f4c20 next_version=227 time=9.414469ms accesses_build_time=927.854µs finishing_session_time=8.053838ms +2026-04-20T15:39:33.918226Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="17e60a60d922a5c2b021566585830c754ddeb257e1968640cb14063ee90a010462f724056eaad08b349f5783c6fb9f39f92b8bdb2d50dec6a4eac9cf94033fe7" next_state_root="6ef44f78f3cc8fc0148de07701a56219b98e550f698bacae5047393234800be45ecc103cdca93ec4e8060b68f3f1d1a66531101db9da69f48bf7e68b551f4c20" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:39:33.923405Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 227, latest_finalized_slot_number: 227, sync_status: Synced { synced_da_height: 226 }, .. } +2026-04-20T15:39:33.925216Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=223 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 227, latest_finalized_slot_number: 227, sync_status: Synced { synced_da_height: 226 }, .. } +2026-04-20T15:39:33.926219Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=223 +2026-04-20T15:39:33.928961Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:39:33.929907Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=219 +2026-04-20T15:39:33.931719Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=224 +2026-04-20T15:39:33.932632Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:39:33.936491Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 211. Final slot number 220 +2026-04-20T15:39:33.937185Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=224 sequence_number=245 +2026-04-20T15:39:33.937440Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:33.937636Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=245 blob_id=2147897988631282942637735440206966513 visible_slot_number_after_increase=224 visible_slots_to_advance=1 +2026-04-20T15:39:33.939084Z DEBUG sov_stf_runner::runner: Block execution complete time=3.000379582s +2026-04-20T15:39:33.939171Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:39:33.941307Z DEBUG compute_state_update{scope="sequencer" rollup_height=224 slot_number=224}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:39:33.941455Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:39:33.941625Z DEBUG compute_state_update{scope="sequencer" rollup_height=224 slot_number=224}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6ef44f78f3cc8fc0148de07701a56219b98e550f698bacae5047393234800be45ecc103cdca93ec4e8060b68f3f1d1a66531101db9da69f48bf7e68b551f4c20 next_version=228 sesssion_starting_time=318.868µs +2026-04-20T15:39:33.942219Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:39:33.944334Z DEBUG manage_blob_submission_inside_task{blob_id=2147897988631282942637735440206966513 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x5158dcb09bd8f40466732e76221fbe8491a39b60ee822df48d49825189aabd79 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=228 include_at=228 bytes=13 time=1.55864ms +2026-04-20T15:39:33.947862Z DEBUG compute_state_update{scope="sequencer" rollup_height=224 slot_number=224}: sov_state::nomt::prover_storage: computed next state root state_root=56ffc2b41e390c6462505f04892932c052e1970f532b311c5f819e3b7ea4d4767e687a2243b48d2f90b8037635bd305e15a6a3d151cc7d2d7615caf8c4c8f43d next_version=228 time=7.012844ms accesses_build_time=447.417µs finishing_session_time=6.140971ms +2026-04-20T15:39:36.824235Z DEBUG sp1_core_executor_runner::native: CHILD sp1_5cyddPSmQ16WjU6IkrqMWg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:39:36.865580Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:39:36.877558Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1873606 cycles +2026-04-20T15:39:36.880480Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [23, 47, 144, 68, 32, 125, 14, 187, 109, 199, 85, 102, 188, 21, 195, 94, 188, 222, 210, 8, 193, 214, 246, 87, 95, 246, 56, 112, 6, 250, 234, 132, 0, 60, 101, 105, 17, 92, 18, 191, 82, 224, 106, 85, 174, 213, 18, 103, 63, 59, 204, 100, 198, 67, 81, 210, 70, 76, 40, 214, 236, 179, 66, 154, 47, 64, 140, 38, 195, 164, 16, 152, 2, 216, 19, 63, 241, 38, 122, 11, 29, 130, 220, 60, 24, 149, 211, 92, 109, 228, 169, 196, 124, 33, 2, 207, 49, 75, 74, 50, 136, 129, 204, 186, 83, 254, 217, 225, 130, 0, 248, 199, 92, 204, 6, 184, 105, 165, 164, 79, 195, 39, 216, 127, 163, 30, 189, 107, 212, 180, 98, 229, 182, 135, 128, 59, 38, 160, 83, 130, 89, 128, 91, 225, 10, 186, 203, 150, 26, 28, 181, 172, 109, 136, 108, 182, 196, 245, 36, 95, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:39:36.887852Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=228 prev_hash=0x114a9efbf1c435ffd3650909b2d0809b2c347584511553c98a3b5f11adbc7b98 hash=0xfc1bb55313adbbbcf400d5ca02804539fc666b9c836e20414dd1314d51c58372 producing_time=3.08624ms +2026-04-20T15:39:36.891999Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=228 current_state_root="6ef44f78f3cc8fc0148de07701a56219b98e550f698bacae5047393234800be45ecc103cdca93ec4e8060b68f3f1d1a66531101db9da69f48bf7e68b551f4c20" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x5158dcb09bd8f40466732e76221fbe8491a39b60ee822df48d49825189aabd79"] proof_blobs=[] +2026-04-20T15:39:36.902843Z DEBUG StfBlueprint::apply_slot{context=Node da_height=228}: sov_chain_state: Setting next visible slot number next_visible_slot_number=224 +2026-04-20T15:39:36.922819Z DEBUG StfBlueprint::apply_slot{context=Node da_height=228}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 211. Final slot number 220 +2026-04-20T15:39:36.923288Z DEBUG StfBlueprint::apply_slot{context=Node da_height=228}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x5158dcb09bd8f40466732e76221fbe8491a39b60ee822df48d49825189aabd79}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:36.925992Z DEBUG StfBlueprint::apply_slot{context=Node da_height=228}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6ef44f78f3cc8fc0148de07701a56219b98e550f698bacae5047393234800be45ecc103cdca93ec4e8060b68f3f1d1a66531101db9da69f48bf7e68b551f4c20 next_version=228 sesssion_starting_time=323.818µs +2026-04-20T15:39:36.935557Z DEBUG StfBlueprint::apply_slot{context=Node da_height=228}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=56ffc2b41e390c6462505f04892932c052e1970f532b311c5f819e3b7ea4d4767dd2d5ef14b128a57a101eef3a83bdc6e27db88e1cfb9fa3f449ba9dd3c9b0c7 next_version=228 time=10.988048ms accesses_build_time=1.087123ms finishing_session_time=9.434619ms +2026-04-20T15:39:36.936931Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6ef44f78f3cc8fc0148de07701a56219b98e550f698bacae5047393234800be45ecc103cdca93ec4e8060b68f3f1d1a66531101db9da69f48bf7e68b551f4c20" next_state_root="56ffc2b41e390c6462505f04892932c052e1970f532b311c5f819e3b7ea4d4767dd2d5ef14b128a57a101eef3a83bdc6e27db88e1cfb9fa3f449ba9dd3c9b0c7" aggregated_proofs=1 proof_receipts=1 +2026-04-20T15:39:36.942650Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 228, latest_finalized_slot_number: 228, sync_status: Syncing { synced_da_height: 227, target_da_height: 228 }, .. } +2026-04-20T15:39:36.944029Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=224 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 228, latest_finalized_slot_number: 228, sync_status: Syncing { synced_da_height: 227, target_da_height: 228 }, .. } +2026-04-20T15:39:36.944967Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=224 +2026-04-20T15:39:36.947607Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:39:36.948536Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=220 +2026-04-20T15:39:36.950259Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=225 +2026-04-20T15:39:36.951271Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:39:36.952878Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=225 sequence_number=246 +2026-04-20T15:39:36.953124Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=246 blob_id=2147897992276201408935981324868998699 visible_slot_number_after_increase=225 visible_slots_to_advance=1 +2026-04-20T15:39:36.953149Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:36.957409Z DEBUG compute_state_update{scope="sequencer" rollup_height=225 slot_number=225}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:39:36.957791Z DEBUG compute_state_update{scope="sequencer" rollup_height=225 slot_number=225}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=56ffc2b41e390c6462505f04892932c052e1970f532b311c5f819e3b7ea4d4767dd2d5ef14b128a57a101eef3a83bdc6e27db88e1cfb9fa3f449ba9dd3c9b0c7 next_version=229 sesssion_starting_time=480.527µs +2026-04-20T15:39:36.958090Z DEBUG sov_stf_runner::runner: Block execution complete time=3.018934501s +2026-04-20T15:39:36.958172Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:39:36.960056Z DEBUG manage_blob_submission_inside_task{blob_id=2147897992276201408935981324868998699 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x3d93e42de2c4c118434e70a9e4b92a0cf0b1e85a0ca59fdab185d1b8953233df sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=229 include_at=229 bytes=13 time=1.56109ms +2026-04-20T15:39:36.960403Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:39:36.961112Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:39:36.963886Z DEBUG compute_state_update{scope="sequencer" rollup_height=225 slot_number=225}: sov_state::nomt::prover_storage: computed next state root state_root=786b5c0a4c77e8face6c374469130134423a279bf6f94b56ecde29f0b2b56c2d6df20f29bcb0f4241fa03f4bb020697065ce8872b2d2ce25401042316a89d98f next_version=229 time=6.986405ms accesses_build_time=389.287µs finishing_session_time=5.985611ms +2026-04-20T15:39:37.441365Z DEBUG sp1_core_executor_runner::native: CHILD sp1_3MVLp3aqTUST27j7yf9pIg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:39:37.483230Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:39:37.497068Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1883412 cycles +2026-04-20T15:39:37.499663Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [109, 53, 226, 67, 183, 151, 253, 109, 113, 74, 194, 37, 177, 194, 111, 188, 249, 159, 149, 65, 228, 196, 245, 45, 231, 21, 123, 132, 79, 208, 93, 55, 91, 247, 53, 155, 147, 12, 154, 57, 200, 173, 75, 172, 233, 142, 0, 36, 53, 236, 221, 106, 36, 182, 105, 209, 43, 68, 152, 15, 5, 135, 24, 130, 102, 137, 174, 210, 176, 218, 74, 248, 135, 44, 3, 149, 77, 60, 109, 169, 75, 2, 127, 3, 34, 203, 92, 80, 196, 206, 99, 232, 155, 98, 57, 186, 84, 45, 201, 250, 121, 229, 115, 168, 69, 225, 196, 159, 214, 221, 114, 52, 46, 211, 225, 139, 130, 106, 71, 54, 216, 215, 3, 44, 2, 194, 219, 17, 1, 69, 53, 114, 159, 103, 160, 26, 100, 189, 253, 47, 147, 155, 244, 132, 175, 186, 146, 221, 2, 28, 38, 95, 156, 93, 203, 46, 143, 8, 77, 116, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:39:37.572545Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:39:37.572623Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:39:38.207985Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:39:38.208064Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:39:39.892232Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=229 prev_hash=0xfc1bb55313adbbbcf400d5ca02804539fc666b9c836e20414dd1314d51c58372 hash=0x6ab84305ff84f25bdbf08f800a3d6fbf40b09c0f0c0e9acc73a98b36a23d6000 producing_time=3.118ms +2026-04-20T15:39:39.900379Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=229 current_state_root="56ffc2b41e390c6462505f04892932c052e1970f532b311c5f819e3b7ea4d4767dd2d5ef14b128a57a101eef3a83bdc6e27db88e1cfb9fa3f449ba9dd3c9b0c7" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x3d93e42de2c4c118434e70a9e4b92a0cf0b1e85a0ca59fdab185d1b8953233df"] proof_blobs=[] +2026-04-20T15:39:39.909129Z DEBUG StfBlueprint::apply_slot{context=Node da_height=229}: sov_chain_state: Setting next visible slot number next_visible_slot_number=225 +2026-04-20T15:39:39.915307Z DEBUG StfBlueprint::apply_slot{context=Node da_height=229}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x3d93e42de2c4c118434e70a9e4b92a0cf0b1e85a0ca59fdab185d1b8953233df}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:39.917577Z DEBUG StfBlueprint::apply_slot{context=Node da_height=229}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=56ffc2b41e390c6462505f04892932c052e1970f532b311c5f819e3b7ea4d4767dd2d5ef14b128a57a101eef3a83bdc6e27db88e1cfb9fa3f449ba9dd3c9b0c7 next_version=229 sesssion_starting_time=338.007µs +2026-04-20T15:39:39.925532Z DEBUG StfBlueprint::apply_slot{context=Node da_height=229}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=786b5c0a4c77e8face6c374469130134423a279bf6f94b56ecde29f0b2b56c2d32ca44d319ff06642067644da1ef638db4677050f9dab05558e6849d97c7f274 next_version=229 time=9.074431ms accesses_build_time=768.685µs finishing_session_time=7.820789ms +2026-04-20T15:39:39.926827Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="56ffc2b41e390c6462505f04892932c052e1970f532b311c5f819e3b7ea4d4767dd2d5ef14b128a57a101eef3a83bdc6e27db88e1cfb9fa3f449ba9dd3c9b0c7" next_state_root="786b5c0a4c77e8face6c374469130134423a279bf6f94b56ecde29f0b2b56c2d32ca44d319ff06642067644da1ef638db4677050f9dab05558e6849d97c7f274" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:39:39.931546Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 229, latest_finalized_slot_number: 229, sync_status: Syncing { synced_da_height: 228, target_da_height: 229 }, .. } +2026-04-20T15:39:39.932956Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=225 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 229, latest_finalized_slot_number: 229, sync_status: Syncing { synced_da_height: 228, target_da_height: 229 }, .. } +2026-04-20T15:39:39.933980Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=225 +2026-04-20T15:39:39.936634Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:39:39.937616Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=221 +2026-04-20T15:39:39.938804Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=226 +2026-04-20T15:39:39.939339Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:39:39.940233Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=226 sequence_number=247 +2026-04-20T15:39:39.940424Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:39.940546Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=247 blob_id=2147897995888495945739946067698997242 visible_slot_number_after_increase=226 visible_slots_to_advance=1 +2026-04-20T15:39:39.946224Z DEBUG manage_blob_submission_inside_task{blob_id=2147897995888495945739946067698997242 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xabe61fbc3b241c83f64623ac1d4524917eb37a6aaed316e6d5d45f56886af3df sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=230 include_at=230 bytes=13 time=1.315002ms +2026-04-20T15:39:39.946539Z DEBUG compute_state_update{scope="sequencer" rollup_height=226 slot_number=226}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:39:39.946880Z DEBUG sov_stf_runner::runner: Block execution complete time=2.988725228s +2026-04-20T15:39:39.946875Z DEBUG compute_state_update{scope="sequencer" rollup_height=226 slot_number=226}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=786b5c0a4c77e8face6c374469130134423a279bf6f94b56ecde29f0b2b56c2d32ca44d319ff06642067644da1ef638db4677050f9dab05558e6849d97c7f274 next_version=230 sesssion_starting_time=4.114134ms +2026-04-20T15:39:39.946930Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:39:39.947927Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:39:39.948636Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:39:39.952073Z DEBUG compute_state_update{scope="sequencer" rollup_height=226 slot_number=226}: sov_state::nomt::prover_storage: computed next state root state_root=105bcc2825870bfe1949ef1b74790539abecc841860feb3a2283a650b70ca86b7b47d7bb17c5c25c4d6d8ea60bf7d7b6978eef543c6481f9fbfe48914b8f481b next_version=230 time=9.468339ms accesses_build_time=150.879µs finishing_session_time=5.114257ms +2026-04-20T15:39:40.446436Z DEBUG sp1_core_executor_runner::native: CHILD sp1_MMSxsGyMQoSutuzw3VOIeA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:39:40.486458Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:39:40.498566Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1808479 cycles +2026-04-20T15:39:40.501556Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [91, 254, 43, 173, 174, 235, 118, 113, 32, 56, 220, 10, 196, 116, 155, 103, 67, 9, 79, 225, 136, 88, 117, 71, 82, 147, 86, 5, 79, 185, 46, 183, 14, 125, 157, 254, 25, 217, 6, 74, 145, 92, 198, 44, 214, 252, 203, 144, 231, 250, 229, 78, 155, 35, 115, 47, 16, 176, 137, 144, 23, 3, 221, 188, 71, 217, 168, 27, 237, 60, 236, 12, 31, 204, 36, 210, 166, 75, 166, 239, 49, 14, 140, 170, 107, 152, 246, 181, 76, 122, 22, 133, 60, 39, 111, 178, 115, 222, 69, 102, 82, 86, 164, 80, 49, 250, 245, 90, 59, 141, 68, 99, 135, 5, 144, 206, 102, 42, 187, 57, 145, 17, 25, 232, 124, 36, 83, 169, 235, 178, 153, 117, 229, 190, 87, 98, 154, 142, 98, 148, 42, 22, 42, 46, 241, 120, 10, 95, 61, 255, 74, 111, 178, 36, 207, 112, 77, 4, 70, 115, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:39:41.142907Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:39:41.142985Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:39:42.896125Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=230 prev_hash=0x6ab84305ff84f25bdbf08f800a3d6fbf40b09c0f0c0e9acc73a98b36a23d6000 hash=0xc51d1c78fa9826f0165e041a10f2da61fe66b747bb45359aedafbe65a3da43ef producing_time=2.772932ms +2026-04-20T15:39:42.900152Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=230 current_state_root="786b5c0a4c77e8face6c374469130134423a279bf6f94b56ecde29f0b2b56c2d32ca44d319ff06642067644da1ef638db4677050f9dab05558e6849d97c7f274" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xabe61fbc3b241c83f64623ac1d4524917eb37a6aaed316e6d5d45f56886af3df"] proof_blobs=[] +2026-04-20T15:39:42.908719Z DEBUG StfBlueprint::apply_slot{context=Node da_height=230}: sov_chain_state: Setting next visible slot number next_visible_slot_number=226 +2026-04-20T15:39:42.914664Z DEBUG StfBlueprint::apply_slot{context=Node da_height=230}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xabe61fbc3b241c83f64623ac1d4524917eb37a6aaed316e6d5d45f56886af3df}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:42.916877Z DEBUG StfBlueprint::apply_slot{context=Node da_height=230}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=786b5c0a4c77e8face6c374469130134423a279bf6f94b56ecde29f0b2b56c2d32ca44d319ff06642067644da1ef638db4677050f9dab05558e6849d97c7f274 next_version=230 sesssion_starting_time=230.719µs +2026-04-20T15:39:42.925424Z DEBUG StfBlueprint::apply_slot{context=Node da_height=230}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=105bcc2825870bfe1949ef1b74790539abecc841860feb3a2283a650b70ca86b34ec430fd0e1f598921ff8ed70fe44cdbf45af5a6156ddfa7d42bbd6d98af044 next_version=230 time=9.576078ms accesses_build_time=786.585µs finishing_session_time=8.412415ms +2026-04-20T15:39:42.926721Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="786b5c0a4c77e8face6c374469130134423a279bf6f94b56ecde29f0b2b56c2d32ca44d319ff06642067644da1ef638db4677050f9dab05558e6849d97c7f274" next_state_root="105bcc2825870bfe1949ef1b74790539abecc841860feb3a2283a650b70ca86b34ec430fd0e1f598921ff8ed70fe44cdbf45af5a6156ddfa7d42bbd6d98af044" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:39:42.930575Z DEBUG sov_stf_runner::runner: Block execution complete time=2.983649821s +2026-04-20T15:39:42.930680Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:39:42.931361Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 230, latest_finalized_slot_number: 229, sync_status: Syncing { synced_da_height: 229, target_da_height: 230 }, .. } +2026-04-20T15:39:42.932749Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=226 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 230, latest_finalized_slot_number: 229, sync_status: Syncing { synced_da_height: 229, target_da_height: 230 }, .. } +2026-04-20T15:39:42.933134Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:39:42.933684Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=226 +2026-04-20T15:39:42.933794Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:39:42.936432Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:39:42.937451Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=222 +2026-04-20T15:39:42.939379Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=227 +2026-04-20T15:39:42.940517Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:39:42.942361Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=227 sequence_number=248 +2026-04-20T15:39:42.942661Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=248 blob_id=2147897999517719552960569631814229088 visible_slot_number_after_increase=227 visible_slots_to_advance=1 +2026-04-20T15:39:42.942651Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:42.947271Z DEBUG compute_state_update{scope="sequencer" rollup_height=227 slot_number=227}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=105bcc2825870bfe1949ef1b74790539abecc841860feb3a2283a650b70ca86b34ec430fd0e1f598921ff8ed70fe44cdbf45af5a6156ddfa7d42bbd6d98af044 next_version=231 sesssion_starting_time=276.259µs +2026-04-20T15:39:42.950610Z DEBUG manage_blob_submission_inside_task{blob_id=2147897999517719552960569631814229088 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x72fc71b5705af8978c3cff0de337e3f6720b3f4736bb8a6a520a9fa55aa914ff sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=231 include_at=231 bytes=13 time=1.656099ms +2026-04-20T15:39:42.953234Z DEBUG compute_state_update{scope="sequencer" rollup_height=227 slot_number=227}: sov_state::nomt::prover_storage: computed next state root state_root=2c007832308a63697daf0225f1f32d54a5fa5f2b1749939afc16e264749d92200bf6ee1c8be91a597bbbe7f29ea6072430a9a62b41b79f90d74f17fe9ace6a19 next_version=231 time=6.629237ms accesses_build_time=380.767µs finishing_session_time=5.817842ms +2026-04-20T15:39:43.408845Z DEBUG sp1_core_executor_runner::native: CHILD sp1_hdN5aX91TvWA9PwJ-2Afuw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:39:43.449499Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:39:43.460987Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1843978 cycles +2026-04-20T15:39:43.463799Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [22, 67, 15, 43, 42, 122, 203, 99, 211, 146, 231, 164, 155, 142, 105, 162, 48, 54, 82, 146, 83, 216, 218, 247, 164, 164, 102, 220, 93, 30, 167, 95, 9, 204, 228, 141, 59, 16, 104, 67, 65, 223, 233, 234, 135, 136, 127, 120, 171, 39, 57, 141, 33, 113, 246, 97, 39, 220, 83, 250, 222, 107, 94, 218, 16, 73, 127, 90, 85, 145, 210, 202, 36, 144, 60, 140, 115, 110, 95, 136, 220, 130, 130, 151, 44, 54, 218, 212, 60, 28, 128, 179, 148, 193, 190, 75, 16, 76, 240, 234, 188, 129, 118, 84, 221, 226, 174, 174, 45, 3, 215, 127, 15, 176, 46, 171, 208, 56, 235, 17, 95, 82, 4, 56, 3, 231, 130, 32, 77, 185, 237, 220, 243, 229, 96, 128, 197, 166, 229, 17, 176, 32, 33, 0, 128, 23, 118, 157, 239, 93, 251, 110, 15, 232, 179, 66, 135, 225, 106, 238, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:39:44.116992Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:39:44.117072Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:39:45.900050Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=231 prev_hash=0xc51d1c78fa9826f0165e041a10f2da61fe66b747bb45359aedafbe65a3da43ef hash=0x4a2ce39ae534eade528394cfc298fed9e3c7313f0b911fda54b622e252cde1f0 producing_time=2.791532ms +2026-04-20T15:39:45.904020Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=231 current_state_root="105bcc2825870bfe1949ef1b74790539abecc841860feb3a2283a650b70ca86b34ec430fd0e1f598921ff8ed70fe44cdbf45af5a6156ddfa7d42bbd6d98af044" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x72fc71b5705af8978c3cff0de337e3f6720b3f4736bb8a6a520a9fa55aa914ff"] proof_blobs=[] +2026-04-20T15:39:45.912163Z DEBUG StfBlueprint::apply_slot{context=Node da_height=231}: sov_chain_state: Setting next visible slot number next_visible_slot_number=227 +2026-04-20T15:39:45.917886Z DEBUG StfBlueprint::apply_slot{context=Node da_height=231}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x72fc71b5705af8978c3cff0de337e3f6720b3f4736bb8a6a520a9fa55aa914ff}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:45.920004Z DEBUG StfBlueprint::apply_slot{context=Node da_height=231}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=105bcc2825870bfe1949ef1b74790539abecc841860feb3a2283a650b70ca86b34ec430fd0e1f598921ff8ed70fe44cdbf45af5a6156ddfa7d42bbd6d98af044 next_version=231 sesssion_starting_time=304.508µs +2026-04-20T15:39:45.927757Z DEBUG StfBlueprint::apply_slot{context=Node da_height=231}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2c007832308a63697daf0225f1f32d54a5fa5f2b1749939afc16e264749d9220285c03a61117dae231e2402abd8ff8948e53e0082256b82a71090ab7622674bd next_version=231 time=8.848053ms accesses_build_time=777.105µs finishing_session_time=7.632521ms +2026-04-20T15:39:45.929045Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="786b5c0a4c77e8face6c374469130134423a279bf6f94b56ecde29f0b2b56c2d32ca44d319ff06642067644da1ef638db4677050f9dab05558e6849d97c7f274" next_state_root="2c007832308a63697daf0225f1f32d54a5fa5f2b1749939afc16e264749d9220285c03a61117dae231e2402abd8ff8948e53e0082256b82a71090ab7622674bd" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:39:45.933559Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 231, latest_finalized_slot_number: 230, sync_status: Syncing { synced_da_height: 230, target_da_height: 231 }, .. } +2026-04-20T15:39:45.934915Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=227 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 231, latest_finalized_slot_number: 230, sync_status: Syncing { synced_da_height: 230, target_da_height: 231 }, .. } +2026-04-20T15:39:45.935811Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=227 +2026-04-20T15:39:45.938297Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:39:45.938817Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=223 +2026-04-20T15:39:45.939717Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=228 +2026-04-20T15:39:45.940342Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:39:45.941154Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=228 sequence_number=249 +2026-04-20T15:39:45.941279Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:45.941483Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=249 blob_id=2147898003143229957207751136820092807 visible_slot_number_after_increase=228 visible_slots_to_advance=1 +2026-04-20T15:39:45.944705Z DEBUG compute_state_update{scope="sequencer" rollup_height=228 slot_number=228}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:39:45.944996Z DEBUG compute_state_update{scope="sequencer" rollup_height=228 slot_number=228}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2c007832308a63697daf0225f1f32d54a5fa5f2b1749939afc16e264749d9220285c03a61117dae231e2402abd8ff8948e53e0082256b82a71090ab7622674bd next_version=232 sesssion_starting_time=357.708µs +2026-04-20T15:39:45.945517Z DEBUG sov_stf_runner::runner: Block execution complete time=3.014855729s +2026-04-20T15:39:45.945613Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:39:45.947370Z DEBUG manage_blob_submission_inside_task{blob_id=2147898003143229957207751136820092807 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x17df79ac913758e77d164fdc8f6540271e2a35dc6510d6cdad7cf7c237fde057 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=232 include_at=232 bytes=13 time=1.322152ms +2026-04-20T15:39:45.947927Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:39:45.948319Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:39:45.950045Z DEBUG compute_state_update{scope="sequencer" rollup_height=228 slot_number=228}: sov_state::nomt::prover_storage: computed next state root state_root=2630db54cc4c39c230e4523a683d1098222abbcdc2fde5bd80e5047887eba07a740bf02f4b8ef31f2cc703e71e128aec05997058885dfa948372b700ab3dafd0 next_version=232 time=5.796932ms accesses_build_time=379.747µs finishing_session_time=4.969148ms +2026-04-20T15:39:46.408402Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tPeXQhl5RcC0l-M4vSpZXw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:39:46.450938Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:39:46.462376Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1919347 cycles +2026-04-20T15:39:46.464600Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [74, 98, 87, 177, 84, 40, 36, 248, 221, 175, 236, 84, 16, 173, 7, 114, 220, 188, 8, 48, 80, 108, 48, 22, 77, 122, 188, 235, 34, 148, 144, 13, 96, 164, 181, 194, 43, 125, 146, 201, 251, 249, 117, 247, 60, 189, 90, 140, 19, 242, 189, 101, 146, 115, 86, 48, 202, 190, 11, 253, 106, 141, 108, 42, 38, 226, 97, 193, 208, 118, 37, 241, 6, 55, 242, 131, 90, 62, 192, 199, 123, 241, 19, 72, 255, 13, 164, 171, 241, 208, 159, 97, 178, 7, 215, 201, 37, 162, 218, 51, 67, 119, 105, 0, 161, 248, 211, 162, 83, 21, 229, 64, 129, 84, 10, 74, 200, 13, 2, 123, 142, 121, 101, 7, 15, 63, 26, 64, 23, 153, 200, 210, 69, 223, 94, 99, 202, 178, 129, 250, 143, 16, 147, 171, 110, 36, 28, 160, 75, 153, 120, 245, 215, 45, 60, 76, 9, 92, 80, 81, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:39:47.144790Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:39:47.144871Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:39:48.904793Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=232 prev_hash=0x4a2ce39ae534eade528394cfc298fed9e3c7313f0b911fda54b622e252cde1f0 hash=0x7f92f7ad138dcc174d819373331ddb88f9eb03edc97c52793e7dfb5fa7c6b9ed producing_time=3.946434ms +2026-04-20T15:39:48.909085Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=232 current_state_root="2c007832308a63697daf0225f1f32d54a5fa5f2b1749939afc16e264749d9220285c03a61117dae231e2402abd8ff8948e53e0082256b82a71090ab7622674bd" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x17df79ac913758e77d164fdc8f6540271e2a35dc6510d6cdad7cf7c237fde057"] proof_blobs=[] +2026-04-20T15:39:48.917972Z DEBUG StfBlueprint::apply_slot{context=Node da_height=232}: sov_chain_state: Setting next visible slot number next_visible_slot_number=228 +2026-04-20T15:39:48.924597Z DEBUG StfBlueprint::apply_slot{context=Node da_height=232}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x17df79ac913758e77d164fdc8f6540271e2a35dc6510d6cdad7cf7c237fde057}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:48.926937Z DEBUG StfBlueprint::apply_slot{context=Node da_height=232}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2c007832308a63697daf0225f1f32d54a5fa5f2b1749939afc16e264749d9220285c03a61117dae231e2402abd8ff8948e53e0082256b82a71090ab7622674bd next_version=232 sesssion_starting_time=342.778µs +2026-04-20T15:39:48.934532Z DEBUG StfBlueprint::apply_slot{context=Node da_height=232}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2630db54cc4c39c230e4523a683d1098222abbcdc2fde5bd80e5047887eba07a65cee9421038dd08992b48844239786aa761c81a8243a38da6d93cf155b7da6c next_version=232 time=8.739084ms accesses_build_time=783.675µs finishing_session_time=7.460022ms +2026-04-20T15:39:48.935901Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="105bcc2825870bfe1949ef1b74790539abecc841860feb3a2283a650b70ca86b34ec430fd0e1f598921ff8ed70fe44cdbf45af5a6156ddfa7d42bbd6d98af044" next_state_root="2630db54cc4c39c230e4523a683d1098222abbcdc2fde5bd80e5047887eba07a65cee9421038dd08992b48844239786aa761c81a8243a38da6d93cf155b7da6c" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:39:48.940883Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 232, latest_finalized_slot_number: 231, sync_status: Syncing { synced_da_height: 231, target_da_height: 232 }, .. } +2026-04-20T15:39:48.942736Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=228 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 232, latest_finalized_slot_number: 231, sync_status: Syncing { synced_da_height: 231, target_da_height: 232 }, .. } +2026-04-20T15:39:48.943832Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=228 +2026-04-20T15:39:48.946743Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:39:48.947744Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=224 +2026-04-20T15:39:48.949583Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=229 +2026-04-20T15:39:48.950545Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:39:48.952204Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=229 sequence_number=250 +2026-04-20T15:39:48.952470Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:48.952517Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=250 blob_id=2147898006783311211138628685505658953 visible_slot_number_after_increase=229 visible_slots_to_advance=1 +2026-04-20T15:39:48.956150Z DEBUG sov_stf_runner::runner: Block execution complete time=3.010555286s +2026-04-20T15:39:48.956253Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:39:48.956732Z DEBUG compute_state_update{scope="sequencer" rollup_height=229 slot_number=229}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:39:48.957046Z DEBUG compute_state_update{scope="sequencer" rollup_height=229 slot_number=229}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2630db54cc4c39c230e4523a683d1098222abbcdc2fde5bd80e5047887eba07a65cee9421038dd08992b48844239786aa761c81a8243a38da6d93cf155b7da6c next_version=233 sesssion_starting_time=329.498µs +2026-04-20T15:39:48.959206Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:39:48.959700Z DEBUG manage_blob_submission_inside_task{blob_id=2147898006783311211138628685505658953 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x7c24783ace957f9014cd934528c42cadadd0cd2ed7028755bac277c0545ab334 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=233 include_at=233 bytes=13 time=1.478ms +2026-04-20T15:39:48.960021Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:39:48.962580Z DEBUG compute_state_update{scope="sequencer" rollup_height=229 slot_number=229}: sov_state::nomt::prover_storage: computed next state root state_root=2b6e6cf21d2f9b688b6b1fcfff88a5d24b83ce238f0d8e3f8af3a5a91d0ec9fd74c6f6ca5bce7e7b22ad12402e2bf19db8db2dd05a6e17b2eeef0a4c36885cac next_version=233 time=6.24092ms accesses_build_time=369.768µs finishing_session_time=5.435915ms +2026-04-20T15:39:49.405358Z DEBUG sp1_core_executor_runner::native: CHILD sp1_r803U4gHThav4C_jesaXSg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:39:49.447973Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:39:49.459781Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1936690 cycles +2026-04-20T15:39:49.462443Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [89, 60, 211, 42, 135, 182, 114, 238, 147, 82, 220, 190, 66, 6, 78, 235, 221, 199, 174, 237, 57, 56, 82, 174, 184, 27, 109, 247, 177, 114, 197, 175, 20, 89, 18, 149, 235, 214, 167, 97, 251, 171, 178, 213, 175, 71, 250, 172, 241, 191, 46, 42, 84, 214, 154, 19, 48, 96, 9, 55, 153, 142, 230, 148, 24, 232, 94, 171, 70, 217, 204, 142, 115, 226, 230, 110, 158, 255, 222, 115, 46, 97, 17, 238, 249, 34, 140, 244, 200, 201, 245, 72, 59, 80, 160, 133, 85, 229, 141, 169, 235, 82, 207, 71, 195, 245, 244, 236, 76, 172, 230, 202, 93, 225, 125, 22, 229, 31, 23, 248, 59, 111, 229, 26, 229, 102, 112, 48, 0, 209, 223, 210, 242, 71, 202, 137, 215, 111, 194, 203, 173, 128, 69, 147, 246, 91, 205, 173, 150, 244, 58, 160, 73, 199, 141, 85, 108, 174, 7, 59, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:39:50.146924Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:39:50.147004Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:39:51.909254Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=233 prev_hash=0x7f92f7ad138dcc174d819373331ddb88f9eb03edc97c52793e7dfb5fa7c6b9ed hash=0xbcb489a82825d327e5c66d86a69679e68f1f1e36fcecd0c7b08d9545c0dbf718 producing_time=3.15574ms +2026-04-20T15:39:51.918513Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=233 current_state_root="2630db54cc4c39c230e4523a683d1098222abbcdc2fde5bd80e5047887eba07a65cee9421038dd08992b48844239786aa761c81a8243a38da6d93cf155b7da6c" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x7c24783ace957f9014cd934528c42cadadd0cd2ed7028755bac277c0545ab334"] proof_blobs=[] +2026-04-20T15:39:51.926349Z DEBUG StfBlueprint::apply_slot{context=Node da_height=233}: sov_chain_state: Setting next visible slot number next_visible_slot_number=229 +2026-04-20T15:39:51.932024Z DEBUG StfBlueprint::apply_slot{context=Node da_height=233}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x7c24783ace957f9014cd934528c42cadadd0cd2ed7028755bac277c0545ab334}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:51.934134Z DEBUG StfBlueprint::apply_slot{context=Node da_height=233}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2630db54cc4c39c230e4523a683d1098222abbcdc2fde5bd80e5047887eba07a65cee9421038dd08992b48844239786aa761c81a8243a38da6d93cf155b7da6c next_version=233 sesssion_starting_time=236.659µs +2026-04-20T15:39:51.941881Z DEBUG StfBlueprint::apply_slot{context=Node da_height=233}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2b6e6cf21d2f9b688b6b1fcfff88a5d24b83ce238f0d8e3f8af3a5a91d0ec9fd24bd7d30dfc4d8bd24432b3c6b1ccc68c4a54341221fb5f851432be523c61fe9 next_version=233 time=8.778963ms accesses_build_time=784.134µs finishing_session_time=7.612291ms +2026-04-20T15:39:51.943257Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2c007832308a63697daf0225f1f32d54a5fa5f2b1749939afc16e264749d9220285c03a61117dae231e2402abd8ff8948e53e0082256b82a71090ab7622674bd" next_state_root="2b6e6cf21d2f9b688b6b1fcfff88a5d24b83ce238f0d8e3f8af3a5a91d0ec9fd24bd7d30dfc4d8bd24432b3c6b1ccc68c4a54341221fb5f851432be523c61fe9" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:39:51.948110Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 233, latest_finalized_slot_number: 233, sync_status: Syncing { synced_da_height: 232, target_da_height: 233 }, .. } +2026-04-20T15:39:51.949651Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=229 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 233, latest_finalized_slot_number: 233, sync_status: Syncing { synced_da_height: 232, target_da_height: 233 }, .. } +2026-04-20T15:39:51.950641Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=229 +2026-04-20T15:39:51.953307Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:39:51.954299Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=225 +2026-04-20T15:39:51.956277Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=230 +2026-04-20T15:39:51.957586Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:39:51.959613Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=230 sequence_number=251 +2026-04-20T15:39:51.959912Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=251 blob_id=2147898010418601344321955549541294608 visible_slot_number_after_increase=230 visible_slots_to_advance=1 +2026-04-20T15:39:51.959887Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:51.967051Z DEBUG manage_blob_submission_inside_task{blob_id=2147898010418601344321955549541294608 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xfadc53267afd895b17dad45199d9b1441a02e6f2f74a4f583bb25c24b9d72597 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=234 include_at=234 bytes=13 time=1.46805ms +2026-04-20T15:39:51.972691Z DEBUG compute_state_update{scope="sequencer" rollup_height=230 slot_number=230}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:39:51.972757Z DEBUG compute_state_update{scope="sequencer" rollup_height=230 slot_number=230}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:39:51.973036Z DEBUG compute_state_update{scope="sequencer" rollup_height=230 slot_number=230}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2b6e6cf21d2f9b688b6b1fcfff88a5d24b83ce238f0d8e3f8af3a5a91d0ec9fd24bd7d30dfc4d8bd24432b3c6b1ccc68c4a54341221fb5f851432be523c61fe9 next_version=234 sesssion_starting_time=8.829993ms +2026-04-20T15:39:51.973502Z DEBUG sov_stf_runner::runner: Block execution complete time=3.017267172s +2026-04-20T15:39:51.973615Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:39:51.977463Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:39:51.978400Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:39:51.978705Z DEBUG compute_state_update{scope="sequencer" rollup_height=230 slot_number=230}: sov_state::nomt::prover_storage: computed next state root state_root=0c47d8fb7ac52691a541d7491c72e0a9f3fd1fafbdc8060b75dcad4e3d58796a2903c63c5258c4e000c700914e0baf2c8d5bcf5b2c67986639e33f077178fb9a next_version=234 time=14.881104ms accesses_build_time=373.558µs finishing_session_time=5.586644ms +2026-04-20T15:39:52.434953Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tRZb8bMDSWasGac6rvsQIg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:39:52.479081Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:39:52.491641Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1996227 cycles +2026-04-20T15:39:52.494287Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [23, 230, 10, 96, 217, 34, 165, 194, 176, 33, 86, 101, 133, 131, 12, 117, 77, 222, 178, 87, 225, 150, 134, 64, 203, 20, 6, 62, 233, 10, 1, 4, 98, 247, 36, 5, 110, 170, 208, 139, 52, 159, 87, 131, 198, 251, 159, 57, 249, 43, 139, 219, 45, 80, 222, 198, 164, 234, 201, 207, 148, 3, 63, 231, 46, 229, 82, 23, 63, 177, 88, 74, 144, 197, 116, 208, 199, 41, 59, 65, 63, 121, 66, 37, 41, 27, 169, 219, 216, 104, 243, 201, 7, 142, 226, 227, 79, 215, 42, 185, 254, 72, 0, 65, 32, 181, 242, 226, 138, 108, 152, 90, 45, 55, 249, 244, 13, 177, 44, 129, 161, 137, 255, 38, 206, 102, 252, 181, 17, 74, 158, 251, 241, 196, 53, 255, 211, 101, 9, 9, 178, 208, 128, 155, 44, 52, 117, 132, 81, 21, 83, 201, 138, 59, 95, 17, 173, 188, 123, 152, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:39:53.199296Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:39:53.199382Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:39:54.918793Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=234 prev_hash=0xbcb489a82825d327e5c66d86a69679e68f1f1e36fcecd0c7b08d9545c0dbf718 hash=0x739f9930904fb3c937ce84bba245fbbdf2c741be9cee5afeccaf3ce92d0a83ff producing_time=8.522615ms +2026-04-20T15:39:54.927113Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=234 current_state_root="2b6e6cf21d2f9b688b6b1fcfff88a5d24b83ce238f0d8e3f8af3a5a91d0ec9fd24bd7d30dfc4d8bd24432b3c6b1ccc68c4a54341221fb5f851432be523c61fe9" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xfadc53267afd895b17dad45199d9b1441a02e6f2f74a4f583bb25c24b9d72597"] proof_blobs=[] +2026-04-20T15:39:54.936252Z DEBUG StfBlueprint::apply_slot{context=Node da_height=234}: sov_chain_state: Setting next visible slot number next_visible_slot_number=230 +2026-04-20T15:39:54.942842Z DEBUG StfBlueprint::apply_slot{context=Node da_height=234}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xfadc53267afd895b17dad45199d9b1441a02e6f2f74a4f583bb25c24b9d72597}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:54.945219Z DEBUG StfBlueprint::apply_slot{context=Node da_height=234}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2b6e6cf21d2f9b688b6b1fcfff88a5d24b83ce238f0d8e3f8af3a5a91d0ec9fd24bd7d30dfc4d8bd24432b3c6b1ccc68c4a54341221fb5f851432be523c61fe9 next_version=234 sesssion_starting_time=328.488µs +2026-04-20T15:39:54.952961Z DEBUG StfBlueprint::apply_slot{context=Node da_height=234}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=0c47d8fb7ac52691a541d7491c72e0a9f3fd1fafbdc8060b75dcad4e3d58796a77823bdafd92c211d5e00373cef48d9233f0baa627cb1637f63a01f061ceb80c next_version=234 time=8.878033ms accesses_build_time=794.255µs finishing_session_time=7.606761ms +2026-04-20T15:39:54.954271Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2b6e6cf21d2f9b688b6b1fcfff88a5d24b83ce238f0d8e3f8af3a5a91d0ec9fd24bd7d30dfc4d8bd24432b3c6b1ccc68c4a54341221fb5f851432be523c61fe9" next_state_root="0c47d8fb7ac52691a541d7491c72e0a9f3fd1fafbdc8060b75dcad4e3d58796a77823bdafd92c211d5e00373cef48d9233f0baa627cb1637f63a01f061ceb80c" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:39:54.958868Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 234, latest_finalized_slot_number: 234, sync_status: Syncing { synced_da_height: 233, target_da_height: 234 }, .. } +2026-04-20T15:39:54.960715Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=230 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 234, latest_finalized_slot_number: 234, sync_status: Syncing { synced_da_height: 233, target_da_height: 234 }, .. } +2026-04-20T15:39:54.961668Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=230 +2026-04-20T15:39:54.964307Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:39:54.965329Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=226 +2026-04-20T15:39:54.967408Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=231 +2026-04-20T15:39:54.968359Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:39:54.970006Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=231 sequence_number=252 +2026-04-20T15:39:54.970249Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:54.970293Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=252 blob_id=2147898014057424375607897092566543524 visible_slot_number_after_increase=231 visible_slots_to_advance=1 +2026-04-20T15:39:54.970729Z DEBUG sov_stf_runner::runner: Block execution complete time=2.997143173s +2026-04-20T15:39:54.970772Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:39:54.973126Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:39:54.973742Z DEBUG compute_state_update{scope="sequencer" rollup_height=231 slot_number=231}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:39:54.973883Z DEBUG compute_state_update{scope="sequencer" rollup_height=231 slot_number=231}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0c47d8fb7ac52691a541d7491c72e0a9f3fd1fafbdc8060b75dcad4e3d58796a77823bdafd92c211d5e00373cef48d9233f0baa627cb1637f63a01f061ceb80c next_version=235 sesssion_starting_time=142.589µs +2026-04-20T15:39:54.974108Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:39:54.977307Z DEBUG manage_blob_submission_inside_task{blob_id=2147898014057424375607897092566543524 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x06da2ef56459ceaecf3dabfab5f9317e1291e7247fbf24decf76272b26cb1fc3 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=235 include_at=235 bytes=13 time=1.5288ms +2026-04-20T15:39:54.979407Z DEBUG compute_state_update{scope="sequencer" rollup_height=231 slot_number=231}: sov_state::nomt::prover_storage: computed next state root state_root=12166d540a67e7f79becc268f4a1ca0408fd3a59e2a04047c34fef1e2fafe8b1752c7e606eb71bcb1d9cdc2d20881d23a00415d1d55d7166234e3a5d1c1384e6 next_version=235 time=5.865472ms accesses_build_time=193.169µs finishing_session_time=5.443734ms +2026-04-20T15:39:55.450059Z DEBUG sp1_core_executor_runner::native: CHILD sp1_tAUaJpg0Rd629WrQ42C1uA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:39:55.518795Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:39:55.531311Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4236445 cycles +2026-04-20T15:39:55.534178Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [110, 244, 79, 120, 243, 204, 143, 192, 20, 141, 224, 119, 1, 165, 98, 25, 185, 142, 85, 15, 105, 139, 172, 174, 80, 71, 57, 50, 52, 128, 11, 228, 94, 204, 16, 60, 220, 169, 62, 196, 232, 6, 11, 104, 243, 241, 209, 166, 101, 49, 16, 29, 185, 218, 105, 244, 139, 247, 230, 139, 85, 31, 76, 32, 125, 3, 48, 241, 13, 230, 200, 72, 90, 100, 111, 8, 53, 43, 16, 86, 105, 38, 187, 64, 254, 216, 229, 29, 225, 160, 3, 64, 191, 208, 55, 133, 52, 227, 50, 187, 148, 120, 165, 206, 52, 176, 228, 113, 19, 95, 242, 57, 237, 26, 229, 237, 75, 160, 187, 152, 162, 20, 95, 249, 96, 154, 42, 131, 252, 27, 181, 83, 19, 173, 187, 188, 244, 0, 213, 202, 2, 128, 69, 57, 252, 102, 107, 156, 131, 110, 32, 65, 77, 209, 49, 77, 81, 197, 131, 114, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:39:57.024302Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:39:57.024387Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:39:57.922556Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=235 prev_hash=0x739f9930904fb3c937ce84bba245fbbdf2c741be9cee5afeccaf3ce92d0a83ff hash=0xf3b089d60293e9d3b059e1016982eb024108a0128e1392555e2c7f28c3d3ceaf producing_time=2.082677ms +2026-04-20T15:39:57.933452Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=235 current_state_root="0c47d8fb7ac52691a541d7491c72e0a9f3fd1fafbdc8060b75dcad4e3d58796a77823bdafd92c211d5e00373cef48d9233f0baa627cb1637f63a01f061ceb80c" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x06da2ef56459ceaecf3dabfab5f9317e1291e7247fbf24decf76272b26cb1fc3"] proof_blobs=[] +2026-04-20T15:39:57.940502Z DEBUG StfBlueprint::apply_slot{context=Node da_height=235}: sov_chain_state: Setting next visible slot number next_visible_slot_number=231 +2026-04-20T15:39:57.945559Z DEBUG StfBlueprint::apply_slot{context=Node da_height=235}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x06da2ef56459ceaecf3dabfab5f9317e1291e7247fbf24decf76272b26cb1fc3}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:57.947415Z DEBUG StfBlueprint::apply_slot{context=Node da_height=235}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0c47d8fb7ac52691a541d7491c72e0a9f3fd1fafbdc8060b75dcad4e3d58796a77823bdafd92c211d5e00373cef48d9233f0baa627cb1637f63a01f061ceb80c next_version=235 sesssion_starting_time=266.258µs +2026-04-20T15:39:57.954622Z DEBUG StfBlueprint::apply_slot{context=Node da_height=235}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=12166d540a67e7f79becc268f4a1ca0408fd3a59e2a04047c34fef1e2fafe8b14d09366e8382551369ad0cbb41444d3d07fd604dd6b6568b6cc65559398fe020 next_version=235 time=8.088258ms accesses_build_time=607.516µs finishing_session_time=7.097964ms +2026-04-20T15:39:57.955800Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="0c47d8fb7ac52691a541d7491c72e0a9f3fd1fafbdc8060b75dcad4e3d58796a77823bdafd92c211d5e00373cef48d9233f0baa627cb1637f63a01f061ceb80c" next_state_root="12166d540a67e7f79becc268f4a1ca0408fd3a59e2a04047c34fef1e2fafe8b14d09366e8382551369ad0cbb41444d3d07fd604dd6b6568b6cc65559398fe020" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:39:57.960570Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 235, latest_finalized_slot_number: 235, sync_status: Syncing { synced_da_height: 234, target_da_height: 235 }, .. } +2026-04-20T15:39:57.961982Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=231 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 235, latest_finalized_slot_number: 235, sync_status: Syncing { synced_da_height: 234, target_da_height: 235 }, .. } +2026-04-20T15:39:57.962952Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=231 +2026-04-20T15:39:57.965701Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:39:57.966693Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=227 +2026-04-20T15:39:57.968513Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=232 +2026-04-20T15:39:57.969487Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:39:57.971053Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=232 sequence_number=253 +2026-04-20T15:39:57.971350Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=253 blob_id=2147898017685463556951426426415089256 visible_slot_number_after_increase=232 visible_slots_to_advance=1 +2026-04-20T15:39:57.971333Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:39:57.973309Z DEBUG sov_stf_runner::runner: Block execution complete time=3.002538778s +2026-04-20T15:39:57.973434Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:39:57.974961Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:39:57.975507Z DEBUG compute_state_update{scope="sequencer" rollup_height=232 slot_number=232}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:39:57.975680Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:39:57.975810Z DEBUG compute_state_update{scope="sequencer" rollup_height=232 slot_number=232}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=12166d540a67e7f79becc268f4a1ca0408fd3a59e2a04047c34fef1e2fafe8b14d09366e8382551369ad0cbb41444d3d07fd604dd6b6568b6cc65559398fe020 next_version=236 sesssion_starting_time=309.288µs +2026-04-20T15:39:57.978103Z DEBUG manage_blob_submission_inside_task{blob_id=2147898017685463556951426426415089256 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x012832af123d99b75ae5745782023be7770f10f976bccbc001343c2cb230dc47 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=236 include_at=236 bytes=13 time=1.578359ms +2026-04-20T15:39:57.981640Z DEBUG compute_state_update{scope="sequencer" rollup_height=232 slot_number=232}: sov_state::nomt::prover_storage: computed next state root state_root=17afb46e105c6e16bf5e371457e4bc6bbe51b934bbb02e033cc35e9aecb2b12c35f18eae8d36c955f9b20cfd04d452ebf4b18419c8fbf95a47bc49e3242cc36d next_version=236 time=6.523538ms accesses_build_time=378.497µs finishing_session_time=5.730563ms +2026-04-20T15:39:58.451155Z DEBUG sp1_core_executor_runner::native: CHILD sp1_SxYFYX1nQOm1IeATYAcyBA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:39:58.491762Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:39:58.503975Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1831257 cycles +2026-04-20T15:39:58.506803Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [86, 255, 194, 180, 30, 57, 12, 100, 98, 80, 95, 4, 137, 41, 50, 192, 82, 225, 151, 15, 83, 43, 49, 28, 95, 129, 158, 59, 126, 164, 212, 118, 125, 210, 213, 239, 20, 177, 40, 165, 122, 16, 30, 239, 58, 131, 189, 198, 226, 125, 184, 142, 28, 251, 159, 163, 244, 73, 186, 157, 211, 201, 176, 199, 31, 254, 184, 122, 30, 251, 142, 212, 235, 219, 37, 208, 206, 24, 93, 140, 81, 154, 167, 212, 102, 97, 245, 9, 56, 167, 56, 231, 198, 234, 94, 93, 95, 243, 62, 183, 29, 245, 7, 154, 246, 108, 134, 156, 71, 184, 209, 176, 10, 66, 253, 196, 26, 33, 5, 211, 50, 129, 154, 164, 139, 221, 151, 234, 106, 184, 67, 5, 255, 132, 242, 91, 219, 240, 143, 128, 10, 61, 111, 191, 64, 176, 156, 15, 12, 14, 154, 204, 115, 169, 139, 54, 162, 61, 96, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:39:59.150477Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:39:59.150558Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:40:00.926950Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=236 prev_hash=0xf3b089d60293e9d3b059e1016982eb024108a0128e1392555e2c7f28c3d3ceaf hash=0x048a7dafec6557510bef8ee75b968872ecbe85e27b9e33b0bf9bbf24246c693e producing_time=3.05091ms +2026-04-20T15:40:00.936350Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=236 current_state_root="12166d540a67e7f79becc268f4a1ca0408fd3a59e2a04047c34fef1e2fafe8b14d09366e8382551369ad0cbb41444d3d07fd604dd6b6568b6cc65559398fe020" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x012832af123d99b75ae5745782023be7770f10f976bccbc001343c2cb230dc47"] proof_blobs=[] +2026-04-20T15:40:00.945602Z DEBUG StfBlueprint::apply_slot{context=Node da_height=236}: sov_chain_state: Setting next visible slot number next_visible_slot_number=232 +2026-04-20T15:40:00.952043Z DEBUG StfBlueprint::apply_slot{context=Node da_height=236}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x012832af123d99b75ae5745782023be7770f10f976bccbc001343c2cb230dc47}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:00.954415Z DEBUG StfBlueprint::apply_slot{context=Node da_height=236}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=12166d540a67e7f79becc268f4a1ca0408fd3a59e2a04047c34fef1e2fafe8b14d09366e8382551369ad0cbb41444d3d07fd604dd6b6568b6cc65559398fe020 next_version=236 sesssion_starting_time=333.768µs +2026-04-20T15:40:00.962836Z DEBUG StfBlueprint::apply_slot{context=Node da_height=236}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=17afb46e105c6e16bf5e371457e4bc6bbe51b934bbb02e033cc35e9aecb2b12c01ac0aeff00d3aae8953d6b09e76385ed98a183a33d178ac74b367c421eba40c next_version=236 time=9.549878ms accesses_build_time=782.995µs finishing_session_time=8.281997ms +2026-04-20T15:40:00.964121Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="12166d540a67e7f79becc268f4a1ca0408fd3a59e2a04047c34fef1e2fafe8b14d09366e8382551369ad0cbb41444d3d07fd604dd6b6568b6cc65559398fe020" next_state_root="17afb46e105c6e16bf5e371457e4bc6bbe51b934bbb02e033cc35e9aecb2b12c01ac0aeff00d3aae8953d6b09e76385ed98a183a33d178ac74b367c421eba40c" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:40:00.969234Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 236, latest_finalized_slot_number: 236, sync_status: Synced { synced_da_height: 235 }, .. } +2026-04-20T15:40:00.970663Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=232 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 236, latest_finalized_slot_number: 236, sync_status: Synced { synced_da_height: 235 }, .. } +2026-04-20T15:40:00.971648Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=232 +2026-04-20T15:40:00.974282Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:40:00.975266Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=228 +2026-04-20T15:40:00.977385Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=233 +2026-04-20T15:40:00.978567Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:40:00.980106Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=233 sequence_number=254 +2026-04-20T15:40:00.980385Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:00.980535Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=254 blob_id=2147898021324279822054266259601626002 visible_slot_number_after_increase=233 visible_slots_to_advance=1 +2026-04-20T15:40:00.984022Z DEBUG sov_stf_runner::runner: Block execution complete time=3.010604676s +2026-04-20T15:40:00.984080Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:40:00.984540Z DEBUG compute_state_update{scope="sequencer" rollup_height=233 slot_number=233}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:40:00.984841Z DEBUG compute_state_update{scope="sequencer" rollup_height=233 slot_number=233}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=17afb46e105c6e16bf5e371457e4bc6bbe51b934bbb02e033cc35e9aecb2b12c01ac0aeff00d3aae8953d6b09e76385ed98a183a33d178ac74b367c421eba40c next_version=237 sesssion_starting_time=307.528µs +2026-04-20T15:40:00.987915Z DEBUG manage_blob_submission_inside_task{blob_id=2147898021324279822054266259601626002 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x7cdb64df36e0404e222cf957ae04d09aaceb02b6b6240a6f6e09a65ed5596a0f sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=237 include_at=237 bytes=13 time=1.718979ms +2026-04-20T15:40:00.990158Z DEBUG compute_state_update{scope="sequencer" rollup_height=233 slot_number=233}: sov_state::nomt::prover_storage: computed next state root state_root=337ec7561d9182d0b02fb952d5922ce29784f40177b3e78826424fb4caa4dbd31e4fa5d6ec203f9038c0c62bda131682b2bdb3cfb6f867b697506e63f46ac854 next_version=237 time=6.032861ms accesses_build_time=404.298µs finishing_session_time=5.220696ms +2026-04-20T15:40:01.457155Z DEBUG sp1_core_executor_runner::native: CHILD sp1_vpwWatpASbeKMpwBNnOfVQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:40:01.499391Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:40:01.513665Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1881851 cycles +2026-04-20T15:40:01.516469Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [120, 107, 92, 10, 76, 119, 232, 250, 206, 108, 55, 68, 105, 19, 1, 52, 66, 58, 39, 155, 246, 249, 75, 86, 236, 222, 41, 240, 178, 181, 108, 45, 50, 202, 68, 211, 25, 255, 6, 100, 32, 103, 100, 77, 161, 239, 99, 141, 180, 103, 112, 80, 249, 218, 176, 85, 88, 230, 132, 157, 151, 199, 242, 116, 117, 170, 204, 246, 2, 165, 243, 164, 218, 188, 211, 183, 183, 134, 1, 83, 45, 146, 225, 67, 67, 155, 1, 103, 255, 31, 240, 130, 195, 19, 110, 51, 110, 56, 192, 194, 132, 81, 220, 30, 16, 166, 57, 74, 114, 45, 37, 165, 185, 34, 57, 149, 46, 21, 58, 102, 223, 229, 177, 71, 241, 122, 76, 200, 197, 29, 28, 120, 250, 152, 38, 240, 22, 94, 4, 26, 16, 242, 218, 97, 254, 102, 183, 71, 187, 69, 53, 154, 237, 175, 190, 101, 163, 218, 67, 239, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:40:02.179963Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:40:02.180043Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:40:02.227700Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:40:02.468977Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:40:02.471158Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2607482 cycles +2026-04-20T15:40:02.471544Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [221, 0, 0, 0, 0, 0, 0, 0, 230, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 23, 47, 144, 68, 32, 125, 14, 187, 109, 199, 85, 102, 188, 21, 195, 94, 188, 222, 210, 8, 193, 214, 246, 87, 95, 246, 56, 112, 6, 250, 234, 132, 0, 60, 101, 105, 17, 92, 18, 191, 82, 224, 106, 85, 174, 213, 18, 103, 63, 59, 204, 100, 198, 67, 81, 210, 70, 76, 40, 214, 236, 179, 66, 154, 117, 170, 204, 246, 2, 165, 243, 164, 218, 188, 211, 183, 183, 134, 1, 83, 45, 146, 225, 67, 67, 155, 1, 103, 255, 31, 240, 130, 195, 19, 110, 51, 110, 56, 192, 194, 132, 81, 220, 30, 16, 166, 57, 74, 114, 45, 37, 165, 185, 34, 57, 149, 46, 21, 58, 102, 223, 229, 177, 71, 241, 122, 76, 200, 212, 180, 98, 229, 182, 135, 128, 59, 38, 160, 83, 130, 89, 128, 91, 225, 10, 186, 203, 150, 26, 28, 181, 172, 109, 136, 108, 182, 196, 245, 36, 95, 197, 29, 28, 120, 250, 152, 38, 240, 22, 94, 4, 26, 16, 242, 218, 97, 254, 102, 183, 71, 187, 69, 53, 154, 237, 175, 190, 101, 163, 218, 67, 239, 32, 0, 0, 0, 0, 0, 0, 0, 33, 87, 226, 242, 39, 49, 250, 210, 41, 143, 26, 188, 101, 19, 12, 136, 43, 105, 121, 236, 80, 118, 108, 155, 63, 154, 215, 73, 15, 107, 27, 67, 32, 0, 0, 0, 0, 0, 0, 0, 54, 246, 123, 188, 67, 61, 237, 103, 16, 229, 5, 146, 113, 8, 178, 215, 95, 95, 151, 239, 106, 28, 10, 135, 55, 55, 208, 95, 86, 190, 27, 9, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:40:03.434675Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:40:03.434750Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:40:03.435558Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=1951 +2026-04-20T15:40:03.437269Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:40:03.437812Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:40:03.437859Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=255 blob_id=2147898024292196878218456990522201372 +2026-04-20T15:40:03.930337Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=237 prev_hash=0x048a7dafec6557510bef8ee75b968872ecbe85e27b9e33b0bf9bbf24246c693e hash=0x23ba79cef30b263156912d762538d352af2420481b5f315236a018f09e43ef56 producing_time=2.092106ms +2026-04-20T15:40:03.936556Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=237 current_state_root="17afb46e105c6e16bf5e371457e4bc6bbe51b934bbb02e033cc35e9aecb2b12c01ac0aeff00d3aae8953d6b09e76385ed98a183a33d178ac74b367c421eba40c" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x7cdb64df36e0404e222cf957ae04d09aaceb02b6b6240a6f6e09a65ed5596a0f"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x7dca4f174ae9ffd978924969293784acaf3929e6c76b511f7ca4619b0d796793, len=2001"] +2026-04-20T15:40:03.945240Z DEBUG StfBlueprint::apply_slot{context=Node da_height=237}: sov_chain_state: Setting next visible slot number next_visible_slot_number=233 +2026-04-20T15:40:03.951343Z DEBUG StfBlueprint::apply_slot{context=Node da_height=237}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x7cdb64df36e0404e222cf957ae04d09aaceb02b6b6240a6f6e09a65ed5596a0f}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:03.953760Z DEBUG StfBlueprint::apply_slot{context=Node da_height=237}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=17afb46e105c6e16bf5e371457e4bc6bbe51b934bbb02e033cc35e9aecb2b12c01ac0aeff00d3aae8953d6b09e76385ed98a183a33d178ac74b367c421eba40c next_version=237 sesssion_starting_time=310.498µs +2026-04-20T15:40:03.960396Z DEBUG StfBlueprint::apply_slot{context=Node da_height=237}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=337ec7561d9182d0b02fb952d5922ce29784f40177b3e78826424fb4caa4dbd307643becd663323062e9d260cd7a232b61b7d51bd09f6a75296d6e02e8b425a1 next_version=237 time=7.903549ms accesses_build_time=944.634µs finishing_session_time=6.503638ms +2026-04-20T15:40:03.961658Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="17afb46e105c6e16bf5e371457e4bc6bbe51b934bbb02e033cc35e9aecb2b12c01ac0aeff00d3aae8953d6b09e76385ed98a183a33d178ac74b367c421eba40c" next_state_root="337ec7561d9182d0b02fb952d5922ce29784f40177b3e78826424fb4caa4dbd307643becd663323062e9d260cd7a232b61b7d51bd09f6a75296d6e02e8b425a1" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:40:03.966561Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 237, latest_finalized_slot_number: 237, sync_status: Synced { synced_da_height: 236 }, .. } +2026-04-20T15:40:03.967981Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=233 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 237, latest_finalized_slot_number: 237, sync_status: Synced { synced_da_height: 236 }, .. } +2026-04-20T15:40:03.968952Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=233 +2026-04-20T15:40:03.971674Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:40:03.972665Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=229 +2026-04-20T15:40:03.974541Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=234 +2026-04-20T15:40:03.975590Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:40:03.979589Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 221. Final slot number 230 +2026-04-20T15:40:03.980248Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=234 sequence_number=256 +2026-04-20T15:40:03.980513Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:03.980559Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=256 blob_id=2147898024951106255819405744156164388 visible_slot_number_after_increase=234 visible_slots_to_advance=1 +2026-04-20T15:40:03.982376Z DEBUG sov_stf_runner::runner: Block execution complete time=2.998301006s +2026-04-20T15:40:03.982463Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:40:03.984493Z DEBUG compute_state_update{scope="sequencer" rollup_height=234 slot_number=234}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:40:03.984698Z DEBUG compute_state_update{scope="sequencer" rollup_height=234 slot_number=234}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=337ec7561d9182d0b02fb952d5922ce29784f40177b3e78826424fb4caa4dbd307643becd663323062e9d260cd7a232b61b7d51bd09f6a75296d6e02e8b425a1 next_version=238 sesssion_starting_time=207.699µs +2026-04-20T15:40:03.984813Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:40:03.985542Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:40:03.988068Z DEBUG manage_blob_submission_inside_task{blob_id=2147898024951106255819405744156164388 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xcd624efe2fb0ad68e31028f4da57df607679bcb65f11fd8e369fe944081a7971 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=238 include_at=238 bytes=13 time=1.64417ms +2026-04-20T15:40:03.989871Z DEBUG compute_state_update{scope="sequencer" rollup_height=234 slot_number=234}: sov_state::nomt::prover_storage: computed next state root state_root=0b05dc737280a558a73f71aa14e2dc6a264e6ad4d8b2851b8d75c486fe9c3b8b236a0adab3bb054a58400e19ed3e460ea50427758df1d6d0f8532c5c5df02b76 next_version=238 time=5.675583ms accesses_build_time=280.278µs finishing_session_time=5.109117ms +2026-04-20T15:40:06.899593Z DEBUG sp1_core_executor_runner::native: CHILD sp1_xcqHZNzCTWWQVhaK5BbLOw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:40:06.933819Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=238 prev_hash=0x23ba79cef30b263156912d762538d352af2420481b5f315236a018f09e43ef56 hash=0x2d2243c20111a7e45c5d6cf61b65467ea49854ac659e1d5d52e33e7dcab1b1d2 producing_time=2.760082ms +2026-04-20T15:40:06.940851Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:40:06.944130Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=238 current_state_root="337ec7561d9182d0b02fb952d5922ce29784f40177b3e78826424fb4caa4dbd307643becd663323062e9d260cd7a232b61b7d51bd09f6a75296d6e02e8b425a1" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xcd624efe2fb0ad68e31028f4da57df607679bcb65f11fd8e369fe944081a7971"] proof_blobs=[] +2026-04-20T15:40:06.952739Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1879322 cycles +2026-04-20T15:40:06.953291Z DEBUG StfBlueprint::apply_slot{context=Node da_height=238}: sov_chain_state: Setting next visible slot number next_visible_slot_number=234 +2026-04-20T15:40:06.955486Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [16, 91, 204, 40, 37, 135, 11, 254, 25, 73, 239, 27, 116, 121, 5, 57, 171, 236, 200, 65, 134, 15, 235, 58, 34, 131, 166, 80, 183, 12, 168, 107, 52, 236, 67, 15, 208, 225, 245, 152, 146, 31, 248, 237, 112, 254, 68, 205, 191, 69, 175, 90, 97, 86, 221, 250, 125, 66, 187, 214, 217, 138, 240, 68, 33, 114, 82, 212, 50, 167, 251, 96, 183, 226, 156, 110, 221, 64, 19, 8, 154, 140, 187, 162, 181, 93, 137, 216, 210, 185, 187, 3, 92, 113, 231, 72, 17, 234, 226, 90, 208, 69, 227, 230, 8, 185, 101, 235, 176, 207, 68, 27, 197, 203, 140, 84, 4, 217, 119, 12, 173, 33, 154, 223, 107, 214, 141, 190, 74, 44, 227, 154, 229, 52, 234, 222, 82, 131, 148, 207, 194, 152, 254, 217, 227, 199, 49, 63, 11, 145, 31, 218, 84, 182, 34, 226, 82, 205, 225, 240, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:40:06.970888Z DEBUG StfBlueprint::apply_slot{context=Node da_height=238}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 221. Final slot number 230 +2026-04-20T15:40:06.971336Z DEBUG StfBlueprint::apply_slot{context=Node da_height=238}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xcd624efe2fb0ad68e31028f4da57df607679bcb65f11fd8e369fe944081a7971}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:06.973829Z DEBUG StfBlueprint::apply_slot{context=Node da_height=238}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=337ec7561d9182d0b02fb952d5922ce29784f40177b3e78826424fb4caa4dbd307643becd663323062e9d260cd7a232b61b7d51bd09f6a75296d6e02e8b425a1 next_version=238 sesssion_starting_time=289.038µs +2026-04-20T15:40:06.983239Z DEBUG StfBlueprint::apply_slot{context=Node da_height=238}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=0b05dc737280a558a73f71aa14e2dc6a264e6ad4d8b2851b8d75c486fe9c3b8b37b1ed615469561f22718b314f55e6e9e7005b0ab6965c508003b820c622fac5 next_version=238 time=10.76241ms accesses_build_time=1.053133ms finishing_session_time=9.289579ms +2026-04-20T15:40:06.984478Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="337ec7561d9182d0b02fb952d5922ce29784f40177b3e78826424fb4caa4dbd307643becd663323062e9d260cd7a232b61b7d51bd09f6a75296d6e02e8b425a1" next_state_root="0b05dc737280a558a73f71aa14e2dc6a264e6ad4d8b2851b8d75c486fe9c3b8b37b1ed615469561f22718b314f55e6e9e7005b0ab6965c508003b820c622fac5" aggregated_proofs=1 proof_receipts=1 +2026-04-20T15:40:06.990041Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 238, latest_finalized_slot_number: 238, sync_status: Syncing { synced_da_height: 237, target_da_height: 238 }, .. } +2026-04-20T15:40:06.991443Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=234 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 238, latest_finalized_slot_number: 238, sync_status: Syncing { synced_da_height: 237, target_da_height: 238 }, .. } +2026-04-20T15:40:06.992567Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=234 +2026-04-20T15:40:06.995155Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:40:06.996178Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=230 +2026-04-20T15:40:06.998092Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=235 +2026-04-20T15:40:06.999230Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:40:07.000871Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=235 sequence_number=257 +2026-04-20T15:40:07.001070Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=257 blob_id=2147898028602025930433575484816433269 visible_slot_number_after_increase=235 visible_slots_to_advance=1 +2026-04-20T15:40:07.001130Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:07.003987Z DEBUG sov_stf_runner::runner: Block execution complete time=3.021536505s +2026-04-20T15:40:07.004090Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:40:07.005225Z DEBUG compute_state_update{scope="sequencer" rollup_height=235 slot_number=235}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:40:07.005553Z DEBUG compute_state_update{scope="sequencer" rollup_height=235 slot_number=235}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0b05dc737280a558a73f71aa14e2dc6a264e6ad4d8b2851b8d75c486fe9c3b8b37b1ed615469561f22718b314f55e6e9e7005b0ab6965c508003b820c622fac5 next_version=239 sesssion_starting_time=332.577µs +2026-04-20T15:40:07.006600Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:40:07.007385Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:40:07.008257Z DEBUG manage_blob_submission_inside_task{blob_id=2147898028602025930433575484816433269 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xa423d2a5c91dcb284401c966b7a4c458e04206076395f7f013ddfb6d96d7016b sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=239 include_at=239 bytes=13 time=1.794328ms +2026-04-20T15:40:07.011428Z DEBUG compute_state_update{scope="sequencer" rollup_height=235 slot_number=235}: sov_state::nomt::prover_storage: computed next state root state_root=26d227b56b875a42a19321cccdd3d5d85b4ff40ac94a2ae1460295f5db4d68b4646429bc1891415090d60cb5812da5b93e6d178956b933d687947b9a2f614024 next_version=239 time=6.587527ms accesses_build_time=371.528µs finishing_session_time=5.745633ms +2026-04-20T15:40:07.465433Z DEBUG sp1_core_executor_runner::native: CHILD sp1_lbag7YcSSfe0Kw66GlVHWQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:40:07.505644Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:40:07.516915Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1841979 cycles +2026-04-20T15:40:07.519733Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [44, 0, 120, 50, 48, 138, 99, 105, 125, 175, 2, 37, 241, 243, 45, 84, 165, 250, 95, 43, 23, 73, 147, 154, 252, 22, 226, 100, 116, 157, 146, 32, 40, 92, 3, 166, 17, 23, 218, 226, 49, 226, 64, 42, 189, 143, 248, 148, 142, 83, 224, 8, 34, 86, 184, 42, 113, 9, 10, 183, 98, 38, 116, 189, 44, 67, 56, 111, 25, 240, 19, 189, 136, 237, 178, 2, 88, 246, 210, 214, 196, 117, 138, 110, 5, 254, 41, 78, 150, 55, 237, 176, 8, 134, 24, 78, 47, 90, 252, 126, 33, 56, 22, 103, 23, 130, 69, 70, 40, 218, 205, 12, 190, 47, 31, 128, 24, 254, 93, 141, 86, 165, 192, 8, 163, 161, 254, 82, 127, 146, 247, 173, 19, 141, 204, 23, 77, 129, 147, 115, 51, 29, 219, 136, 249, 235, 3, 237, 201, 124, 82, 121, 62, 125, 251, 95, 167, 198, 185, 237, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:40:07.659202Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:40:07.659276Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:40:08.223692Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:40:08.223772Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:40:09.937778Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=239 prev_hash=0x2d2243c20111a7e45c5d6cf61b65467ea49854ac659e1d5d52e33e7dcab1b1d2 hash=0x5de67cb4162a96568c356596433ce6c7bc1663dadaf91ec6294c1fc386f1f80b producing_time=2.831612ms +2026-04-20T15:40:09.946685Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=239 current_state_root="0b05dc737280a558a73f71aa14e2dc6a264e6ad4d8b2851b8d75c486fe9c3b8b37b1ed615469561f22718b314f55e6e9e7005b0ab6965c508003b820c622fac5" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xa423d2a5c91dcb284401c966b7a4c458e04206076395f7f013ddfb6d96d7016b"] proof_blobs=[] +2026-04-20T15:40:09.955020Z DEBUG StfBlueprint::apply_slot{context=Node da_height=239}: sov_chain_state: Setting next visible slot number next_visible_slot_number=235 +2026-04-20T15:40:09.960897Z DEBUG StfBlueprint::apply_slot{context=Node da_height=239}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xa423d2a5c91dcb284401c966b7a4c458e04206076395f7f013ddfb6d96d7016b}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:09.963067Z DEBUG StfBlueprint::apply_slot{context=Node da_height=239}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0b05dc737280a558a73f71aa14e2dc6a264e6ad4d8b2851b8d75c486fe9c3b8b37b1ed615469561f22718b314f55e6e9e7005b0ab6965c508003b820c622fac5 next_version=239 sesssion_starting_time=286.298µs +2026-04-20T15:40:09.970298Z DEBUG StfBlueprint::apply_slot{context=Node da_height=239}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=26d227b56b875a42a19321cccdd3d5d85b4ff40ac94a2ae1460295f5db4d68b476ea79a1a3302e2059c106ee989940a481cd0b4b23acfbfe2eb1437a4a32c072 next_version=239 time=8.288456ms accesses_build_time=760.755µs finishing_session_time=7.107224ms +2026-04-20T15:40:09.971480Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="0b05dc737280a558a73f71aa14e2dc6a264e6ad4d8b2851b8d75c486fe9c3b8b37b1ed615469561f22718b314f55e6e9e7005b0ab6965c508003b820c622fac5" next_state_root="26d227b56b875a42a19321cccdd3d5d85b4ff40ac94a2ae1460295f5db4d68b476ea79a1a3302e2059c106ee989940a481cd0b4b23acfbfe2eb1437a4a32c072" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:40:09.975861Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 239, latest_finalized_slot_number: 239, sync_status: Syncing { synced_da_height: 238, target_da_height: 239 }, .. } +2026-04-20T15:40:09.977238Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=235 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 239, latest_finalized_slot_number: 239, sync_status: Syncing { synced_da_height: 238, target_da_height: 239 }, .. } +2026-04-20T15:40:09.978126Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=235 +2026-04-20T15:40:09.980564Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:40:09.981486Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=231 +2026-04-20T15:40:09.983224Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=236 +2026-04-20T15:40:09.984243Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:40:09.985848Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=236 sequence_number=258 +2026-04-20T15:40:09.986103Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:09.986169Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=258 blob_id=2147898032210708517314832744638470845 visible_slot_number_after_increase=236 visible_slots_to_advance=1 +2026-04-20T15:40:09.989608Z DEBUG sov_stf_runner::runner: Block execution complete time=2.985537929s +2026-04-20T15:40:09.989659Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:40:09.990283Z DEBUG compute_state_update{scope="sequencer" rollup_height=236 slot_number=236}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:40:09.990594Z DEBUG compute_state_update{scope="sequencer" rollup_height=236 slot_number=236}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=26d227b56b875a42a19321cccdd3d5d85b4ff40ac94a2ae1460295f5db4d68b476ea79a1a3302e2059c106ee989940a481cd0b4b23acfbfe2eb1437a4a32c072 next_version=240 sesssion_starting_time=315.409µs +2026-04-20T15:40:09.991865Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:40:09.992600Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:40:09.993839Z DEBUG manage_blob_submission_inside_task{blob_id=2147898032210708517314832744638470845 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xf7ca7212fdbf27e24e530d96379279e380af5df685b47b31df287ddf783b8899 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=240 include_at=240 bytes=13 time=1.69876ms +2026-04-20T15:40:09.996501Z DEBUG compute_state_update{scope="sequencer" rollup_height=236 slot_number=236}: sov_state::nomt::prover_storage: computed next state root state_root=42ea88121c2e732c77917debc721ada150411644af323abf99c15820eafd598e07da702ba40ea75da564e7b51662bfe15696a8ae2d41f11519bfcc6eacf9a8fd next_version=240 time=6.624647ms accesses_build_time=393.968µs finishing_session_time=5.822112ms +2026-04-20T15:40:10.485857Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pNP0PBe6TJGFIoKRuYtYhA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:40:10.525842Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:40:10.537164Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1822411 cycles +2026-04-20T15:40:10.539978Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [38, 48, 219, 84, 204, 76, 57, 194, 48, 228, 82, 58, 104, 61, 16, 152, 34, 42, 187, 205, 194, 253, 229, 189, 128, 229, 4, 120, 135, 235, 160, 122, 101, 206, 233, 66, 16, 56, 221, 8, 153, 43, 72, 132, 66, 57, 120, 106, 167, 97, 200, 26, 130, 67, 163, 141, 166, 217, 60, 241, 85, 183, 218, 108, 32, 174, 7, 131, 61, 157, 139, 212, 135, 179, 113, 38, 27, 181, 162, 188, 64, 197, 58, 229, 124, 218, 31, 172, 47, 105, 59, 52, 6, 124, 165, 231, 12, 30, 107, 109, 235, 32, 69, 111, 154, 205, 22, 97, 229, 238, 212, 72, 93, 184, 39, 56, 37, 49, 207, 138, 214, 241, 22, 111, 27, 23, 78, 100, 188, 180, 137, 168, 40, 37, 211, 39, 229, 198, 109, 134, 166, 150, 121, 230, 143, 31, 30, 54, 252, 236, 208, 199, 176, 141, 149, 69, 192, 219, 247, 24, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:40:11.183386Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:40:11.183459Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:40:12.942019Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=240 prev_hash=0x5de67cb4162a96568c356596433ce6c7bc1663dadaf91ec6294c1fc386f1f80b hash=0x7829948329c6021c014fd7809d8565f3d933f8b035dedfb5a2484cfaec49b35e producing_time=2.903151ms +2026-04-20T15:40:12.953039Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=240 current_state_root="26d227b56b875a42a19321cccdd3d5d85b4ff40ac94a2ae1460295f5db4d68b476ea79a1a3302e2059c106ee989940a481cd0b4b23acfbfe2eb1437a4a32c072" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xf7ca7212fdbf27e24e530d96379279e380af5df685b47b31df287ddf783b8899"] proof_blobs=[] +2026-04-20T15:40:12.961988Z DEBUG StfBlueprint::apply_slot{context=Node da_height=240}: sov_chain_state: Setting next visible slot number next_visible_slot_number=236 +2026-04-20T15:40:12.968232Z DEBUG StfBlueprint::apply_slot{context=Node da_height=240}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xf7ca7212fdbf27e24e530d96379279e380af5df685b47b31df287ddf783b8899}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:12.970538Z DEBUG StfBlueprint::apply_slot{context=Node da_height=240}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=26d227b56b875a42a19321cccdd3d5d85b4ff40ac94a2ae1460295f5db4d68b476ea79a1a3302e2059c106ee989940a481cd0b4b23acfbfe2eb1437a4a32c072 next_version=240 sesssion_starting_time=319.448µs +2026-04-20T15:40:12.978780Z DEBUG StfBlueprint::apply_slot{context=Node da_height=240}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=42ea88121c2e732c77917debc721ada150411644af323abf99c15820eafd598e4ac15795b93d690c20152d60d28f35b9c779b8e20a2272aaf90d84fa6816a095 next_version=240 time=9.335719ms accesses_build_time=762.165µs finishing_session_time=8.104888ms +2026-04-20T15:40:12.980057Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="26d227b56b875a42a19321cccdd3d5d85b4ff40ac94a2ae1460295f5db4d68b476ea79a1a3302e2059c106ee989940a481cd0b4b23acfbfe2eb1437a4a32c072" next_state_root="42ea88121c2e732c77917debc721ada150411644af323abf99c15820eafd598e4ac15795b93d690c20152d60d28f35b9c779b8e20a2272aaf90d84fa6816a095" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:40:12.984775Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 240, latest_finalized_slot_number: 240, sync_status: Syncing { synced_da_height: 239, target_da_height: 240 }, .. } +2026-04-20T15:40:12.986385Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=236 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 240, latest_finalized_slot_number: 240, sync_status: Syncing { synced_da_height: 239, target_da_height: 240 }, .. } +2026-04-20T15:40:12.987473Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=236 +2026-04-20T15:40:12.990329Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:40:12.991365Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=232 +2026-04-20T15:40:12.993216Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=237 +2026-04-20T15:40:12.994303Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:40:12.996042Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=237 sequence_number=259 +2026-04-20T15:40:12.996353Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=259 blob_id=2147898035849511128426979672288514102 visible_slot_number_after_increase=237 visible_slots_to_advance=1 +2026-04-20T15:40:12.996348Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:12.999798Z DEBUG sov_stf_runner::runner: Block execution complete time=3.01014755s +2026-04-20T15:40:12.999849Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:40:13.000819Z DEBUG compute_state_update{scope="sequencer" rollup_height=237 slot_number=237}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:40:13.001157Z DEBUG compute_state_update{scope="sequencer" rollup_height=237 slot_number=237}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=42ea88121c2e732c77917debc721ada150411644af323abf99c15820eafd598e4ac15795b93d690c20152d60d28f35b9c779b8e20a2272aaf90d84fa6816a095 next_version=241 sesssion_starting_time=347.348µs +2026-04-20T15:40:13.002877Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:40:13.003619Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:40:13.003629Z DEBUG manage_blob_submission_inside_task{blob_id=2147898035849511128426979672288514102 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x8ddccee8741ebf9cfc8378a3e395ed6b3b7704ef794b27599f1c262348352c4c sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=241 include_at=241 bytes=13 time=1.53069ms +2026-04-20T15:40:13.006905Z DEBUG compute_state_update{scope="sequencer" rollup_height=237 slot_number=237}: sov_state::nomt::prover_storage: computed next state root state_root=17391a333a2e4f2e54cf771c8e06968e0e3528201cd4a2825ae7081098a0d0630687e3d4f08692ee3d66586a469682f1e14456c3bfca3fa71c7bd504665a4c00 next_version=241 time=6.486938ms accesses_build_time=383.058µs finishing_session_time=5.659213ms +2026-04-20T15:40:13.464133Z DEBUG sp1_core_executor_runner::native: CHILD sp1_TeKXWYRgQUKbvrEf0M3znw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:40:13.504026Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:40:13.515693Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1836257 cycles +2026-04-20T15:40:13.518565Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [43, 110, 108, 242, 29, 47, 155, 104, 139, 107, 31, 207, 255, 136, 165, 210, 75, 131, 206, 35, 143, 13, 142, 63, 138, 243, 165, 169, 29, 14, 201, 253, 36, 189, 125, 48, 223, 196, 216, 189, 36, 67, 43, 60, 107, 28, 204, 104, 196, 165, 67, 65, 34, 31, 181, 248, 81, 67, 43, 229, 35, 198, 31, 233, 21, 204, 48, 179, 250, 190, 131, 27, 10, 93, 183, 2, 250, 64, 158, 56, 17, 33, 198, 124, 35, 104, 244, 7, 183, 61, 25, 235, 17, 177, 196, 134, 64, 21, 249, 63, 184, 178, 11, 178, 1, 183, 26, 76, 229, 107, 82, 165, 214, 69, 149, 173, 68, 145, 36, 230, 235, 41, 143, 112, 193, 215, 172, 24, 115, 159, 153, 48, 144, 79, 179, 201, 55, 206, 132, 187, 162, 69, 251, 189, 242, 199, 65, 190, 156, 238, 90, 254, 204, 175, 60, 233, 45, 10, 131, 255, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:40:14.165833Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:40:14.165920Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:40:15.949515Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=241 prev_hash=0x7829948329c6021c014fd7809d8565f3d933f8b035dedfb5a2484cfaec49b35e hash=0x848d1fb6664667ce43d462ce061e16d9f48a9eda51caf1a6d10824db6c603a05 producing_time=6.806166ms +2026-04-20T15:40:15.951997Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=241 current_state_root="42ea88121c2e732c77917debc721ada150411644af323abf99c15820eafd598e4ac15795b93d690c20152d60d28f35b9c779b8e20a2272aaf90d84fa6816a095" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x8ddccee8741ebf9cfc8378a3e395ed6b3b7704ef794b27599f1c262348352c4c"] proof_blobs=[] +2026-04-20T15:40:15.957338Z DEBUG StfBlueprint::apply_slot{context=Node da_height=241}: sov_chain_state: Setting next visible slot number next_visible_slot_number=237 +2026-04-20T15:40:15.960643Z DEBUG StfBlueprint::apply_slot{context=Node da_height=241}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x8ddccee8741ebf9cfc8378a3e395ed6b3b7704ef794b27599f1c262348352c4c}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:15.961857Z DEBUG StfBlueprint::apply_slot{context=Node da_height=241}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=42ea88121c2e732c77917debc721ada150411644af323abf99c15820eafd598e4ac15795b93d690c20152d60d28f35b9c779b8e20a2272aaf90d84fa6816a095 next_version=241 sesssion_starting_time=110.259µs +2026-04-20T15:40:15.967269Z DEBUG StfBlueprint::apply_slot{context=Node da_height=241}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=17391a333a2e4f2e54cf771c8e06968e0e3528201cd4a2825ae7081098a0d063067a38a74e030e49399a5f30f8c6596b28d111c40ba2ad65cdc2ed5f8736cd7b next_version=241 time=5.963961ms accesses_build_time=425.157µs finishing_session_time=5.344145ms +2026-04-20T15:40:15.968153Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="42ea88121c2e732c77917debc721ada150411644af323abf99c15820eafd598e4ac15795b93d690c20152d60d28f35b9c779b8e20a2272aaf90d84fa6816a095" next_state_root="17391a333a2e4f2e54cf771c8e06968e0e3528201cd4a2825ae7081098a0d063067a38a74e030e49399a5f30f8c6596b28d111c40ba2ad65cdc2ed5f8736cd7b" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:40:15.970548Z DEBUG sov_stf_runner::runner: Block execution complete time=2.970706495s +2026-04-20T15:40:15.970605Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:40:15.971657Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 241, latest_finalized_slot_number: 240, sync_status: Synced { synced_da_height: 240 }, .. } +2026-04-20T15:40:15.972714Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:40:15.973068Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=237 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 241, latest_finalized_slot_number: 240, sync_status: Synced { synced_da_height: 240 }, .. } +2026-04-20T15:40:15.973706Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:40:15.974212Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=237 +2026-04-20T15:40:15.977093Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:40:15.978065Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=233 +2026-04-20T15:40:15.979910Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=238 +2026-04-20T15:40:15.980992Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:40:15.982537Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=238 sequence_number=260 +2026-04-20T15:40:15.982792Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=260 blob_id=2147898039460640491650742465287556872 visible_slot_number_after_increase=238 visible_slots_to_advance=1 +2026-04-20T15:40:15.982779Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:15.987391Z DEBUG compute_state_update{scope="sequencer" rollup_height=238 slot_number=238}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=17391a333a2e4f2e54cf771c8e06968e0e3528201cd4a2825ae7081098a0d063067a38a74e030e49399a5f30f8c6596b28d111c40ba2ad65cdc2ed5f8736cd7b next_version=242 sesssion_starting_time=296.819µs +2026-04-20T15:40:15.990095Z DEBUG manage_blob_submission_inside_task{blob_id=2147898039460640491650742465287556872 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x0242155c33896670eec23762adb52bce9a38b40123a22d71cf59420bbfe316ee sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=242 include_at=242 bytes=13 time=1.640899ms +2026-04-20T15:40:15.992391Z DEBUG compute_state_update{scope="sequencer" rollup_height=238 slot_number=238}: sov_state::nomt::prover_storage: computed next state root state_root=4dfd901abe7aef738f5fec6a43d8e88612c397f922e2c8db998b0cccc49d60d7160c05d3bd469c3056023280c4319e7fa3eb6aeadffd1c542db3b85056d45a6e next_version=242 time=5.699383ms accesses_build_time=384.297µs finishing_session_time=4.882458ms +2026-04-20T15:40:16.547567Z DEBUG sp1_core_executor_runner::native: CHILD sp1_-c6R8KQmSbGGKNdrvAePJQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:40:16.588699Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:40:16.603537Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1859540 cycles +2026-04-20T15:40:16.606230Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [12, 71, 216, 251, 122, 197, 38, 145, 165, 65, 215, 73, 28, 114, 224, 169, 243, 253, 31, 175, 189, 200, 6, 11, 117, 220, 173, 78, 61, 88, 121, 106, 119, 130, 59, 218, 253, 146, 194, 17, 213, 224, 3, 115, 206, 244, 141, 146, 51, 240, 186, 166, 39, 203, 22, 55, 246, 58, 1, 240, 97, 206, 184, 12, 80, 150, 119, 211, 32, 29, 45, 11, 6, 86, 128, 151, 216, 76, 140, 154, 228, 185, 189, 118, 20, 59, 52, 108, 19, 216, 230, 209, 81, 249, 27, 194, 27, 169, 167, 223, 129, 121, 232, 107, 108, 190, 177, 55, 171, 44, 244, 96, 150, 55, 218, 111, 246, 219, 26, 164, 85, 205, 136, 184, 139, 218, 81, 247, 243, 176, 137, 214, 2, 147, 233, 211, 176, 89, 225, 1, 105, 130, 235, 2, 65, 8, 160, 18, 142, 19, 146, 85, 94, 44, 127, 40, 195, 211, 206, 175, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:40:17.257543Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:40:17.257624Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:40:18.954985Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=242 prev_hash=0x848d1fb6664667ce43d462ce061e16d9f48a9eda51caf1a6d10824db6c603a05 hash=0xbc2bb29b0c805ed8eb6e70c9707bc7c3338fb80ceabf94f2ad942ee6130cfd20 producing_time=3.597807ms +2026-04-20T15:40:18.963830Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=242 current_state_root="17391a333a2e4f2e54cf771c8e06968e0e3528201cd4a2825ae7081098a0d063067a38a74e030e49399a5f30f8c6596b28d111c40ba2ad65cdc2ed5f8736cd7b" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0242155c33896670eec23762adb52bce9a38b40123a22d71cf59420bbfe316ee"] proof_blobs=[] +2026-04-20T15:40:18.971260Z DEBUG StfBlueprint::apply_slot{context=Node da_height=242}: sov_chain_state: Setting next visible slot number next_visible_slot_number=238 +2026-04-20T15:40:18.976731Z DEBUG StfBlueprint::apply_slot{context=Node da_height=242}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x0242155c33896670eec23762adb52bce9a38b40123a22d71cf59420bbfe316ee}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:18.978776Z DEBUG StfBlueprint::apply_slot{context=Node da_height=242}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=17391a333a2e4f2e54cf771c8e06968e0e3528201cd4a2825ae7081098a0d063067a38a74e030e49399a5f30f8c6596b28d111c40ba2ad65cdc2ed5f8736cd7b next_version=242 sesssion_starting_time=250.289µs +2026-04-20T15:40:18.985595Z DEBUG StfBlueprint::apply_slot{context=Node da_height=242}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4dfd901abe7aef738f5fec6a43d8e88612c397f922e2c8db998b0cccc49d60d75da92706b2f172f1a53483c80e52a11806a47a673caaf723ce00da53d61fc216 next_version=242 time=7.848279ms accesses_build_time=766.125µs finishing_session_time=6.697607ms +2026-04-20T15:40:18.986867Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="42ea88121c2e732c77917debc721ada150411644af323abf99c15820eafd598e4ac15795b93d690c20152d60d28f35b9c779b8e20a2272aaf90d84fa6816a095" next_state_root="4dfd901abe7aef738f5fec6a43d8e88612c397f922e2c8db998b0cccc49d60d75da92706b2f172f1a53483c80e52a11806a47a673caaf723ce00da53d61fc216" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:40:18.991093Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 242, latest_finalized_slot_number: 241, sync_status: Syncing { synced_da_height: 241, target_da_height: 242 }, .. } +2026-04-20T15:40:18.992201Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=238 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 242, latest_finalized_slot_number: 241, sync_status: Syncing { synced_da_height: 241, target_da_height: 242 }, .. } +2026-04-20T15:40:18.992927Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=238 +2026-04-20T15:40:18.994868Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:40:18.995626Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=234 +2026-04-20T15:40:18.997354Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=239 +2026-04-20T15:40:18.998496Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:40:18.999982Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=239 sequence_number=261 +2026-04-20T15:40:19.000215Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:19.000276Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=261 blob_id=2147898043107939253284165629580863085 visible_slot_number_after_increase=239 visible_slots_to_advance=1 +2026-04-20T15:40:19.006790Z DEBUG compute_state_update{scope="sequencer" rollup_height=239 slot_number=239}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:40:19.007122Z DEBUG compute_state_update{scope="sequencer" rollup_height=239 slot_number=239}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4dfd901abe7aef738f5fec6a43d8e88612c397f922e2c8db998b0cccc49d60d75da92706b2f172f1a53483c80e52a11806a47a673caaf723ce00da53d61fc216 next_version=243 sesssion_starting_time=2.535994ms +2026-04-20T15:40:19.007459Z DEBUG sov_stf_runner::runner: Block execution complete time=3.036865007s +2026-04-20T15:40:19.007548Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:40:19.007883Z DEBUG manage_blob_submission_inside_task{blob_id=2147898043107939253284165629580863085 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x093464ca2f8f5f6dcf0897aa5470f0694ff97a52c9a8bd6904e41c5f29c71020 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=243 include_at=243 bytes=13 time=1.59039ms +2026-04-20T15:40:19.011331Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:40:19.012061Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:40:19.012646Z DEBUG compute_state_update{scope="sequencer" rollup_height=239 slot_number=239}: sov_state::nomt::prover_storage: computed next state root state_root=36d134103d2810965a2109aecb44562cbc7ac59a746a608db27350d8d32ec7200d20b5972389f02c2b2a506869bb8362aa640ddbc9465d667aa22433a9e5218d next_version=243 time=8.464855ms accesses_build_time=396.167µs finishing_session_time=5.430765ms +2026-04-20T15:40:19.450367Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4bN0F36TRgKR5cSF1WvZNA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:40:19.493423Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:40:19.507087Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1935171 cycles +2026-04-20T15:40:19.509890Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [18, 22, 109, 84, 10, 103, 231, 247, 155, 236, 194, 104, 244, 161, 202, 4, 8, 253, 58, 89, 226, 160, 64, 71, 195, 79, 239, 30, 47, 175, 232, 177, 77, 9, 54, 110, 131, 130, 85, 19, 105, 173, 12, 187, 65, 68, 77, 61, 7, 253, 96, 77, 214, 182, 86, 139, 108, 198, 85, 89, 57, 143, 224, 32, 104, 123, 131, 86, 158, 8, 187, 190, 121, 89, 124, 95, 224, 78, 76, 131, 131, 140, 155, 159, 5, 111, 216, 208, 221, 183, 115, 55, 189, 189, 66, 208, 104, 15, 204, 248, 71, 174, 45, 249, 186, 62, 219, 201, 152, 181, 224, 17, 65, 211, 234, 129, 121, 169, 211, 73, 68, 217, 145, 210, 196, 37, 127, 80, 4, 138, 125, 175, 236, 101, 87, 81, 11, 239, 142, 231, 91, 150, 136, 114, 236, 190, 133, 226, 123, 158, 51, 176, 191, 155, 191, 36, 36, 108, 105, 62, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:40:20.194235Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:40:20.194326Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:40:21.958873Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=243 prev_hash=0xbc2bb29b0c805ed8eb6e70c9707bc7c3338fb80ceabf94f2ad942ee6130cfd20 hash=0x1eb83d58d073b93a3f2c101ef754c702320fa5a2c7c0af3737188f22f21403f4 producing_time=3.12871ms +2026-04-20T15:40:21.971021Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=243 current_state_root="4dfd901abe7aef738f5fec6a43d8e88612c397f922e2c8db998b0cccc49d60d75da92706b2f172f1a53483c80e52a11806a47a673caaf723ce00da53d61fc216" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x093464ca2f8f5f6dcf0897aa5470f0694ff97a52c9a8bd6904e41c5f29c71020"] proof_blobs=[] +2026-04-20T15:40:21.979835Z DEBUG StfBlueprint::apply_slot{context=Node da_height=243}: sov_chain_state: Setting next visible slot number next_visible_slot_number=239 +2026-04-20T15:40:21.986517Z DEBUG StfBlueprint::apply_slot{context=Node da_height=243}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x093464ca2f8f5f6dcf0897aa5470f0694ff97a52c9a8bd6904e41c5f29c71020}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:21.988859Z DEBUG StfBlueprint::apply_slot{context=Node da_height=243}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4dfd901abe7aef738f5fec6a43d8e88612c397f922e2c8db998b0cccc49d60d75da92706b2f172f1a53483c80e52a11806a47a673caaf723ce00da53d61fc216 next_version=243 sesssion_starting_time=252.819µs +2026-04-20T15:40:21.997098Z DEBUG StfBlueprint::apply_slot{context=Node da_height=243}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=36d134103d2810965a2109aecb44562cbc7ac59a746a608db27350d8d32ec7202bf27db86099af2a9102508097b2ae3441e547f3342df56042c33fde8747c380 next_version=243 time=9.349139ms accesses_build_time=842.794µs finishing_session_time=8.102537ms +2026-04-20T15:40:21.998519Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="17391a333a2e4f2e54cf771c8e06968e0e3528201cd4a2825ae7081098a0d063067a38a74e030e49399a5f30f8c6596b28d111c40ba2ad65cdc2ed5f8736cd7b" next_state_root="36d134103d2810965a2109aecb44562cbc7ac59a746a608db27350d8d32ec7202bf27db86099af2a9102508097b2ae3441e547f3342df56042c33fde8747c380" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:40:22.003590Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 243, latest_finalized_slot_number: 243, sync_status: Syncing { synced_da_height: 242, target_da_height: 243 }, .. } +2026-04-20T15:40:22.005007Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=239 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 243, latest_finalized_slot_number: 243, sync_status: Syncing { synced_da_height: 242, target_da_height: 243 }, .. } +2026-04-20T15:40:22.006015Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=239 +2026-04-20T15:40:22.008892Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:40:22.009949Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=235 +2026-04-20T15:40:22.011914Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=240 +2026-04-20T15:40:22.013093Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:40:22.014986Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=240 sequence_number=262 +2026-04-20T15:40:22.015283Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=262 blob_id=2147898046752860652649777690526521878 visible_slot_number_after_increase=240 visible_slots_to_advance=1 +2026-04-20T15:40:22.015273Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:22.022742Z DEBUG manage_blob_submission_inside_task{blob_id=2147898046752860652649777690526521878 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x30437b3c159c69391e70549086146ba67c3d11240dfe6e455796ab7e93183995 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=244 include_at=244 bytes=13 time=1.866168ms +2026-04-20T15:40:22.025272Z DEBUG compute_state_update{scope="sequencer" rollup_height=240 slot_number=240}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:40:22.025372Z DEBUG compute_state_update{scope="sequencer" rollup_height=240 slot_number=240}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:40:22.025576Z DEBUG sov_stf_runner::runner: Block execution complete time=3.018045399s +2026-04-20T15:40:22.025631Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:40:22.025651Z DEBUG compute_state_update{scope="sequencer" rollup_height=240 slot_number=240}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=36d134103d2810965a2109aecb44562cbc7ac59a746a608db27350d8d32ec7202bf27db86099af2a9102508097b2ae3441e547f3342df56042c33fde8747c380 next_version=244 sesssion_starting_time=5.883582ms +2026-04-20T15:40:22.027367Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:40:22.028436Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:40:22.031434Z DEBUG compute_state_update{scope="sequencer" rollup_height=240 slot_number=240}: sov_state::nomt::prover_storage: computed next state root state_root=4f0d01a62897bebf73ead5665c127a761c3ffd0280c4aa10e660b5b4ac777ccc46f9834ebcb6e2238b311e45294861004abd91540cea859cf05530efb2931206 next_version=244 time=12.066892ms accesses_build_time=393.507µs finishing_session_time=5.691163ms +2026-04-20T15:40:22.496660Z DEBUG sp1_core_executor_runner::native: CHILD sp1_WNBotNw2SS2qArPcCSV2_g==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:40:22.538597Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:40:22.550189Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1918363 cycles +2026-04-20T15:40:22.552743Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [23, 175, 180, 110, 16, 92, 110, 22, 191, 94, 55, 20, 87, 228, 188, 107, 190, 81, 185, 52, 187, 176, 46, 3, 60, 195, 94, 154, 236, 178, 177, 44, 1, 172, 10, 239, 240, 13, 58, 174, 137, 83, 214, 176, 158, 118, 56, 94, 217, 138, 24, 58, 51, 209, 120, 172, 116, 179, 103, 196, 33, 235, 164, 12, 16, 61, 23, 101, 77, 60, 122, 216, 16, 67, 42, 198, 49, 22, 62, 236, 10, 192, 4, 1, 7, 64, 75, 25, 233, 37, 128, 111, 147, 160, 69, 87, 2, 100, 69, 166, 87, 218, 252, 250, 252, 87, 120, 241, 104, 156, 43, 214, 50, 71, 231, 216, 125, 55, 200, 33, 197, 125, 149, 10, 179, 210, 96, 101, 35, 186, 121, 206, 243, 11, 38, 49, 86, 145, 45, 118, 37, 56, 211, 82, 175, 36, 32, 72, 27, 95, 49, 82, 54, 160, 24, 240, 158, 67, 239, 86, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:40:23.230620Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:40:23.230702Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:40:24.963742Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=244 prev_hash=0x1eb83d58d073b93a3f2c101ef754c702320fa5a2c7c0af3737188f22f21403f4 hash=0x1b1bde827d2803e2be75b087ab766eb8c045edcee2b153caab0a724dcf2a6ac7 producing_time=3.032011ms +2026-04-20T15:40:24.969119Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=244 current_state_root="36d134103d2810965a2109aecb44562cbc7ac59a746a608db27350d8d32ec7202bf27db86099af2a9102508097b2ae3441e547f3342df56042c33fde8747c380" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x30437b3c159c69391e70549086146ba67c3d11240dfe6e455796ab7e93183995"] proof_blobs=[] +2026-04-20T15:40:24.977540Z DEBUG StfBlueprint::apply_slot{context=Node da_height=244}: sov_chain_state: Setting next visible slot number next_visible_slot_number=240 +2026-04-20T15:40:24.983687Z DEBUG StfBlueprint::apply_slot{context=Node da_height=244}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x30437b3c159c69391e70549086146ba67c3d11240dfe6e455796ab7e93183995}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:24.986010Z DEBUG StfBlueprint::apply_slot{context=Node da_height=244}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=36d134103d2810965a2109aecb44562cbc7ac59a746a608db27350d8d32ec7202bf27db86099af2a9102508097b2ae3441e547f3342df56042c33fde8747c380 next_version=244 sesssion_starting_time=309.598µs +2026-04-20T15:40:24.993461Z DEBUG StfBlueprint::apply_slot{context=Node da_height=244}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=4f0d01a62897bebf73ead5665c127a761c3ffd0280c4aa10e660b5b4ac777ccc680d2a9b56b19e9b2db3317d6835d570ee451590cc8e3a0d50f8e3a3c170dc76 next_version=244 time=8.558394ms accesses_build_time=783.914µs finishing_session_time=7.321723ms +2026-04-20T15:40:24.994734Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="36d134103d2810965a2109aecb44562cbc7ac59a746a608db27350d8d32ec7202bf27db86099af2a9102508097b2ae3441e547f3342df56042c33fde8747c380" next_state_root="4f0d01a62897bebf73ead5665c127a761c3ffd0280c4aa10e660b5b4ac777ccc680d2a9b56b19e9b2db3317d6835d570ee451590cc8e3a0d50f8e3a3c170dc76" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:40:24.999355Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 244, latest_finalized_slot_number: 244, sync_status: Syncing { synced_da_height: 243, target_da_height: 244 }, .. } +2026-04-20T15:40:25.000798Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=240 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 244, latest_finalized_slot_number: 244, sync_status: Syncing { synced_da_height: 243, target_da_height: 244 }, .. } +2026-04-20T15:40:25.001781Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=240 +2026-04-20T15:40:25.004358Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:40:25.005327Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=236 +2026-04-20T15:40:25.007126Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=241 +2026-04-20T15:40:25.008067Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:40:25.009597Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=241 sequence_number=263 +2026-04-20T15:40:25.009859Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:25.010076Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=263 blob_id=2147898050373607945613499468457505616 visible_slot_number_after_increase=241 visible_slots_to_advance=1 +2026-04-20T15:40:25.015589Z DEBUG compute_state_update{scope="sequencer" rollup_height=241 slot_number=241}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:40:25.015926Z DEBUG compute_state_update{scope="sequencer" rollup_height=241 slot_number=241}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4f0d01a62897bebf73ead5665c127a761c3ffd0280c4aa10e660b5b4ac777ccc680d2a9b56b19e9b2db3317d6835d570ee451590cc8e3a0d50f8e3a3c170dc76 next_version=245 sesssion_starting_time=1.758949ms +2026-04-20T15:40:25.016359Z DEBUG sov_stf_runner::runner: Block execution complete time=2.990734016s +2026-04-20T15:40:25.016489Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:40:25.017576Z DEBUG manage_blob_submission_inside_task{blob_id=2147898050373607945613499468457505616 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x4a2f3da4881da5b34275abc5f5d453078050fcf31938823e5b6ec85e4b851d11 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=245 include_at=245 bytes=13 time=1.806448ms +2026-04-20T15:40:25.019597Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:40:25.020188Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:40:25.021526Z DEBUG compute_state_update{scope="sequencer" rollup_height=241 slot_number=241}: sov_state::nomt::prover_storage: computed next state root state_root=3c8df58386b3174c0dcbcd9e093001ef47fa104f2f5621374314ce03211487f15a6672f5ee874322b75bf990d66cf291437a6de9e3d1cbc313be28e535d9ac30 next_version=245 time=7.75414ms accesses_build_time=387.968µs finishing_session_time=5.503524ms +2026-04-20T15:40:25.526680Z DEBUG sp1_core_executor_runner::native: CHILD sp1_RybolCsdTCi3ArI2aFcHIg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:40:25.596750Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:40:25.609295Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4267553 cycles +2026-04-20T15:40:25.612189Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [51, 126, 199, 86, 29, 145, 130, 208, 176, 47, 185, 82, 213, 146, 44, 226, 151, 132, 244, 1, 119, 179, 231, 136, 38, 66, 79, 180, 202, 164, 219, 211, 7, 100, 59, 236, 214, 99, 50, 48, 98, 233, 210, 96, 205, 122, 35, 43, 97, 183, 213, 27, 208, 159, 106, 117, 41, 109, 110, 2, 232, 180, 37, 161, 20, 249, 116, 171, 74, 35, 113, 226, 158, 211, 241, 161, 191, 152, 148, 113, 243, 145, 110, 37, 139, 90, 172, 15, 230, 254, 90, 162, 108, 226, 66, 89, 35, 125, 82, 86, 57, 216, 109, 68, 212, 185, 50, 107, 184, 23, 14, 190, 221, 164, 122, 31, 234, 46, 214, 141, 17, 36, 230, 56, 229, 125, 239, 119, 45, 34, 67, 194, 1, 17, 167, 228, 92, 93, 108, 246, 27, 101, 70, 126, 164, 152, 84, 172, 101, 158, 29, 93, 82, 227, 62, 125, 202, 177, 177, 210, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:40:27.105573Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:40:27.105656Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:40:27.968597Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=245 prev_hash=0x1b1bde827d2803e2be75b087ab766eb8c045edcee2b153caab0a724dcf2a6ac7 hash=0x2d139cb5bf81d1bd0d58769a4d32b3400b2e29572c9518e5fad2da85e09676ca producing_time=3.932075ms +2026-04-20T15:40:27.979161Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=245 current_state_root="4f0d01a62897bebf73ead5665c127a761c3ffd0280c4aa10e660b5b4ac777ccc680d2a9b56b19e9b2db3317d6835d570ee451590cc8e3a0d50f8e3a3c170dc76" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x4a2f3da4881da5b34275abc5f5d453078050fcf31938823e5b6ec85e4b851d11"] proof_blobs=[] +2026-04-20T15:40:27.983777Z DEBUG StfBlueprint::apply_slot{context=Node da_height=245}: sov_chain_state: Setting next visible slot number next_visible_slot_number=241 +2026-04-20T15:40:27.986893Z DEBUG StfBlueprint::apply_slot{context=Node da_height=245}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x4a2f3da4881da5b34275abc5f5d453078050fcf31938823e5b6ec85e4b851d11}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:27.987969Z DEBUG StfBlueprint::apply_slot{context=Node da_height=245}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=4f0d01a62897bebf73ead5665c127a761c3ffd0280c4aa10e660b5b4ac777ccc680d2a9b56b19e9b2db3317d6835d570ee451590cc8e3a0d50f8e3a3c170dc76 next_version=245 sesssion_starting_time=171.189µs +2026-04-20T15:40:27.994699Z DEBUG StfBlueprint::apply_slot{context=Node da_height=245}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3c8df58386b3174c0dcbcd9e093001ef47fa104f2f5621374314ce03211487f137f2deeceb76eb3d05469aa6b7045b50520dee38a8bcc580a182e8ded961ae31 next_version=245 time=7.221664ms accesses_build_time=315.388µs finishing_session_time=6.676467ms +2026-04-20T15:40:27.995250Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="4f0d01a62897bebf73ead5665c127a761c3ffd0280c4aa10e660b5b4ac777ccc680d2a9b56b19e9b2db3317d6835d570ee451590cc8e3a0d50f8e3a3c170dc76" next_state_root="3c8df58386b3174c0dcbcd9e093001ef47fa104f2f5621374314ce03211487f137f2deeceb76eb3d05469aa6b7045b50520dee38a8bcc580a182e8ded961ae31" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:40:27.998151Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 245, latest_finalized_slot_number: 245, sync_status: Syncing { synced_da_height: 244, target_da_height: 245 }, .. } +2026-04-20T15:40:27.999527Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=241 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 245, latest_finalized_slot_number: 245, sync_status: Syncing { synced_da_height: 244, target_da_height: 245 }, .. } +2026-04-20T15:40:28.000422Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=241 +2026-04-20T15:40:28.002854Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:40:28.003779Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=237 +2026-04-20T15:40:28.004900Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=242 +2026-04-20T15:40:28.005289Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:40:28.006035Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=242 sequence_number=264 +2026-04-20T15:40:28.006198Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:28.006379Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=264 blob_id=2147898053995493032210363735479717902 visible_slot_number_after_increase=242 visible_slots_to_advance=1 +2026-04-20T15:40:28.011872Z DEBUG compute_state_update{scope="sequencer" rollup_height=242 slot_number=242}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:40:28.012205Z DEBUG sov_stf_runner::runner: Block execution complete time=2.995735193s +2026-04-20T15:40:28.012179Z DEBUG compute_state_update{scope="sequencer" rollup_height=242 slot_number=242}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3c8df58386b3174c0dcbcd9e093001ef47fa104f2f5621374314ce03211487f137f2deeceb76eb3d05469aa6b7045b50520dee38a8bcc580a182e8ded961ae31 next_version=246 sesssion_starting_time=2.97898ms +2026-04-20T15:40:28.012254Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:40:28.012273Z DEBUG manage_blob_submission_inside_task{blob_id=2147898053995493032210363735479717902 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xe06958b894882ee13f923436391bcfdf665fb3f52092f4f0f7db2723c3e1fffe sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=246 include_at=246 bytes=13 time=1.61918ms +2026-04-20T15:40:28.014956Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:40:28.015731Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:40:28.017992Z DEBUG compute_state_update{scope="sequencer" rollup_height=242 slot_number=242}: sov_state::nomt::prover_storage: computed next state root state_root=67b6d779e550c7be3e5ef1c0e5326b63c0794459bc2fa1806ad8cf966e14e6f22da78fe4ea8cf09dea900edb3b8f29a8f61065795d7cd22baf5cc9e7597ef931 next_version=246 time=9.17878ms accesses_build_time=379.138µs finishing_session_time=5.705853ms +2026-04-20T15:40:28.508838Z DEBUG sp1_core_executor_runner::native: CHILD sp1_D-uFTceYRKOg0ZzBebJZKg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:40:28.550571Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:40:28.562764Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1893611 cycles +2026-04-20T15:40:28.565509Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [11, 5, 220, 115, 114, 128, 165, 88, 167, 63, 113, 170, 20, 226, 220, 106, 38, 78, 106, 212, 216, 178, 133, 27, 141, 117, 196, 134, 254, 156, 59, 139, 55, 177, 237, 97, 84, 105, 86, 31, 34, 113, 139, 49, 79, 85, 230, 233, 231, 0, 91, 10, 182, 150, 92, 80, 128, 3, 184, 32, 198, 34, 250, 197, 110, 86, 211, 55, 185, 178, 159, 237, 22, 122, 174, 243, 51, 223, 133, 83, 210, 160, 182, 86, 92, 199, 104, 180, 65, 68, 228, 88, 116, 161, 156, 196, 114, 230, 102, 211, 220, 243, 83, 46, 149, 190, 215, 34, 18, 156, 184, 61, 104, 90, 234, 82, 221, 49, 148, 197, 163, 134, 149, 176, 219, 194, 149, 162, 93, 230, 124, 180, 22, 42, 150, 86, 140, 53, 101, 150, 67, 60, 230, 199, 188, 22, 99, 218, 218, 249, 30, 198, 41, 76, 31, 195, 134, 241, 248, 11, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:40:29.231748Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:40:29.231826Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:40:30.973095Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=246 prev_hash=0x2d139cb5bf81d1bd0d58769a4d32b3400b2e29572c9518e5fad2da85e09676ca hash=0x52059e6386a7cdae61743d94de9ce38831e113b2680bcab83244614791f79897 producing_time=2.888081ms +2026-04-20T15:40:30.974914Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=246 current_state_root="3c8df58386b3174c0dcbcd9e093001ef47fa104f2f5621374314ce03211487f137f2deeceb76eb3d05469aa6b7045b50520dee38a8bcc580a182e8ded961ae31" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe06958b894882ee13f923436391bcfdf665fb3f52092f4f0f7db2723c3e1fffe"] proof_blobs=[] +2026-04-20T15:40:30.983156Z DEBUG StfBlueprint::apply_slot{context=Node da_height=246}: sov_chain_state: Setting next visible slot number next_visible_slot_number=242 +2026-04-20T15:40:30.989090Z DEBUG StfBlueprint::apply_slot{context=Node da_height=246}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xe06958b894882ee13f923436391bcfdf665fb3f52092f4f0f7db2723c3e1fffe}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:30.991290Z DEBUG StfBlueprint::apply_slot{context=Node da_height=246}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3c8df58386b3174c0dcbcd9e093001ef47fa104f2f5621374314ce03211487f137f2deeceb76eb3d05469aa6b7045b50520dee38a8bcc580a182e8ded961ae31 next_version=246 sesssion_starting_time=302.028µs +2026-04-20T15:40:30.999038Z DEBUG StfBlueprint::apply_slot{context=Node da_height=246}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=67b6d779e550c7be3e5ef1c0e5326b63c0794459bc2fa1806ad8cf966e14e6f267303d4b74c0e0ba727fa2fa7985d3d73f59c630a69988485b66b3d4cffd5619 next_version=246 time=8.823763ms accesses_build_time=760.995µs finishing_session_time=7.61818ms +2026-04-20T15:40:31.000232Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3c8df58386b3174c0dcbcd9e093001ef47fa104f2f5621374314ce03211487f137f2deeceb76eb3d05469aa6b7045b50520dee38a8bcc580a182e8ded961ae31" next_state_root="67b6d779e550c7be3e5ef1c0e5326b63c0794459bc2fa1806ad8cf966e14e6f267303d4b74c0e0ba727fa2fa7985d3d73f59c630a69988485b66b3d4cffd5619" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:40:31.004672Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 246, latest_finalized_slot_number: 246, sync_status: Syncing { synced_da_height: 245, target_da_height: 246 }, .. } +2026-04-20T15:40:31.006015Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=242 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 246, latest_finalized_slot_number: 246, sync_status: Syncing { synced_da_height: 245, target_da_height: 246 }, .. } +2026-04-20T15:40:31.006911Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=242 +2026-04-20T15:40:31.009590Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:40:31.010566Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=238 +2026-04-20T15:40:31.012442Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=243 +2026-04-20T15:40:31.013622Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:40:31.015288Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=243 sequence_number=265 +2026-04-20T15:40:31.015578Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:31.015739Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=265 blob_id=2147898057634395460752386741624393648 visible_slot_number_after_increase=243 visible_slots_to_advance=1 +2026-04-20T15:40:31.019278Z DEBUG compute_state_update{scope="sequencer" rollup_height=243 slot_number=243}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:40:31.019585Z DEBUG compute_state_update{scope="sequencer" rollup_height=243 slot_number=243}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=67b6d779e550c7be3e5ef1c0e5326b63c0794459bc2fa1806ad8cf966e14e6f267303d4b74c0e0ba727fa2fa7985d3d73f59c630a69988485b66b3d4cffd5619 next_version=247 sesssion_starting_time=347.378µs +2026-04-20T15:40:31.019897Z DEBUG sov_stf_runner::runner: Block execution complete time=3.007650716s +2026-04-20T15:40:31.019939Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:40:31.021661Z DEBUG manage_blob_submission_inside_task{blob_id=2147898057634395460752386741624393648 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xe1d425169dcfc32503e5fe4002284893f76e8376a450c9bfdac3f59f7fc0e887 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=247 include_at=247 bytes=13 time=1.51357ms +2026-04-20T15:40:31.024387Z DEBUG compute_state_update{scope="sequencer" rollup_height=243 slot_number=243}: sov_state::nomt::prover_storage: computed next state root state_root=43c110e092ff057ad428d4cba696b43d51c576e4ee8fd08241faec12db05ae2a7211024bed451669fda413e133093f2986c0001454a0747fa0ef3037eab73b31 next_version=247 time=5.550674ms accesses_build_time=379.137µs finishing_session_time=4.730629ms +2026-04-20T15:40:31.479446Z DEBUG sp1_core_executor_runner::native: CHILD sp1_14MKl-8sSDS5ScK53mwa3w==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:40:31.520471Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:40:31.532822Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1874672 cycles +2026-04-20T15:40:31.535781Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [38, 210, 39, 181, 107, 135, 90, 66, 161, 147, 33, 204, 205, 211, 213, 216, 91, 79, 244, 10, 201, 74, 42, 225, 70, 2, 149, 245, 219, 77, 104, 180, 118, 234, 121, 161, 163, 48, 46, 32, 89, 193, 6, 238, 152, 153, 64, 164, 129, 205, 11, 75, 35, 172, 251, 254, 46, 177, 67, 122, 74, 50, 192, 114, 70, 75, 113, 205, 130, 163, 128, 162, 170, 39, 15, 193, 34, 215, 253, 229, 107, 217, 229, 110, 46, 46, 130, 62, 176, 33, 222, 101, 218, 110, 192, 64, 93, 200, 167, 225, 111, 45, 121, 191, 166, 95, 14, 75, 108, 45, 199, 145, 6, 153, 57, 65, 110, 165, 237, 16, 66, 155, 205, 68, 170, 84, 161, 251, 120, 41, 148, 131, 41, 198, 2, 28, 1, 79, 215, 128, 157, 133, 101, 243, 217, 51, 248, 176, 53, 222, 223, 181, 162, 72, 76, 250, 236, 73, 179, 94, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:40:32.194311Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:40:32.194397Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:40:32.268574Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:40:32.509388Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:40:32.511670Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2607482 cycles +2026-04-20T15:40:32.512043Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [231, 0, 0, 0, 0, 0, 0, 0, 240, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 16, 91, 204, 40, 37, 135, 11, 254, 25, 73, 239, 27, 116, 121, 5, 57, 171, 236, 200, 65, 134, 15, 235, 58, 34, 131, 166, 80, 183, 12, 168, 107, 52, 236, 67, 15, 208, 225, 245, 152, 146, 31, 248, 237, 112, 254, 68, 205, 191, 69, 175, 90, 97, 86, 221, 250, 125, 66, 187, 214, 217, 138, 240, 68, 70, 75, 113, 205, 130, 163, 128, 162, 170, 39, 15, 193, 34, 215, 253, 229, 107, 217, 229, 110, 46, 46, 130, 62, 176, 33, 222, 101, 218, 110, 192, 64, 93, 200, 167, 225, 111, 45, 121, 191, 166, 95, 14, 75, 108, 45, 199, 145, 6, 153, 57, 65, 110, 165, 237, 16, 66, 155, 205, 68, 170, 84, 161, 251, 74, 44, 227, 154, 229, 52, 234, 222, 82, 131, 148, 207, 194, 152, 254, 217, 227, 199, 49, 63, 11, 145, 31, 218, 84, 182, 34, 226, 82, 205, 225, 240, 120, 41, 148, 131, 41, 198, 2, 28, 1, 79, 215, 128, 157, 133, 101, 243, 217, 51, 248, 176, 53, 222, 223, 181, 162, 72, 76, 250, 236, 73, 179, 94, 32, 0, 0, 0, 0, 0, 0, 0, 33, 87, 226, 242, 39, 49, 250, 210, 41, 143, 26, 188, 101, 19, 12, 136, 43, 105, 121, 236, 80, 118, 108, 155, 63, 154, 215, 73, 15, 107, 27, 67, 32, 0, 0, 0, 0, 0, 0, 0, 54, 246, 123, 188, 67, 61, 237, 103, 16, 229, 5, 146, 113, 8, 178, 215, 95, 95, 151, 239, 106, 28, 10, 135, 55, 55, 208, 95, 86, 190, 27, 9, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:40:33.472445Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:40:33.472522Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:40:33.473450Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=1951 +2026-04-20T15:40:33.476101Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:40:33.476656Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:40:33.476958Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=266 blob_id=2147898060605928911043412921447950774 +2026-04-20T15:40:33.977235Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=247 prev_hash=0x52059e6386a7cdae61743d94de9ce38831e113b2680bcab83244614791f79897 hash=0x3c224c8b34d7c62c65b0856df2cb5b2a178773a864611d76ddff68699aaeed4c producing_time=2.643293ms +2026-04-20T15:40:33.983399Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=247 current_state_root="67b6d779e550c7be3e5ef1c0e5326b63c0794459bc2fa1806ad8cf966e14e6f267303d4b74c0e0ba727fa2fa7985d3d73f59c630a69988485b66b3d4cffd5619" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xe1d425169dcfc32503e5fe4002284893f76e8376a450c9bfdac3f59f7fc0e887"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x9bd9d78413bae4515dda325e9305417ac9e848b6e6933be38530c27405af5696, len=2001"] +2026-04-20T15:40:33.992356Z DEBUG StfBlueprint::apply_slot{context=Node da_height=247}: sov_chain_state: Setting next visible slot number next_visible_slot_number=243 +2026-04-20T15:40:33.998797Z DEBUG StfBlueprint::apply_slot{context=Node da_height=247}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xe1d425169dcfc32503e5fe4002284893f76e8376a450c9bfdac3f59f7fc0e887}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:34.001300Z DEBUG StfBlueprint::apply_slot{context=Node da_height=247}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=67b6d779e550c7be3e5ef1c0e5326b63c0794459bc2fa1806ad8cf966e14e6f267303d4b74c0e0ba727fa2fa7985d3d73f59c630a69988485b66b3d4cffd5619 next_version=247 sesssion_starting_time=292.378µs +2026-04-20T15:40:34.009610Z DEBUG StfBlueprint::apply_slot{context=Node da_height=247}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=43c110e092ff057ad428d4cba696b43d51c576e4ee8fd08241faec12db05ae2a3e3c5a0ceec12a2d3475debc7daa5f446a1b3a6ecf9dc9f8cc2a2eb49fd6d830 next_version=247 time=9.552228ms accesses_build_time=935.474µs finishing_session_time=8.149807ms +2026-04-20T15:40:34.010963Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="67b6d779e550c7be3e5ef1c0e5326b63c0794459bc2fa1806ad8cf966e14e6f267303d4b74c0e0ba727fa2fa7985d3d73f59c630a69988485b66b3d4cffd5619" next_state_root="43c110e092ff057ad428d4cba696b43d51c576e4ee8fd08241faec12db05ae2a3e3c5a0ceec12a2d3475debc7daa5f446a1b3a6ecf9dc9f8cc2a2eb49fd6d830" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:40:34.015702Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 247, latest_finalized_slot_number: 247, sync_status: Synced { synced_da_height: 246 }, .. } +2026-04-20T15:40:34.017055Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=243 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 247, latest_finalized_slot_number: 247, sync_status: Synced { synced_da_height: 246 }, .. } +2026-04-20T15:40:34.017965Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=243 +2026-04-20T15:40:34.020438Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:40:34.021522Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=239 +2026-04-20T15:40:34.023642Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=244 +2026-04-20T15:40:34.024871Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:40:34.028573Z DEBUG sov_stf_runner::runner: Block execution complete time=3.008640439s +2026-04-20T15:40:34.028658Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:40:34.029626Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 231. Final slot number 240 +2026-04-20T15:40:34.030454Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=244 sequence_number=267 +2026-04-20T15:40:34.030725Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=267 blob_id=2147898061279259268927165482053977527 visible_slot_number_after_increase=244 visible_slots_to_advance=1 +2026-04-20T15:40:34.030729Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:34.031136Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:40:34.031974Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:40:34.035217Z DEBUG compute_state_update{scope="sequencer" rollup_height=244 slot_number=244}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:40:34.035593Z DEBUG compute_state_update{scope="sequencer" rollup_height=244 slot_number=244}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=43c110e092ff057ad428d4cba696b43d51c576e4ee8fd08241faec12db05ae2a3e3c5a0ceec12a2d3475debc7daa5f446a1b3a6ecf9dc9f8cc2a2eb49fd6d830 next_version=248 sesssion_starting_time=383.258µs +2026-04-20T15:40:34.037576Z DEBUG manage_blob_submission_inside_task{blob_id=2147898061279259268927165482053977527 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x29446255d2205cc099a0976c937df0f74236c3bb5a457f7307fd9d9141cb44df sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=248 include_at=248 bytes=13 time=1.65753ms +2026-04-20T15:40:34.042425Z DEBUG compute_state_update{scope="sequencer" rollup_height=244 slot_number=244}: sov_state::nomt::prover_storage: computed next state root state_root=6e0763328380eeb3f972c7d6d14c94879c4a2aae5281e28638e9a7a4256df41c61469c0b6c83d174a0b6c9221fddf7689dca30620b4fdf4971033793d330c051 next_version=248 time=7.70238ms accesses_build_time=479.297µs finishing_session_time=6.729867ms +2026-04-20T15:40:36.947048Z DEBUG sp1_core_executor_runner::native: CHILD sp1_pfTKW0nZQMijVvgDGMnnKg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:40:36.982370Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=248 prev_hash=0x3c224c8b34d7c62c65b0856df2cb5b2a178773a864611d76ddff68699aaeed4c hash=0x6c437f7cf75af8ba12113be6bf113713f2e0c892dbf993cb73553f4de1761b95 producing_time=3.702636ms +2026-04-20T15:40:36.989136Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:40:36.991593Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=248 current_state_root="43c110e092ff057ad428d4cba696b43d51c576e4ee8fd08241faec12db05ae2a3e3c5a0ceec12a2d3475debc7daa5f446a1b3a6ecf9dc9f8cc2a2eb49fd6d830" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x29446255d2205cc099a0976c937df0f74236c3bb5a457f7307fd9d9141cb44df"] proof_blobs=[] +2026-04-20T15:40:37.001766Z DEBUG StfBlueprint::apply_slot{context=Node da_height=248}: sov_chain_state: Setting next visible slot number next_visible_slot_number=244 +2026-04-20T15:40:37.002520Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1912790 cycles +2026-04-20T15:40:37.005063Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [66, 234, 136, 18, 28, 46, 115, 44, 119, 145, 125, 235, 199, 33, 173, 161, 80, 65, 22, 68, 175, 50, 58, 191, 153, 193, 88, 32, 234, 253, 89, 142, 74, 193, 87, 149, 185, 61, 105, 12, 32, 21, 45, 96, 210, 143, 53, 185, 199, 121, 184, 226, 10, 34, 114, 170, 249, 13, 132, 250, 104, 22, 160, 149, 10, 13, 46, 119, 24, 173, 69, 93, 79, 22, 124, 74, 249, 38, 231, 114, 164, 187, 247, 227, 98, 247, 109, 246, 82, 228, 246, 33, 58, 157, 134, 15, 39, 195, 236, 160, 131, 204, 3, 157, 116, 169, 156, 141, 167, 117, 111, 195, 106, 71, 128, 97, 60, 202, 213, 155, 123, 168, 127, 37, 60, 213, 139, 74, 132, 141, 31, 182, 102, 70, 103, 206, 67, 212, 98, 206, 6, 30, 22, 217, 244, 138, 158, 218, 81, 202, 241, 166, 209, 8, 36, 219, 108, 96, 58, 5, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:40:37.020704Z DEBUG StfBlueprint::apply_slot{context=Node da_height=248}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 231. Final slot number 240 +2026-04-20T15:40:37.021161Z DEBUG StfBlueprint::apply_slot{context=Node da_height=248}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x29446255d2205cc099a0976c937df0f74236c3bb5a457f7307fd9d9141cb44df}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:37.023863Z DEBUG StfBlueprint::apply_slot{context=Node da_height=248}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=43c110e092ff057ad428d4cba696b43d51c576e4ee8fd08241faec12db05ae2a3e3c5a0ceec12a2d3475debc7daa5f446a1b3a6ecf9dc9f8cc2a2eb49fd6d830 next_version=248 sesssion_starting_time=311.848µs +2026-04-20T15:40:37.035165Z DEBUG StfBlueprint::apply_slot{context=Node da_height=248}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6e0763328380eeb3f972c7d6d14c94879c4a2aae5281e28638e9a7a4256df41c7ee904e67e803ab9ef9cc600196058db40f53c8ea8e5849900dc21eb56ce3940 next_version=248 time=12.709618ms accesses_build_time=1.085263ms finishing_session_time=11.163438ms +2026-04-20T15:40:37.036525Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="43c110e092ff057ad428d4cba696b43d51c576e4ee8fd08241faec12db05ae2a3e3c5a0ceec12a2d3475debc7daa5f446a1b3a6ecf9dc9f8cc2a2eb49fd6d830" next_state_root="6e0763328380eeb3f972c7d6d14c94879c4a2aae5281e28638e9a7a4256df41c7ee904e67e803ab9ef9cc600196058db40f53c8ea8e5849900dc21eb56ce3940" aggregated_proofs=1 proof_receipts=1 +2026-04-20T15:40:37.042386Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 248, latest_finalized_slot_number: 248, sync_status: Syncing { synced_da_height: 247, target_da_height: 248 }, .. } +2026-04-20T15:40:37.043785Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=244 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 248, latest_finalized_slot_number: 248, sync_status: Syncing { synced_da_height: 247, target_da_height: 248 }, .. } +2026-04-20T15:40:37.044732Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=244 +2026-04-20T15:40:37.047347Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:40:37.048304Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=240 +2026-04-20T15:40:37.050167Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=245 +2026-04-20T15:40:37.051229Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:40:37.052896Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=245 sequence_number=268 +2026-04-20T15:40:37.053165Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:37.053211Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=268 blob_id=2147898064932692754010663231644661355 visible_slot_number_after_increase=245 visible_slots_to_advance=1 +2026-04-20T15:40:37.057908Z DEBUG compute_state_update{scope="sequencer" rollup_height=245 slot_number=245}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:40:37.058222Z DEBUG compute_state_update{scope="sequencer" rollup_height=245 slot_number=245}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6e0763328380eeb3f972c7d6d14c94879c4a2aae5281e28638e9a7a4256df41c7ee904e67e803ab9ef9cc600196058db40f53c8ea8e5849900dc21eb56ce3940 next_version=249 sesssion_starting_time=760.586µs +2026-04-20T15:40:37.058505Z DEBUG sov_stf_runner::runner: Block execution complete time=3.029862302s +2026-04-20T15:40:37.058643Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:40:37.060426Z DEBUG manage_blob_submission_inside_task{blob_id=2147898064932692754010663231644661355 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x075f41d3ea71a028a88aeed6a86ef2a77d02836202d5ca00f7216f4a7945f9d9 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=249 include_at=249 bytes=13 time=1.623999ms +2026-04-20T15:40:37.061106Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:40:37.061949Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:40:37.064133Z DEBUG compute_state_update{scope="sequencer" rollup_height=245 slot_number=245}: sov_state::nomt::prover_storage: computed next state root state_root=3a2ac68825b6bbd4499001d844277868c70002468cbcac7c5d3d98431ef1020b4b1b84435aab32bb477c6816c2a33f3eb83dedd044886406935949e89bfa285a next_version=249 time=7.068184ms accesses_build_time=385.147µs finishing_session_time=5.799572ms +2026-04-20T15:40:37.523752Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Do06uOmNQfmGJzseHPilyw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:40:37.565526Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:40:37.577030Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1893144 cycles +2026-04-20T15:40:37.579764Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [23, 57, 26, 51, 58, 46, 79, 46, 84, 207, 119, 28, 142, 6, 150, 142, 14, 53, 40, 32, 28, 212, 162, 130, 90, 231, 8, 16, 152, 160, 208, 99, 6, 122, 56, 167, 78, 3, 14, 73, 57, 154, 95, 48, 248, 198, 89, 107, 40, 209, 17, 196, 11, 162, 173, 101, 205, 194, 237, 95, 135, 54, 205, 123, 47, 248, 47, 54, 70, 126, 188, 211, 45, 133, 188, 250, 144, 35, 33, 37, 205, 116, 10, 185, 34, 10, 155, 48, 11, 52, 50, 88, 122, 220, 209, 74, 110, 54, 77, 52, 199, 33, 156, 124, 105, 13, 174, 95, 81, 148, 61, 2, 237, 71, 240, 64, 231, 216, 164, 99, 90, 206, 53, 102, 189, 250, 2, 72, 188, 43, 178, 155, 12, 128, 94, 216, 235, 110, 112, 201, 112, 123, 199, 195, 51, 143, 184, 12, 234, 191, 148, 242, 173, 148, 46, 230, 19, 12, 253, 32, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:40:37.680083Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:40:37.680164Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:40:38.297998Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:40:38.298078Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:40:39.986776Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=249 prev_hash=0x6c437f7cf75af8ba12113be6bf113713f2e0c892dbf993cb73553f4de1761b95 hash=0xfc30872ed8e98673a42637a4c8d73996dfd1531418d94c1256b1dc3270787a1f producing_time=3.09315ms +2026-04-20T15:40:39.992048Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=249 current_state_root="6e0763328380eeb3f972c7d6d14c94879c4a2aae5281e28638e9a7a4256df41c7ee904e67e803ab9ef9cc600196058db40f53c8ea8e5849900dc21eb56ce3940" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x075f41d3ea71a028a88aeed6a86ef2a77d02836202d5ca00f7216f4a7945f9d9"] proof_blobs=[] +2026-04-20T15:40:40.000411Z DEBUG StfBlueprint::apply_slot{context=Node da_height=249}: sov_chain_state: Setting next visible slot number next_visible_slot_number=245 +2026-04-20T15:40:40.006326Z DEBUG StfBlueprint::apply_slot{context=Node da_height=249}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x075f41d3ea71a028a88aeed6a86ef2a77d02836202d5ca00f7216f4a7945f9d9}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:40.008539Z DEBUG StfBlueprint::apply_slot{context=Node da_height=249}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6e0763328380eeb3f972c7d6d14c94879c4a2aae5281e28638e9a7a4256df41c7ee904e67e803ab9ef9cc600196058db40f53c8ea8e5849900dc21eb56ce3940 next_version=249 sesssion_starting_time=306.128µs +2026-04-20T15:40:40.016769Z DEBUG StfBlueprint::apply_slot{context=Node da_height=249}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3a2ac68825b6bbd4499001d844277868c70002468cbcac7c5d3d98431ef1020b1bf582ed5c444f66cc767be1bc6c320976c06d0066e68d2154072862ce6c8edc next_version=249 time=9.29641ms accesses_build_time=749.115µs finishing_session_time=8.109847ms +2026-04-20T15:40:40.017967Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6e0763328380eeb3f972c7d6d14c94879c4a2aae5281e28638e9a7a4256df41c7ee904e67e803ab9ef9cc600196058db40f53c8ea8e5849900dc21eb56ce3940" next_state_root="3a2ac68825b6bbd4499001d844277868c70002468cbcac7c5d3d98431ef1020b1bf582ed5c444f66cc767be1bc6c320976c06d0066e68d2154072862ce6c8edc" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:40:40.022434Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 249, latest_finalized_slot_number: 249, sync_status: Synced { synced_da_height: 248 }, .. } +2026-04-20T15:40:40.023802Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=245 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 249, latest_finalized_slot_number: 249, sync_status: Synced { synced_da_height: 248 }, .. } +2026-04-20T15:40:40.024694Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=245 +2026-04-20T15:40:40.027273Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:40:40.028213Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=241 +2026-04-20T15:40:40.030050Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=246 +2026-04-20T15:40:40.030970Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:40:40.032761Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=246 sequence_number=269 +2026-04-20T15:40:40.033027Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:40.033168Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=269 blob_id=2147898068535291381832659316581206105 visible_slot_number_after_increase=246 visible_slots_to_advance=1 +2026-04-20T15:40:40.038925Z DEBUG compute_state_update{scope="sequencer" rollup_height=246 slot_number=246}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:40:40.039253Z DEBUG compute_state_update{scope="sequencer" rollup_height=246 slot_number=246}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3a2ac68825b6bbd4499001d844277868c70002468cbcac7c5d3d98431ef1020b1bf582ed5c444f66cc767be1bc6c320976c06d0066e68d2154072862ce6c8edc next_version=250 sesssion_starting_time=2.100746ms +2026-04-20T15:40:40.039589Z DEBUG sov_stf_runner::runner: Block execution complete time=2.980962099s +2026-04-20T15:40:40.039671Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:40:40.040514Z DEBUG manage_blob_submission_inside_task{blob_id=2147898068535291381832659316581206105 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xbd9ddbd930218f318ea03a620680a44acfd26a5e1aa4985e94f6134b4a30772e sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=250 include_at=250 bytes=13 time=1.696599ms +2026-04-20T15:40:40.042090Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:40:40.042843Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:40:40.044402Z DEBUG compute_state_update{scope="sequencer" rollup_height=246 slot_number=246}: sov_state::nomt::prover_storage: computed next state root state_root=397d68ee9970a8a29dcc1e48755cd8c46c270e61d1338339ab4576f5053a6e69166a8ea3f7016faf40d80b1324ac3b9c5f582ac4168d9c0515126a999d820f79 next_version=250 time=7.637011ms accesses_build_time=379.938µs finishing_session_time=5.055567ms +2026-04-20T15:40:40.542785Z DEBUG sp1_core_executor_runner::native: CHILD sp1_R_nIUUG8R6-z3XgVtsE-wA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:40:40.586749Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:40:40.599155Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1941904 cycles +2026-04-20T15:40:40.601977Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [77, 253, 144, 26, 190, 122, 239, 115, 143, 95, 236, 106, 67, 216, 232, 134, 18, 195, 151, 249, 34, 226, 200, 219, 153, 139, 12, 204, 196, 157, 96, 215, 93, 169, 39, 6, 178, 241, 114, 241, 165, 52, 131, 200, 14, 82, 161, 24, 6, 164, 122, 103, 60, 170, 247, 35, 206, 0, 218, 83, 214, 31, 194, 22, 101, 128, 183, 210, 88, 248, 182, 164, 99, 91, 80, 255, 41, 22, 66, 181, 15, 81, 86, 38, 59, 107, 110, 220, 138, 183, 125, 37, 227, 110, 57, 79, 88, 52, 191, 145, 167, 41, 137, 68, 51, 134, 206, 19, 166, 225, 237, 49, 101, 56, 166, 254, 146, 229, 61, 59, 205, 53, 50, 66, 141, 248, 105, 253, 30, 184, 61, 88, 208, 115, 185, 58, 63, 44, 16, 30, 247, 84, 199, 2, 50, 15, 165, 162, 199, 192, 175, 55, 55, 24, 143, 34, 242, 20, 3, 244, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:40:41.287719Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:40:41.287801Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:40:42.991599Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=250 prev_hash=0xfc30872ed8e98673a42637a4c8d73996dfd1531418d94c1256b1dc3270787a1f hash=0xdc0921dfc6097e936d5a9e88d3a98d662fa6196e922b834a9f3479c14140dcea producing_time=3.15106ms +2026-04-20T15:40:43.002991Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=250 current_state_root="3a2ac68825b6bbd4499001d844277868c70002468cbcac7c5d3d98431ef1020b1bf582ed5c444f66cc767be1bc6c320976c06d0066e68d2154072862ce6c8edc" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xbd9ddbd930218f318ea03a620680a44acfd26a5e1aa4985e94f6134b4a30772e"] proof_blobs=[] +2026-04-20T15:40:43.011250Z DEBUG StfBlueprint::apply_slot{context=Node da_height=250}: sov_chain_state: Setting next visible slot number next_visible_slot_number=246 +2026-04-20T15:40:43.017170Z DEBUG StfBlueprint::apply_slot{context=Node da_height=250}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xbd9ddbd930218f318ea03a620680a44acfd26a5e1aa4985e94f6134b4a30772e}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:43.019385Z DEBUG StfBlueprint::apply_slot{context=Node da_height=250}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3a2ac68825b6bbd4499001d844277868c70002468cbcac7c5d3d98431ef1020b1bf582ed5c444f66cc767be1bc6c320976c06d0066e68d2154072862ce6c8edc next_version=250 sesssion_starting_time=310.828µs +2026-04-20T15:40:43.027009Z DEBUG StfBlueprint::apply_slot{context=Node da_height=250}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=397d68ee9970a8a29dcc1e48755cd8c46c270e61d1338339ab4576f5053a6e693ba3d5756eb500935468e4f706d4b318b8f6cd69657421491e671c810f5228b4 next_version=250 time=8.715713ms accesses_build_time=770.085µs finishing_session_time=7.497561ms +2026-04-20T15:40:43.028216Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="3a2ac68825b6bbd4499001d844277868c70002468cbcac7c5d3d98431ef1020b1bf582ed5c444f66cc767be1bc6c320976c06d0066e68d2154072862ce6c8edc" next_state_root="397d68ee9970a8a29dcc1e48755cd8c46c270e61d1338339ab4576f5053a6e693ba3d5756eb500935468e4f706d4b318b8f6cd69657421491e671c810f5228b4" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:40:43.032543Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 250, latest_finalized_slot_number: 250, sync_status: Syncing { synced_da_height: 249, target_da_height: 250 }, .. } +2026-04-20T15:40:43.033883Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=246 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 250, latest_finalized_slot_number: 250, sync_status: Syncing { synced_da_height: 249, target_da_height: 250 }, .. } +2026-04-20T15:40:43.034778Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=246 +2026-04-20T15:40:43.037210Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:40:43.038133Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=242 +2026-04-20T15:40:43.040083Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=247 +2026-04-20T15:40:43.041397Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:40:43.043126Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=247 sequence_number=270 +2026-04-20T15:40:43.043442Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:43.043518Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=270 blob_id=2147898072175357007805204045318081000 visible_slot_number_after_increase=247 visible_slots_to_advance=1 +2026-04-20T15:40:43.048420Z DEBUG compute_state_update{scope="sequencer" rollup_height=247 slot_number=247}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:40:43.048775Z DEBUG compute_state_update{scope="sequencer" rollup_height=247 slot_number=247}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=397d68ee9970a8a29dcc1e48755cd8c46c270e61d1338339ab4576f5053a6e693ba3d5756eb500935468e4f706d4b318b8f6cd69657421491e671c810f5228b4 next_version=251 sesssion_starting_time=878.394µs +2026-04-20T15:40:43.048919Z DEBUG sov_stf_runner::runner: Block execution complete time=3.009263036s +2026-04-20T15:40:43.048962Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:40:43.050904Z DEBUG manage_blob_submission_inside_task{blob_id=2147898072175357007805204045318081000 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xbc22096fff00eb69fbc23421ed965eca08f80679760ae5cda2a1e6c7b40ae216 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=251 include_at=251 bytes=13 time=1.630009ms +2026-04-20T15:40:43.051507Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:40:43.052312Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:40:43.054053Z DEBUG compute_state_update{scope="sequencer" rollup_height=247 slot_number=247}: sov_state::nomt::prover_storage: computed next state root state_root=2e3434441d1991a7ab2389c697c7d974c00f55bbedf9f78c3c72b95a5646efd4232c4e8260ac8a15f32b09cb3b8f42e07e8fbfe9133306a8733b394751126de9 next_version=251 time=6.547748ms accesses_build_time=385.828µs finishing_session_time=5.184616ms +2026-04-20T15:40:43.500183Z DEBUG sp1_core_executor_runner::native: CHILD sp1_Mfyv_-o6Tj23vQoBzCSkQA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:40:43.541383Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:40:43.553461Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1877033 cycles +2026-04-20T15:40:43.556223Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [54, 209, 52, 16, 61, 40, 16, 150, 90, 33, 9, 174, 203, 68, 86, 44, 188, 122, 197, 154, 116, 106, 96, 141, 178, 115, 80, 216, 211, 46, 199, 32, 43, 242, 125, 184, 96, 153, 175, 42, 145, 2, 80, 128, 151, 178, 174, 52, 65, 229, 71, 243, 52, 45, 245, 96, 66, 195, 63, 222, 135, 71, 195, 128, 90, 43, 161, 41, 123, 104, 106, 144, 91, 114, 134, 93, 222, 215, 179, 52, 174, 224, 250, 105, 0, 184, 162, 70, 21, 114, 203, 180, 150, 67, 62, 119, 52, 163, 149, 8, 23, 31, 7, 184, 253, 238, 48, 73, 210, 193, 195, 192, 12, 62, 57, 54, 3, 123, 61, 57, 194, 129, 77, 60, 217, 77, 157, 55, 27, 27, 222, 130, 125, 40, 3, 226, 190, 117, 176, 135, 171, 118, 110, 184, 192, 69, 237, 206, 226, 177, 83, 202, 171, 10, 114, 77, 207, 42, 106, 199, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:40:44.219690Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:40:44.219771Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:40:45.997362Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=251 prev_hash=0xdc0921dfc6097e936d5a9e88d3a98d662fa6196e922b834a9f3479c14140dcea hash=0xbe85bd0bad1b4476951a6483809d52dfe9c4429f966564a0cca14151ac1a6e7f producing_time=3.936894ms +2026-04-20T15:40:46.001690Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=251 current_state_root="397d68ee9970a8a29dcc1e48755cd8c46c270e61d1338339ab4576f5053a6e693ba3d5756eb500935468e4f706d4b318b8f6cd69657421491e671c810f5228b4" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xbc22096fff00eb69fbc23421ed965eca08f80679760ae5cda2a1e6c7b40ae216"] proof_blobs=[] +2026-04-20T15:40:46.010601Z DEBUG StfBlueprint::apply_slot{context=Node da_height=251}: sov_chain_state: Setting next visible slot number next_visible_slot_number=247 +2026-04-20T15:40:46.017013Z DEBUG StfBlueprint::apply_slot{context=Node da_height=251}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xbc22096fff00eb69fbc23421ed965eca08f80679760ae5cda2a1e6c7b40ae216}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:46.019446Z DEBUG StfBlueprint::apply_slot{context=Node da_height=251}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=397d68ee9970a8a29dcc1e48755cd8c46c270e61d1338339ab4576f5053a6e693ba3d5756eb500935468e4f706d4b318b8f6cd69657421491e671c810f5228b4 next_version=251 sesssion_starting_time=341.858µs +2026-04-20T15:40:46.027945Z DEBUG StfBlueprint::apply_slot{context=Node da_height=251}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=2e3434441d1991a7ab2389c697c7d974c00f55bbedf9f78c3c72b95a5646efd435e264294b202c20f77d071bb12547276014498ad121664d5d75c7585489c96e next_version=251 time=9.684887ms accesses_build_time=831.574µs finishing_session_time=8.357606ms +2026-04-20T15:40:46.029266Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="397d68ee9970a8a29dcc1e48755cd8c46c270e61d1338339ab4576f5053a6e693ba3d5756eb500935468e4f706d4b318b8f6cd69657421491e671c810f5228b4" next_state_root="2e3434441d1991a7ab2389c697c7d974c00f55bbedf9f78c3c72b95a5646efd435e264294b202c20f77d071bb12547276014498ad121664d5d75c7585489c96e" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:40:46.033414Z DEBUG sov_stf_runner::runner: Block execution complete time=2.984456756s +2026-04-20T15:40:46.033524Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:40:46.034356Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 251, latest_finalized_slot_number: 250, sync_status: Syncing { synced_da_height: 250, target_da_height: 251 }, .. } +2026-04-20T15:40:46.035875Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=247 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 251, latest_finalized_slot_number: 250, sync_status: Syncing { synced_da_height: 250, target_da_height: 251 }, .. } +2026-04-20T15:40:46.036272Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:40:46.036927Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=247 +2026-04-20T15:40:46.037129Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:40:46.039780Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:40:46.040816Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=243 +2026-04-20T15:40:46.042903Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=248 +2026-04-20T15:40:46.044174Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:40:46.045842Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=248 sequence_number=271 +2026-04-20T15:40:46.046139Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:46.046187Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=271 blob_id=2147898075804546418027662246738892608 visible_slot_number_after_increase=248 visible_slots_to_advance=1 +2026-04-20T15:40:46.050842Z DEBUG compute_state_update{scope="sequencer" rollup_height=248 slot_number=248}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e3434441d1991a7ab2389c697c7d974c00f55bbedf9f78c3c72b95a5646efd435e264294b202c20f77d071bb12547276014498ad121664d5d75c7585489c96e next_version=252 sesssion_starting_time=296.589µs +2026-04-20T15:40:46.054370Z DEBUG manage_blob_submission_inside_task{blob_id=2147898075804546418027662246738892608 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xaf242ad062baf2ae9ccce67a36fa25d6d9b46f2a65f613ea42eff78aa25db312 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=252 include_at=252 bytes=13 time=1.842797ms +2026-04-20T15:40:46.057365Z DEBUG compute_state_update{scope="sequencer" rollup_height=248 slot_number=248}: sov_state::nomt::prover_storage: computed next state root state_root=0441f55746c465fe17feb2741c68be58ef0b4bf209a5fbfa7730c23fe142c842194b7e709afcc3032dba27a4eda7fac6bc8f8ca4e71a56b3cfc0afcf46c803b5 next_version=252 time=7.242163ms accesses_build_time=411.138µs finishing_session_time=6.400858ms +2026-04-20T15:40:46.535478Z DEBUG sp1_core_executor_runner::native: CHILD sp1_9f0pU2TQSLq54xe2Yq4upw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:40:46.575730Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:40:46.589647Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1842611 cycles +2026-04-20T15:40:46.592482Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [79, 13, 1, 166, 40, 151, 190, 191, 115, 234, 213, 102, 92, 18, 122, 118, 28, 63, 253, 2, 128, 196, 170, 16, 230, 96, 181, 180, 172, 119, 124, 204, 104, 13, 42, 155, 86, 177, 158, 155, 45, 179, 49, 125, 104, 53, 213, 112, 238, 69, 21, 144, 204, 142, 58, 13, 80, 248, 227, 163, 193, 112, 220, 118, 32, 87, 79, 109, 55, 229, 232, 184, 108, 157, 72, 161, 198, 78, 2, 13, 90, 88, 96, 50, 28, 132, 222, 246, 105, 151, 88, 94, 61, 212, 109, 236, 119, 62, 163, 105, 78, 163, 203, 9, 197, 105, 245, 114, 167, 135, 160, 201, 205, 251, 23, 184, 224, 218, 71, 66, 52, 116, 161, 28, 119, 41, 187, 134, 45, 19, 156, 181, 191, 129, 209, 189, 13, 88, 118, 154, 77, 50, 179, 64, 11, 46, 41, 87, 44, 149, 24, 229, 250, 210, 218, 133, 224, 150, 118, 202, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:40:47.243895Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:40:47.243974Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:40:49.002386Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=252 prev_hash=0xbe85bd0bad1b4476951a6483809d52dfe9c4429f966564a0cca14151ac1a6e7f hash=0x1ab4244684c043d86b0324fa2059fb3463b928981cf566c33d782ff2736cb951 producing_time=3.00025ms +2026-04-20T15:40:49.006647Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=252 current_state_root="2e3434441d1991a7ab2389c697c7d974c00f55bbedf9f78c3c72b95a5646efd435e264294b202c20f77d071bb12547276014498ad121664d5d75c7585489c96e" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xaf242ad062baf2ae9ccce67a36fa25d6d9b46f2a65f613ea42eff78aa25db312"] proof_blobs=[] +2026-04-20T15:40:49.015402Z DEBUG StfBlueprint::apply_slot{context=Node da_height=252}: sov_chain_state: Setting next visible slot number next_visible_slot_number=248 +2026-04-20T15:40:49.021797Z DEBUG StfBlueprint::apply_slot{context=Node da_height=252}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xaf242ad062baf2ae9ccce67a36fa25d6d9b46f2a65f613ea42eff78aa25db312}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:49.024111Z DEBUG StfBlueprint::apply_slot{context=Node da_height=252}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=2e3434441d1991a7ab2389c697c7d974c00f55bbedf9f78c3c72b95a5646efd435e264294b202c20f77d071bb12547276014498ad121664d5d75c7585489c96e next_version=252 sesssion_starting_time=333.797µs +2026-04-20T15:40:49.032749Z DEBUG StfBlueprint::apply_slot{context=Node da_height=252}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=0441f55746c465fe17feb2741c68be58ef0b4bf209a5fbfa7730c23fe142c8423290d5032c928f865142302391446e7a7a8abe0eaee8f9ff1915032cfc08b293 next_version=252 time=9.769267ms accesses_build_time=784.645µs finishing_session_time=8.487885ms +2026-04-20T15:40:49.034108Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="397d68ee9970a8a29dcc1e48755cd8c46c270e61d1338339ab4576f5053a6e693ba3d5756eb500935468e4f706d4b318b8f6cd69657421491e671c810f5228b4" next_state_root="0441f55746c465fe17feb2741c68be58ef0b4bf209a5fbfa7730c23fe142c8423290d5032c928f865142302391446e7a7a8abe0eaee8f9ff1915032cfc08b293" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:40:49.038800Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 252, latest_finalized_slot_number: 251, sync_status: Syncing { synced_da_height: 251, target_da_height: 252 }, .. } +2026-04-20T15:40:49.040201Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=248 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 252, latest_finalized_slot_number: 251, sync_status: Syncing { synced_da_height: 251, target_da_height: 252 }, .. } +2026-04-20T15:40:49.041143Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=248 +2026-04-20T15:40:49.043847Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:40:49.045071Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=244 +2026-04-20T15:40:49.047202Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=249 +2026-04-20T15:40:49.048293Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:40:49.050086Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=249 sequence_number=272 +2026-04-20T15:40:49.050376Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:49.050503Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=272 blob_id=2147898079437352528554846872892476984 visible_slot_number_after_increase=249 visible_slots_to_advance=1 +2026-04-20T15:40:49.050827Z DEBUG sov_stf_runner::runner: Block execution complete time=3.017324253s +2026-04-20T15:40:49.050898Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:40:49.054031Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:40:49.054737Z DEBUG compute_state_update{scope="sequencer" rollup_height=249 slot_number=249}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:40:49.054905Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:40:49.055075Z DEBUG compute_state_update{scope="sequencer" rollup_height=249 slot_number=249}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0441f55746c465fe17feb2741c68be58ef0b4bf209a5fbfa7730c23fe142c8423290d5032c928f865142302391446e7a7a8abe0eaee8f9ff1915032cfc08b293 next_version=253 sesssion_starting_time=351.228µs +2026-04-20T15:40:49.058158Z DEBUG manage_blob_submission_inside_task{blob_id=2147898079437352528554846872892476984 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x07bc824c014675e9627d0ee89265341f0fee5244198e22db0bbcf664447d9624 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=253 include_at=253 bytes=13 time=1.831018ms +2026-04-20T15:40:49.060858Z DEBUG compute_state_update{scope="sequencer" rollup_height=249 slot_number=249}: sov_state::nomt::prover_storage: computed next state root state_root=6b6f9c8a8fd20837a866695561a5b8e0bca80667b0d9b957ab4c40c0940692690dc49dfa1324cc227d1fbff731334a6e476555b479c904d76acf5a463eadfcc6 next_version=253 time=6.556917ms accesses_build_time=415.477µs finishing_session_time=5.689604ms +2026-04-20T15:40:49.501175Z DEBUG sp1_core_executor_runner::native: CHILD sp1_4cKohL70QK2GTwgKJ6Zdfw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:40:49.543792Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:40:49.554780Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1922835 cycles +2026-04-20T15:40:49.557595Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [60, 141, 245, 131, 134, 179, 23, 76, 13, 203, 205, 158, 9, 48, 1, 239, 71, 250, 16, 79, 47, 86, 33, 55, 67, 20, 206, 3, 33, 20, 135, 241, 55, 242, 222, 236, 235, 118, 235, 61, 5, 70, 154, 166, 183, 4, 91, 80, 82, 13, 238, 56, 168, 188, 197, 128, 161, 130, 232, 222, 217, 97, 174, 49, 60, 142, 162, 131, 128, 64, 254, 103, 91, 27, 13, 88, 66, 171, 162, 37, 63, 114, 95, 239, 233, 198, 76, 155, 52, 78, 79, 243, 69, 70, 198, 21, 95, 196, 82, 176, 3, 176, 190, 181, 11, 73, 128, 39, 71, 177, 89, 103, 72, 119, 202, 174, 244, 235, 25, 170, 222, 237, 151, 199, 18, 179, 25, 215, 82, 5, 158, 99, 134, 167, 205, 174, 97, 116, 61, 148, 222, 156, 227, 136, 49, 225, 19, 178, 104, 11, 202, 184, 50, 68, 97, 71, 145, 247, 152, 151, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:40:50.238053Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:40:50.238131Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:40:52.009714Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=253 prev_hash=0x1ab4244684c043d86b0324fa2059fb3463b928981cf566c33d782ff2736cb951 hash=0x7d3189bea25cb43a0b5d641e5b1732ea75bfe1007dc9430f6802531456220e72 producing_time=5.833272ms +2026-04-20T15:40:52.013845Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=253 current_state_root="0441f55746c465fe17feb2741c68be58ef0b4bf209a5fbfa7730c23fe142c8423290d5032c928f865142302391446e7a7a8abe0eaee8f9ff1915032cfc08b293" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x07bc824c014675e9627d0ee89265341f0fee5244198e22db0bbcf664447d9624"] proof_blobs=[] +2026-04-20T15:40:52.021846Z DEBUG StfBlueprint::apply_slot{context=Node da_height=253}: sov_chain_state: Setting next visible slot number next_visible_slot_number=249 +2026-04-20T15:40:52.027767Z DEBUG StfBlueprint::apply_slot{context=Node da_height=253}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x07bc824c014675e9627d0ee89265341f0fee5244198e22db0bbcf664447d9624}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:52.029839Z DEBUG StfBlueprint::apply_slot{context=Node da_height=253}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=0441f55746c465fe17feb2741c68be58ef0b4bf209a5fbfa7730c23fe142c8423290d5032c928f865142302391446e7a7a8abe0eaee8f9ff1915032cfc08b293 next_version=253 sesssion_starting_time=229.308µs +2026-04-20T15:40:52.037925Z DEBUG StfBlueprint::apply_slot{context=Node da_height=253}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6b6f9c8a8fd20837a866695561a5b8e0bca80667b0d9b957ab4c40c0940692695a6b0f1b868df6103567f53c716f3490fa66490e02345d26ef3707561341d92c next_version=253 time=9.091011ms accesses_build_time=764.245µs finishing_session_time=7.941829ms +2026-04-20T15:40:52.039175Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="2e3434441d1991a7ab2389c697c7d974c00f55bbedf9f78c3c72b95a5646efd435e264294b202c20f77d071bb12547276014498ad121664d5d75c7585489c96e" next_state_root="6b6f9c8a8fd20837a866695561a5b8e0bca80667b0d9b957ab4c40c0940692695a6b0f1b868df6103567f53c716f3490fa66490e02345d26ef3707561341d92c" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:40:52.043875Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 253, latest_finalized_slot_number: 252, sync_status: Syncing { synced_da_height: 252, target_da_height: 253 }, .. } +2026-04-20T15:40:52.045277Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=249 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 253, latest_finalized_slot_number: 252, sync_status: Syncing { synced_da_height: 252, target_da_height: 253 }, .. } +2026-04-20T15:40:52.046219Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=249 +2026-04-20T15:40:52.048850Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:40:52.049840Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=245 +2026-04-20T15:40:52.051696Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=250 +2026-04-20T15:40:52.052719Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:40:52.054279Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=250 sequence_number=273 +2026-04-20T15:40:52.054556Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:52.054634Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=273 blob_id=2147898083068977497243642896366659075 visible_slot_number_after_increase=250 visible_slots_to_advance=1 +2026-04-20T15:40:52.056158Z DEBUG sov_stf_runner::runner: Block execution complete time=3.005273871s +2026-04-20T15:40:52.056209Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:40:52.057864Z DEBUG compute_state_update{scope="sequencer" rollup_height=250 slot_number=250}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:40:52.057997Z DEBUG compute_state_update{scope="sequencer" rollup_height=250 slot_number=250}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6b6f9c8a8fd20837a866695561a5b8e0bca80667b0d9b957ab4c40c0940692695a6b0f1b868df6103567f53c716f3490fa66490e02345d26ef3707561341d92c next_version=254 sesssion_starting_time=139.969µs +2026-04-20T15:40:52.060487Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:40:52.061561Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:40:52.061729Z DEBUG manage_blob_submission_inside_task{blob_id=2147898083068977497243642896366659075 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x1c28ff00bdb5998fc1671736d4c47f5852447d61d224c89290a5eebb09b47382 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=254 include_at=254 bytes=13 time=1.6169ms +2026-04-20T15:40:52.062876Z DEBUG compute_state_update{scope="sequencer" rollup_height=250 slot_number=250}: sov_state::nomt::prover_storage: computed next state root state_root=585a346453ddb9670e69e62bd6384f91b69997e9c19c4028a439a1898dd9b8981720849bc148eec3f0c4aec8d36faad124874a1efac001cdeebc82c706ccb97a next_version=254 time=5.182676ms accesses_build_time=161.179µs finishing_session_time=4.840059ms +2026-04-20T15:40:52.527444Z DEBUG sp1_core_executor_runner::native: CHILD sp1_1ZDpZq2XRtmfUVo3QCrhPg==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:40:52.571716Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:40:52.583865Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1995955 cycles +2026-04-20T15:40:52.586675Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [103, 182, 215, 121, 229, 80, 199, 190, 62, 94, 241, 192, 229, 50, 107, 99, 192, 121, 68, 89, 188, 47, 161, 128, 106, 216, 207, 150, 110, 20, 230, 242, 103, 48, 61, 75, 116, 192, 224, 186, 114, 127, 162, 250, 121, 133, 211, 215, 63, 89, 198, 48, 166, 153, 136, 72, 91, 102, 179, 212, 207, 253, 86, 25, 101, 39, 186, 212, 177, 16, 18, 143, 210, 202, 223, 101, 255, 213, 78, 185, 225, 227, 251, 184, 148, 249, 65, 232, 158, 42, 56, 241, 36, 186, 102, 10, 78, 91, 66, 202, 73, 46, 47, 22, 102, 158, 38, 236, 34, 116, 245, 32, 52, 252, 122, 96, 7, 6, 65, 217, 145, 181, 246, 240, 44, 173, 230, 250, 60, 34, 76, 139, 52, 215, 198, 44, 101, 176, 133, 109, 242, 203, 91, 42, 23, 135, 115, 168, 100, 97, 29, 118, 221, 255, 104, 105, 154, 174, 237, 76, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:40:53.297457Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:40:53.297535Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:40:55.015408Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=254 prev_hash=0x7d3189bea25cb43a0b5d641e5b1732ea75bfe1007dc9430f6802531456220e72 hash=0x2c7c92e73b1195657262eb6383a4cf7b28907a90005b9d15071df36eda3975fe producing_time=3.709166ms +2026-04-20T15:40:55.018512Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=254 current_state_root="6b6f9c8a8fd20837a866695561a5b8e0bca80667b0d9b957ab4c40c0940692695a6b0f1b868df6103567f53c716f3490fa66490e02345d26ef3707561341d92c" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x1c28ff00bdb5998fc1671736d4c47f5852447d61d224c89290a5eebb09b47382"] proof_blobs=[] +2026-04-20T15:40:55.027061Z DEBUG StfBlueprint::apply_slot{context=Node da_height=254}: sov_chain_state: Setting next visible slot number next_visible_slot_number=250 +2026-04-20T15:40:55.033264Z DEBUG StfBlueprint::apply_slot{context=Node da_height=254}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x1c28ff00bdb5998fc1671736d4c47f5852447d61d224c89290a5eebb09b47382}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:55.035564Z DEBUG StfBlueprint::apply_slot{context=Node da_height=254}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6b6f9c8a8fd20837a866695561a5b8e0bca80667b0d9b957ab4c40c0940692695a6b0f1b868df6103567f53c716f3490fa66490e02345d26ef3707561341d92c next_version=254 sesssion_starting_time=338.478µs +2026-04-20T15:40:55.042832Z DEBUG StfBlueprint::apply_slot{context=Node da_height=254}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=585a346453ddb9670e69e62bd6384f91b69997e9c19c4028a439a1898dd9b8986c0d9cc8899fd34003e965e302210fbd4ce01605818422d3b893cfedbca08f00 next_version=254 time=8.390396ms accesses_build_time=771.655µs finishing_session_time=7.137764ms +2026-04-20T15:40:55.044219Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="0441f55746c465fe17feb2741c68be58ef0b4bf209a5fbfa7730c23fe142c8423290d5032c928f865142302391446e7a7a8abe0eaee8f9ff1915032cfc08b293" next_state_root="585a346453ddb9670e69e62bd6384f91b69997e9c19c4028a439a1898dd9b8986c0d9cc8899fd34003e965e302210fbd4ce01605818422d3b893cfedbca08f00" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:40:55.049067Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 254, latest_finalized_slot_number: 254, sync_status: Syncing { synced_da_height: 253, target_da_height: 254 }, .. } +2026-04-20T15:40:55.050509Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=250 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 254, latest_finalized_slot_number: 254, sync_status: Syncing { synced_da_height: 253, target_da_height: 254 }, .. } +2026-04-20T15:40:55.051455Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=250 +2026-04-20T15:40:55.054074Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:40:55.055063Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=246 +2026-04-20T15:40:55.056669Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=251 +2026-04-20T15:40:55.057802Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:40:55.059501Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=251 sequence_number=274 +2026-04-20T15:40:55.059811Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=274 blob_id=2147898086701759481668095882204373730 visible_slot_number_after_increase=251 visible_slots_to_advance=1 +2026-04-20T15:40:55.059785Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:55.064946Z DEBUG compute_state_update{scope="sequencer" rollup_height=251 slot_number=251}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:40:55.065281Z DEBUG compute_state_update{scope="sequencer" rollup_height=251 slot_number=251}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=585a346453ddb9670e69e62bd6384f91b69997e9c19c4028a439a1898dd9b8986c0d9cc8899fd34003e965e302210fbd4ce01605818422d3b893cfedbca08f00 next_version=255 sesssion_starting_time=1.051533ms +2026-04-20T15:40:55.067128Z DEBUG manage_blob_submission_inside_task{blob_id=2147898086701759481668095882204373730 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x4069fa964e9e8fe626be24635ed81d4afa1a055444d5a7e31799f806a9d3ad5f sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=255 include_at=255 bytes=13 time=1.471721ms +2026-04-20T15:40:55.071296Z DEBUG compute_state_update{scope="sequencer" rollup_height=251 slot_number=251}: sov_state::nomt::prover_storage: computed next state root state_root=04eed5ea82b7b6da7ce664e9907e1b5fd2c4c9e79748eb5b667e493e7c04c0320e5f00780052996a154a371b581b98be1dead0c7d0262036b383ed4dbcf74373 next_version=255 time=7.463302ms accesses_build_time=388.208µs finishing_session_time=5.899552ms +2026-04-20T15:40:55.082691Z DEBUG sov_stf_runner::runner: Block execution complete time=3.026487055s +2026-04-20T15:40:55.082791Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:40:55.084012Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:40:55.084778Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:40:55.554166Z DEBUG sp1_core_executor_runner::native: CHILD sp1_a1zwE4k2TdKZtp-U0sDGYA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:40:55.624623Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:40:55.637384Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 4309214 cycles +2026-04-20T15:40:55.639956Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [67, 193, 16, 224, 146, 255, 5, 122, 212, 40, 212, 203, 166, 150, 180, 61, 81, 197, 118, 228, 238, 143, 208, 130, 65, 250, 236, 18, 219, 5, 174, 42, 62, 60, 90, 12, 238, 193, 42, 45, 52, 117, 222, 188, 125, 170, 95, 68, 106, 27, 58, 110, 207, 157, 201, 248, 204, 42, 46, 180, 159, 214, 216, 48, 15, 65, 22, 166, 231, 213, 124, 158, 152, 34, 233, 255, 232, 133, 33, 54, 76, 237, 104, 79, 11, 58, 35, 202, 25, 251, 169, 179, 223, 118, 15, 248, 37, 207, 178, 200, 129, 58, 232, 240, 81, 112, 138, 171, 207, 132, 231, 131, 73, 58, 196, 144, 23, 13, 33, 237, 89, 119, 179, 215, 131, 177, 67, 125, 108, 67, 127, 124, 247, 90, 248, 186, 18, 17, 59, 230, 191, 17, 55, 19, 242, 224, 200, 146, 219, 249, 147, 203, 115, 85, 63, 77, 225, 118, 27, 149, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:40:57.150261Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:40:57.150346Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:40:58.020503Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=255 prev_hash=0x2c7c92e73b1195657262eb6383a4cf7b28907a90005b9d15071df36eda3975fe hash=0x107b532975bf23baef41830c942ac4d44707ec85e2647764bff02370d09ad027 producing_time=3.02939ms +2026-04-20T15:40:58.025443Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=255 current_state_root="585a346453ddb9670e69e62bd6384f91b69997e9c19c4028a439a1898dd9b8986c0d9cc8899fd34003e965e302210fbd4ce01605818422d3b893cfedbca08f00" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x4069fa964e9e8fe626be24635ed81d4afa1a055444d5a7e31799f806a9d3ad5f"] proof_blobs=[] +2026-04-20T15:40:58.033565Z DEBUG StfBlueprint::apply_slot{context=Node da_height=255}: sov_chain_state: Setting next visible slot number next_visible_slot_number=251 +2026-04-20T15:40:58.039881Z DEBUG StfBlueprint::apply_slot{context=Node da_height=255}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x4069fa964e9e8fe626be24635ed81d4afa1a055444d5a7e31799f806a9d3ad5f}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:58.042104Z DEBUG StfBlueprint::apply_slot{context=Node da_height=255}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=585a346453ddb9670e69e62bd6384f91b69997e9c19c4028a439a1898dd9b8986c0d9cc8899fd34003e965e302210fbd4ce01605818422d3b893cfedbca08f00 next_version=255 sesssion_starting_time=302.458µs +2026-04-20T15:40:58.050393Z DEBUG StfBlueprint::apply_slot{context=Node da_height=255}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=04eed5ea82b7b6da7ce664e9907e1b5fd2c4c9e79748eb5b667e493e7c04c0321f9d235f68314af7b746ca2a0c80fb75271a25aef8e51267f56e7cd9bc2342f3 next_version=255 time=9.378389ms accesses_build_time=775.145µs finishing_session_time=8.168857ms +2026-04-20T15:40:58.051880Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="585a346453ddb9670e69e62bd6384f91b69997e9c19c4028a439a1898dd9b8986c0d9cc8899fd34003e965e302210fbd4ce01605818422d3b893cfedbca08f00" next_state_root="04eed5ea82b7b6da7ce664e9907e1b5fd2c4c9e79748eb5b667e493e7c04c0321f9d235f68314af7b746ca2a0c80fb75271a25aef8e51267f56e7cd9bc2342f3" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:40:58.057173Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 255, latest_finalized_slot_number: 255, sync_status: Syncing { synced_da_height: 254, target_da_height: 255 }, .. } +2026-04-20T15:40:58.058534Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=251 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 255, latest_finalized_slot_number: 255, sync_status: Syncing { synced_da_height: 254, target_da_height: 255 }, .. } +2026-04-20T15:40:58.059419Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=251 +2026-04-20T15:40:58.061825Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:40:58.062740Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=247 +2026-04-20T15:40:58.063852Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=252 +2026-04-20T15:40:58.064225Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:40:58.064938Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=252 sequence_number=275 +2026-04-20T15:40:58.065098Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:40:58.065378Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=275 blob_id=2147898090334629641664498924229683281 visible_slot_number_after_increase=252 visible_slots_to_advance=1 +2026-04-20T15:40:58.071335Z DEBUG manage_blob_submission_inside_task{blob_id=2147898090334629641664498924229683281 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x45e77961da4e13789d7a2d282e1a77e9bac9735dbdbdcbfd1f92afd129721c19 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=256 include_at=256 bytes=13 time=1.605359ms +2026-04-20T15:40:58.071914Z DEBUG compute_state_update{scope="sequencer" rollup_height=252 slot_number=252}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:40:58.072195Z DEBUG sov_stf_runner::runner: Block execution complete time=2.989415085s +2026-04-20T15:40:58.072238Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:40:58.072219Z DEBUG compute_state_update{scope="sequencer" rollup_height=252 slot_number=252}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=04eed5ea82b7b6da7ce664e9907e1b5fd2c4c9e79748eb5b667e493e7c04c0321f9d235f68314af7b746ca2a0c80fb75271a25aef8e51267f56e7cd9bc2342f3 next_version=256 sesssion_starting_time=3.986214ms +2026-04-20T15:40:58.074538Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:40:58.074895Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:40:58.078421Z DEBUG compute_state_update{scope="sequencer" rollup_height=252 slot_number=252}: sov_state::nomt::prover_storage: computed next state root state_root=52eaa80b922b77097be2071cbf4c707c8a2ac03b4da3811d3f9be23d216159636117c87e22d5ee2765c5aaead5252017f6f039bd5f9d863f5eec8fed143c0abd next_version=256 time=10.574271ms accesses_build_time=378.698µs finishing_session_time=6.114851ms +2026-04-20T15:40:58.563377Z DEBUG sp1_core_executor_runner::native: CHILD sp1__fhDuvQwSmS-hrNp9vQs0g==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:40:58.604082Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:40:58.616551Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1861781 cycles +2026-04-20T15:40:58.619343Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [110, 7, 99, 50, 131, 128, 238, 179, 249, 114, 199, 214, 209, 76, 148, 135, 156, 74, 42, 174, 82, 129, 226, 134, 56, 233, 167, 164, 37, 109, 244, 28, 126, 233, 4, 230, 126, 128, 58, 185, 239, 156, 198, 0, 25, 96, 88, 219, 64, 245, 60, 142, 168, 229, 132, 153, 0, 220, 33, 235, 86, 206, 57, 64, 106, 178, 221, 32, 16, 65, 20, 216, 136, 61, 228, 13, 136, 199, 89, 227, 145, 60, 99, 28, 66, 109, 151, 187, 14, 149, 253, 129, 219, 109, 4, 64, 32, 95, 164, 97, 18, 51, 37, 219, 248, 130, 178, 21, 247, 179, 235, 120, 124, 144, 121, 78, 25, 204, 135, 237, 250, 31, 209, 52, 31, 110, 94, 90, 252, 48, 135, 46, 216, 233, 134, 115, 164, 38, 55, 164, 200, 215, 57, 150, 223, 209, 83, 20, 24, 217, 76, 18, 86, 177, 220, 50, 112, 120, 122, 31, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:40:59.278681Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:40:59.278757Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:41:01.025400Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=256 prev_hash=0x107b532975bf23baef41830c942ac4d44707ec85e2647764bff02370d09ad027 hash=0x9547f51ed2ccc43a2ed6401ab8c8f282980493fe03c131067073819f9b5e7ea9 producing_time=3.372958ms +2026-04-20T15:41:01.035209Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=256 current_state_root="04eed5ea82b7b6da7ce664e9907e1b5fd2c4c9e79748eb5b667e493e7c04c0321f9d235f68314af7b746ca2a0c80fb75271a25aef8e51267f56e7cd9bc2342f3" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x45e77961da4e13789d7a2d282e1a77e9bac9735dbdbdcbfd1f92afd129721c19"] proof_blobs=[] +2026-04-20T15:41:01.046688Z DEBUG StfBlueprint::apply_slot{context=Node da_height=256}: sov_chain_state: Setting next visible slot number next_visible_slot_number=252 +2026-04-20T15:41:01.054765Z DEBUG StfBlueprint::apply_slot{context=Node da_height=256}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x45e77961da4e13789d7a2d282e1a77e9bac9735dbdbdcbfd1f92afd129721c19}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:41:01.057847Z DEBUG StfBlueprint::apply_slot{context=Node da_height=256}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=04eed5ea82b7b6da7ce664e9907e1b5fd2c4c9e79748eb5b667e493e7c04c0321f9d235f68314af7b746ca2a0c80fb75271a25aef8e51267f56e7cd9bc2342f3 next_version=256 sesssion_starting_time=379.888µs +2026-04-20T15:41:01.066949Z DEBUG StfBlueprint::apply_slot{context=Node da_height=256}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=52eaa80b922b77097be2071cbf4c707c8a2ac03b4da3811d3f9be23d2161596378b357bbb3be38443c1152ccf1c5d0f0eab4b951e4236808cfc21a3fdf9c1bcb next_version=256 time=10.585002ms accesses_build_time=1.057703ms finishing_session_time=8.927402ms +2026-04-20T15:41:01.068951Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="04eed5ea82b7b6da7ce664e9907e1b5fd2c4c9e79748eb5b667e493e7c04c0321f9d235f68314af7b746ca2a0c80fb75271a25aef8e51267f56e7cd9bc2342f3" next_state_root="52eaa80b922b77097be2071cbf4c707c8a2ac03b4da3811d3f9be23d2161596378b357bbb3be38443c1152ccf1c5d0f0eab4b951e4236808cfc21a3fdf9c1bcb" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:41:01.075188Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 256, latest_finalized_slot_number: 256, sync_status: Synced { synced_da_height: 255 }, .. } +2026-04-20T15:41:01.076612Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=252 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 256, latest_finalized_slot_number: 256, sync_status: Synced { synced_da_height: 255 }, .. } +2026-04-20T15:41:01.077556Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=252 +2026-04-20T15:41:01.080269Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:41:01.081369Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=248 +2026-04-20T15:41:01.083513Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=253 +2026-04-20T15:41:01.084678Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:41:01.086490Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=253 sequence_number=276 +2026-04-20T15:41:01.086758Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:41:01.086907Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=276 blob_id=2147898093988028576609398509278501416 visible_slot_number_after_increase=253 visible_slots_to_advance=1 +2026-04-20T15:41:01.088512Z DEBUG sov_stf_runner::runner: Block execution complete time=3.016280151s +2026-04-20T15:41:01.088582Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:41:01.090853Z DEBUG compute_state_update{scope="sequencer" rollup_height=253 slot_number=253}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:41:01.091173Z DEBUG compute_state_update{scope="sequencer" rollup_height=253 slot_number=253}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=52eaa80b922b77097be2071cbf4c707c8a2ac03b4da3811d3f9be23d2161596378b357bbb3be38443c1152ccf1c5d0f0eab4b951e4236808cfc21a3fdf9c1bcb next_version=257 sesssion_starting_time=324.578µs +2026-04-20T15:41:01.094174Z DEBUG manage_blob_submission_inside_task{blob_id=2147898093988028576609398509278501416 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xfb831fa8d807f545f8742c0be7927a989442b7df4dd8f867bfdd8a21a767d5c9 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=257 include_at=257 bytes=13 time=1.699749ms +2026-04-20T15:41:01.097548Z DEBUG compute_state_update{scope="sequencer" rollup_height=253 slot_number=253}: sov_state::nomt::prover_storage: computed next state root state_root=226051658c60268f429946c10bb76a3f6b4d87fcae401107dda385103eb725a8075ddd4ef827088433e17f91eb50610a9154a792ebecd7a6de24e5bcb38bbc73 next_version=257 time=7.059964ms accesses_build_time=367.928µs finishing_session_time=6.25675ms +2026-04-20T15:41:01.528831Z DEBUG sp1_core_executor_runner::native: CHILD sp1_cgmKAjIdTySb0JEpH_2tFw==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:41:01.567841Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:41:01.580671Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1803398 cycles +2026-04-20T15:41:01.583440Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [58, 42, 198, 136, 37, 182, 187, 212, 73, 144, 1, 216, 68, 39, 120, 104, 199, 0, 2, 70, 140, 188, 172, 124, 93, 61, 152, 67, 30, 241, 2, 11, 27, 245, 130, 237, 92, 68, 79, 102, 204, 118, 123, 225, 188, 108, 50, 9, 118, 192, 109, 0, 102, 230, 141, 33, 84, 7, 40, 98, 206, 108, 142, 220, 6, 88, 4, 71, 75, 250, 240, 225, 187, 71, 121, 165, 142, 41, 36, 9, 220, 131, 5, 187, 169, 32, 159, 59, 36, 38, 50, 199, 138, 163, 131, 132, 24, 8, 177, 240, 230, 237, 172, 214, 145, 226, 54, 197, 34, 200, 78, 34, 162, 105, 253, 242, 94, 230, 175, 196, 228, 213, 216, 47, 95, 233, 19, 79, 220, 9, 33, 223, 198, 9, 126, 147, 109, 90, 158, 136, 211, 169, 141, 102, 47, 166, 25, 110, 146, 43, 131, 74, 159, 52, 121, 193, 65, 64, 220, 234, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:41:02.229422Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:41:02.229499Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:41:02.327743Z  INFO sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:41:02.577738Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:41:02.580041Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 2607482 cycles +2026-04-20T15:41:02.580453Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [241, 0, 0, 0, 0, 0, 0, 0, 250, 0, 0, 0, 0, 0, 0, 0, 111, 13, 67, 146, 13, 22, 222, 158, 91, 230, 117, 181, 183, 109, 9, 225, 164, 29, 174, 206, 164, 16, 15, 139, 224, 215, 25, 82, 89, 94, 180, 222, 95, 202, 120, 56, 99, 192, 214, 218, 167, 125, 190, 242, 147, 31, 203, 179, 207, 6, 42, 55, 97, 127, 164, 8, 238, 174, 219, 25, 52, 151, 20, 15, 66, 234, 136, 18, 28, 46, 115, 44, 119, 145, 125, 235, 199, 33, 173, 161, 80, 65, 22, 68, 175, 50, 58, 191, 153, 193, 88, 32, 234, 253, 89, 142, 74, 193, 87, 149, 185, 61, 105, 12, 32, 21, 45, 96, 210, 143, 53, 185, 199, 121, 184, 226, 10, 34, 114, 170, 249, 13, 132, 250, 104, 22, 160, 149, 6, 88, 4, 71, 75, 250, 240, 225, 187, 71, 121, 165, 142, 41, 36, 9, 220, 131, 5, 187, 169, 32, 159, 59, 36, 38, 50, 199, 138, 163, 131, 132, 24, 8, 177, 240, 230, 237, 172, 214, 145, 226, 54, 197, 34, 200, 78, 34, 162, 105, 253, 242, 94, 230, 175, 196, 228, 213, 216, 47, 95, 233, 19, 79, 132, 141, 31, 182, 102, 70, 103, 206, 67, 212, 98, 206, 6, 30, 22, 217, 244, 138, 158, 218, 81, 202, 241, 166, 209, 8, 36, 219, 108, 96, 58, 5, 220, 9, 33, 223, 198, 9, 126, 147, 109, 90, 158, 136, 211, 169, 141, 102, 47, 166, 25, 110, 146, 43, 131, 74, 159, 52, 121, 193, 65, 64, 220, 234, 32, 0, 0, 0, 0, 0, 0, 0, 33, 87, 226, 242, 39, 49, 250, 210, 41, 143, 26, 188, 101, 19, 12, 136, 43, 105, 121, 236, 80, 118, 108, 155, 63, 154, 215, 73, 15, 107, 27, 67, 32, 0, 0, 0, 0, 0, 0, 0, 54, 246, 123, 188, 67, 61, 237, 103, 16, 229, 5, 146, 113, 8, 178, 215, 95, 95, 151, 239, 106, 28, 10, 135, 55, 55, 208, 95, 86, 190, 27, 9, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:41:03.542604Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:41:03.542683Z DEBUG execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:41:03.543590Z DEBUG sov_stf_runner::processes::zk_manager: Sending aggregated proof to DA bytes=1951 +2026-04-20T15:41:03.546250Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:41:03.546848Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:41:03.547215Z DEBUG sov_sequencer::preferred::preferred_blob_sender: Dispatching proof blob for publishing sequence_number=277 blob_id=2147898096958319450245837264364307745 +2026-04-20T15:41:04.030117Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=2 height=257 prev_hash=0x9547f51ed2ccc43a2ed6401ab8c8f282980493fe03c131067073819f9b5e7ea9 hash=0xb59b6234134d3a640c5846d7410e505f1135b512ab075806931b6b69fe92bc6a producing_time=2.932701ms +2026-04-20T15:41:04.031944Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=257 current_state_root="52eaa80b922b77097be2071cbf4c707c8a2ac03b4da3811d3f9be23d2161596378b357bbb3be38443c1152ccf1c5d0f0eab4b951e4236808cfc21a3fdf9c1bcb" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xfb831fa8d807f545f8742c0be7927a989442b7df4dd8f867bfdd8a21a767d5c9"] proof_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xfe38ddc858f35da56b44d74706a9821329e220eb7516ee4d8cbe5762ebf1589a, len=2001"] +2026-04-20T15:41:04.040588Z DEBUG StfBlueprint::apply_slot{context=Node da_height=257}: sov_chain_state: Setting next visible slot number next_visible_slot_number=253 +2026-04-20T15:41:04.047014Z DEBUG StfBlueprint::apply_slot{context=Node da_height=257}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xfb831fa8d807f545f8742c0be7927a989442b7df4dd8f867bfdd8a21a767d5c9}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:41:04.049572Z DEBUG StfBlueprint::apply_slot{context=Node da_height=257}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=52eaa80b922b77097be2071cbf4c707c8a2ac03b4da3811d3f9be23d2161596378b357bbb3be38443c1152ccf1c5d0f0eab4b951e4236808cfc21a3fdf9c1bcb next_version=257 sesssion_starting_time=334.148µs +2026-04-20T15:41:04.058673Z DEBUG StfBlueprint::apply_slot{context=Node da_height=257}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=226051658c60268f429946c10bb76a3f6b4d87fcae401107dda385103eb725a848c7652fb1962012134ad1b449f174ae9d0ee2dcd7504fd31b9d73962f309957 next_version=257 time=10.409033ms accesses_build_time=958.264µs finishing_session_time=8.963582ms +2026-04-20T15:41:04.060048Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="52eaa80b922b77097be2071cbf4c707c8a2ac03b4da3811d3f9be23d2161596378b357bbb3be38443c1152ccf1c5d0f0eab4b951e4236808cfc21a3fdf9c1bcb" next_state_root="226051658c60268f429946c10bb76a3f6b4d87fcae401107dda385103eb725a848c7652fb1962012134ad1b449f174ae9d0ee2dcd7504fd31b9d73962f309957" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:41:04.065067Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 257, latest_finalized_slot_number: 257, sync_status: Synced { synced_da_height: 256 }, .. } +2026-04-20T15:41:04.066463Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=253 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 257, latest_finalized_slot_number: 257, sync_status: Synced { synced_da_height: 256 }, .. } +2026-04-20T15:41:04.067361Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=253 +2026-04-20T15:41:04.069984Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:41:04.070939Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=249 +2026-04-20T15:41:04.073163Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=254 +2026-04-20T15:41:04.074503Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:41:04.078679Z DEBUG apply_batches_in_user_space{context=Sequencer}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 241. Final slot number 250 +2026-04-20T15:41:04.079440Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=254 sequence_number=278 +2026-04-20T15:41:04.079695Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:41:04.079813Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=278 blob_id=2147898097606282125556409604063202033 visible_slot_number_after_increase=254 visible_slots_to_advance=1 +2026-04-20T15:41:04.081046Z DEBUG sov_stf_runner::runner: Block execution complete time=2.992474045s +2026-04-20T15:41:04.081133Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:41:04.083359Z DEBUG compute_state_update{scope="sequencer" rollup_height=254 slot_number=254}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:41:04.083528Z DEBUG compute_state_update{scope="sequencer" rollup_height=254 slot_number=254}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=226051658c60268f429946c10bb76a3f6b4d87fcae401107dda385103eb725a848c7652fb1962012134ad1b449f174ae9d0ee2dcd7504fd31b9d73962f309957 next_version=258 sesssion_starting_time=174.219µs +2026-04-20T15:41:04.083534Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:41:04.084311Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:41:04.086850Z DEBUG manage_blob_submission_inside_task{blob_id=2147898097606282125556409604063202033 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x0a36e32abee5e6a79e5c4ead269de427d587e1c5366131520552f1ca45c49c97 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=258 include_at=258 bytes=13 time=1.47087ms +2026-04-20T15:41:04.089571Z DEBUG compute_state_update{scope="sequencer" rollup_height=254 slot_number=254}: sov_state::nomt::prover_storage: computed next state root state_root=06a88bb88efb9a90e7ecabbfb1921f3abab2adb0a87419eba76d8e7f4b50bc155a72f1f084afc9eb9cb6facf6c91b44c4a8c1bae2ffabebf2832df72ab21958e next_version=258 time=6.429378ms accesses_build_time=208.639µs finishing_session_time=6.000961ms +2026-04-20T15:41:07.027233Z DEBUG sp1_core_executor_runner::native: CHILD sp1_yBpkEPccTA2ZU-LtaSHvsQ==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:41:07.034968Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=258 prev_hash=0xb59b6234134d3a640c5846d7410e505f1135b512ab075806931b6b69fe92bc6a hash=0xa6d03633a1c8f30744eecd0475c2d0df068f8adc8e1278fb43b53a455d4d8694 producing_time=3.407628ms +2026-04-20T15:41:07.043969Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=258 current_state_root="226051658c60268f429946c10bb76a3f6b4d87fcae401107dda385103eb725a848c7652fb1962012134ad1b449f174ae9d0ee2dcd7504fd31b9d73962f309957" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x0a36e32abee5e6a79e5c4ead269de427d587e1c5366131520552f1ca45c49c97"] proof_blobs=[] +2026-04-20T15:41:07.053819Z DEBUG StfBlueprint::apply_slot{context=Node da_height=258}: sov_chain_state: Setting next visible slot number next_visible_slot_number=254 +2026-04-20T15:41:07.069890Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:41:07.072180Z DEBUG StfBlueprint::apply_slot{context=Node da_height=258}:apply_batches_in_user_space{context=Node}: sov_prover_incentives::capabilities: Aggrgeated proof sucesfullt verified and prover was rewarded. FinaInitial slot number 241. Final slot number 250 +2026-04-20T15:41:07.072672Z DEBUG StfBlueprint::apply_slot{context=Node da_height=258}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x0a36e32abee5e6a79e5c4ead269de427d587e1c5366131520552f1ca45c49c97}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=1 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:41:07.075361Z DEBUG StfBlueprint::apply_slot{context=Node da_height=258}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=226051658c60268f429946c10bb76a3f6b4d87fcae401107dda385103eb725a848c7652fb1962012134ad1b449f174ae9d0ee2dcd7504fd31b9d73962f309957 next_version=258 sesssion_starting_time=330.618µs +2026-04-20T15:41:07.082707Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1922311 cycles +2026-04-20T15:41:07.085439Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [57, 125, 104, 238, 153, 112, 168, 162, 157, 204, 30, 72, 117, 92, 216, 196, 108, 39, 14, 97, 209, 51, 131, 57, 171, 69, 118, 245, 5, 58, 110, 105, 59, 163, 213, 117, 110, 181, 0, 147, 84, 104, 228, 247, 6, 212, 179, 24, 184, 246, 205, 105, 101, 116, 33, 73, 30, 103, 28, 129, 15, 82, 40, 180, 17, 138, 91, 194, 13, 80, 213, 43, 130, 190, 36, 101, 176, 138, 9, 13, 144, 194, 56, 142, 198, 17, 245, 19, 30, 39, 114, 220, 146, 209, 254, 81, 23, 127, 94, 178, 167, 189, 39, 59, 63, 23, 17, 146, 15, 13, 100, 94, 15, 221, 240, 227, 1, 137, 59, 210, 191, 89, 60, 125, 205, 155, 99, 126, 190, 133, 189, 11, 173, 27, 68, 118, 149, 26, 100, 131, 128, 157, 82, 223, 233, 196, 66, 159, 150, 101, 100, 160, 204, 161, 65, 81, 172, 26, 110, 127, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:41:07.085639Z DEBUG StfBlueprint::apply_slot{context=Node da_height=258}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=06a88bb88efb9a90e7ecabbfb1921f3abab2adb0a87419eba76d8e7f4b50bc1504a717d2e4b6d00af68aa23edfab36a668c322aa1cb8603f180f0df73c50b9d5 next_version=258 time=11.699894ms accesses_build_time=1.078763ms finishing_session_time=10.146764ms +2026-04-20T15:41:07.087000Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="226051658c60268f429946c10bb76a3f6b4d87fcae401107dda385103eb725a848c7652fb1962012134ad1b449f174ae9d0ee2dcd7504fd31b9d73962f309957" next_state_root="06a88bb88efb9a90e7ecabbfb1921f3abab2adb0a87419eba76d8e7f4b50bc1504a717d2e4b6d00af68aa23edfab36a668c322aa1cb8603f180f0df73c50b9d5" aggregated_proofs=1 proof_receipts=1 +2026-04-20T15:41:07.093159Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 258, latest_finalized_slot_number: 258, sync_status: Syncing { synced_da_height: 257, target_da_height: 258 }, .. } +2026-04-20T15:41:07.094624Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=254 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 258, latest_finalized_slot_number: 258, sync_status: Syncing { synced_da_height: 257, target_da_height: 258 }, .. } +2026-04-20T15:41:07.095645Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=254 +2026-04-20T15:41:07.098304Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:41:07.099246Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=250 +2026-04-20T15:41:07.101500Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=255 +2026-04-20T15:41:07.102659Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:41:07.104387Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=255 sequence_number=279 +2026-04-20T15:41:07.104650Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:41:07.104789Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=279 blob_id=2147898101263322593870591364578609118 visible_slot_number_after_increase=255 visible_slots_to_advance=1 +2026-04-20T15:41:07.108864Z DEBUG sov_stf_runner::runner: Block execution complete time=3.027746726s +2026-04-20T15:41:07.108921Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:41:07.109052Z DEBUG compute_state_update{scope="sequencer" rollup_height=255 slot_number=255}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:41:07.109388Z DEBUG compute_state_update{scope="sequencer" rollup_height=255 slot_number=255}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=06a88bb88efb9a90e7ecabbfb1921f3abab2adb0a87419eba76d8e7f4b50bc1504a717d2e4b6d00af68aa23edfab36a668c322aa1cb8603f180f0df73c50b9d5 next_version=259 sesssion_starting_time=342.538µs +2026-04-20T15:41:07.111475Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:41:07.111687Z DEBUG manage_blob_submission_inside_task{blob_id=2147898101263322593870591364578609118 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x4629ad3fd75d65143c2623d70f8c7240b1d9c9561894ec471792d0ed9b1fbba9 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=259 include_at=259 bytes=13 time=1.48781ms +2026-04-20T15:41:07.112250Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:41:07.115380Z DEBUG compute_state_update{scope="sequencer" rollup_height=255 slot_number=255}: sov_state::nomt::prover_storage: computed next state root state_root=6189dc47527aa9dca82024717056c95f33b1fa1623d3efccf862e1de81c3674b2047d3ef9881ceaa65cc392ef0fda2fc97b9e53a2c016673cc07a82c4bca2806 next_version=259 time=6.722146ms accesses_build_time=376.307µs finishing_session_time=5.910911ms +2026-04-20T15:41:07.551304Z DEBUG sp1_core_executor_runner::native: CHILD sp1_52NgvpYYS_Kil9CWBtv31g==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:41:07.593339Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:41:07.605092Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1906685 cycles +2026-04-20T15:41:07.607907Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [46, 52, 52, 68, 29, 25, 145, 167, 171, 35, 137, 198, 151, 199, 217, 116, 192, 15, 85, 187, 237, 249, 247, 140, 60, 114, 185, 90, 86, 70, 239, 212, 53, 226, 100, 41, 75, 32, 44, 32, 247, 125, 7, 27, 177, 37, 71, 39, 96, 20, 73, 138, 209, 33, 102, 77, 93, 117, 199, 88, 84, 137, 201, 110, 63, 154, 48, 211, 248, 184, 52, 102, 164, 65, 157, 68, 145, 249, 143, 174, 219, 181, 221, 83, 16, 236, 241, 87, 72, 28, 179, 35, 101, 29, 222, 182, 122, 160, 150, 218, 165, 174, 110, 202, 85, 88, 200, 175, 139, 179, 9, 30, 16, 176, 3, 221, 187, 161, 151, 224, 148, 1, 52, 25, 70, 42, 219, 184, 26, 180, 36, 70, 132, 192, 67, 216, 107, 3, 36, 250, 32, 89, 251, 52, 99, 185, 40, 152, 28, 245, 102, 195, 61, 120, 47, 242, 115, 108, 185, 81, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:41:07.817188Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:41:07.817268Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:41:08.334685Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:41:08.334775Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:41:10.038562Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=259 prev_hash=0xa6d03633a1c8f30744eecd0475c2d0df068f8adc8e1278fb43b53a455d4d8694 hash=0x59d40ca105ad7985ccae2a5b5e67962f832c342cb86e71cabb0386d8238e1b3e producing_time=2.714662ms +2026-04-20T15:41:10.041677Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=259 current_state_root="06a88bb88efb9a90e7ecabbfb1921f3abab2adb0a87419eba76d8e7f4b50bc1504a717d2e4b6d00af68aa23edfab36a668c322aa1cb8603f180f0df73c50b9d5" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x4629ad3fd75d65143c2623d70f8c7240b1d9c9561894ec471792d0ed9b1fbba9"] proof_blobs=[] +2026-04-20T15:41:10.050812Z DEBUG StfBlueprint::apply_slot{context=Node da_height=259}: sov_chain_state: Setting next visible slot number next_visible_slot_number=255 +2026-04-20T15:41:10.057192Z DEBUG StfBlueprint::apply_slot{context=Node da_height=259}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x4629ad3fd75d65143c2623d70f8c7240b1d9c9561894ec471792d0ed9b1fbba9}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:41:10.059550Z DEBUG StfBlueprint::apply_slot{context=Node da_height=259}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=06a88bb88efb9a90e7ecabbfb1921f3abab2adb0a87419eba76d8e7f4b50bc1504a717d2e4b6d00af68aa23edfab36a668c322aa1cb8603f180f0df73c50b9d5 next_version=259 sesssion_starting_time=337.088µs +2026-04-20T15:41:10.067483Z DEBUG StfBlueprint::apply_slot{context=Node da_height=259}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=6189dc47527aa9dca82024717056c95f33b1fa1623d3efccf862e1de81c3674b42b44d0047f40cbb64b1437e0a7512b66c72a2bc1bcfdb99fffdb7034573a127 next_version=259 time=9.046422ms accesses_build_time=764.355µs finishing_session_time=7.800319ms +2026-04-20T15:41:10.068832Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="06a88bb88efb9a90e7ecabbfb1921f3abab2adb0a87419eba76d8e7f4b50bc1504a717d2e4b6d00af68aa23edfab36a668c322aa1cb8603f180f0df73c50b9d5" next_state_root="6189dc47527aa9dca82024717056c95f33b1fa1623d3efccf862e1de81c3674b42b44d0047f40cbb64b1437e0a7512b66c72a2bc1bcfdb99fffdb7034573a127" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:41:10.073515Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 259, latest_finalized_slot_number: 259, sync_status: Synced { synced_da_height: 258 }, .. } +2026-04-20T15:41:10.074891Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=255 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 259, latest_finalized_slot_number: 259, sync_status: Synced { synced_da_height: 258 }, .. } +2026-04-20T15:41:10.075835Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=255 +2026-04-20T15:41:10.078388Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:41:10.079383Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=251 +2026-04-20T15:41:10.081248Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=256 +2026-04-20T15:41:10.082386Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:41:10.084050Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=256 sequence_number=280 +2026-04-20T15:41:10.084330Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=280 blob_id=2147898104864667435042593903116312976 visible_slot_number_after_increase=256 visible_slots_to_advance=1 +2026-04-20T15:41:10.084337Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:41:10.091517Z DEBUG manage_blob_submission_inside_task{blob_id=2147898104864667435042593903116312976 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x322eaa587baa55ca58f14a20bb5738b8355a6e34803e742d9318c1b3380821a3 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=260 include_at=260 bytes=13 time=1.424241ms +2026-04-20T15:41:10.091981Z DEBUG compute_state_update{scope="sequencer" rollup_height=256 slot_number=256}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:41:10.092354Z DEBUG sov_stf_runner::runner: Block execution complete time=2.983441653s +2026-04-20T15:41:10.092343Z DEBUG compute_state_update{scope="sequencer" rollup_height=256 slot_number=256}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6189dc47527aa9dca82024717056c95f33b1fa1623d3efccf862e1de81c3674b42b44d0047f40cbb64b1437e0a7512b66c72a2bc1bcfdb99fffdb7034573a127 next_version=260 sesssion_starting_time=4.468941ms +2026-04-20T15:41:10.092415Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:41:10.094864Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:41:10.095467Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:41:10.098021Z DEBUG compute_state_update{scope="sequencer" rollup_height=256 slot_number=256}: sov_state::nomt::prover_storage: computed next state root state_root=7b666ad10263d7eef63dae68abb99cc0f0193e7ec96d921fbd3e5ca0d2a9b0951e0664b1995f0838b82736384b006b0d893772b3ae44245836b16514aeff15f1 next_version=260 time=10.400883ms accesses_build_time=217.229µs finishing_session_time=5.590724ms +2026-04-20T15:41:10.605056Z DEBUG sp1_core_executor_runner::native: CHILD sp1_gc8WcIC9QSOZeNFv0Apa4Q==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:41:10.647273Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:41:10.659386Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1893600 cycles +2026-04-20T15:41:10.662086Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [4, 65, 245, 87, 70, 196, 101, 254, 23, 254, 178, 116, 28, 104, 190, 88, 239, 11, 75, 242, 9, 165, 251, 250, 119, 48, 194, 63, 225, 66, 200, 66, 50, 144, 213, 3, 44, 146, 143, 134, 81, 66, 48, 35, 145, 68, 110, 122, 122, 138, 190, 14, 174, 232, 249, 255, 25, 21, 3, 44, 252, 8, 178, 147, 119, 2, 155, 159, 121, 126, 244, 123, 121, 181, 164, 247, 125, 238, 121, 119, 240, 243, 184, 165, 215, 160, 52, 96, 96, 250, 38, 119, 250, 7, 209, 242, 36, 100, 25, 206, 168, 28, 48, 105, 135, 126, 67, 185, 206, 44, 16, 54, 118, 110, 62, 222, 238, 41, 193, 187, 234, 71, 35, 45, 15, 200, 133, 200, 125, 49, 137, 190, 162, 92, 180, 58, 11, 93, 100, 30, 91, 23, 50, 234, 117, 191, 225, 0, 125, 201, 67, 15, 104, 2, 83, 20, 86, 34, 14, 114, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:41:11.331292Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:41:11.331380Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:41:13.043493Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=260 prev_hash=0x59d40ca105ad7985ccae2a5b5e67962f832c342cb86e71cabb0386d8238e1b3e hash=0x27a95e8e850daa1182da194fb7e45fa588a185c4cfb7f5c335cebdcc2a3d19b9 producing_time=3.06824ms +2026-04-20T15:41:13.054437Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=260 current_state_root="6189dc47527aa9dca82024717056c95f33b1fa1623d3efccf862e1de81c3674b42b44d0047f40cbb64b1437e0a7512b66c72a2bc1bcfdb99fffdb7034573a127" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x322eaa587baa55ca58f14a20bb5738b8355a6e34803e742d9318c1b3380821a3"] proof_blobs=[] +2026-04-20T15:41:13.063457Z DEBUG StfBlueprint::apply_slot{context=Node da_height=260}: sov_chain_state: Setting next visible slot number next_visible_slot_number=256 +2026-04-20T15:41:13.069784Z DEBUG StfBlueprint::apply_slot{context=Node da_height=260}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x322eaa587baa55ca58f14a20bb5738b8355a6e34803e742d9318c1b3380821a3}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:41:13.072159Z DEBUG StfBlueprint::apply_slot{context=Node da_height=260}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=6189dc47527aa9dca82024717056c95f33b1fa1623d3efccf862e1de81c3674b42b44d0047f40cbb64b1437e0a7512b66c72a2bc1bcfdb99fffdb7034573a127 next_version=260 sesssion_starting_time=332.307µs +2026-04-20T15:41:13.080637Z DEBUG StfBlueprint::apply_slot{context=Node da_height=260}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=7b666ad10263d7eef63dae68abb99cc0f0193e7ec96d921fbd3e5ca0d2a9b0950cb60e7d549ae55f54e0eb552c9372cab3c577e4d17104b2411284b2794bdcb8 next_version=260 time=9.617977ms accesses_build_time=792.435µs finishing_session_time=8.333886ms +2026-04-20T15:41:13.081986Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="6189dc47527aa9dca82024717056c95f33b1fa1623d3efccf862e1de81c3674b42b44d0047f40cbb64b1437e0a7512b66c72a2bc1bcfdb99fffdb7034573a127" next_state_root="7b666ad10263d7eef63dae68abb99cc0f0193e7ec96d921fbd3e5ca0d2a9b0950cb60e7d549ae55f54e0eb552c9372cab3c577e4d17104b2411284b2794bdcb8" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:41:13.086814Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 260, latest_finalized_slot_number: 260, sync_status: Syncing { synced_da_height: 259, target_da_height: 260 }, .. } +2026-04-20T15:41:13.088217Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=256 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 260, latest_finalized_slot_number: 260, sync_status: Syncing { synced_da_height: 259, target_da_height: 260 }, .. } +2026-04-20T15:41:13.089163Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=256 +2026-04-20T15:41:13.092089Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:41:13.093077Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=252 +2026-04-20T15:41:13.094946Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=257 +2026-04-20T15:41:13.096074Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:41:13.097671Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=257 sequence_number=281 +2026-04-20T15:41:13.097939Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:41:13.097993Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=281 blob_id=2147898108508411177038508707523558872 visible_slot_number_after_increase=257 visible_slots_to_advance=1 +2026-04-20T15:41:13.102352Z DEBUG compute_state_update{scope="sequencer" rollup_height=257 slot_number=257}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:41:13.102426Z DEBUG sov_stf_runner::runner: Block execution complete time=3.010022132s +2026-04-20T15:41:13.102505Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:41:13.102718Z DEBUG compute_state_update{scope="sequencer" rollup_height=257 slot_number=257}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7b666ad10263d7eef63dae68abb99cc0f0193e7ec96d921fbd3e5ca0d2a9b0950cb60e7d549ae55f54e0eb552c9372cab3c577e4d17104b2411284b2794bdcb8 next_version=261 sesssion_starting_time=373.077µs +2026-04-20T15:41:13.105020Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:41:13.105230Z DEBUG manage_blob_submission_inside_task{blob_id=2147898108508411177038508707523558872 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x7639a3f16e7aff83a5f477288ab251c172d4c4e16f891f167819ae69ce2a4b3b sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=261 include_at=261 bytes=13 time=1.51636ms +2026-04-20T15:41:13.105870Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:41:13.108707Z DEBUG compute_state_update{scope="sequencer" rollup_height=257 slot_number=257}: sov_state::nomt::prover_storage: computed next state root state_root=730c956c58871b185b4b77ea899c5afbf36ad28c326cad4d307ac7be8c8c19732c6d5e63f179247851823dc7fdf0adc90112c136c241c475feae4f858a8014ca next_version=261 time=6.785097ms accesses_build_time=414.008µs finishing_session_time=5.901212ms +2026-04-20T15:41:13.555041Z DEBUG sp1_core_executor_runner::native: CHILD sp1_jocs8ITISYyltqLaDdF62A==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:41:13.597541Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:41:13.609365Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1907773 cycles +2026-04-20T15:41:13.611974Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [107, 111, 156, 138, 143, 210, 8, 55, 168, 102, 105, 85, 97, 165, 184, 224, 188, 168, 6, 103, 176, 217, 185, 87, 171, 76, 64, 192, 148, 6, 146, 105, 90, 107, 15, 27, 134, 141, 246, 16, 53, 103, 245, 60, 113, 111, 52, 144, 250, 102, 73, 14, 2, 52, 93, 38, 239, 55, 7, 86, 19, 65, 217, 44, 123, 208, 142, 23, 229, 216, 54, 124, 128, 195, 244, 31, 69, 181, 98, 165, 83, 214, 91, 130, 140, 208, 12, 213, 173, 147, 234, 112, 197, 124, 30, 41, 69, 208, 108, 191, 207, 12, 160, 116, 70, 84, 98, 25, 18, 97, 215, 55, 98, 253, 250, 122, 114, 84, 182, 134, 53, 105, 109, 61, 252, 182, 227, 59, 44, 124, 146, 231, 59, 17, 149, 101, 114, 98, 235, 99, 131, 164, 207, 123, 40, 144, 122, 144, 0, 91, 157, 21, 7, 29, 243, 110, 218, 57, 117, 254, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:41:14.289193Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:41:14.289272Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:41:16.048458Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=261 prev_hash=0x27a95e8e850daa1182da194fb7e45fa588a185c4cfb7f5c335cebdcc2a3d19b9 hash=0x4c52fcee1b9b816439e743d4c4910ff843bbf5840120ee51274fb3adfd763ab9 producing_time=2.811741ms +2026-04-20T15:41:16.055704Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=261 current_state_root="7b666ad10263d7eef63dae68abb99cc0f0193e7ec96d921fbd3e5ca0d2a9b0950cb60e7d549ae55f54e0eb552c9372cab3c577e4d17104b2411284b2794bdcb8" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0x7639a3f16e7aff83a5f477288ab251c172d4c4e16f891f167819ae69ce2a4b3b"] proof_blobs=[] +2026-04-20T15:41:16.064406Z DEBUG StfBlueprint::apply_slot{context=Node da_height=261}: sov_chain_state: Setting next visible slot number next_visible_slot_number=257 +2026-04-20T15:41:16.070548Z DEBUG StfBlueprint::apply_slot{context=Node da_height=261}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0x7639a3f16e7aff83a5f477288ab251c172d4c4e16f891f167819ae69ce2a4b3b}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:41:16.072871Z DEBUG StfBlueprint::apply_slot{context=Node da_height=261}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=7b666ad10263d7eef63dae68abb99cc0f0193e7ec96d921fbd3e5ca0d2a9b0950cb60e7d549ae55f54e0eb552c9372cab3c577e4d17104b2411284b2794bdcb8 next_version=261 sesssion_starting_time=323.238µs +2026-04-20T15:41:16.080555Z DEBUG StfBlueprint::apply_slot{context=Node da_height=261}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=730c956c58871b185b4b77ea899c5afbf36ad28c326cad4d307ac7be8c8c1973580498f615f2be827fbcd6e94efbf80af911410f1e410ffbfba44e64dcba45bb next_version=261 time=8.810823ms accesses_build_time=791.785µs finishing_session_time=7.54762ms +2026-04-20T15:41:16.081824Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="7b666ad10263d7eef63dae68abb99cc0f0193e7ec96d921fbd3e5ca0d2a9b0950cb60e7d549ae55f54e0eb552c9372cab3c577e4d17104b2411284b2794bdcb8" next_state_root="730c956c58871b185b4b77ea899c5afbf36ad28c326cad4d307ac7be8c8c1973580498f615f2be827fbcd6e94efbf80af911410f1e410ffbfba44e64dcba45bb" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:41:16.085839Z DEBUG sov_stf_runner::runner: Block execution complete time=2.983347854s +2026-04-20T15:41:16.085937Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:41:16.087164Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 261, latest_finalized_slot_number: 260, sync_status: Syncing { synced_da_height: 260, target_da_height: 261 }, .. } +2026-04-20T15:41:16.089055Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=257 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 261, latest_finalized_slot_number: 260, sync_status: Syncing { synced_da_height: 260, target_da_height: 261 }, .. } +2026-04-20T15:41:16.089823Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:41:16.090094Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=257 +2026-04-20T15:41:16.090644Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:41:16.093018Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:41:16.093994Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=253 +2026-04-20T15:41:16.095741Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=258 +2026-04-20T15:41:16.096771Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:41:16.098272Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=258 sequence_number=282 +2026-04-20T15:41:16.098553Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:41:16.098611Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=282 blob_id=2147898112136401432689606285190585086 visible_slot_number_after_increase=258 visible_slots_to_advance=1 +2026-04-20T15:41:16.103195Z DEBUG compute_state_update{scope="sequencer" rollup_height=258 slot_number=258}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=730c956c58871b185b4b77ea899c5afbf36ad28c326cad4d307ac7be8c8c1973580498f615f2be827fbcd6e94efbf80af911410f1e410ffbfba44e64dcba45bb next_version=262 sesssion_starting_time=318.928µs +2026-04-20T15:41:16.106144Z DEBUG manage_blob_submission_inside_task{blob_id=2147898112136401432689606285190585086 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0xc4286d656d8300fde9837eda16a5abf04371b061555884ef5640c75d30736301 sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=262 include_at=262 bytes=13 time=1.835939ms +2026-04-20T15:41:16.108756Z DEBUG compute_state_update{scope="sequencer" rollup_height=258 slot_number=258}: sov_state::nomt::prover_storage: computed next state root state_root=3af044222646352e18880906e11325a5c800e052c91a0cb98f15c70d59b70b0b6a20e8259c205affde62821af6d680726b341874d125ef31ac8a5da8b7f95fce next_version=262 time=6.338649ms accesses_build_time=444.847µs finishing_session_time=5.416435ms +2026-04-20T15:41:16.581352Z DEBUG sp1_core_executor_runner::native: CHILD sp1_6xQOCeb7Rui-WWUJOi7qnA==: stderr: WARNING: Using insecure random number generator. +2026-04-20T15:41:16.622565Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Received gas handle num_gas_handles=0 +2026-04-20T15:41:16.635367Z DEBUG sp1_prover::worker::prover::execute: minimal executor finished in 1875068 cycles +2026-04-20T15:41:16.638074Z  INFO sp1_prover::worker::prover::execute: public_value_stream: [88, 90, 52, 100, 83, 221, 185, 103, 14, 105, 230, 43, 214, 56, 79, 145, 182, 153, 151, 233, 193, 156, 64, 40, 164, 57, 161, 137, 141, 217, 184, 152, 108, 13, 156, 200, 137, 159, 211, 64, 3, 233, 101, 227, 2, 33, 15, 189, 76, 224, 22, 5, 129, 132, 34, 211, 184, 147, 207, 237, 188, 160, 143, 0, 9, 45, 0, 34, 167, 134, 155, 163, 234, 165, 241, 237, 233, 167, 204, 87, 235, 157, 208, 233, 207, 252, 53, 255, 124, 235, 172, 194, 64, 4, 79, 199, 126, 217, 107, 39, 32, 77, 245, 255, 171, 242, 154, 165, 162, 48, 73, 39, 205, 7, 187, 190, 161, 215, 137, 85, 185, 67, 254, 81, 125, 57, 43, 237, 16, 123, 83, 41, 117, 191, 35, 186, 239, 65, 131, 12, 148, 42, 196, 212, 71, 7, 236, 133, 226, 100, 119, 100, 191, 240, 35, 112, 208, 154, 208, 39, 0, 0, 0, 0, 248, 173, 36, 55, 162, 121, 225, 200, 147, 44, 7, 53, 140, 145, 220, 79, 227, 72, 100, 169, 140, 108, 37, 242, 152, 226, 160, 25] +2026-04-20T15:41:17.304759Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: Gas task finished. num_gas_handles=0 +2026-04-20T15:41:17.304844Z DEBUG guest_execution:execute_program:report_accumulator: sp1_prover::worker::prover::execute: No more gas handles to receive +2026-04-20T15:41:19.053001Z DEBUG init_blueprint:periodic_batch_producer: sov_mock_da::storable::layer: New block has been produced blobs_count=1 height=262 prev_hash=0x4c52fcee1b9b816439e743d4c4910ff843bbf5840120ee51274fb3adfd763ab9 hash=0xbabccef8b6456671ff88fcfe8fd613effa2fc99a1059b83813f07851989c64dc producing_time=3.281919ms +2026-04-20T15:41:19.059366Z DEBUG sov_stf_runner::runner: Extracted relevant blobs batch_blobs_count=1 next_da_height=262 current_state_root="730c956c58871b185b4b77ea899c5afbf36ad28c326cad4d307ac7be8c8c1973580498f615f2be827fbcd6e94efbf80af911410f1e410ffbfba44e64dcba45bb" batch_blobs=["sequencer=0x0000000000000000000000000000000000000000000000000000000000000000 blob_hash=0xc4286d656d8300fde9837eda16a5abf04371b061555884ef5640c75d30736301"] proof_blobs=[] +2026-04-20T15:41:19.067839Z DEBUG StfBlueprint::apply_slot{context=Node da_height=262}: sov_chain_state: Setting next visible slot number next_visible_slot_number=258 +2026-04-20T15:41:19.074062Z DEBUG StfBlueprint::apply_slot{context=Node da_height=262}:apply_batches_in_user_space{context=Node}:StfBlueprint::apply_batch{context=Node}:batch{batch_id=0xc4286d656d8300fde9837eda16a5abf04371b061555884ef5640c75d30736301}: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:41:19.076368Z DEBUG StfBlueprint::apply_slot{context=Node da_height=262}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=730c956c58871b185b4b77ea899c5afbf36ad28c326cad4d307ac7be8c8c1973580498f615f2be827fbcd6e94efbf80af911410f1e410ffbfba44e64dcba45bb next_version=262 sesssion_starting_time=344.508µs +2026-04-20T15:41:19.083752Z DEBUG StfBlueprint::apply_slot{context=Node da_height=262}:StfBlueprint::materialize_slot:compute_state_root{scope="node"}: sov_state::nomt::prover_storage: computed next state root state_root=3af044222646352e18880906e11325a5c800e052c91a0cb98f15c70d59b70b0b5dd65d02dd349d7276f88da86a36f882919ab259bb3212cbde83b894f3bd52c9 next_version=262 time=8.527315ms accesses_build_time=785.635µs finishing_session_time=7.247623ms +2026-04-20T15:41:19.085094Z DEBUG sov_stf_runner::state_manager: Saving changes after applying slot current_state_root="7b666ad10263d7eef63dae68abb99cc0f0193e7ec96d921fbd3e5ca0d2a9b0950cb60e7d549ae55f54e0eb552c9372cab3c577e4d17104b2411284b2794bdcb8" next_state_root="3af044222646352e18880906e11325a5c800e052c91a0cb98f15c70d59b70b0b5dd65d02dd349d7276f88da86a36f882919ab259bb3212cbde83b894f3bd52c9" aggregated_proofs=0 proof_receipts=0 +2026-04-20T15:41:19.090115Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Processing state update info from update_state info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 262, latest_finalized_slot_number: 261, sync_status: Syncing { synced_da_height: 261, target_da_height: 262 }, .. } +2026-04-20T15:41:19.091663Z DEBUG sov_sequencer::preferred::sync_sequencer_state::conditions_table: Skipping `replay_soft_confirmations_on_top_of_node_state`. Fast tracking info initial_status=InitialStatus { is_startup: false, is_resync: false, is_recover: false } rollup_height=258 info=StateUpdateInfo { next_event_number: 0, next_tx_number: 0, slot_number: 262, latest_finalized_slot_number: 261, sync_status: Syncing { synced_da_height: 261, target_da_height: 262 }, .. } +2026-04-20T15:41:19.092601Z DEBUG sov_sequencer::preferred::sync_sequencer_state::sync_state: Storage has been replaced new_rollup_height=258 +2026-04-20T15:41:19.095134Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: No in-progress batch, starting a new one visible_increase=1 +2026-04-20T15:41:19.096168Z DEBUG sov_sequencer::preferred::block_executor: Fetching state root for height, if necessary height=254 +2026-04-20T15:41:19.097826Z DEBUG sov_chain_state: Setting next visible slot number next_visible_slot_number=259 +2026-04-20T15:41:19.098701Z DEBUG sov_sequencer::preferred::block_executor: Extracted non-preferred blobs count=0 +2026-04-20T15:41:19.100185Z DEBUG sov_sequencer::preferred::sync_sequencer_state::inner: Sequencer created a new batch visible_increase=1 visible_slot_number_after_increase=259 sequence_number=283 +2026-04-20T15:41:19.100438Z DEBUG apply_batches_in_user_space{context=Sequencer}:StfBlueprint::apply_batch{context=Sequencer}:sequencer-batch: sov_modules_stf_blueprint::sequencer_mode::common: Applied blob and got the sequencer outcome blob_idx=0 num_txs=0 num_ignored_txs=0 sequencer_outcome={ da_address: 0x0000000000000000000000000000000000000000000000000000000000000000, gas_price: GasPrice[7, 7], gas_used: GasUnit[0, 0], outcome: { rewards: 0 } } +2026-04-20T15:41:19.100516Z DEBUG start_batch: sov_sequencer::preferred::db: Storing new rollup block sequence_number=283 blob_id=2147898115765590840204672849985952269 visible_slot_number_after_increase=259 visible_slots_to_advance=1 +2026-04-20T15:41:19.106075Z DEBUG compute_state_update{scope="sequencer" rollup_height=259 slot_number=259}: sov_db::state_db_nomt: Cannot find snapshot from reference, assuming it has been committed +2026-04-20T15:41:19.106412Z DEBUG compute_state_update{scope="sequencer" rollup_height=259 slot_number=259}: sov_state::nomt::prover_storage: computing state update, sessions are live prev_state_root=3af044222646352e18880906e11325a5c800e052c91a0cb98f15c70d59b70b0b5dd65d02dd349d7276f88da86a36f882919ab259bb3212cbde83b894f3bd52c9 next_version=263 sesssion_starting_time=2.036207ms +2026-04-20T15:41:19.106451Z DEBUG sov_stf_runner::runner: Block execution complete time=3.020534924s +2026-04-20T15:41:19.106513Z DEBUG sov_stf_runner::runner: Requesting DA block +2026-04-20T15:41:19.107584Z DEBUG manage_blob_submission_inside_task{blob_id=2147898115765590840204672849985952269 latest_known_processing_status=BlobExecutionStatus { blob_submission_status: MustSubmit, blob_selector_status: None }}: sov_mock_da::storable::layer: Submitted batch is saved hash=0x30363bddf65116895f64ffa054d7d9a18b2d1cec9c2be7df8e3238d81b49e39a sender=0x0000000000000000000000000000000000000000000000000000000000000000 next_da_height=263 include_at=263 bytes=13 time=1.58264ms +2026-04-20T15:41:19.109751Z  INFO guest_execution: sov_stf_runner::processes::prover_service::parallel::prover: Generating proof with sov_sp1_adapter::SP1 +2026-04-20T15:41:19.110655Z  INFO guest_execution: sp1_sdk::blocking::mock: generating mock proof mode=Compressed +2026-04-20T15:41:19.113014Z DEBUG compute_state_update{scope="sequencer" rollup_height=259 slot_number=259}: sov_state::nomt::prover_storage: computed next state root state_root=445e564a6816dd3c3ffed2237a0c657fd5d562ece35ad490f3759d2b343aa41b38c2d00b940b6fb34b024113a8237514f6fb2a2480dd6a9724986fe60d032903 next_version=263 time=9.052941ms accesses_build_time=406.147µs finishing_session_time=6.499478ms